Merge branch 'master' into sunburnt
authorMarcin Koziej <marcin.koziej@nowoczesnapolska.org.pl>
Mon, 3 Sep 2012 14:55:43 +0000 (16:55 +0200)
committerMarcin Koziej <marcin.koziej@nowoczesnapolska.org.pl>
Mon, 3 Sep 2012 14:55:43 +0000 (16:55 +0200)
Conflicts:
apps/catalogue/management/commands/importbooks.py
apps/catalogue/models/book.py

51 files changed:
apps/catalogue/__init__.py
apps/catalogue/constants.py
apps/catalogue/fields.py
apps/catalogue/forms.py
apps/catalogue/locale/pl/LC_MESSAGES/django.mo
apps/catalogue/locale/pl/LC_MESSAGES/django.po
apps/catalogue/management/commands/checkcovers.py
apps/catalogue/management/commands/importbooks.py
apps/catalogue/management/commands/pack.py
apps/catalogue/migrations/0004_remove_parent_fb2.py [new file with mode: 0644]
apps/catalogue/migrations/0005_auto__chg_field_book_pdf_file__chg_field_book_html_file__chg_field_boo.py [new file with mode: 0644]
apps/catalogue/models/book.py
apps/catalogue/tasks.py
apps/catalogue/templates/catalogue/book_detail.html
apps/catalogue/templates/catalogue/book_text.html
apps/catalogue/test_utils.py
apps/catalogue/tests/__init__.py
apps/catalogue/tests/book_import.py
apps/catalogue/tests/bookmedia.py
apps/catalogue/tests/cover.py [new file with mode: 0755]
apps/catalogue/utils.py
apps/dictionary/models.py
apps/dictionary/tests.py
apps/dictionary/views.py
apps/oai/tests/oaipmhapi.py
apps/opds/tests/__init__.py [new file with mode: 0755]
apps/opds/tests/files/do-doktora.xml [new file with mode: 0644]
apps/picture/tests/picture_import.py
apps/search/tests/index.py
apps/wolnelektury_core/templates/account/base.html [new file with mode: 0755]
apps/wolnelektury_core/templates/main_page.html
lib/librarian
requirements-test.txt
requirements.txt
wolnelektury/locale-contrib/de/LC_MESSAGES/django.mo [new file with mode: 0644]
wolnelektury/locale-contrib/de/LC_MESSAGES/django.po
wolnelektury/locale-contrib/django.pot
wolnelektury/locale-contrib/en/LC_MESSAGES/django.mo [new file with mode: 0644]
wolnelektury/locale-contrib/en/LC_MESSAGES/django.po
wolnelektury/locale-contrib/es/LC_MESSAGES/django.mo
wolnelektury/locale-contrib/es/LC_MESSAGES/django.po
wolnelektury/locale-contrib/fr/LC_MESSAGES/django.po
wolnelektury/locale-contrib/it/LC_MESSAGES/django.po
wolnelektury/locale-contrib/lt/LC_MESSAGES/django.mo [new file with mode: 0644]
wolnelektury/locale-contrib/lt/LC_MESSAGES/django.po
wolnelektury/locale-contrib/pl/LC_MESSAGES/django.mo [new file with mode: 0644]
wolnelektury/locale-contrib/pl/LC_MESSAGES/django.po
wolnelektury/locale-contrib/ru/LC_MESSAGES/django.po
wolnelektury/locale-contrib/uk/LC_MESSAGES/django.mo
wolnelektury/locale-contrib/uk/LC_MESSAGES/django.po
wolnelektury/settings/custom.py

index e69de29..1fbdc20 100644 (file)
@@ -0,0 +1,48 @@
+# -*- 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.
+#
+import logging
+from django.conf import settings as settings
+from catalogue.utils import AppSettings
+
+
+class Settings(AppSettings):
+    """Default settings for catalogue app."""
+    DEFAULT_LANGUAGE = u'pol'
+    # PDF needs TeXML + XeLaTeX, MOBI needs Calibre.
+    DONT_BUILD = set(['pdf', 'mobi'])
+    FORMAT_ZIPS = {
+            'epub': 'wolnelektury_pl_epub',
+            'pdf': 'wolnelektury_pl_pdf',
+            'mobi': 'wolnelektury_pl_mobi',
+            'fb2': 'wolnelektury_pl_fb2',
+        }
+
+    REDAKCJA_URL = "http://redakcja.wolnelektury.pl"
+    GOOD_LICENSES = set([r'CC BY \d\.\d', r'CC BY-SA \d\.\d'])
+
+    def _more_DONT_BUILD(self, value):
+        for format_ in ['cover', 'pdf', 'epub', 'mobi', 'fb2', 'txt']:
+            attname = 'NO_BUILD_%s' % format_.upper()
+            if hasattr(settings, attname):
+                logging.warn("%s is deprecated, "
+                        "use CATALOGUE_DONT_BUILD instead", attname)
+                if getattr(settings, attname):
+                    value.add(format_)
+                else:
+                    value.remove(format_)
+        return value
+
+    def _more_FORMAT_ZIPS(self, value):
+        for format_ in ['epub', 'pdf', 'mobi', 'fb2']:
+            attname = 'ALL_%s_ZIP' % format_.upper()
+            if hasattr(settings, attname):
+                logging.warn("%s is deprecated, "
+                        "use CATALOGUE_FORMAT_ZIPS[%s] instead", 
+                            attname, format_)
+                value[format_] = getattr(settings, attname)
+        return value
+
+
+app_settings = Settings('CATALOGUE')
index e1c92f8..e2181af 100644 (file)
@@ -10,3 +10,12 @@ LICENSES = {
         'description': _('Creative Commons Attribution-ShareAlike 3.0 Unported'),
     },
 }
+
+# Those will be generated only for books with own HTML.
+EBOOK_FORMATS_WITHOUT_CHILDREN = ['txt', 'fb2']
+# Those will be generated for all books.
+EBOOK_FORMATS_WITH_CHILDREN = ['pdf', 'epub', 'mobi']
+# Those will be generated when inherited cover changes.
+EBOOK_FORMATS_WITH_COVERS = ['pdf', 'epub', 'mobi']
+
+EBOOK_FORMATS = EBOOK_FORMATS_WITHOUT_CHILDREN + EBOOK_FORMATS_WITH_CHILDREN
index 5ab78eb..68aaa40 100644 (file)
@@ -2,8 +2,194 @@
 # 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 import settings
+from django.core.files import File
 from django.db import models
 from django.db.models.fields.files import FieldFile
+from catalogue import app_settings
+from catalogue.utils import remove_zip, truncate_html_words
+from celery.task import Task, task
+from waiter.utils import clear_cache
+
+
+class EbookFieldFile(FieldFile):
+    """Represents contents of an ebook file field."""
+
+    def build(self):
+        """Build the ebook immediately."""
+        return self.field.builder.build(self)
+
+    def build_delay(self):
+        """Builds the ebook in a delayed task."""
+        return self.field.builder.delay(self.instance, self.field.attname)
+
+
+class EbookField(models.FileField):
+    """Represents an ebook file field, attachable to a model."""
+    attr_class = EbookFieldFile
+
+    def __init__(self, format_name, *args, **kwargs):
+        super(EbookField, self).__init__(*args, **kwargs)
+        self.format_name = format_name
+
+    @property
+    def builder(self):
+        """Finds a celery task suitable for the format of the field."""
+        return BuildEbook.for_format(self.format_name)
+
+    def contribute_to_class(self, cls, name):
+        super(EbookField, self).contribute_to_class(cls, name)
+
+        def has(model_instance):
+            return bool(getattr(model_instance, self.attname, None))
+        has.__doc__ = None
+        has.__name__ = "has_%s" % self.attname
+        has.short_description = self.name
+        has.boolean = True
+        setattr(cls, 'has_%s' % self.attname, has)
+
+
+class BuildEbook(Task):
+    formats = {}
+
+    @classmethod
+    def register(cls, format_name):
+        """A decorator for registering subclasses for particular formats."""
+        def wrapper(builder):
+            cls.formats[format_name] = builder
+            return builder
+        return wrapper
+
+    @classmethod
+    def for_format(cls, format_name):
+        """Returns a celery task suitable for specified format."""
+        return cls.formats.get(format_name, BuildEbookTask)
+
+    @staticmethod
+    def transform(wldoc, fieldfile):
+        """Transforms an librarian.WLDocument into an librarian.OutputFile.
+
+        By default, it just calls relevant wldoc.as_??? method.
+
+        """
+        return getattr(wldoc, "as_%s" % fieldfile.field.format_name)()
+
+    def run(self, obj, field_name):
+        """Just run `build` on FieldFile, can't pass it directly to Celery."""
+        return self.build(getattr(obj, field_name))
+
+    def build(self, fieldfile):
+        book = fieldfile.instance
+        out = self.transform(book.wldocument(), fieldfile)
+        fieldfile.save(None, File(open(out.get_filename())), save=False)
+        if book.pk is not None:
+            type(book).objects.filter(pk=book.pk).update(**{
+                fieldfile.field.attname: fieldfile
+            })
+        if fieldfile.field.format_name in app_settings.FORMAT_ZIPS:
+            remove_zip(app_settings.FORMAT_ZIPS[fieldfile.field.format_name])
+# Don't decorate BuildEbook, because we want to subclass it.
+BuildEbookTask = task(BuildEbook, ignore_result=True)
+
+
+@BuildEbook.register('txt')
+@task(ignore_result=True)
+class BuildTxt(BuildEbook):
+    @staticmethod
+    def transform(wldoc, fieldfile):
+        return wldoc.as_text()
+
+
+@BuildEbook.register('pdf')
+@task(ignore_result=True)
+class BuildPdf(BuildEbook):
+    @staticmethod
+    def transform(wldoc, fieldfile):
+        return wldoc.as_pdf(morefloats=settings.LIBRARIAN_PDF_MOREFLOATS,
+            cover=True)
+
+    def build(self, fieldfile):
+        BuildEbook.build(self, fieldfile)
+        clear_cache(fieldfile.instance.slug)
+
+
+@BuildEbook.register('epub')
+@task(ignore_result=True)
+class BuildEpub(BuildEbook):
+    @staticmethod
+    def transform(wldoc, fieldfile):
+        return wldoc.as_epub(cover=True)
+
+
+@BuildEbook.register('html')
+@task(ignore_result=True)
+class BuildHtml(BuildEbook):
+    def build(self, fieldfile):
+        from django.core.files.base import ContentFile
+        from slughifi import slughifi
+        from sortify import sortify
+        from librarian import html
+        from catalogue.models import Fragment, Tag
+
+        book = fieldfile.instance
+
+        meta_tags = list(book.tags.filter(
+            category__in=('author', 'epoch', 'genre', 'kind')))
+        book_tag = book.book_tag()
+
+        html_output = self.transform(
+                        book.wldocument(parse_dublincore=False),
+                        fieldfile)
+        if html_output:
+            fieldfile.save(None, ContentFile(html_output.get_string()),
+                    save=False)
+            type(book).objects.filter(pk=book.pk).update(**{
+                fieldfile.field.attname: fieldfile
+            })
+
+            # get ancestor l-tags for adding to new fragments
+            ancestor_tags = []
+            p = book.parent
+            while p:
+                ancestor_tags.append(p.book_tag())
+                p = p.parent
+
+            # Delete old fragments and create them from scratch
+            book.fragments.all().delete()
+            # Extract fragments
+            closed_fragments, open_fragments = html.extract_fragments(fieldfile.path)
+            for fragment in closed_fragments.values():
+                try:
+                    theme_names = [s.strip() for s in fragment.themes.split(',')]
+                except AttributeError:
+                    continue
+                themes = []
+                for theme_name in theme_names:
+                    if not theme_name:
+                        continue
+                    tag, created = Tag.objects.get_or_create(
+                                        slug=slughifi(theme_name),
+                                        category='theme')
+                    if created:
+                        tag.name = theme_name
+                        tag.sort_key = sortify(theme_name.lower())
+                        tag.save()
+                    themes.append(tag)
+                if not themes:
+                    continue
+
+                text = fragment.to_string()
+                short_text = truncate_html_words(text, 15)
+                if text == short_text:
+                    short_text = ''
+                new_fragment = Fragment.objects.create(anchor=fragment.id, 
+                        book=book, text=text, short_text=short_text)
+
+                new_fragment.save()
+                new_fragment.tags = set(meta_tags + themes + [book_tag] + ancestor_tags)
+            book.html_built.send(sender=book)
+            return True
+        return False
 
 
 class OverwritingFieldFile(FieldFile):
@@ -28,7 +214,14 @@ class OverwritingFileField(models.FileField):
 try:
     # check for south
     from south.modelsinspector import add_introspection_rules
-
-    add_introspection_rules([], ["^catalogue\.fields\.OverwritingFileField"])
 except ImportError:
     pass
+else:
+    add_introspection_rules([
+        (
+            [EbookField],
+            [],
+            {'format_name': ('format_name', {})}
+        )
+    ], ["^catalogue\.fields\.EbookField"])
+    add_introspection_rules([], ["^catalogue\.fields\.OverwritingFileField"])
index 5fb113c..480eddf 100644 (file)
@@ -46,6 +46,7 @@ CUSTOMIZATION_FLAGS = (
     ('nofootnotes', _("Don't show footnotes")),
     ('nothemes', _("Don't disply themes")),
     ('nowlfont', _("Don't use our custom font")),
+    ('no-cover', _("Without cover")),
     )
 CUSTOMIZATION_OPTIONS = (
     ('leading', _("Leading"), (
index 5e2032d..dfd8de0 100644 (file)
Binary files a/apps/catalogue/locale/pl/LC_MESSAGES/django.mo and b/apps/catalogue/locale/pl/LC_MESSAGES/django.mo differ
index ea16abf..f97d119 100644 (file)
@@ -7,8 +7,8 @@ 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-01-27 16:36+0100\n"
+"POT-Creation-Date: 2012-08-22 14:06+0200\n"
+"PO-Revision-Date: 2012-08-22 14:12+0100\n"
 "Last-Translator: Radek Czajka <radoslaw.czajka@nowoczesnapolska.org.pl>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
 "Language: \n"
@@ -37,201 +37,226 @@ msgstr "Bez motywów"
 msgid "Don't use our custom font"
 msgstr "Bez naszego kroju pisma"
 
-#: forms.py:51
+#: forms.py:49
+msgid "Without cover"
+msgstr "Bez okładki"
+
+#: forms.py:52
 msgid "Leading"
 msgstr "Interlinia"
 
-#: forms.py:52
+#: forms.py:53
 msgid "Normal leading"
 msgstr "Zwykła interlinia"
 
-#: forms.py:53
+#: forms.py:54
 msgid "One and a half leading"
 msgstr "Powiększona interlinia"
 
-#: forms.py:54
+#: forms.py:55
 msgid "Double leading"
 msgstr "Podwójna interlinia"
 
-#: forms.py:56
+#: forms.py:57
 msgid "Font size"
 msgstr "Rozmiar tekstu"
 
-#: forms.py:57
+#: forms.py:58
 msgid "Default"
 msgstr "Domyślnie"
 
-#: forms.py:58
+#: forms.py:59
 msgid "Big"
 msgstr "Duży"
 
-#: 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 "epoka"
+#: views.py:500
+#, python-format
+msgid ""
+"An error occurred: %(exception)s\n"
+"\n"
+"%(tb)s"
+msgstr ""
+"Wystąpił błąd: %(exception)s\n"
+"\n"
+"%(tb)s"
 
-#: models.py:35
-msgid "kind"
-msgstr "rodzaj"
+#: views.py:501
+msgid "Book imported successfully"
+msgstr "Książka zaimportowana"
 
-#: models.py:36
-msgid "genre"
-msgstr "gatunek"
+#: views.py:503
+#, python-format
+msgid "Error importing file: %r"
+msgstr "Błąd podczas importowania pliku: %r"
 
-#: models.py:37
-msgid "theme"
-msgstr "motyw"
+#: views.py:535
+msgid "Download custom PDF"
+msgstr "Stwórz własny PDF"
 
-#: models.py:38
-msgid "set"
-msgstr "półka"
+#: views.py:536
+#: templates/catalogue/book_short.html:92
+#: templates/catalogue/book_text.html:28
+#: templates/catalogue/book_wide.html:63
+msgid "Download"
+msgstr "Pobierz"
 
-#: models.py:39 models.py:368
-msgid "book"
-msgstr "książka"
+#: models/book.py:28
+#: models/collection.py:11
+msgid "title"
+msgstr "tytuł"
 
-#: models.py:60 models.py:230
-msgid "name"
-msgstr "nazwa"
+#: models/book.py:29
+#: models/tag.py:31
+msgid "sort key"
+msgstr "klucz sortowania"
 
-#: 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 "klucz sortowania"
-
-#: models.py:63
-msgid "category"
-msgstr "kategoria"
+#: models/book.py:33
+msgid "language code"
+msgstr "Kod języka"
 
-#: models.py:65 models.py:106 models.py:338 models.py:441 models.py:974
+#: models/book.py:35
+#: models/book.py:140
+#: models/collection.py:13
+#: models/tag.py:34
+#: models/tag.py:76
 msgid "description"
 msgstr "opis"
 
-#: models.py:68
-msgid "book count"
-msgstr "liczba książek"
-
-#: 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 utworzenia"
 
-#: models.py:90
-msgid "tag"
-msgstr "tag"
-
-#: models.py:91
-msgid "tags"
-msgstr "tagi"
-
-#: models.py:226 models.py:915
-#, python-format
-msgid "%s file"
-msgstr "plik %s"
-
-#: models.py:229
-msgid "type"
-msgstr "typ"
-
-#: models.py:231
-msgid "file"
-msgstr "plik"
+#: models/book.py:38
+msgid "parent number"
+msgstr "numer rodzica"
 
-#: models.py:233 models.py:342
+#: models/book.py:39
+#: models/bookmedia.py:29
 msgid "extra information"
 msgstr "dodatkowe informacje"
 
-#: models.py:242 models.py:243
-msgid "book media"
-msgstr "media książki"
-
-#: models.py:331 models.py:972
-msgid "title"
-msgstr "tytuł"
-
-#: models.py:336
-msgid "language code"
-msgstr "Kod języka"
-
-#: models.py:341
-msgid "parent number"
-msgstr "numer rodzica"
-
-#: models.py:347
+#: models/book.py:44
 msgid "cover"
 msgstr "okładka"
 
-#: models.py:369
+#: models/book.py:66
+#: models/tag.py:20
+msgid "book"
+msgstr "książka"
+
+#: models/book.py:67
 msgid "books"
 msgstr "książki"
 
-#: models.py:620
+#: models/book.py:238
 #, python-format
 msgid "Book \"%s\" does not exist."
 msgstr "Utwór \"%s\" nie istnieje."
 
-#: models.py:634
+#: models/book.py:252
 #, python-format
 msgid "Book %s already exists"
 msgstr "Książka %s już istnieje"
 
-#: models.py:935
-msgid "fragment"
-msgstr "fragment"
+#: models/book.py:585
+#: models/bookmedia.py:22
+#, python-format
+msgid "%s file"
+msgstr "plik %s"
 
-#: models.py:936
-msgid "fragments"
-msgstr "fragmenty"
+#: models/bookmedia.py:25
+msgid "type"
+msgstr "typ"
 
-#: models.py:977
+#: models/bookmedia.py:26
+#: models/tag.py:29
+msgid "name"
+msgstr "nazwa"
+
+#: models/bookmedia.py:27
+msgid "file"
+msgstr "plik"
+
+#: models/bookmedia.py:38
+#: models/bookmedia.py:39
+msgid "book media"
+msgstr "media książki"
+
+#: models/collection.py:16
 msgid "book slugs"
 msgstr "slugi utworów"
 
-#: models.py:981
+#: models/collection.py:20
 msgid "collection"
 msgstr "kolekcja"
 
-#: models.py:982
+#: models/collection.py:21
 msgid "collections"
 msgstr "kolekcje"
 
-#: views.py:500
-#, python-format
-msgid ""
-"An error occurred: %(exception)s\n"
-"\n"
-"%(tb)s"
-msgstr ""
-"Wystąpił błąd: %(exception)s\n"
-"\n"
-"%(tb)s"
+#: models/fragment.py:32
+msgid "fragment"
+msgstr "fragment"
 
-#: views.py:501
-msgid "Book imported successfully"
-msgstr "Książka zaimportowana"
+#: models/fragment.py:33
+msgid "fragments"
+msgstr "fragmenty"
 
-#: views.py:503
-#, python-format
-msgid "Error importing file: %r"
-msgstr "Błąd podczas importowania pliku: %r"
+#: models/tag.py:14
+msgid "author"
+msgstr "autor"
 
-#: views.py:535
-msgid "Download custom PDF"
-msgstr "Stwórz własny PDF"
+#: models/tag.py:15
+msgid "epoch"
+msgstr "epoka"
 
-#: views.py:536 templates/catalogue/book_short.html:92
-#: templates/catalogue/book_text.html:28 templates/catalogue/book_wide.html:63
-msgid "Download"
-msgstr "Pobierz"
+#: models/tag.py:16
+msgid "kind"
+msgstr "rodzaj"
+
+#: models/tag.py:17
+msgid "genre"
+msgstr "gatunek"
+
+#: models/tag.py:18
+msgid "theme"
+msgstr "motyw"
+
+#: models/tag.py:19
+msgid "set"
+msgstr "półka"
+
+#: models/tag.py:32
+msgid "category"
+msgstr "kategoria"
+
+#: models/tag.py:37
+msgid "book count"
+msgstr "liczba książek"
+
+#: models/tag.py:59
+msgid "tag"
+msgstr "tag"
+
+#: models/tag.py:60
+msgid "tags"
+msgstr "tagi"
 
 #: templates/catalogue/audiobook_list.html:7
 #: templates/catalogue/audiobook_list.html:16
@@ -281,8 +306,7 @@ 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"
-"        <a href=\"http://creativecommons.org/licenses/by-sa/3.0/\">Creative "
-"Commons Attribution-ShareAlike 3.0</a>\n"
+"        <a href=\"http://creativecommons.org/licenses/by-sa/3.0/\">Creative Commons Attribution-ShareAlike 3.0</a>\n"
 "        license."
 msgstr ""
 
@@ -298,7 +322,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 ""
 
@@ -315,7 +340,8 @@ msgstr ""
 msgid "Put a book on the shelf!"
 msgstr "Książki nie ma na półce"
 
-#: 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"
@@ -365,11 +391,12 @@ msgid "for Kindle"
 msgstr ""
 
 #: templates/catalogue/book_short.html:104
+#: templates/catalogue/book_text.html:50
 msgid "FictionBook"
 msgstr ""
 
 #: templates/catalogue/book_short.html:107
-#: templates/catalogue/book_text.html:50
+#: templates/catalogue/book_text.html:53
 msgid "for advanced usage"
 msgstr ""
 
@@ -378,7 +405,8 @@ msgstr ""
 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 ""
 
@@ -386,7 +414,8 @@ msgstr ""
 msgid "Table of contents"
 msgstr ""
 
-#: templates/catalogue/book_text.html:24 templates/catalogue/menu.html:27
+#: templates/catalogue/book_text.html:24
+#: templates/catalogue/menu.html:27
 #, fuzzy
 msgid "Themes"
 msgstr "motyw"
@@ -399,7 +428,8 @@ msgstr ""
 msgid "Infobox"
 msgstr ""
 
-#: templates/catalogue/book_text.html:27 templates/catalogue/player.html:34
+#: templates/catalogue/book_text.html:27
+#: templates/catalogue/player.html:34
 msgid "Book's page"
 msgstr ""
 
@@ -407,7 +437,8 @@ msgstr ""
 msgid "for a reader"
 msgstr ""
 
-#: templates/catalogue/book_text.html:54 templates/catalogue/book_wide.html:67
+#: templates/catalogue/book_text.html:57
+#: templates/catalogue/book_wide.html:67
 msgid "Download all audiobooks for this book"
 msgstr ""
 
@@ -456,7 +487,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 ""
 
@@ -464,27 +496,31 @@ msgstr ""
 msgid "Download the catalogue in PDF format."
 msgstr ""
 
-#: templates/catalogue/catalogue.html:19 templates/catalogue/menu.html:7
+#: templates/catalogue/catalogue.html:19
+#: templates/catalogue/menu.html:7
 #: templates/catalogue/search_multiple_hits.html:17
 #: templates/catalogue/tagged_object_list.html:26
 #, fuzzy
 msgid "Authors"
 msgstr "autor"
 
-#: templates/catalogue/catalogue.html:22 templates/catalogue/menu.html:17
+#: templates/catalogue/catalogue.html:22
+#: templates/catalogue/menu.html:17
 #: templates/catalogue/search_multiple_hits.html:25
 #: templates/catalogue/tagged_object_list.html:34
 msgid "Kinds"
 msgstr ""
 
-#: templates/catalogue/catalogue.html:25 templates/catalogue/menu.html:12
+#: templates/catalogue/catalogue.html:25
+#: templates/catalogue/menu.html:12
 #: templates/catalogue/search_multiple_hits.html:33
 #: templates/catalogue/tagged_object_list.html:42
 #, fuzzy
 msgid "Genres"
 msgstr "gatunek"
 
-#: templates/catalogue/catalogue.html:28 templates/catalogue/menu.html:22
+#: templates/catalogue/catalogue.html:28
+#: templates/catalogue/menu.html:22
 #: templates/catalogue/search_multiple_hits.html:41
 #: templates/catalogue/tagged_object_list.html:50
 #, fuzzy
@@ -508,8 +544,7 @@ msgstr ""
 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
@@ -627,8 +662,7 @@ msgstr ""
 
 #: 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 ""
 
 #: templates/catalogue/player.html:127
@@ -672,8 +706,7 @@ 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 ""
 
index ef61702..1af39e1 100644 (file)
@@ -5,6 +5,7 @@
 from optparse import make_option
 from django.contrib.sites.models import Site
 from django.core.management.base import BaseCommand
+from catalogue import app_settings
 
 
 def ancestor_has_cover(book):
@@ -39,14 +40,16 @@ class Command(BaseCommand):
 
         without_cover = []
         with_ancestral_cover = []
-        by_flickr_author = defaultdict(list)
-        not_flickr = []
-        by_license = defaultdict(list)
+        not_redakcja = []
+        bad_license = defaultdict(list)
         no_license = []
 
-        re_flickr = re.compile(ur'https?://(?:www\.|secure\.)?flickr.com/photos/([^/]*)/.*')
         re_license = re.compile(ur'.*,\s*(CC.*)')
 
+        redakcja_url = app_settings.REDAKCJA_URL
+        good_license = re.compile("(%s)" % ")|(".join(
+                            app_settings.GOOD_LICENSES))
+
         with transaction.commit_on_success():
             for book in Book.objects.all().order_by('slug').iterator():
                 extra_info = book.extra_info
@@ -56,76 +59,71 @@ class Command(BaseCommand):
                     else:
                         without_cover.append(book)
                 else:
-                    match = re_flickr.match(extra_info.get('cover_source', ''))
-                    if match:
-                        by_flickr_author[match.group(1)].append(book)
-                    else:
-                        not_flickr.append(book)
+                    if not extra_info.get('cover_source', ''
+                                ).startswith(redakcja_url):
+                        not_redakcja.append(book)
                     match = re_license.match(extra_info.get('cover_by', ''))
                     if match:
-                        by_license[match.group(1)].append(book)
+                        if not good_license.match(match.group(1)):
+                            bad_license[match.group(1)].append(book)
                     else:
                         no_license.append(book)
 
-        print """%d books with no covers, %d with ancestral covers.
-Licenses used: %s (%d covers without license).
-Flickr authors: %s (%d covers not from flickr).
+        print """%d books with no covers, %d with inherited covers.
+Bad licenses used: %s (%d covers without license).
+%d covers not from %s.
 """ % (
             len(without_cover),
             len(with_ancestral_cover),
-            ", ".join(sorted(by_license.keys())),
+            ", ".join(sorted(bad_license.keys())) or "none",
             len(no_license),
-            ", ".join(sorted(by_flickr_author.keys())),
-            len(not_flickr),
+            len(not_redakcja),
+            redakcja_url,
             )
 
         if verbose:
-            print
-            print "By license:"
-            print "==========="
-            for lic, books in by_license.items():
+            if bad_license:
+                print
+                print "Bad license:"
+                print "============"
+                for lic, books in bad_license.items():
+                    print
+                    print lic
+                    for book in books:
+                        print full_url(book)
+
+            if no_license:
                 print
-                print lic
-                for book in books:
+                print "No license:"
+                print "==========="
+                for book in no_license:
+                    print
                     print full_url(book)
+                    print book.extra_info.get('cover_by')
+                    print book.extra_info.get('cover_source')
+                    print book.extra_info.get('cover_url')
 
-            print
-            print "No license:"
-            print "==========="
-            for book in no_license:
+            if not_redakcja:
                 print
-                print full_url(book)
-                print book.extra_info.get('cover_by')
-                print book.extra_info.get('cover_source')
-                print book.extra_info.get('cover_url')
-
-            print
-            print "By Flickr author:"
-            print "================="
-            for author, books in by_flickr_author.items():
+                print "Not from Redakcja or source missing:"
+                print "===================================="
+                for book in not_redakcja:
+                    print
+                    print full_url(book)
+                    print book.extra_info.get('cover_by')
+                    print book.extra_info.get('cover_source')
+                    print book.extra_info.get('cover_url')
+
+            if without_cover:
                 print
-                print "author: http://flickr.com/photos/%s/" % author
-                for book in books:
+                print "No cover:"
+                print "========="
+                for book in without_cover:
                     print full_url(book)
 
-            print
-            print "Not from Flickr or source missing:"
-            print "=================================="
-            for book in not_flickr:
+            if with_ancestral_cover:
                 print
-                print full_url(book)
-                print book.extra_info.get('cover_by')
-                print book.extra_info.get('cover_source')
-                print book.extra_info.get('cover_url')
-
-            print
-            print "No cover:"
-            print "========="
-            for book in without_cover:
-                print full_url(book)
-
-            print
-            print "With ancestral cover:"
-            print "====================="
-            for book in with_ancestral_cover:
-                print full_url(book)
+                print "With ancestral cover:"
+                print "====================="
+                for book in with_ancestral_cover:
+                    print full_url(book)
index 1f08f7c..8f181cf 100644 (file)
@@ -22,14 +22,9 @@ class Command(BaseCommand):
             help='Verbosity level; 0=minimal output, 1=normal output, 2=all output'),
         make_option('-f', '--force', action='store_true', dest='force', default=False,
             help='Overwrite works already in the catalogue'),
-        make_option('-E', '--no-build-epub', action='store_false', dest='build_epub', default=True,
-            help='Don\'t build EPUB file'),
-        make_option('-M', '--no-build-mobi', action='store_false', dest='build_mobi', default=True,
-            help='Don\'t build MOBI file'),
-        make_option('-T', '--no-build-txt', action='store_false', dest='build_txt', default=True,
-            help='Don\'t build TXT file'),
-        make_option('-P', '--no-build-pdf', action='store_false', dest='build_pdf', default=True,
-            help='Don\'t build PDF file'),
+        make_option('-D', '--dont-build', dest='dont_build',
+            metavar="FORMAT,...",
+            help="Skip building specified formats"),
         make_option('-S', '--no-search-index', action='store_false', dest='search_index', default=True,
             help='Skip indexing imported works for search'),
         make_option('-w', '--wait-until', dest='wait_until', metavar='TIME',
@@ -42,21 +37,23 @@ class Command(BaseCommand):
 
     def import_book(self, file_path, options):
         verbose = options.get('verbose')
+        if options.get('dont_build'):
+            dont_build = options.get('dont_build').lower().split(',')
+        else:
+            dont_build = None
         file_base, ext = os.path.splitext(file_path)
         book = Book.from_xml_file(file_path, overwrite=options.get('force'),
-                                                    build_epub=options.get('build_epub'),
-                                                    build_txt=options.get('build_txt'),
-                                                    build_pdf=options.get('build_pdf'),
-                                                    build_mobi=options.get('build_mobi'),
-                                                    search_index_tags=False)
+                                  dont_build=dont_build,
+                                  search_index_tags=False)
         for ebook_format in Book.ebook_formats:
             if os.path.isfile(file_base + '.' + ebook_format):
                 getattr(book, '%s_file' % ebook_format).save(
-                    '%s.%s' % (book.slug, ebook_format),
-                    File(file(file_base + '.' + ebook_format)))
+                    '%s.%s' % (book.slug, ebook_format), 
+                    File(file(file_base + '.' + ebook_format)),
+                    save=False
+                    )
                 if verbose:
                     print "Importing %s.%s" % (file_base, ebook_format)
-
         book.save()
 
     def import_picture(self, file_path, options):
index 280c0f6..6ecf32d 100755 (executable)
@@ -24,7 +24,7 @@ class Command(BaseCommand):
             help='Exclude specific books by slug')
     )
     help = 'Prepare ZIP package with files of given type.'
-    args = '[%s] output_path.zip' % '|'.join(ftypes)
+    args = '[%s] output_path.zip' % '|'.join(Book.formats)
 
     def handle(self, ftype, path, **options):
         self.style = color_style()
diff --git a/apps/catalogue/migrations/0004_remove_parent_fb2.py b/apps/catalogue/migrations/0004_remove_parent_fb2.py
new file mode 100644 (file)
index 0000000..f048a45
--- /dev/null
@@ -0,0 +1,135 @@
+# -*- coding: utf-8 -*-
+import datetime
+from south.db import db
+from south.v2 import DataMigration
+from django.db import models
+
+class Migration(DataMigration):
+    """Deletes empty FB2 files from books which have no real own content."""
+
+    def forwards(self, orm):
+        "Write your forwards methods here."
+        # Note: Remember to use orm['appname.ModelName'] rather than "from appname.models..."
+        for book in orm['catalogue.Book'].objects.filter(html_file=''):
+            if book.fb2_file:
+                book.fb2_file.delete()
+
+    def backwards(self, orm):
+        "Write your backwards methods here."
+        pass
+
+    models = {
+        'auth.group': {
+            'Meta': {'object_name': 'Group'},
+            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+            'name': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '80'}),
+            'permissions': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.Permission']", 'symmetrical': 'False', 'blank': 'True'})
+        },
+        'auth.permission': {
+            'Meta': {'ordering': "('content_type__app_label', 'content_type__model', 'codename')", 'unique_together': "(('content_type', 'codename'),)", 'object_name': 'Permission'},
+            'codename': ('django.db.models.fields.CharField', [], {'max_length': '100'}),
+            'content_type': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['contenttypes.ContentType']"}),
+            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+            'name': ('django.db.models.fields.CharField', [], {'max_length': '50'})
+        },
+        'auth.user': {
+            'Meta': {'object_name': 'User'},
+            'date_joined': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}),
+            'email': ('django.db.models.fields.EmailField', [], {'max_length': '75', 'blank': 'True'}),
+            'first_name': ('django.db.models.fields.CharField', [], {'max_length': '30', 'blank': 'True'}),
+            'groups': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.Group']", 'symmetrical': 'False', 'blank': 'True'}),
+            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+            'is_active': ('django.db.models.fields.BooleanField', [], {'default': 'True'}),
+            'is_staff': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
+            'is_superuser': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
+            'last_login': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}),
+            'last_name': ('django.db.models.fields.CharField', [], {'max_length': '30', 'blank': 'True'}),
+            'password': ('django.db.models.fields.CharField', [], {'max_length': '128'}),
+            'user_permissions': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.Permission']", 'symmetrical': 'False', 'blank': 'True'}),
+            'username': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '30'})
+        },
+        'catalogue.book': {
+            'Meta': {'ordering': "('sort_key',)", 'object_name': 'Book'},
+            '_related_info': ('jsonfield.fields.JSONField', [], {'null': 'True', 'blank': 'True'}),
+            'changed_at': ('django.db.models.fields.DateTimeField', [], {'auto_now': 'True', 'db_index': 'True', 'blank': 'True'}),
+            'common_slug': ('django.db.models.fields.SlugField', [], {'max_length': '120'}),
+            'cover': ('django.db.models.fields.files.FileField', [], {'max_length': '100', 'null': 'True', 'blank': 'True'}),
+            'created_at': ('django.db.models.fields.DateTimeField', [], {'auto_now_add': 'True', 'db_index': 'True', 'blank': 'True'}),
+            'description': ('django.db.models.fields.TextField', [], {'blank': 'True'}),
+            'epub_file': ('django.db.models.fields.files.FileField', [], {'max_length': '100', 'blank': 'True'}),
+            'extra_info': ('jsonfield.fields.JSONField', [], {'default': "'{}'"}),
+            'fb2_file': ('django.db.models.fields.files.FileField', [], {'max_length': '100', 'blank': 'True'}),
+            'gazeta_link': ('django.db.models.fields.CharField', [], {'max_length': '240', 'blank': 'True'}),
+            'html_file': ('django.db.models.fields.files.FileField', [], {'max_length': '100', 'blank': 'True'}),
+            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+            'language': ('django.db.models.fields.CharField', [], {'default': "'pol'", 'max_length': '3', 'db_index': 'True'}),
+            'mobi_file': ('django.db.models.fields.files.FileField', [], {'max_length': '100', 'blank': 'True'}),
+            'parent': ('django.db.models.fields.related.ForeignKey', [], {'blank': 'True', 'related_name': "'children'", 'null': 'True', 'to': "orm['catalogue.Book']"}),
+            'parent_number': ('django.db.models.fields.IntegerField', [], {'default': '0'}),
+            'pdf_file': ('django.db.models.fields.files.FileField', [], {'max_length': '100', 'blank': 'True'}),
+            'slug': ('django.db.models.fields.SlugField', [], {'unique': 'True', 'max_length': '120'}),
+            'sort_key': ('django.db.models.fields.CharField', [], {'max_length': '120', 'db_index': 'True'}),
+            'title': ('django.db.models.fields.CharField', [], {'max_length': '120'}),
+            'txt_file': ('django.db.models.fields.files.FileField', [], {'max_length': '100', 'blank': 'True'}),
+            'wiki_link': ('django.db.models.fields.CharField', [], {'max_length': '240', 'blank': 'True'}),
+            'xml_file': ('django.db.models.fields.files.FileField', [], {'max_length': '100', 'blank': 'True'})
+        },
+        'catalogue.bookmedia': {
+            'Meta': {'ordering': "('type', 'name')", 'object_name': 'BookMedia'},
+            'book': ('django.db.models.fields.related.ForeignKey', [], {'related_name': "'media'", 'to': "orm['catalogue.Book']"}),
+            'extra_info': ('jsonfield.fields.JSONField', [], {'default': "'{}'"}),
+            'file': ('catalogue.fields.OverwritingFileField', [], {'max_length': '100'}),
+            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+            'name': ('django.db.models.fields.CharField', [], {'max_length': "'100'"}),
+            'source_sha1': ('django.db.models.fields.CharField', [], {'max_length': '40', 'null': 'True', 'blank': 'True'}),
+            'type': ('django.db.models.fields.CharField', [], {'max_length': "'100'"}),
+            'uploaded_at': ('django.db.models.fields.DateTimeField', [], {'auto_now_add': 'True', 'blank': 'True'})
+        },
+        'catalogue.collection': {
+            'Meta': {'ordering': "('title',)", 'object_name': 'Collection'},
+            'book_slugs': ('django.db.models.fields.TextField', [], {}),
+            'description': ('django.db.models.fields.TextField', [], {'null': 'True', 'blank': 'True'}),
+            'slug': ('django.db.models.fields.SlugField', [], {'max_length': '120', 'primary_key': 'True'}),
+            'title': ('django.db.models.fields.CharField', [], {'max_length': '120', 'db_index': 'True'})
+        },
+        'catalogue.fragment': {
+            'Meta': {'ordering': "('book', 'anchor')", 'object_name': 'Fragment'},
+            'anchor': ('django.db.models.fields.CharField', [], {'max_length': '120'}),
+            'book': ('django.db.models.fields.related.ForeignKey', [], {'related_name': "'fragments'", 'to': "orm['catalogue.Book']"}),
+            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+            'short_text': ('django.db.models.fields.TextField', [], {}),
+            'text': ('django.db.models.fields.TextField', [], {})
+        },
+        'catalogue.tag': {
+            'Meta': {'ordering': "('sort_key',)", 'unique_together': "(('slug', 'category'),)", 'object_name': 'Tag'},
+            'book_count': ('django.db.models.fields.IntegerField', [], {'null': 'True', 'blank': 'True'}),
+            'category': ('django.db.models.fields.CharField', [], {'max_length': '50', 'db_index': 'True'}),
+            'changed_at': ('django.db.models.fields.DateTimeField', [], {'auto_now': 'True', 'db_index': 'True', 'blank': 'True'}),
+            'created_at': ('django.db.models.fields.DateTimeField', [], {'auto_now_add': 'True', 'db_index': 'True', 'blank': 'True'}),
+            'description': ('django.db.models.fields.TextField', [], {'blank': 'True'}),
+            'gazeta_link': ('django.db.models.fields.CharField', [], {'max_length': '240', 'blank': 'True'}),
+            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+            'name': ('django.db.models.fields.CharField', [], {'max_length': '50', 'db_index': 'True'}),
+            'slug': ('django.db.models.fields.SlugField', [], {'max_length': '120'}),
+            'sort_key': ('django.db.models.fields.CharField', [], {'max_length': '120', 'db_index': 'True'}),
+            'user': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']", 'null': 'True', 'blank': 'True'}),
+            'wiki_link': ('django.db.models.fields.CharField', [], {'max_length': '240', 'blank': 'True'})
+        },
+        'catalogue.tagrelation': {
+            'Meta': {'unique_together': "(('tag', 'content_type', 'object_id'),)", 'object_name': 'TagRelation', 'db_table': "'catalogue_tag_relation'"},
+            'content_type': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['contenttypes.ContentType']"}),
+            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+            'object_id': ('django.db.models.fields.PositiveIntegerField', [], {'db_index': 'True'}),
+            'tag': ('django.db.models.fields.related.ForeignKey', [], {'related_name': "'items'", 'to': "orm['catalogue.Tag']"})
+        },
+        'contenttypes.contenttype': {
+            'Meta': {'ordering': "('name',)", 'unique_together': "(('app_label', 'model'),)", 'object_name': 'ContentType', 'db_table': "'django_content_type'"},
+            'app_label': ('django.db.models.fields.CharField', [], {'max_length': '100'}),
+            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+            'model': ('django.db.models.fields.CharField', [], {'max_length': '100'}),
+            'name': ('django.db.models.fields.CharField', [], {'max_length': '100'})
+        }
+    }
+
+    complete_apps = ['catalogue']
+    symmetrical = True
diff --git a/apps/catalogue/migrations/0005_auto__chg_field_book_pdf_file__chg_field_book_html_file__chg_field_boo.py b/apps/catalogue/migrations/0005_auto__chg_field_book_pdf_file__chg_field_book_html_file__chg_field_boo.py
new file mode 100644 (file)
index 0000000..6f6bc81
--- /dev/null
@@ -0,0 +1,175 @@
+# -*- coding: 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):
+
+        # Changing field 'Book.pdf_file'
+        db.alter_column('catalogue_book', 'pdf_file', self.gf('catalogue.fields.EbookField')(max_length=100, format_name='pdf'))
+
+        # Changing field 'Book.html_file'
+        db.alter_column('catalogue_book', 'html_file', self.gf('catalogue.fields.EbookField')(max_length=100, format_name='html'))
+
+        # Changing field 'Book.xml_file'
+        db.alter_column('catalogue_book', 'xml_file', self.gf('catalogue.fields.EbookField')(max_length=100, format_name='xml'))
+
+        # Changing field 'Book.txt_file'
+        db.alter_column('catalogue_book', 'txt_file', self.gf('catalogue.fields.EbookField')(max_length=100, format_name='txt'))
+
+        # Changing field 'Book.fb2_file'
+        db.alter_column('catalogue_book', 'fb2_file', self.gf('catalogue.fields.EbookField')(max_length=100, format_name='fb2'))
+
+        # Changing field 'Book.mobi_file'
+        db.alter_column('catalogue_book', 'mobi_file', self.gf('catalogue.fields.EbookField')(max_length=100, format_name='mobi'))
+
+        # Changing field 'Book.epub_file'
+        db.alter_column('catalogue_book', 'epub_file', self.gf('catalogue.fields.EbookField')(max_length=100, format_name='epub'))
+
+        # Changing field 'Book.cover'
+        db.alter_column('catalogue_book', 'cover', self.gf('catalogue.fields.EbookField')(max_length=100, null=True, format_name='cover'))
+
+    def backwards(self, orm):
+
+        # Changing field 'Book.pdf_file'
+        db.alter_column('catalogue_book', 'pdf_file', self.gf('django.db.models.fields.files.FileField')(max_length=100))
+
+        # Changing field 'Book.html_file'
+        db.alter_column('catalogue_book', 'html_file', self.gf('django.db.models.fields.files.FileField')(max_length=100))
+
+        # Changing field 'Book.xml_file'
+        db.alter_column('catalogue_book', 'xml_file', self.gf('django.db.models.fields.files.FileField')(max_length=100))
+
+        # Changing field 'Book.txt_file'
+        db.alter_column('catalogue_book', 'txt_file', self.gf('django.db.models.fields.files.FileField')(max_length=100))
+
+        # Changing field 'Book.fb2_file'
+        db.alter_column('catalogue_book', 'fb2_file', self.gf('django.db.models.fields.files.FileField')(max_length=100))
+
+        # Changing field 'Book.mobi_file'
+        db.alter_column('catalogue_book', 'mobi_file', self.gf('django.db.models.fields.files.FileField')(max_length=100))
+
+        # Changing field 'Book.epub_file'
+        db.alter_column('catalogue_book', 'epub_file', self.gf('django.db.models.fields.files.FileField')(max_length=100))
+
+        # Changing field 'Book.cover'
+        db.alter_column('catalogue_book', 'cover', self.gf('django.db.models.fields.files.FileField')(max_length=100, null=True))
+
+    models = {
+        'auth.group': {
+            'Meta': {'object_name': 'Group'},
+            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+            'name': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '80'}),
+            'permissions': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.Permission']", 'symmetrical': 'False', 'blank': 'True'})
+        },
+        'auth.permission': {
+            'Meta': {'ordering': "('content_type__app_label', 'content_type__model', 'codename')", 'unique_together': "(('content_type', 'codename'),)", 'object_name': 'Permission'},
+            'codename': ('django.db.models.fields.CharField', [], {'max_length': '100'}),
+            'content_type': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['contenttypes.ContentType']"}),
+            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+            'name': ('django.db.models.fields.CharField', [], {'max_length': '50'})
+        },
+        'auth.user': {
+            'Meta': {'object_name': 'User'},
+            'date_joined': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}),
+            'email': ('django.db.models.fields.EmailField', [], {'max_length': '75', 'blank': 'True'}),
+            'first_name': ('django.db.models.fields.CharField', [], {'max_length': '30', 'blank': 'True'}),
+            'groups': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.Group']", 'symmetrical': 'False', 'blank': 'True'}),
+            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+            'is_active': ('django.db.models.fields.BooleanField', [], {'default': 'True'}),
+            'is_staff': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
+            'is_superuser': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
+            'last_login': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}),
+            'last_name': ('django.db.models.fields.CharField', [], {'max_length': '30', 'blank': 'True'}),
+            'password': ('django.db.models.fields.CharField', [], {'max_length': '128'}),
+            'user_permissions': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.Permission']", 'symmetrical': 'False', 'blank': 'True'}),
+            'username': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '30'})
+        },
+        'catalogue.book': {
+            'Meta': {'ordering': "('sort_key',)", 'object_name': 'Book'},
+            '_related_info': ('jsonfield.fields.JSONField', [], {'null': 'True', 'blank': 'True'}),
+            'changed_at': ('django.db.models.fields.DateTimeField', [], {'auto_now': 'True', 'db_index': 'True', 'blank': 'True'}),
+            'common_slug': ('django.db.models.fields.SlugField', [], {'max_length': '120'}),
+            'cover': ('catalogue.fields.EbookField', [], {'max_length': '100', 'null': 'True', 'format_name': "'cover'", 'blank': 'True'}),
+            'created_at': ('django.db.models.fields.DateTimeField', [], {'auto_now_add': 'True', 'db_index': 'True', 'blank': 'True'}),
+            'description': ('django.db.models.fields.TextField', [], {'blank': 'True'}),
+            'epub_file': ('catalogue.fields.EbookField', [], {'default': "''", 'max_length': '100', 'format_name': "'epub'", 'blank': 'True'}),
+            'extra_info': ('jsonfield.fields.JSONField', [], {'default': "'{}'"}),
+            'fb2_file': ('catalogue.fields.EbookField', [], {'default': "''", 'max_length': '100', 'format_name': "'fb2'", 'blank': 'True'}),
+            'gazeta_link': ('django.db.models.fields.CharField', [], {'max_length': '240', 'blank': 'True'}),
+            'html_file': ('catalogue.fields.EbookField', [], {'default': "''", 'max_length': '100', 'format_name': "'html'", 'blank': 'True'}),
+            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+            'language': ('django.db.models.fields.CharField', [], {'default': "'pol'", 'max_length': '3', 'db_index': 'True'}),
+            'mobi_file': ('catalogue.fields.EbookField', [], {'default': "''", 'max_length': '100', 'format_name': "'mobi'", 'blank': 'True'}),
+            'parent': ('django.db.models.fields.related.ForeignKey', [], {'blank': 'True', 'related_name': "'children'", 'null': 'True', 'to': "orm['catalogue.Book']"}),
+            'parent_number': ('django.db.models.fields.IntegerField', [], {'default': '0'}),
+            'pdf_file': ('catalogue.fields.EbookField', [], {'default': "''", 'max_length': '100', 'format_name': "'pdf'", 'blank': 'True'}),
+            'slug': ('django.db.models.fields.SlugField', [], {'unique': 'True', 'max_length': '120'}),
+            'sort_key': ('django.db.models.fields.CharField', [], {'max_length': '120', 'db_index': 'True'}),
+            'title': ('django.db.models.fields.CharField', [], {'max_length': '120'}),
+            'txt_file': ('catalogue.fields.EbookField', [], {'default': "''", 'max_length': '100', 'format_name': "'txt'", 'blank': 'True'}),
+            'wiki_link': ('django.db.models.fields.CharField', [], {'max_length': '240', 'blank': 'True'}),
+            'xml_file': ('catalogue.fields.EbookField', [], {'default': "''", 'max_length': '100', 'format_name': "'xml'", 'blank': 'True'})
+        },
+        'catalogue.bookmedia': {
+            'Meta': {'ordering': "('type', 'name')", 'object_name': 'BookMedia'},
+            'book': ('django.db.models.fields.related.ForeignKey', [], {'related_name': "'media'", 'to': "orm['catalogue.Book']"}),
+            'extra_info': ('jsonfield.fields.JSONField', [], {'default': "'{}'"}),
+            'file': ('catalogue.fields.OverwritingFileField', [], {'max_length': '100'}),
+            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+            'name': ('django.db.models.fields.CharField', [], {'max_length': "'100'"}),
+            'source_sha1': ('django.db.models.fields.CharField', [], {'max_length': '40', 'null': 'True', 'blank': 'True'}),
+            'type': ('django.db.models.fields.CharField', [], {'max_length': "'100'"}),
+            'uploaded_at': ('django.db.models.fields.DateTimeField', [], {'auto_now_add': 'True', 'blank': 'True'})
+        },
+        'catalogue.collection': {
+            'Meta': {'ordering': "('title',)", 'object_name': 'Collection'},
+            'book_slugs': ('django.db.models.fields.TextField', [], {}),
+            'description': ('django.db.models.fields.TextField', [], {'null': 'True', 'blank': 'True'}),
+            'slug': ('django.db.models.fields.SlugField', [], {'max_length': '120', 'primary_key': 'True'}),
+            'title': ('django.db.models.fields.CharField', [], {'max_length': '120', 'db_index': 'True'})
+        },
+        'catalogue.fragment': {
+            'Meta': {'ordering': "('book', 'anchor')", 'object_name': 'Fragment'},
+            'anchor': ('django.db.models.fields.CharField', [], {'max_length': '120'}),
+            'book': ('django.db.models.fields.related.ForeignKey', [], {'related_name': "'fragments'", 'to': "orm['catalogue.Book']"}),
+            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+            'short_text': ('django.db.models.fields.TextField', [], {}),
+            'text': ('django.db.models.fields.TextField', [], {})
+        },
+        'catalogue.tag': {
+            'Meta': {'ordering': "('sort_key',)", 'unique_together': "(('slug', 'category'),)", 'object_name': 'Tag'},
+            'book_count': ('django.db.models.fields.IntegerField', [], {'null': 'True', 'blank': 'True'}),
+            'category': ('django.db.models.fields.CharField', [], {'max_length': '50', 'db_index': 'True'}),
+            'changed_at': ('django.db.models.fields.DateTimeField', [], {'auto_now': 'True', 'db_index': 'True', 'blank': 'True'}),
+            'created_at': ('django.db.models.fields.DateTimeField', [], {'auto_now_add': 'True', 'db_index': 'True', 'blank': 'True'}),
+            'description': ('django.db.models.fields.TextField', [], {'blank': 'True'}),
+            'gazeta_link': ('django.db.models.fields.CharField', [], {'max_length': '240', 'blank': 'True'}),
+            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+            'name': ('django.db.models.fields.CharField', [], {'max_length': '50', 'db_index': 'True'}),
+            'slug': ('django.db.models.fields.SlugField', [], {'max_length': '120'}),
+            'sort_key': ('django.db.models.fields.CharField', [], {'max_length': '120', 'db_index': 'True'}),
+            'user': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']", 'null': 'True', 'blank': 'True'}),
+            'wiki_link': ('django.db.models.fields.CharField', [], {'max_length': '240', 'blank': 'True'})
+        },
+        'catalogue.tagrelation': {
+            'Meta': {'unique_together': "(('tag', 'content_type', 'object_id'),)", 'object_name': 'TagRelation', 'db_table': "'catalogue_tag_relation'"},
+            'content_type': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['contenttypes.ContentType']"}),
+            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+            'object_id': ('django.db.models.fields.PositiveIntegerField', [], {'db_index': 'True'}),
+            'tag': ('django.db.models.fields.related.ForeignKey', [], {'related_name': "'items'", 'to': "orm['catalogue.Tag']"})
+        },
+        'contenttypes.contenttype': {
+            'Meta': {'ordering': "('name',)", 'unique_together': "(('app_label', 'model'),)", 'object_name': 'ContentType', 'db_table': "'django_content_type'"},
+            'app_label': ('django.db.models.fields.CharField', [], {'max_length': '100'}),
+            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+            'model': ('django.db.models.fields.CharField', [], {'max_length': '100'}),
+            'name': ('django.db.models.fields.CharField', [], {'max_length': '100'})
+        }
+    }
+
+    complete_apps = ['catalogue']
\ No newline at end of file
index d3df67e..5bc1e10 100644 (file)
@@ -3,7 +3,7 @@
 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
 #
 import re
-from django.conf import settings
+from django.conf import settings as settings
 from django.core.cache import get_cache
 from django.db import models
 from django.db.models import permalink
@@ -11,8 +11,11 @@ import django.dispatch
 from django.utils.datastructures import SortedDict
 from django.utils.translation import ugettext_lazy as _
 import jsonfield
+from catalogue import constants
+from catalogue.fields import EbookField
 from catalogue.models import Tag, Fragment, BookMedia
-from catalogue.utils import create_zip, split_tags, truncate_html_words, book_upload_path
+from catalogue.utils import create_zip, split_tags, book_upload_path
+from catalogue import app_settings
 from catalogue import tasks
 from newtagging import managers
 
@@ -28,7 +31,7 @@ class Book(models.Model):
             unique=True)
     common_slug = models.SlugField(_('slug'), max_length=120, db_index=True)
     language = models.CharField(_('language code'), max_length=3, db_index=True,
-                    default=settings.CATALOGUE_DEFAULT_LANGUAGE)
+                    default=app_settings.DEFAULT_LANGUAGE)
     description   = models.TextField(_('description'), blank=True)
     created_at    = models.DateTimeField(_('creation date'), auto_now_add=True, db_index=True)
     changed_at    = models.DateTimeField(_('creation date'), auto_now=True, db_index=True)
@@ -38,12 +41,13 @@ class Book(models.Model):
     wiki_link     = models.CharField(blank=True, max_length=240)
     # files generated during publication
 
-    cover = models.FileField(_('cover'), upload_to=book_upload_path('png'),
-                null=True, blank=True)
-    ebook_formats = ['pdf', 'epub', 'mobi', 'fb2', 'txt']
+    cover = EbookField('cover', _('cover'),
+                upload_to=book_upload_path('jpg'), null=True, blank=True)
+    ebook_formats = constants.EBOOK_FORMATS
     formats = ebook_formats + ['html', 'xml']
 
-    parent        = models.ForeignKey('self', blank=True, null=True, related_name='children')
+    parent = models.ForeignKey('self', blank=True, null=True,
+        related_name='children')
 
     _related_info = jsonfield.JSONField(blank=True, null=True, editable=False)
 
@@ -152,117 +156,33 @@ class Book(models.Model):
     has_daisy_file.short_description = 'DAISY'
     has_daisy_file.boolean = True
 
-    def wldocument(self, parse_dublincore=True):
+    def wldocument(self, parse_dublincore=True, inherit=True):
         from catalogue.import_utils import ORMDocProvider
         from librarian.parser import WLDocument
 
+        if inherit and self.parent:
+            meta_fallbacks = self.parent.cover_info()
+        else:
+            meta_fallbacks = None
+
         return WLDocument.from_file(self.xml_file.path,
                 provider=ORMDocProvider(self),
-                parse_dublincore=parse_dublincore)
-
-    def build_cover(self, book_info=None):
-        """(Re)builds the cover image."""
-        from StringIO import StringIO
-        from django.core.files.base import ContentFile
-        from librarian.cover import WLCover
-
-        if book_info is None:
-            book_info = self.wldocument().book_info
-
-        cover = WLCover(book_info).image()
-        imgstr = StringIO()
-        cover.save(imgstr, 'png')
-        self.cover.save(None, ContentFile(imgstr.getvalue()))
-
-    def build_html(self):
-        from django.core.files.base import ContentFile
-        from slughifi import slughifi
-        from sortify import sortify
-        from librarian import html
-
-        meta_tags = list(self.tags.filter(
-            category__in=('author', 'epoch', 'genre', 'kind')))
-        book_tag = self.book_tag()
-
-        html_output = self.wldocument(parse_dublincore=False).as_html()
-        if html_output:
-            self.html_file.save('%s.html' % self.slug,
-                    ContentFile(html_output.get_string()))
-
-            # get ancestor l-tags for adding to new fragments
-            ancestor_tags = []
-            p = self.parent
-            while p:
-                ancestor_tags.append(p.book_tag())
-                p = p.parent
-
-            # Delete old fragments and create them from scratch
-            self.fragments.all().delete()
-            # Extract fragments
-            closed_fragments, open_fragments = html.extract_fragments(self.html_file.path)
-            for fragment in closed_fragments.values():
-                try:
-                    theme_names = [s.strip() for s in fragment.themes.split(',')]
-                except AttributeError:
-                    continue
-                themes = []
-                for theme_name in theme_names:
-                    if not theme_name:
-                        continue
-                    tag, created = Tag.objects.get_or_create(slug=slughifi(theme_name), category='theme')
-                    if created:
-                        tag.name = theme_name
-                        tag.sort_key = sortify(theme_name.lower())
-                        tag.save()
-                    themes.append(tag)
-                if not themes:
-                    continue
-
-                text = fragment.to_string()
-                short_text = truncate_html_words(text, 15)
-                if text == short_text:
-                    short_text = ''
-                new_fragment = Fragment.objects.create(anchor=fragment.id, book=self,
-                    text=text, short_text=short_text)
-
-                new_fragment.save()
-                new_fragment.tags = set(meta_tags + themes + [book_tag] + ancestor_tags)
-            self.save()
-            self.html_built.send(sender=self)
-            return True
-        return False
-
-    # Thin wrappers for builder tasks
-    def build_pdf(self, *args, **kwargs):
-        """(Re)builds PDF."""
-        return tasks.build_pdf.delay(self.pk, *args, **kwargs)
-    def build_epub(self, *args, **kwargs):
-        """(Re)builds EPUB."""
-        return tasks.build_epub.delay(self.pk, *args, **kwargs)
-    def build_mobi(self, *args, **kwargs):
-        """(Re)builds MOBI."""
-        return tasks.build_mobi.delay(self.pk, *args, **kwargs)
-    def build_fb2(self, *args, **kwargs):
-        """(Re)build FB2"""
-        return tasks.build_fb2.delay(self.pk, *args, **kwargs)
-    def build_txt(self, *args, **kwargs):
-        """(Re)builds TXT."""
-        return tasks.build_txt.delay(self.pk, *args, **kwargs)
+                parse_dublincore=parse_dublincore,
+                meta_fallbacks=meta_fallbacks)
 
     @staticmethod
     def zip_format(format_):
         def pretty_file_name(book):
             return "%s/%s.%s" % (
-                b.extra_info['author'],
-                b.slug,
+                book.extra_info['author'],
+                book.slug,
                 format_)
 
         field_name = "%s_file" % format_
         books = Book.objects.filter(parent=None).exclude(**{field_name: ""})
         paths = [(pretty_file_name(b), getattr(b, field_name).path)
                     for b in books.iterator()]
-        return create_zip(paths,
-                    getattr(settings, "ALL_%s_ZIP" % format_.upper()))
+        return create_zip(paths, app_settings.FORMAT_ZIPS[format_])
 
     def zip_audiobooks(self, format_):
         bm = BookMedia.objects.filter(book=self, type=format_)
@@ -302,8 +222,11 @@ class Book(models.Model):
 
     @classmethod
     def from_text_and_meta(cls, raw_file, book_info, overwrite=False,
-            build_epub=True, build_txt=True, build_pdf=True, build_mobi=True, build_fb2=True,
-            search_index=True, search_index_tags=True):
+            dont_build=None, search_index=True,
+            search_index_tags=True):
+        if dont_build is None:
+            dont_build = set()
+        dont_build = set.union(set(dont_build), set(app_settings.DONT_BUILD))
 
         # check for parts before we do anything
         children = []
@@ -315,7 +238,6 @@ class Book(models.Model):
                     raise Book.DoesNotExist(_('Book "%s" does not exist.') %
                             part_url.slug)
 
-
         # Read book metadata
         book_slug = book_info.url.slug
         if re.search(r'[^a-z0-9-]', book_slug):
@@ -324,12 +246,17 @@ class Book(models.Model):
 
         if created:
             book_shelves = []
+            old_cover = None
         else:
             if not overwrite:
                 raise Book.AlreadyExists(_('Book %s already exists') % (
                         book_slug))
             # Save shelves for this book
             book_shelves = list(book.tags.filter(category='set'))
+            old_cover = book.cover_info()
+
+        # Save XML file
+        book.xml_file.save('%s.xml' % book.slug, raw_file, save=False)
 
         book.language = book_info.language
         book.title = book_info.title
@@ -344,46 +271,50 @@ class Book(models.Model):
 
         book.tags = set(meta_tags + book_shelves)
 
-        obsolete_children = set(b for b in book.children.all() if b not in children)
+        cover_changed = old_cover != book.cover_info()
+        obsolete_children = set(b for b in book.children.all()
+                                if b not in children)
+        notify_cover_changed = []
         for n, child_book in enumerate(children):
+            new_child = child_book.parent != book
             child_book.parent = book
             child_book.parent_number = n
             child_book.save()
+            if new_child or cover_changed:
+                notify_cover_changed.append(child_book)
         # Disown unfaithful children and let them cope on their own.
         for child in obsolete_children:
             child.parent = None
             child.parent_number = 0
             child.save()
             tasks.fix_tree_tags.delay(child)
-
-        # Save XML and HTML files
-        book.xml_file.save('%s.xml' % book.slug, raw_file, save=False)
-        book.build_cover(book_info)
+            if old_cover:
+                notify_cover_changed.append(child)
 
         # delete old fragments when overwriting
         book.fragments.all().delete()
-
-        if book.build_html():
-            # No direct saves behind this point.
-            if not settings.NO_BUILD_TXT and build_txt:
-                book.build_txt()
-
-        if not settings.NO_BUILD_EPUB and build_epub:
-            book.build_epub()
-
-        if not settings.NO_BUILD_PDF and build_pdf:
-            book.build_pdf()
-
-        if not settings.NO_BUILD_MOBI and build_mobi:
-            book.build_mobi()
-
-        if not settings.NO_BUILD_FB2 and build_fb2:
-            book.build_fb2()
+        # Build HTML, fix the tree tags, build cover.
+        has_own_text = bool(book.html_file.build())
+        tasks.fix_tree_tags.delay(book)
+        if 'cover' not in dont_build:
+            book.cover.build_delay()
+        
+        # No saves behind this point.
+
+        if has_own_text:
+            for format_ in constants.EBOOK_FORMATS_WITHOUT_CHILDREN:
+                if format_ not in dont_build:
+                    getattr(book, '%s_file' % format_).build_delay()
+        for format_ in constants.EBOOK_FORMATS_WITH_CHILDREN:
+            if format_ not in dont_build:
+                getattr(book, '%s_file' % format_).build_delay()
 
         if not settings.NO_SEARCH_INDEX and search_index:
             tasks.index_book.delay(book.id, book_info=book_info, index_tags=search_index_tags)
 
-        tasks.fix_tree_tags.delay(book)
+        for child in notify_cover_changed:
+            child.parent_cover_changed()
+
         cls.published.send(sender=book)
         return book
 
@@ -403,7 +334,8 @@ class Book(models.Model):
             sub_parent_tags = parent_tags + [book.book_tag()]
             for frag in book.fragments.all():
                 affected_tags.update(frag.tags)
-                frag.tags = list(frag.tags.exclude(category='book')) + sub_parent_tags
+                frag.tags = list(frag.tags.exclude(category='book')
+                                    ) + sub_parent_tags
             for child in book.children.all():
                 affected_tags.update(fix_subtree(child, sub_parent_tags))
             return affected_tags
@@ -424,6 +356,36 @@ class Book(models.Model):
             book.reset_theme_counter()
             book = book.parent
 
+    def cover_info(self, inherit=True):
+        """Returns a dictionary to serve as fallback for BookInfo.
+
+        For now, the only thing inherited is the cover image.
+        """
+        need = False
+        info = {}
+        for field in ('cover_url', 'cover_by', 'cover_source'):
+            val = self.extra_info.get(field)
+            if val:
+                info[field] = val
+            else:
+                need = True
+        if inherit and need and self.parent is not None:
+            parent_info = self.parent.cover_info()
+            parent_info.update(info)
+            info = parent_info
+        return info
+
+    def parent_cover_changed(self):
+        """Called when parent book's cover image is changed."""
+        if not self.cover_info(inherit=False):
+            if 'cover' not in app_settings.DONT_BUILD:
+                self.cover.build_delay()
+            for format_ in constants.EBOOK_FORMATS_WITH_COVERS:
+                if format_ not in app_settings.DONT_BUILD:
+                    getattr(self, '%s_file' % format_).build_delay()
+            for child in self.children.all():
+                child.parent_cover_changed()
+
     def related_info(self):
         """Keeps info about related objects (tags, media) in cache field."""
         if self._related_info is not None:
@@ -616,20 +578,9 @@ class Book(models.Model):
             return None
 
 
-def _has_factory(ftype):
-    has = lambda self: bool(getattr(self, "%s_file" % ftype))
-    has.short_description = ftype.upper()
-    has.__doc__ = None
-    has.boolean = True
-    has.__name__ = "has_%s_file" % ftype
-    return has
-
-    
 # add the file fields
-for t in Book.formats:
-    field_name = "%s_file" % t
-    models.FileField(_("%s file" % t.upper()),
-            upload_to=book_upload_path(t),
-            blank=True).contribute_to_class(Book, field_name)
-
-    setattr(Book, "has_%s_file" % t, _has_factory(t))
+for format_ in Book.formats:
+    field_name = "%s_file" % format_
+    EbookField(format_, _("%s file" % format_.upper()),
+            upload_to=book_upload_path(format_),
+            blank=True, default='').contribute_to_class(Book, field_name)
index 8906a14..e7f7b29 100644 (file)
@@ -34,76 +34,7 @@ def index_book(book_id, book_info=None, **kwargs):
         raise e
 
 
-def _build_ebook(book_id, ext, transform):
-    """Generic ebook builder."""
-    from django.core.files import File
-    from catalogue.models import Book
-
-    book = Book.objects.get(pk=book_id)
-    out = transform(book.wldocument())
-    field_name = '%s_file' % ext
-    # Update instead of saving the model to avoid race condition.
-    getattr(book, field_name).save('%s.%s' % (book.slug, ext),
-            File(open(out.get_filename())),
-            save=False
-        )
-    Book.objects.filter(pk=book_id).update(**{
-            field_name: getattr(book, field_name)
-        })
-
-
-@task(ignore_result=True)
-def build_txt(book_id):
-    """(Re)builds the TXT file for a book."""
-    _build_ebook(book_id, 'txt', lambda doc: doc.as_text())
-
-
-@task(ignore_result=True, rate_limit=settings.CATALOGUE_PDF_RATE_LIMIT)
-def build_pdf(book_id):
-    """(Re)builds the pdf file for a book."""
-    from catalogue.models import Book
-    from catalogue.utils import remove_zip
-    from waiter.utils import clear_cache
-
-    _build_ebook(book_id, 'pdf',
-        lambda doc: doc.as_pdf(morefloats=settings.LIBRARIAN_PDF_MOREFLOATS))
-    # Remove cached downloadables
-    remove_zip(settings.ALL_PDF_ZIP)
-    book = Book.objects.get(pk=book_id)
-    clear_cache(book.slug)
-
-
-@task(ignore_result=True, rate_limit=settings.CATALOGUE_EPUB_RATE_LIMIT)
-def build_epub(book_id):
-    """(Re)builds the EPUB file for a book."""
-    from catalogue.utils import remove_zip
-
-    _build_ebook(book_id, 'epub', lambda doc: doc.as_epub())
-    # remove zip with all epub files
-    remove_zip(settings.ALL_EPUB_ZIP)
-
-
-@task(ignore_result=True, rate_limit=settings.CATALOGUE_MOBI_RATE_LIMIT)
-def build_mobi(book_id):
-    """(Re)builds the MOBI file for a book."""
-    from catalogue.utils import remove_zip
-
-    _build_ebook(book_id, 'mobi', lambda doc: doc.as_mobi())
-    # remove zip with all mobi files
-    remove_zip(settings.ALL_MOBI_ZIP)
-
-
-@task(ignore_result=True, rate_limit=settings.CATALOGUE_FB2_RATE_LIMIT)
-def build_fb2(book_id, *args, **kwargs):
-    """(Re)builds the FB2 file for a book."""
-    from catalogue.utils import remove_zip
-
-    _build_ebook(book_id, 'fb2', lambda doc: doc.as_fb2())
-    # remove zip with all fb2 files
-    remove_zip(settings.ALL_FB2_ZIP)
-
-
-@task(rate_limit=settings.CATALOGUE_CUSTOMPDF_RATE_LIMIT)
+@task(ignore_result=True, rate_limit=settings.CATALOGUE_CUSTOMPDF_RATE_LIMIT)
 def build_custom_pdf(book_id, customizations, file_name):
     """Builds a custom PDF file."""
     from django.core.files import File
@@ -112,7 +43,14 @@ def build_custom_pdf(book_id, customizations, file_name):
 
     print "will gen %s" % DefaultStorage().path(file_name)
     if not DefaultStorage().exists(file_name):
+        kwargs = {
+            'cover': True,
+        }
+        if 'no-cover' in customizations:
+            kwargs['cover'] = False
+            customizations.remove('no-cover')
         pdf = Book.objects.get(pk=book_id).wldocument().as_pdf(
                 customizations=customizations,
-                morefloats=settings.LIBRARIAN_PDF_MOREFLOATS)
+                morefloats=settings.LIBRARIAN_PDF_MOREFLOATS,
+                **kwargs)
         DefaultStorage().save(file_name, File(open(pdf.get_filename())))
index 783b688..4c14158 100644 (file)
@@ -4,7 +4,7 @@
 {% load common_tags catalogue_tags pagination_tags %}
 
 {% block titleextra %}{{ book.pretty_title }}{% endblock %}
-{% block ogimage %}{{ book.cover.url|build_absolute_uri:request }}{% endblock %}
+{% block ogimage %}{% if book.cover %}{{ book.cover.url|build_absolute_uri:request }}{% endif %}{% endblock %}
 
 {% block metadescription %}{% book_title book %}. {{ block.super }}{% endblock %}
 
index d2d5d33..bfe666f 100644 (file)
@@ -46,6 +46,9 @@
             {% if book.mobi_file %}
             <li><a href="{{ book.mobi_file.url}}">MOBI</a> {% trans "for Kindle" %}</li>
             {% endif %}
+            {% if  book.fb2_file %}
+            <li><a href="{{ book.fb2_file.url}}">FB2</a> {% trans "FictionBook" %}</li>
+            {% endif %}
             {% if book.txt_file %}
             <li><a href="{{ book.txt_file.url}}">TXT</a> {% trans "for advanced usage" %}</li>
             {% endif %}
index f42818f..5e02619 100644 (file)
@@ -1,31 +1,33 @@
-from django.conf import settings
-from django.test import TestCase
-import shutil
+# -*- 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 os.path import abspath, dirname, join
 import tempfile
+from traceback import extract_stack
+from django.test import TestCase
+from django.test.utils import override_settings
 from slughifi import slughifi
 from librarian import WLURI
 
+
+@override_settings(
+    MEDIA_ROOT=tempfile.mkdtemp(prefix='djangotest_'),
+    CATALOGUE_DONT_BUILD=set(['pdf', 'mobi', 'epub', 'txt', 'fb2', 'cover']),
+    NO_SEARCH_INDEX = True,
+    CELERY_ALWAYS_EAGER = True,
+    CACHES={
+            'api': {'BACKEND': 'django.core.cache.backends.dummy.DummyCache'},
+            'default': {'BACKEND': 'django.core.cache.backends.dummy.DummyCache'},
+            'permanent': {'BACKEND': 'django.core.cache.backends.dummy.DummyCache'},
+        },
+)
 class WLTestCase(TestCase):
     """
         Generic base class for tests. Adds settings freeze and clears MEDIA_ROOT.
     """
     longMessage = True
 
-    def setUp(self):
-        self._MEDIA_ROOT, settings.MEDIA_ROOT = settings.MEDIA_ROOT, tempfile.mkdtemp(prefix='djangotest_')
-        settings.NO_SEARCH_INDEX = settings.NO_BUILD_PDF = settings.NO_BUILD_MOBI = settings.NO_BUILD_EPUB = settings.NO_BUILD_TXT = settings.NO_BUILD_FB2 = True
-        settings.CELERY_ALWAYS_EAGER = True
-        self._CACHES, settings.CACHES = settings.CACHES, {
-            'default': {
-                'BACKEND': 'django.core.cache.backends.dummy.DummyCache',
-            }
-        }
-
-    def tearDown(self):
-        shutil.rmtree(settings.MEDIA_ROOT, True)
-        settings.MEDIA_ROOT = self._MEDIA_ROOT
-        settings.CACHES = self._CACHES
-
 
 class PersonStub(object):
 
@@ -78,3 +80,13 @@ def info_args(title, language=None):
         'about': u"http://wolnelektury.pl/example/URI/%s" % slug,
         'language': language,
     }
+
+
+def get_fixture(path, app=None):
+    if app is not None:
+        mod_path = app.__file__
+        f_path = join(dirname(abspath(mod_path)), 'tests/files', path)
+    else:
+        mod_path = extract_stack(limit=2)[0][0]
+        f_path = join(dirname(abspath(mod_path)), 'files', path)
+    return f_path
index 9c0163a..17a05b4 100644 (file)
@@ -1,5 +1,6 @@
 from catalogue.tests.book_import import *
 from catalogue.tests.bookmedia import *
+from catalogue.tests.cover import *
 from catalogue.tests.search import *
 from catalogue.tests.tags import *
 from catalogue.tests.templatetags import *
index 09d0e1e..76061d0 100644 (file)
@@ -1,5 +1,5 @@
 # -*- coding: utf-8 -*-
-from __future__ import with_statement
+from django.conf import settings
 
 from django.core.files.base import ContentFile, File
 from catalogue.test_utils import *
@@ -418,7 +418,7 @@ class BookImportGenerateTest(WLTestCase):
         self.book = models.Book.from_xml_file(xml)
 
     def test_gen_pdf(self):
-        self.book.build_pdf()
+        self.book.pdf_file.build()
         book = models.Book.objects.get(pk=self.book.pk)
         self.assertTrue(path.exists(book.pdf_file.path))
 
@@ -426,7 +426,7 @@ class BookImportGenerateTest(WLTestCase):
         """This book contains a child."""
         xml = path.join(path.dirname(__file__), "files/fraszki.xml")
         parent = models.Book.from_xml_file(xml)
-        parent.build_pdf()
+        parent.pdf_file.build()
         parent = models.Book.objects.get(pk=parent.pk)
         self.assertTrue(path.exists(parent.pdf_file.path))
 
index 5d2ba66..da427e8 100644 (file)
@@ -1,4 +1,5 @@
 # -*- coding: utf-8 -*-
+from django.conf import settings
 from os.path import basename, exists, join, dirname
 from django.core.files.base import ContentFile, File
 
diff --git a/apps/catalogue/tests/cover.py b/apps/catalogue/tests/cover.py
new file mode 100755 (executable)
index 0000000..765c56b
--- /dev/null
@@ -0,0 +1,74 @@
+# -*- coding: utf-8 -*-
+from django.core.files.base import ContentFile
+from catalogue.test_utils import BookInfoStub, PersonStub, info_args, WLTestCase
+from catalogue.models import Book
+from mock import patch
+
+
+class CoverTests(WLTestCase):
+    """Checks in parent_cover_changed is properly called."""
+    def setUp(self):
+        WLTestCase.setUp(self)
+        self.TEXT = """<utwor />"""
+        self.child = BookInfoStub(
+            genre='X-Genre',
+            epoch='X-Epoch',
+            kind='X-Kind',
+            author=PersonStub(("Joe",), "Doe"),
+            **info_args("Child")
+        )
+
+        self.parent = BookInfoStub(
+            genre='X-Genre',
+            epoch='X-Epoch',
+            kind='X-Kind',
+            author=PersonStub(("Jim",), "Lazy"),
+            cover_url="http://example.com/cover.jpg",
+            parts=[self.child.url],
+            **info_args("Parent")
+        )
+
+    @patch.object(Book, 'parent_cover_changed', autospec=True)
+    def test_simple_import(self, parent_cover_changed):
+        child = Book.from_text_and_meta(ContentFile(self.TEXT), self.child)
+        parent = Book.from_text_and_meta(ContentFile(self.TEXT), self.parent)
+        parent_cover_changed.assert_called_with(child)
+
+        # Now reimport parent.
+        parent_cover_changed.reset_mock()
+        parent = Book.from_text_and_meta(ContentFile(self.TEXT), self.parent,
+                    overwrite=True)
+        self.assertEqual(parent_cover_changed.call_count, 0)
+        
+        # Now change cover in parent.
+        parent_cover_changed.reset_mock()
+        self.parent.cover_url = "http://example.com/other-cover.jpg"
+        parent = Book.from_text_and_meta(ContentFile(self.TEXT), self.parent,
+                    overwrite=True)
+        parent_cover_changed.assert_called_with(child)
+
+    @patch.object(Book, 'parent_cover_changed', autospec=True)
+    def test_change_cover(self, parent_cover_changed):
+        child = Book.from_text_and_meta(ContentFile(self.TEXT), self.child)
+        parent = Book.from_text_and_meta(ContentFile(self.TEXT), self.parent)
+        parent_cover_changed.assert_called_with(child)
+
+    @patch.object(Book, 'parent_cover_changed', autospec=True)
+    def test_new_child(self, parent_cover_changed):
+        # Add parent without child first.
+        parts, self.parent.parts = self.parent.parts, []
+        parent = Book.from_text_and_meta(ContentFile(self.TEXT), self.parent)
+
+        # Now import child and reimport parent.
+        child = Book.from_text_and_meta(ContentFile(self.TEXT), self.child)
+        self.parent.parts = parts
+        parent = Book.from_text_and_meta(ContentFile(self.TEXT), self.parent,
+                    overwrite=True)
+        parent_cover_changed.assert_called_with(child)
+
+        # Now remove the child.
+        parent_cover_changed.reset_mock()
+        self.parent.parts = []
+        parent = Book.from_text_and_meta(ContentFile(self.TEXT), self.parent,
+                    overwrite=True)
+        parent_cover_changed.assert_called_with(child)
index bda7e04..1ac0ee8 100644 (file)
@@ -276,3 +276,27 @@ def clear_custom_pdf(book):
     """
     from waiter.utils import clear_cache
     clear_cache('book/%s' % book.slug)
+
+
+class AppSettings(object):
+    """Allows specyfying custom settings for an app, with default values.
+
+    Just subclass, set some properties and instantiate with a prefix.
+    Getting a SETTING from an instance will check for prefix_SETTING
+    in project settings if set, else take the default. The value will be
+    then filtered through _more_SETTING method, if there is one.
+
+    """
+    def __init__(self, prefix):
+        self._prefix = prefix
+
+    def __getattribute__(self, name):
+        if name.startswith('_'):
+            return object.__getattribute__(self, name)
+        value = getattr(settings,
+                         "%s_%s" % (self._prefix, name),
+                         object.__getattribute__(self, name))
+        more = "_more_%s" % name
+        if hasattr(self, more):
+            value = getattr(self, more)(value)
+        return value
index 52d6871..375bb22 100644 (file)
@@ -21,8 +21,7 @@ class Note(models.Model):
 
 
 @task(ignore_result=True)
-def build_notes(book_id):
-    book = Book.objects.get(pk=book_id)
+def build_notes(book):
     Note.objects.filter(book=book).delete()
     if book.html_file:
         from librarian import html
@@ -31,6 +30,6 @@ def build_notes(book_id):
                                html=html_str, 
                                sort_key=sortify(text_str).strip()[:128])
     
-@Book.html_built.connect
 def notes_from_book(sender, **kwargs):
-    build_notes.delat(sender)
+    build_notes.delay(sender)
+Book.html_built.connect(notes_from_book)
index 0de7c5e..27285cc 100755 (executable)
@@ -13,13 +13,11 @@ class DictionaryTests(WLTestCase):
     def setUp(self):
         WLTestCase.setUp(self)
         self.book_info = BookInfoStub(
-            url=u"http://wolnelektury.pl/example/default-book",
-            about=u"http://wolnelektury.pl/example/URI/default_book",
-            title=u"Default Book",
             author=PersonStub(("Jim",), "Lazy"),
             kind="X-Kind",
             genre="X-Genre",
             epoch="X-Epoch",
+            **info_args(u"Default Book")
         )
 
     def test_book_with_footnote(self):
index a2a814b..4208d9b 100755 (executable)
@@ -16,7 +16,7 @@ class NotesView(ListView):
             objects = objects.filter(sort_key__regex=r"^[0-9]")
         elif self.letter:
             objects = objects.filter(sort_key__startswith=self.letter)
-        return ListView.get_queryset(self)
+        return objects
 
     def get_context_data(self, **kwargs):
         context = super(NotesView, self).get_context_data(**kwargs)
index 6ef3b09..b4947fe 100644 (file)
@@ -19,8 +19,9 @@ class BookMetadataTest(WLTestCase):
         xml = path.join(path.dirname(__file__), 'files/antygona.xml')
         self.book2 = models.Book.from_xml_file(xml)
 
-        self.catalogue = Catalogue()
         mr = MetadataRegistry()
+        self.catalogue = Catalogue(mr)
+
         mr.registerWriter('oai_dc', oai_dc_writer)
         nsmap = {'oai_dc': NS_OAIDC, 'dc': NS_DC, 'xsi': NS_XSI}
         self.xml = XMLTreeServer(self.catalogue, mr, nsmap)
diff --git a/apps/opds/tests/__init__.py b/apps/opds/tests/__init__.py
new file mode 100755 (executable)
index 0000000..d6e9ca0
--- /dev/null
@@ -0,0 +1,55 @@
+# -*- coding: utf-8 -*-
+from lxml import etree
+from django.core.files.base import ContentFile
+import catalogue
+from catalogue.test_utils import (BookInfoStub, PersonStub, info_args,
+        WLTestCase, get_fixture)
+from catalogue.models import Book
+from librarian import WLURI, XMLNamespace
+
+AtomNS = XMLNamespace("http://www.w3.org/2005/Atom")
+
+
+class OpdsSearchTests(WLTestCase):
+    """Tests search feed in OPDS.."""
+    def setUp(self):
+        WLTestCase.setUp(self)
+        with self.settings(NO_SEARCH_INDEX=False):
+            self.do_doktora = Book.from_xml_file(
+                get_fixture('do-doktora.xml'))
+            self.do_anusie = Book.from_xml_file(
+                get_fixture('fraszka-do-anusie.xml', catalogue))
+
+    def assert_finds(self, query, books):
+        """Takes a query and tests against books expected to be found."""
+        tree = etree.fromstring(
+            self.client.get('/opds/search/?%s' % query).content)
+        elem_ids = tree.findall('.//%s/%s' % (AtomNS('entry'), AtomNS('id')))
+        slugs = [WLURI(elem.text).slug for elem in elem_ids]
+        self.assertEqual(set(slugs), set(b.slug for b in books),
+            u"OPDS search '%s' failed." % query)
+
+    def test_opds_search_simple(self):
+        """Do a simple q= test, also emulate dumb OPDS clients."""
+        both = set([self.do_doktora, self.do_anusie])
+        self.assert_finds('q=fraszka', both)
+        self.assert_finds('q=fraszka&author={opds:author}', both)
+
+    def test_opds_search_title(self):
+        """Search by title."""
+        both = set([self.do_doktora, self.do_anusie])
+        self.assert_finds('title=fraszka', both)
+        self.assert_finds('title=fraszka', both)
+        self.assert_finds('q=title:fraszka', [self.do_doktora])
+
+    def test_opds_search_author(self):
+        """Search by author."""
+        self.assert_finds('q=fraszka&author=Kochanowski', [self.do_doktora])
+        self.assert_finds('q=fraszka+author:Kochanowski', [self.do_doktora])
+        self.assert_finds('q=Kochanowski', [self.do_doktora])
+
+    def test_opds_search_translator(self):
+        """Search by translator."""
+        self.assert_finds('q=fraszka&translator=Fikcyjny', [self.do_doktora])
+        self.assert_finds('q=fraszka+translator:Fikcyjny', [self.do_doktora])
+        self.assert_finds('q=Fikcyjny', [self.do_doktora])
diff --git a/apps/opds/tests/files/do-doktora.xml b/apps/opds/tests/files/do-doktora.xml
new file mode 100644 (file)
index 0000000..53c1724
--- /dev/null
@@ -0,0 +1,56 @@
+<utwor>
+  <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
+<rdf:Description rdf:about="http://redakcja.wolnelektury.pl/documents/book/fraszki-ksiegi-trzecie-do-doktora-fraszka-a-doktor-to-sa-dwi/">
+<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/" xml:lang="pl">Kochanowski, Jan</dc:creator>
+<dc:title xmlns:dc="http://purl.org/dc/elements/1.1/" xml:lang="pl">Do doktora (Fraszka a doktor — to są dwie rzeczy przeciwne...)</dc:title>
+<dc:relation.isPartOf xmlns:dc="http://purl.org/dc/elements/1.1/" xml:lang="pl">http://wolnelektury.pl/lektura/fraszki-ksiegi-trzecie</dc:relation.isPartOf>
+<dc:contributor.editor xmlns:dc="http://purl.org/dc/elements/1.1/" xml:lang="pl">Krzyżanowski, Julian</dc:contributor.editor>
+<dc:contributor.editor xmlns:dc="http://purl.org/dc/elements/1.1/" xml:lang="pl">Otwinowska, Barbara</dc:contributor.editor>
+<dc:contributor.editor xmlns:dc="http://purl.org/dc/elements/1.1/" xml:lang="pl">Sekuła, Aleksandra</dc:contributor.editor>
+<dc:contributor.technical_editor xmlns:dc="http://purl.org/dc/elements/1.1/" xml:lang="pl">Sutkowska, Olga</dc:contributor.technical_editor>
+<dc:contributor.technical_editor xmlns:dc="http://purl.org/dc/elements/1.1/" xml:lang="pl">Gałecki, Dariusz</dc:contributor.technical_editor>
+<dc:contributor.translator xmlns:dc="http://purl.org/dc/elements/1.1/" xml:lang="pl">Fikcyjny, Tłumacz</dc:contributor.translator>
+<dc:publisher xmlns:dc="http://purl.org/dc/elements/1.1/" xml:lang="pl">Fundacja Nowoczesna Polska</dc:publisher>
+<dc:subject.period xmlns:dc="http://purl.org/dc/elements/1.1/" xml:lang="pl">Renesans</dc:subject.period>
+<dc:subject.type xmlns:dc="http://purl.org/dc/elements/1.1/" xml:lang="pl">Liryka</dc:subject.type>
+<dc:subject.genre xmlns:dc="http://purl.org/dc/elements/1.1/" xml:lang="pl">Fraszka</dc:subject.genre>
+<dc:description xmlns:dc="http://purl.org/dc/elements/1.1/" xml:lang="pl">Publikacja zrealizowana w ramach projektu Wolne Lektury (http://wolnelektury.pl). Reprodukcja cyfrowa wykonana przez Bibliotekę Narodową z egzemplarza pochodzącego ze zbiorów BN.</dc:description>
+<dc:identifier.url xmlns:dc="http://purl.org/dc/elements/1.1/" xml:lang="pl">http://wolnelektury.pl/katalog/lektura/fraszki-ksiegi-trzecie-do-doktora-fraszka-a-doktor-to-sa-dwi</dc:identifier.url>
+<dc:source.URL xmlns:dc="http://purl.org/dc/elements/1.1/" xml:lang="pl">http://www.polona.pl/dlibra/doccontent2?id=1499&amp;from=editionindex&amp;dirids=1</dc:source.URL>
+<dc:source xmlns:dc="http://purl.org/dc/elements/1.1/" xml:lang="pl">Jan Kochanowski, Dzieła polskie, tom 1, Państwowy Instytut Wydawniczy, wyd. 8, Warszawa, 1976</dc:source>
+<dc:rights xmlns:dc="http://purl.org/dc/elements/1.1/" xml:lang="pl">Domena publiczna - Jan Kochanowski zm. 1584</dc:rights>
+<dc:date.pd xmlns:dc="http://purl.org/dc/elements/1.1/" xml:lang="pl">1584</dc:date.pd>
+<dc:format xmlns:dc="http://purl.org/dc/elements/1.1/" xml:lang="pl">xml</dc:format>
+<dc:type xmlns:dc="http://purl.org/dc/elements/1.1/" xml:lang="pl">text</dc:type>
+<dc:type xmlns:dc="http://purl.org/dc/elements/1.1/" xml:lang="en">text</dc:type>
+<dc:date xmlns:dc="http://purl.org/dc/elements/1.1/" xml:lang="pl">2007-09-07</dc:date>
+<dc:audience xmlns:dc="http://purl.org/dc/elements/1.1/" xml:lang="pl">SP2</dc:audience>
+<dc:audience xmlns:dc="http://purl.org/dc/elements/1.1/" xml:lang="pl">G</dc:audience>
+<dc:audience xmlns:dc="http://purl.org/dc/elements/1.1/" xml:lang="pl">L</dc:audience>
+<dc:language xmlns:dc="http://purl.org/dc/elements/1.1/" xml:lang="pl">pol</dc:language>
+<dc:relation.coverImage.url xmlns:dc="http://purl.org/dc/elements/1.1/">http://redakcja.wolnelektury.pl/media/dynamic/cover/image/607.jpg</dc:relation.coverImage.url>
+<dc:relation.coverImage.attribution xmlns:dc="http://purl.org/dc/elements/1.1/">Artondra Hall@Flickr, CC BY 2.0</dc:relation.coverImage.attribution>
+<dc:relation.coverImage.source xmlns:dc="http://purl.org/dc/elements/1.1/">http://redakcja.wolnelektury.pl/cover/image/607</dc:relation.coverImage.source>
+</rdf:Description>
+</rdf:RDF>
+  <liryka_l>
+
+<autor_utworu>Jan Kochanowski</autor_utworu>
+
+<dzielo_nadrzedne>Fraszki, Księgi wtóre</dzielo_nadrzedne>
+
+<nazwa_utworu>Do doktora<pr>Żartobliwy ton każe przypuszczać, iż adresatem wierszyka jest Jakub Montanus (por. przyp. do fr. II 49).</pr></nazwa_utworu>
+
+
+
+<strofa>Fraszka a doktor --- to są dwie rzeczy przeciwne;/
+Przeto u mnie, doktorze, twe żądanie dziwne,/
+Że do mnie ślesz po fraszki, tak daleko k'temu;/
+Ja jednak dosyć czynię rozkazaniu twemu./
+Ty strzeż swojej powagi, nie baw się fraszkami,/
+Ale mi je odeśli prędkimi nogami,/
+A nie dziwuj się, że je tak drogo szacuję,/
+Bo chocia fraszki, przedsię w nich doktory czuję.</strofa>
+
+</liryka_l>
+</utwor>
\ No newline at end of file
index 202acdd..785aa6d 100644 (file)
@@ -2,11 +2,11 @@
 from __future__ import with_statement
 
 from os import path
-from django.test import TestCase
 from picture.models import Picture
+from catalogue.test_utils import WLTestCase
 
 
-class PictureTest(TestCase):
+class PictureTest(WLTestCase):
     
     def test_import(self):
         picture = Picture.from_xml_file(path.join(path.dirname(__file__), "files/kandinsky-composition-viii.xml"))
index 7382888..5155a84 100644 (file)
@@ -1,33 +1,24 @@
 # -*- coding: utf-8 -*-
-
-from __future__ import with_statement
-
 from django.conf import settings
-from search import Index, Search, IndexStore, JVM, SearchResult
-from catalogue import models
+from django.test.utils import override_settings
 from catalogue.test_utils import WLTestCase
 from lucene import PolishAnalyzer, Version
-#from nose.tools import raises
 from os import path
+import tempfile
+from catalogue import models
+from search import Search, SearchResult
 
 
+@override_settings(
+    SEARCH_INDEX = tempfile.mkdtemp(prefix='djangotest_search_'),
+)
 class BookSearchTests(WLTestCase):
     def setUp(self):
-        JVM.attachCurrentThread()
         WLTestCase.setUp(self)
-        settings.NO_SEARCH_INDEX = False
-        settings.SEARCH_INDEX = path.join(settings.MEDIA_ROOT, 'search')
 
         txt = path.join(path.dirname(__file__), 'files/fraszka-do-anusie.xml')
-        self.book = models.Book.from_xml_file(txt)
-
-        index = Index()
-        index.open()
-        try:
-            index.index_book(self.book)
-        except:
-            index.close()
-
+        with self.settings(NO_SEARCH_INDEX=False):
+            self.book = models.Book.from_xml_file(txt)
         self.search = Search()
 
     def test_search_perfect_book_author(self):
diff --git a/apps/wolnelektury_core/templates/account/base.html b/apps/wolnelektury_core/templates/account/base.html
new file mode 100755 (executable)
index 0000000..6bcdf12
--- /dev/null
@@ -0,0 +1,10 @@
+{% extends "site_base.html" %}
+
+{% block body %}
+{% block content %} {% endblock %}
+{% endblock %}
+
+{% block extrabody %}
+{% block extra_body %}
+{% endblock %}
+{% endblock %}
index fb9b144..f9ff45e 100755 (executable)
@@ -49,7 +49,6 @@
         <ul>
             <li><a href="{% url suggest %}" id="suggest" class="ajaxable">{% trans "Report a bug or suggestion" %}</a></li>
             <!--li><a href="http://turniej.wolnelektury.pl">Turniej Elektrybałtów</a></li-->
-            <li><a href="{% url lesmianator %}">Leśmianator</a></li>
             <li><a href="{% url reporting_catalogue_pdf %}">
                        {% trans "Download the catalogue in PDF format." %}
                </a></li>
@@ -57,6 +56,9 @@
             <li><a href="{% url suggest_publishing %}" id="suggest-publishing" class="ajaxable">{% trans "Missing a book?" %}</a></li>
             <li><a href="{% url publish_plan %}">{% trans "Publishing plan" %}</a></li>
             <li><a href="{% url api %}">API</a></li>
+            <li><a href="{% url lesmianator %}">Leśmianator</a></li>
+            <li><a href="http://polski.wolnelektury.pl">Materiały do nauki j. polskiego</a></li>
+            
         </ul>
     </div>
 
index d183a3c..8059679 160000 (submodule)
@@ -1 +1 @@
-Subproject commit d183a3c15dee46ea00ac15c77e72903adfce8d1a
+Subproject commit 8059679abd4a0a2e554457dd6266941a31356f73
index d766c07..1f10213 100644 (file)
@@ -2,3 +2,4 @@ nose>=0.11
 django-nose
 nosexcover
 polib
+mock
index 53ff47d..c7e33c2 100644 (file)
@@ -10,7 +10,10 @@ django-piston<=0.2.3
 #django-jsonfield
 -e git+git://github.com/bradjasper/django-jsonfield.git@2f427368ad70bf8d9a0580df58ec0eb0654d62ae#egg=django-jsonfield
 django-picklefield
-django-allauth>=0.4,<0.5
+#django-allauth>=0.4,<0.5
+# version of django-allauth 0.4 with install script fixed
+-e git+git://github.com/pennersr/django-allauth.git@3a03db9b2ecca370af228df367bd8fa52afea5ea#egg=django-allauth
+
 django-honeypot
 django-uni-form
 
diff --git a/wolnelektury/locale-contrib/de/LC_MESSAGES/django.mo b/wolnelektury/locale-contrib/de/LC_MESSAGES/django.mo
new file mode 100644 (file)
index 0000000..d42ae5a
Binary files /dev/null and b/wolnelektury/locale-contrib/de/LC_MESSAGES/django.mo differ
index 14b2665..096febd 100644 (file)
@@ -7,9 +7,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2012-07-19 11:40+0200\n"
-"PO-Revision-Date: 2012-04-29 23:45+0100\n"
-"Last-Translator: Kamil <kjaklukowski@gmail.com>\n"
+"POT-Creation-Date: 2012-08-14 17:40+0200\n"
+"PO-Revision-Date: 2012-08-14 17:50+0100\n"
+"Last-Translator: Radek Czajka <radoslaw.czajka@nowoczesnapolska.org.pl>\n"
 "Language-Team: de <LL@li.org>\n"
 "Plural-Forms: nplurals=2; plural=(n != 1)\n"
 "MIME-Version: 1.0\n"
@@ -17,400 +17,352 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Generated-By: Babel 0.9.6\n"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:36
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:167
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:341
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:36
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:191
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:358
 msgid "Password"
 msgstr "Password"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:40
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:40
 msgid "Remember Me"
 msgstr "Einspeichern"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:52
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:113
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:284
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:363
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:52
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:139
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:301
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:380
 msgid "E-mail"
 msgstr "E-Mail"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:57
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:104
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:57
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:130
 msgid "Username"
 msgstr "Username"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:85
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:85
 msgid "This account is currently inactive."
 msgstr "Dieses Account ist zurzeit inaktiv."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:88
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:88
 msgid "The e-mail address and/or password you specified are not correct."
 msgstr "Die E-Mail-Adresse und/oder das Password sind nicht korrekt."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:90
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:90
 msgid "The username and/or password you specified are not correct."
 msgstr "Der Username ist nicht korrekt."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:116
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:142
 msgid "E-mail (optional)"
 msgstr "E-Mail (fakultativ)"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:127
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:153
 msgid "Usernames can only contain letters, numbers and underscores."
 msgstr "Usernamen können nur aus Buchstaben, Ziffern"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:133
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:159
 msgid "This username is already taken. Please choose another."
 msgstr "Dieser Username ist schon besetzt. Wählen Sie bitte einen anderen."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:141
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:167
 msgid "A user is registered with this e-mail address."
 msgstr "Ein User ist schon mit dieser E-Mail-Adresse verbunden."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:171
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:345
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:195
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:362
 msgid "Password (again)"
 msgstr "Password (nochmals)"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:198
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:330
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:352
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:428
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:225
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:347
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:369
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:444
 msgid "You must type the same password each time."
 msgstr "Sie müssen dasselbe Password jedesmal eintippen."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:234
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:260
 msgid "Your e-mail address has already been verified"
 msgstr "Ihre E-Mail-Adresse wurd erfolgreich verifiziert."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:244
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/utils.py:93
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:101
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:117
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:270
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:123
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:93
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:109
 #, python-format
 msgid "Confirmation e-mail sent to %(email)s"
 msgstr "BestBestätigungsmail an %(email)s gesendet"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:292
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:309
 msgid "This e-mail address already associated with this account."
 msgstr "Die E-Mail ist schon mit diesem Account verbunden."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:293
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:310
 msgid "This e-mail address already associated with another account."
 msgstr "Diese E-Mail-Adresse ist schon mit einem anderen Account verbunden."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:310
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:327
 msgid "Current Password"
 msgstr "Aktuelles Password"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:314
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:411
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:331
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:427
 msgid "New Password"
 msgstr "Neues Password"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:318
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:415
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:335
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:431
 msgid "New Password (again)"
 msgstr "Neues Password (nochmals)"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:324
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:341
 msgid "Please type your current password."
 msgstr "Tippe Ihr Password ein."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:373
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:390
 msgid "The e-mail address is not assigned to any user account"
 msgstr "Diese E-Mail-Adresse ist noch mit keinem anderen Account verbunden."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:393
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:409
 msgid "Password Reset E-mail"
 msgstr "Password neu stellen E-Mail"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/utils.py:72
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:84
 #, python-format
 msgid "Successfully signed in as %(user)s."
 msgstr "Erfolgreich als %(user)s eingeloggt."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:133
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:125
 #, python-format
 msgid "Removed e-mail address %(email)s"
 msgstr "Die E-Mail-Adresse %(email)s gelöscht."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:147
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:139
 msgid "Primary e-mail address set"
 msgstr "Die Haupt-Email-Adresse eingestellt"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:168
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:241
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:160
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:233
 msgid "Password successfully changed."
 msgstr "Password erfolgreich geändert."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:191
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:183
 msgid "Password successfully set."
 msgstr "Password erfolgreich erstellt."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:255
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/logout.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:247
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/logout.html:10
 msgid "You have signed out."
 msgstr "Sie haben sich ausgeloggt."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/openid/forms.py:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/openid/forms.py:6
 msgid "OpenID"
 msgstr "OpenID"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/forms.py:32
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:33
 msgid "Your local account has no password setup."
 msgstr "Ihr lokales Account hat keine Schlüsselworteinstellung"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/forms.py:36
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:37
 msgid "Your local account has no verified e-mail address."
 msgstr "Ihr lokales Account hat keine verfizierte Email-Adresse"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/helpers.py:112
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/helpers.py:111
 msgid "The social account has been connected to your existing account"
 msgstr "Das Social-Network-Account wurde mit Ihrem Account verbunden."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:89
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:89
 #, python-format
 msgid "Invalid response while obtaining request token from \"%s\"."
 msgstr "Falsche Antwort beim Erhalten des Fragentokens von \"%s\"."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:111
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:111
 #, python-format
 msgid "Invalid response while obtaining access token from \"%s\"."
 msgstr "Falsche Antwort beim Erhalten des Zugangstokens von \"%s\"."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:124
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:124
 #, python-format
 msgid "No request token saved for \"%s\"."
 msgstr "Keine Fragentokens für \"%s\" gespeichert."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:172
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:172
 #, python-format
 msgid "No access token saved for \"%s\"."
 msgstr "Keine Zugangstokens für \"%s\" gespeichert."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:192
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:192
 #, python-format
 msgid "No access to private resources at \"%s\"."
 msgstr "Kein Zugagng zu privaten Angaben bei \"%s\"."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/views.py:68
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/views.py:68
 msgid "The social account has been disconnected"
 msgstr "Das Social-Account wurde abgeschaltet."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:5
 msgid "Account"
 msgstr "Account"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:8
 msgid "E-mail Addresses"
 msgstr "E-Mail Adresse"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:10
 msgid "The following e-mail addresses are associated to your account:"
 msgstr "Die folgenden E-Mail-Adressen wurden mit Ihrem Account verbunden:"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:26
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:24
 msgid "Verified"
 msgstr "Verifiziert"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:28
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:26
 msgid "Unverified"
 msgstr "Unverifiziert"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:30
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:28
 msgid "Primary"
 msgstr "Primär"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:36
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:34
 msgid "Make Primary"
 msgstr "Stelle als primär ein"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:37
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:35
 msgid "Re-send Verification"
 msgstr "Verifizierung wiedersenden"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:38
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:36
 msgid "Remove"
 msgstr "Entfernen"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:45
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:43
 msgid "Warning:"
 msgstr "Warnung:"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:45
-msgid ""
-"You currently do not have any e-mail address set up. You should really "
-"add an e-mail address so you can receive notifications, reset your "
-"password, etc."
-msgstr ""
-"Sie haben jetzt keine Email-Adresse eingestellt. Sie sollen eine Email-"
-"Adresse einstellen, um Ihr Schlüsselwort zu resetieren, um wichtige "
-"Informationen zu bekommen."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:43
+msgid "You currently do not have any e-mail address set up. You should really add an e-mail address so you can receive notifications, reset your password, etc."
+msgstr "Sie haben jetzt keine Email-Adresse eingestellt. Sie sollen eine Email-Adresse einstellen, um Ihr Schlüsselwort zu resetieren, um wichtige Informationen zu bekommen."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:50
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:48
 msgid "Add E-mail Address"
 msgstr "E-Mail-Adress eintippen"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:57
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:53
 msgid "Add E-mail"
 msgstr "Add E-Mail eintippen"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:69
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:63
 msgid "Do you really want to remove the selected e-mail address?"
 msgstr "Wollen Sie wirklich die angegebene E-Mail-Adresse löschen?"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/language_change.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/language_change.html:9
-msgid "Language"
-msgstr "Sprache"
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/language_change.html:11
-msgid "Pinax can be used in your preferred language."
-msgstr "Pinax kann in der bevorzugten Sprache benutzt werden"
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/language_change.html:18
-msgid "Change my language"
-msgstr "Sprache wechseln"
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:7
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:12
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:47
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:43
 msgid "Sign In"
 msgstr "Anmelden"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:20
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:19
 #, python-format
 msgid ""
 "Please sign in with one\n"
 "of your existing third party accounts. Or, <a \n"
-"href=\"%(signup_url)s\">sign up</a> for a %(site_name)s account and sign "
-"in\n"
+"href=\"%(signup_url)s\">sign up</a> for a %(site_name)s account and sign in\n"
 "below:"
 msgstr ""
 "Loggen Sie sich bitte ein mit einem\n"
 "von Accounts einer dritten Partei. Oder, <a \n"
-"href=\"%(signup_url)s\">registrieren Sie</a> for a %(site_name)s den "
-"Account und loggen Sie sich ein\n"
+"href=\"%(signup_url)s\">registrieren Sie</a> for a %(site_name)s den Account und loggen Sie sich ein\n"
 "hierunter:"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:28
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:27
 msgid "or"
 msgstr "oder"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:45
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:42
 msgid "Forgot Password?"
 msgstr "Password vergessen?"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/logout.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/logout.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/logout.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/logout.html:8
 msgid "Signed Out"
 msgstr "Ausgeloggt"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_change.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_change.html:8
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_change.html:15
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_change.html:4
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_change.html:7
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_change.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:4
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:7
 msgid "Change Password"
 msgstr "Password ändern"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete.html:8
 msgid "Delete Password"
 msgstr "Password löschen"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete.html:9
-msgid ""
-"You may delete your password since you are currently logged in using "
-"OpenID."
-msgstr ""
-"Sie können Ihr Schlüsselwort löschen, weil Sie jetzt durch OpenID "
-"eingeloggt sind."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete.html:9
+msgid "You may delete your password since you are currently logged in using OpenID."
+msgstr "Sie können Ihr Schlüsselwort löschen, weil Sie jetzt durch OpenID eingeloggt sind."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete.html:12
 msgid "delete my password"
 msgstr "Password löschen"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete_done.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete_done.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete_done.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete_done.html:8
 msgid "Password Deleted"
 msgstr "Password gelöscht"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete_done.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete_done.html:9
 msgid "Your password has been deleted."
 msgstr "Password wurde gelöscht."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:7
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:11
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_done.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_done.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_done.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_done.html:9
 msgid "Password Reset"
 msgstr "Password neu erstellen"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:16
-msgid ""
-"Forgotten your password? Enter your e-mail address below, and we'll send "
-"you an e-mail allowing you to reset it."
-msgstr ""
-"Password vergessen? Tippe unten Ihre E-Mail-Adresse ein, dann senden wir "
-"Ihnen eine E-Mail, um das Password zu ändern."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:15
+msgid "Forgotten your password? Enter your e-mail address below, and we'll send you an e-mail allowing you to reset it."
+msgstr "Password vergessen? Tippe unten Ihre E-Mail-Adresse ein, dann senden wir Ihnen eine E-Mail, um das Password zu ändern."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:23
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:20
 msgid "Reset My Password"
 msgstr "Password neu erstellen"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:28
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:23
 #, python-format
-msgid ""
-"If you have any trouble resetting your password, contact us at <a "
-"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
-msgstr ""
-"Falls Sie Probleme haben, Ihr Schlüsselwort neu zu stellen, wenden Sie "
-"isch biite an uns <a "
-"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+msgid "If you have any trouble resetting your password, contact us at <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+msgstr "Falls Sie Probleme haben, Ihr Schlüsselwort neu zu stellen, wenden Sie isch biite an uns <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_done.html:15
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_done.html:15
 #, python-format
-msgid ""
-"We have sent you an e-mail. If you do not receive it within a few "
-"minutes, contact us at <a "
-"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
-msgstr ""
-"Wir haben Ihnen eine Email geschickt. Falls Sie sie nicht innerhalb von "
-"einigen Minuten erhalten, wenden Sie sich bitte an uns <a "
-"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+msgid "We have sent you an e-mail. If you do not receive it within a few minutes, contact us at <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+msgstr "Wir haben Ihnen eine Email geschickt. Falls Sie sie nicht innerhalb von einigen Minuten erhalten, wenden Sie sich bitte an uns <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:7
 msgid "Bad Token"
 msgstr "Falscher Token"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:11
 #, python-format
-msgid ""
-"The password reset link was invalid, possibly because it has already been"
-" used.  Please request a <a href=\"%(passwd_reset_url)s\">new password "
-"reset</a>."
-msgstr ""
-"Der Passwort-Reset-Link war falsch, da er schon möglicherweise benutzt "
-"worden war. Bitten Sie um ein <a href=\"%(passwd_reset_url)s\">Reset "
-"eines neuen Passwortes</a>."
+msgid "The password reset link was invalid, possibly because it has already been used.  Please request a <a href=\"%(passwd_reset_url)s\">new password reset</a>."
+msgstr "Der Passwort-Reset-Link war falsch, da er schon möglicherweise benutzt worden war. Bitten Sie um ein <a href=\"%(passwd_reset_url)s\">Reset eines neuen Passwortes</a>."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:20
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:17
 msgid "change password"
 msgstr "Password ändern"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:25
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:20
 msgid "Your password is now changed."
 msgstr "Password wurde geändert"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_key_message.txt:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_key_message.txt:9
 #, python-format
 msgid ""
-"You're receiving this e-mail because you or someone else has requested a "
-"password for your user account at %(site_domain)s.\n"
-"It can be safely ignored if you did not request a password reset. Click "
-"the link below to reset your password.\n"
+"You're receiving this e-mail because you or someone else has requested a password for your user account at %(site_domain)s.\n"
+"It can be safely ignored if you did not request a password reset. Click the link below to reset your password.\n"
 "\n"
 "%(password_reset_url)s\n"
 "\n"
@@ -418,10 +370,7 @@ msgid ""
 "\n"
 "Thanks for using our site!\n"
 msgstr ""
-"Sie bekommen diese Email an %(site_domain)s, weil Sie or jemand anderer "
-"Ihr Schlüsselwort erhalten will. Sie können diese Nachricht ignorieren, "
-"wenn Sie um Neustellung des Schlüssekworts nicht gebeten haben. Klicken "
-"Sie an das Link unten, um Ihr Schlüsselwort neu zu stellen.\n"
+"Sie bekommen diese Email an %(site_domain)s, weil Sie or jemand anderer Ihr Schlüsselwort erhalten will. Sie können diese Nachricht ignorieren, wenn Sie um Neustellung des Schlüssekworts nicht gebeten haben. Klicken Sie an das Link unten, um Ihr Schlüsselwort neu zu stellen.\n"
 "\n"
 "%(password_reset_url)s\n"
 "\n"
@@ -429,157 +378,155 @@ msgstr ""
 "\n"
 "Vielen dank, dass Sie unsere Webseite benutzt haben!\n"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_set.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_set.html:9
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_set.html:16
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_set.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_set.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_set.html:13
 msgid "Set Password"
 msgstr "Password erstellen"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/signup.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:5
 msgid "Signup"
 msgstr "Registrieren"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:9
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:24
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/signup.html:9
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/signup.html:22
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:21
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:19
 msgid "Sign Up"
 msgstr "Anmelden"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:14
-msgid "Already have an account?"
-msgstr "Haben Sie schon ein Account?"
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:14
-msgid "Sign in"
-msgstr "Anmelden"
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/timezone_change.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/timezone_change.html:9
-msgid "Timezone"
-msgstr "Zeitzone"
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/timezone_change.html:11
-msgid ""
-"Pinax can localize all times into your preferred timezone. Change your "
-"timezone below."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:13
+#, python-format
+msgid "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
 msgstr ""
-"Pinax kann alle Zeiten in Ihre Zeitzone lokalisieren. Wechseln Sie Ihre "
-"Zeitzone hierunter."
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/timezone_change.html:18
-msgid "Change my timezone"
-msgstr "Zeitzone wechseln"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/verification_sent.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/verification_sent.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verification_sent.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verification_sent.html:8
 msgid "Verify Your E-mail Address"
 msgstr "Verifizieren Sie Ihre E-Mail-Adresse"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/verification_sent.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verification_sent.html:10
 #, python-format
-msgid ""
-"We have sent you an e-mail to <b>%(email)s</b> for verification. Follow "
-"the link provided to finalize the signup process. If you do not receive "
-"it within a few minutes, contact us at <a "
-"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
-msgstr ""
-"Wir haben Ihnen eine Email geschickt. <b>%(email)s</b> wegen der "
-"Verifizierung. Klicken Sie an das Link, um die Registrierung zu "
-"finalisieren.Falls Sie sie nicht innerhalb von einigen Minuten erhalten, "
-"wenden Sie sich bitte an uns <a "
-"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+msgid "We have sent you an e-mail to <b>%(email)s</b> for verification. Follow the link provided to finalize the signup process. If you do not receive it within a few minutes, contact us at <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+msgstr "Wir haben Ihnen eine Email geschickt. <b>%(email)s</b> wegen der Verifizierung. Klicken Sie an das Link, um die Registrierung zu finalisieren.Falls Sie sie nicht innerhalb von einigen Minuten erhalten, wenden Sie sich bitte an uns <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/snippets/already_logged_in.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/snippets/already_logged_in.html:5
 msgid "Note"
 msgstr "Notiz"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/snippets/already_logged_in.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/snippets/already_logged_in.html:5
 #, python-format
 msgid "you are already logged in as %(user_display)s."
 msgstr "Sie sind schon als %(user_display)s eingeloggt."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/emailconfirmation/confirm_email.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/emailconfirmation/confirm_email.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:8
 msgid "E-mail Address Confirmation"
 msgstr "E-Mail-Adresse-Bestätigung"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/emailconfirmation/confirm_email.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:11
 #, python-format
-msgid ""
-"You have confirmed that <a href=\"mailto:%(email)s\">%(email)s</a> is an "
-"e-mail address for user '%(user)s'."
-msgstr ""
-"Sie haben bestätigt, dass <a href=\"mailto:%(email)s\">%(email)s</a> ist "
-"mit dem User '%(user)s' verbunden."
+msgid "You have confirmed that <a href=\"mailto:%(email)s\">%(email)s</a> is an e-mail address for user '%(user)s'."
+msgstr "Sie haben bestätigt, dass <a href=\"mailto:%(email)s\">%(email)s</a> ist mit dem User '%(user)s' verbunden."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/emailconfirmation/confirm_email.html:13
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:13
 msgid "Invalid confirmation key."
 msgstr "Bestätigungsschlüssel fehlerhaft eingetippt."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/openid/login.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/email_confirmation_message.txt:4
+#, python-format
+msgid ""
+"User '%(user)s' at %(site_name)s has given this as an email address.\n"
+"\n"
+"To confirm this is correct, go to %(activate_url)s\n"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/email_confirmation_subject.txt:1
+#, fuzzy
+msgid "Confirm E-mail Address"
+msgstr "Die Haupt-Email-Adresse eingestellt"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/openid/login.html:9
 msgid "OpenID Sign In"
 msgstr "OpenID Registrieren"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/account_inactive.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/account_inactive.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/account_inactive.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/account_inactive.html:8
 msgid "Account Inactive"
 msgstr "Inaktives Account"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/account_inactive.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/account_inactive.html:10
 msgid "This account is inactive."
 msgstr "Dieses Account ist inaktiv."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/authentication_error.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/authentication_error.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/authentication_error.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/authentication_error.html:8
 msgid "Social Network Login Failure"
 msgstr "Social-Networt-Login Fehler"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/authentication_error.html:10
-msgid ""
-"An error occured while attempting to login via your social network "
-"account."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/authentication_error.html:10
+msgid "An error occured while attempting to login via your social network account."
 msgstr "Ein Fehler ist eingetreten beim Einloggen mithilfe Social-Networt-Account."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/connections.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/connections.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:8
 msgid "Account Connections"
 msgstr "Account-Beziehungen"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/connections.html:11
-msgid ""
-"You can sign in to your account using any of the following third party "
-"accounts:"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:11
+msgid "You can sign in to your account using any of the following third party accounts:"
 msgstr "Sie können sich einloggen mittels eines von folgenden Accounts Dritter:"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/connections.html:46
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:46
 msgid "Add a 3rd Party Account"
 msgstr "Fügen Sie ein fremdes Account hinzu."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/login_cancelled.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/login_cancelled.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:9
 msgid "Login Cancelled"
 msgstr "Login annulliert"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/login_cancelled.html:13
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:13
 #, 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 <a "
-"href=\"%(login_url)s\">sign in</a>."
-msgstr ""
-"Sie haben sich entschieden, das Einloggen in unsere Webseite mittels "
-"eines von Ihren existierenden Accounts. Falls dies ein Fehler war, gehen "
-"Sie auf <a href=\"%(login_url)s\">sign in</a>."
+msgid "You decided to cancel logging in to our site using one of your exisiting accounts. If this was a mistake, please proceed to <a href=\"%(login_url)s\">sign in</a>."
+msgstr "Sie haben sich entschieden, das Einloggen in unsere Webseite mittels eines von Ihren existierenden Accounts. Falls dies ein Fehler war, gehen Sie auf <a href=\"%(login_url)s\">sign in</a>."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/signup.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:11
 #, python-format
 msgid ""
 "You are about to use your %(provider_name)s account to login to \n"
 "%(site_name)s. As a final step, please complete the following form:"
 msgstr ""
 "Sie werden Ihr  %(provider_name)s Account benutzen, um\n"
-"sich in %(site_name)s einzuloggen. Der letzte Schritt ist, den folgenden "
-"Formular auszufüllen"
+"sich in %(site_name)s einzuloggen. Der letzte Schritt ist, den folgenden Formular auszufüllen"
+
+#~ msgid "Language"
+#~ msgstr "Sprache"
+
+#~ msgid "Pinax can be used in your preferred language."
+#~ msgstr "Pinax kann in der bevorzugten Sprache benutzt werden"
+
+#~ msgid "Change my language"
+#~ msgstr "Sprache wechseln"
+
+#~ msgid "Already have an account?"
+#~ msgstr "Haben Sie schon ein Account?"
+
+#~ msgid "Sign in"
+#~ msgstr "Anmelden"
+
+#~ msgid "Timezone"
+#~ msgstr "Zeitzone"
+
+#~ msgid ""
+#~ "Pinax can localize all times into "
+#~ "your preferred timezone. Change your "
+#~ "timezone below."
+#~ msgstr ""
+#~ "Pinax kann alle Zeiten in Ihre "
+#~ "Zeitzone lokalisieren. Wechseln Sie Ihre "
+#~ "Zeitzone hierunter."
 
+#~ msgid "Change my timezone"
+#~ msgstr "Zeitzone wechseln"
index a50d614..2962c6e 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2012-07-19 11:40+0200\n"
+"POT-Creation-Date: 2012-08-14 17:40+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17,266 +17,253 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Generated-By: Babel 0.9.6\n"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:36
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:167
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:341
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:36
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:191
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:358
 msgid "Password"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:40
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:40
 msgid "Remember Me"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:52
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:113
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:284
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:363
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:52
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:139
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:301
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:380
 msgid "E-mail"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:57
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:104
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:57
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:130
 msgid "Username"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:85
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:85
 msgid "This account is currently inactive."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:88
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:88
 msgid "The e-mail address and/or password you specified are not correct."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:90
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:90
 msgid "The username and/or password you specified are not correct."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:116
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:142
 msgid "E-mail (optional)"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:127
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:153
 msgid "Usernames can only contain letters, numbers and underscores."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:133
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:159
 msgid "This username is already taken. Please choose another."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:141
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:167
 msgid "A user is registered with this e-mail address."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:171
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:345
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:195
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:362
 msgid "Password (again)"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:198
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:330
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:352
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:428
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:225
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:347
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:369
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:444
 msgid "You must type the same password each time."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:234
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:260
 msgid "Your e-mail address has already been verified"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:244
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/utils.py:93
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:101
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:117
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:270
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:123
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:93
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:109
 #, python-format
 msgid "Confirmation e-mail sent to %(email)s"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:292
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:309
 msgid "This e-mail address already associated with this account."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:293
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:310
 msgid "This e-mail address already associated with another account."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:310
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:327
 msgid "Current Password"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:314
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:411
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:331
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:427
 msgid "New Password"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:318
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:415
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:335
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:431
 msgid "New Password (again)"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:324
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:341
 msgid "Please type your current password."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:373
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:390
 msgid "The e-mail address is not assigned to any user account"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:393
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:409
 msgid "Password Reset E-mail"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/utils.py:72
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:84
 #, python-format
 msgid "Successfully signed in as %(user)s."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:133
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:125
 #, python-format
 msgid "Removed e-mail address %(email)s"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:147
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:139
 msgid "Primary e-mail address set"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:168
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:241
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:160
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:233
 msgid "Password successfully changed."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:191
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:183
 msgid "Password successfully set."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:255
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/logout.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:247
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/logout.html:10
 msgid "You have signed out."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/openid/forms.py:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/openid/forms.py:6
 msgid "OpenID"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/forms.py:32
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:33
 msgid "Your local account has no password setup."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/forms.py:36
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:37
 msgid "Your local account has no verified e-mail address."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/helpers.py:112
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/helpers.py:111
 msgid "The social account has been connected to your existing account"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:89
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:89
 #, python-format
 msgid "Invalid response while obtaining request token from \"%s\"."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:111
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:111
 #, python-format
 msgid "Invalid response while obtaining access token from \"%s\"."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:124
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:124
 #, python-format
 msgid "No request token saved for \"%s\"."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:172
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:172
 #, python-format
 msgid "No access token saved for \"%s\"."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:192
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:192
 #, python-format
 msgid "No access to private resources at \"%s\"."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/views.py:68
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/views.py:68
 msgid "The social account has been disconnected"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:5
 msgid "Account"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:8
 msgid "E-mail Addresses"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:10
 msgid "The following e-mail addresses are associated to your account:"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:26
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:24
 msgid "Verified"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:28
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:26
 msgid "Unverified"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:30
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:28
 msgid "Primary"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:36
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:34
 msgid "Make Primary"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:37
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:35
 msgid "Re-send Verification"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:38
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:36
 msgid "Remove"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:45
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:43
 msgid "Warning:"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:45
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:43
 msgid ""
 "You currently do not have any e-mail address set up. You should really "
 "add an e-mail address so you can receive notifications, reset your "
 "password, etc."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:50
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:48
 msgid "Add E-mail Address"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:57
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:53
 msgid "Add E-mail"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:69
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:63
 msgid "Do you really want to remove the selected e-mail address?"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/language_change.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/language_change.html:9
-msgid "Language"
-msgstr ""
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/language_change.html:11
-msgid "Pinax can be used in your preferred language."
-msgstr ""
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/language_change.html:18
-msgid "Change my language"
-msgstr ""
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:7
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:12
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:47
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:43
 msgid "Sign In"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:20
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:19
 #, python-format
 msgid ""
 "Please sign in with one\n"
@@ -286,76 +273,76 @@ msgid ""
 "below:"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:28
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:27
 msgid "or"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:45
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:42
 msgid "Forgot Password?"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/logout.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/logout.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/logout.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/logout.html:8
 msgid "Signed Out"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_change.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_change.html:8
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_change.html:15
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_change.html:4
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_change.html:7
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_change.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:4
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:7
 msgid "Change Password"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete.html:8
 msgid "Delete Password"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete.html:9
 msgid ""
 "You may delete your password since you are currently logged in using "
 "OpenID."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete.html:12
 msgid "delete my password"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete_done.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete_done.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete_done.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete_done.html:8
 msgid "Password Deleted"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete_done.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete_done.html:9
 msgid "Your password has been deleted."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:7
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:11
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_done.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_done.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_done.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_done.html:9
 msgid "Password Reset"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:16
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:15
 msgid ""
 "Forgotten your password? Enter your e-mail address below, and we'll send "
 "you an e-mail allowing you to reset it."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:23
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:20
 msgid "Reset My Password"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:28
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:23
 #, python-format
 msgid ""
 "If you have any trouble resetting your password, contact us at <a "
 "href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_done.html:15
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_done.html:15
 #, python-format
 msgid ""
 "We have sent you an e-mail. If you do not receive it within a few "
@@ -363,11 +350,11 @@ msgid ""
 "href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:7
 msgid "Bad Token"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:11
 #, python-format
 msgid ""
 "The password reset link was invalid, possibly because it has already been"
@@ -375,15 +362,15 @@ msgid ""
 "reset</a>."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:20
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:17
 msgid "change password"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:25
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:20
 msgid "Your password is now changed."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_key_message.txt:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_key_message.txt:9
 #, python-format
 msgid ""
 "You're receiving this e-mail because you or someone else has requested a "
@@ -398,53 +385,37 @@ msgid ""
 "Thanks for using our site!\n"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_set.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_set.html:9
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_set.html:16
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_set.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_set.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_set.html:13
 msgid "Set Password"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/signup.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:5
 msgid "Signup"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:9
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:24
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/signup.html:9
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/signup.html:22
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:21
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:19
 msgid "Sign Up"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:14
-msgid "Already have an account?"
-msgstr ""
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:14
-msgid "Sign in"
-msgstr ""
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/timezone_change.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/timezone_change.html:9
-msgid "Timezone"
-msgstr ""
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/timezone_change.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:13
+#, python-format
 msgid ""
-"Pinax can localize all times into your preferred timezone. Change your "
-"timezone below."
-msgstr ""
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/timezone_change.html:18
-msgid "Change my timezone"
+"Already have an account? Then please <a href=\"%(login_url)s\">sign "
+"in</a>."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/verification_sent.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/verification_sent.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verification_sent.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verification_sent.html:8
 msgid "Verify Your E-mail Address"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/verification_sent.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verification_sent.html:10
 #, python-format
 msgid ""
 "We have sent you an e-mail to <b>%(email)s</b> for verification. Follow "
@@ -453,76 +424,88 @@ msgid ""
 "href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/snippets/already_logged_in.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/snippets/already_logged_in.html:5
 msgid "Note"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/snippets/already_logged_in.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/snippets/already_logged_in.html:5
 #, python-format
 msgid "you are already logged in as %(user_display)s."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/emailconfirmation/confirm_email.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/emailconfirmation/confirm_email.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:8
 msgid "E-mail Address Confirmation"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/emailconfirmation/confirm_email.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:11
 #, python-format
 msgid ""
 "You have confirmed that <a href=\"mailto:%(email)s\">%(email)s</a> is an "
 "e-mail address for user '%(user)s'."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/emailconfirmation/confirm_email.html:13
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:13
 msgid "Invalid confirmation key."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/openid/login.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/email_confirmation_message.txt:4
+#, python-format
+msgid ""
+"User '%(user)s' at %(site_name)s has given this as an email address.\n"
+"\n"
+"To confirm this is correct, go to %(activate_url)s\n"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/email_confirmation_subject.txt:1
+msgid "Confirm E-mail Address"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/openid/login.html:9
 msgid "OpenID Sign In"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/account_inactive.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/account_inactive.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/account_inactive.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/account_inactive.html:8
 msgid "Account Inactive"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/account_inactive.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/account_inactive.html:10
 msgid "This account is inactive."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/authentication_error.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/authentication_error.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/authentication_error.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/authentication_error.html:8
 msgid "Social Network Login Failure"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/authentication_error.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/authentication_error.html:10
 msgid ""
 "An error occured while attempting to login via your social network "
 "account."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/connections.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/connections.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:8
 msgid "Account Connections"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/connections.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:11
 msgid ""
 "You can sign in to your account using any of the following third party "
 "accounts:"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/connections.html:46
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:46
 msgid "Add a 3rd Party Account"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/login_cancelled.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/login_cancelled.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:9
 msgid "Login Cancelled"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/login_cancelled.html:13
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:13
 #, python-format
 msgid ""
 "You decided to cancel logging in to our site using one of your exisiting "
@@ -530,7 +513,7 @@ msgid ""
 "href=\"%(login_url)s\">sign in</a>."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/signup.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:11
 #, python-format
 msgid ""
 "You are about to use your %(provider_name)s account to login to \n"
diff --git a/wolnelektury/locale-contrib/en/LC_MESSAGES/django.mo b/wolnelektury/locale-contrib/en/LC_MESSAGES/django.mo
new file mode 100644 (file)
index 0000000..9786db9
Binary files /dev/null and b/wolnelektury/locale-contrib/en/LC_MESSAGES/django.mo differ
index 8e9a2ba..41fcb74 100644 (file)
@@ -7,9 +7,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2012-07-19 11:40+0200\n"
-"PO-Revision-Date: 2012-04-29 23:31+0100\n"
-"Last-Translator: Kamil <kjaklukowski@gmail.com>\n"
+"POT-Creation-Date: 2012-08-14 17:40+0200\n"
+"PO-Revision-Date: 2012-08-14 17:50+0100\n"
+"Last-Translator: Radek Czajka <radoslaw.czajka@nowoczesnapolska.org.pl>\n"
 "Language-Team: en <LL@li.org>\n"
 "Plural-Forms: nplurals=2; plural=(n != 1)\n"
 "MIME-Version: 1.0\n"
@@ -17,399 +17,352 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Generated-By: Babel 0.9.6\n"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:36
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:167
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:341
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:36
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:191
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:358
 msgid "Password"
 msgstr "Password"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:40
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:40
 msgid "Remember Me"
 msgstr "Remember Me"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:52
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:113
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:284
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:363
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:52
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:139
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:301
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:380
 msgid "E-mail"
 msgstr "E-mail"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:57
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:104
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:57
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:130
 msgid "Username"
 msgstr "Username"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:85
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:85
 msgid "This account is currently inactive."
 msgstr "This account is currently inactive."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:88
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:88
 msgid "The e-mail address and/or password you specified are not correct."
 msgstr "The e-mail address and/or password you specified are not correct."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:90
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:90
 msgid "The username and/or password you specified are not correct."
 msgstr "The username and/or password you specified are not correct."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:116
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:142
 msgid "E-mail (optional)"
 msgstr "E-mail (optional)"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:127
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:153
 msgid "Usernames can only contain letters, numbers and underscores."
 msgstr "Usernames can only contain letters, numbers and underscores."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:133
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:159
 msgid "This username is already taken. Please choose another."
 msgstr "This username is already taken. Please choose another."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:141
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:167
 msgid "A user is registered with this e-mail address."
 msgstr "A user is registered with this e-mail address."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:171
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:345
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:195
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:362
 msgid "Password (again)"
 msgstr "Password (again)"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:198
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:330
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:352
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:428
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:225
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:347
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:369
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:444
 msgid "You must type the same password each time."
 msgstr "You must type the same password each time."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:234
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:260
 msgid "Your e-mail address has already been verified"
 msgstr "Your e-mail address has already been verified"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:244
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/utils.py:93
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:101
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:117
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:270
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:123
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:93
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:109
 #, python-format
 msgid "Confirmation e-mail sent to %(email)s"
 msgstr "Confirmation e-mail sent to %(email)s"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:292
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:309
 msgid "This e-mail address already associated with this account."
 msgstr "This e-mail address already associated with this account."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:293
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:310
 msgid "This e-mail address already associated with another account."
 msgstr "This e-mail address already associated with another account."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:310
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:327
 msgid "Current Password"
 msgstr "Current Password"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:314
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:411
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:331
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:427
 msgid "New Password"
 msgstr "New Password"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:318
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:415
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:335
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:431
 msgid "New Password (again)"
 msgstr "New Password (again)"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:324
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:341
 msgid "Please type your current password."
 msgstr "Please type your current password."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:373
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:390
 msgid "The e-mail address is not assigned to any user account"
 msgstr "The e-mail address is not assigned to any user account"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:393
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:409
 msgid "Password Reset E-mail"
 msgstr "Password Reset E-mail"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/utils.py:72
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:84
 #, python-format
 msgid "Successfully signed in as %(user)s."
 msgstr "Successfully signed in as %(user)s."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:133
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:125
 #, python-format
 msgid "Removed e-mail address %(email)s"
 msgstr "Removed e-mail address %(email)s"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:147
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:139
 msgid "Primary e-mail address set"
 msgstr "Primary e-mail address set"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:168
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:241
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:160
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:233
 msgid "Password successfully changed."
 msgstr "Password successfully changed."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:191
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:183
 msgid "Password successfully set."
 msgstr "Password successfully set."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:255
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/logout.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:247
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/logout.html:10
 msgid "You have signed out."
 msgstr "You have signed out."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/openid/forms.py:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/openid/forms.py:6
 msgid "OpenID"
 msgstr "OpenID"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/forms.py:32
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:33
 msgid "Your local account has no password setup."
 msgstr "Your local account has no password setup."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/forms.py:36
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:37
 msgid "Your local account has no verified e-mail address."
 msgstr "Your local account has no verified e-mail address."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/helpers.py:112
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/helpers.py:111
 msgid "The social account has been connected to your existing account"
 msgstr "The social account has been connected to your existing account"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:89
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:89
 #, python-format
 msgid "Invalid response while obtaining request token from \"%s\"."
 msgstr "Invalid response while obtaining request token from \"%s\"."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:111
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:111
 #, python-format
 msgid "Invalid response while obtaining access token from \"%s\"."
 msgstr "Invalid response while obtaining access token from \"%s\"."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:124
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:124
 #, python-format
 msgid "No request token saved for \"%s\"."
 msgstr "No request token saved for \"%s\"."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:172
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:172
 #, python-format
 msgid "No access token saved for \"%s\"."
 msgstr "No access token saved for \"%s\"."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:192
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:192
 #, python-format
 msgid "No access to private resources at \"%s\"."
 msgstr "No access to private resources at \"%s\"."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/views.py:68
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/views.py:68
 msgid "The social account has been disconnected"
 msgstr "The social account has been disconnected"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:5
 msgid "Account"
 msgstr "Account"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:8
 msgid "E-mail Addresses"
 msgstr "E-mail Addresses"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:10
 msgid "The following e-mail addresses are associated to your account:"
 msgstr "The following e-mail addresses are associated to your account:"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:26
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:24
 msgid "Verified"
 msgstr "Verified"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:28
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:26
 msgid "Unverified"
 msgstr "Unverified"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:30
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:28
 msgid "Primary"
 msgstr "Primary"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:36
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:34
 msgid "Make Primary"
 msgstr "Make Primary"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:37
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:35
 msgid "Re-send Verification"
 msgstr "Re-send Verification"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:38
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:36
 msgid "Remove"
 msgstr "Remove"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:45
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:43
 msgid "Warning:"
 msgstr "Warning:"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:45
-msgid ""
-"You currently do not have any e-mail address set up. You should really "
-"add an e-mail address so you can receive notifications, reset your "
-"password, etc."
-msgstr ""
-"You currently do not have any e-mail address set up. You should really "
-"add an e-mail address so you can receive notifications, reset your "
-"password, etc."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:43
+msgid "You currently do not have any e-mail address set up. You should really add an e-mail address so you can receive notifications, reset your password, etc."
+msgstr "You currently do not have any e-mail address set up. You should really add an e-mail address so you can receive notifications, reset your password, etc."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:50
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:48
 msgid "Add E-mail Address"
 msgstr "Add E-mail Address"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:57
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:53
 msgid "Add E-mail"
 msgstr "Add E-mail"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:69
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:63
 msgid "Do you really want to remove the selected e-mail address?"
 msgstr "Do you really want to remove the selected e-mail address?"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/language_change.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/language_change.html:9
-msgid "Language"
-msgstr "Language"
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/language_change.html:11
-msgid "Pinax can be used in your preferred language."
-msgstr "Pinax can be used in your preferred language."
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/language_change.html:18
-msgid "Change my language"
-msgstr "Change my language"
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:7
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:12
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:47
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:43
 msgid "Sign In"
 msgstr "Sign In"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:20
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:19
 #, python-format
 msgid ""
 "Please sign in with one\n"
 "of your existing third party accounts. Or, <a \n"
-"href=\"%(signup_url)s\">sign up</a> for a %(site_name)s account and sign "
-"in\n"
+"href=\"%(signup_url)s\">sign up</a> for a %(site_name)s account and sign in\n"
 "below:"
 msgstr ""
 "Please sign in with one\n"
 "of your existing third party accounts. Or, <a \n"
-"href=\"%(signup_url)s\">sign up</a> for a %(site_name)s account and sign "
-"in\n"
+"href=\"%(signup_url)s\">sign up</a> for a %(site_name)s account and sign in\n"
 "below:"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:28
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:27
 msgid "or"
 msgstr "or"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:45
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:42
 msgid "Forgot Password?"
 msgstr "Forgot Password?"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/logout.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/logout.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/logout.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/logout.html:8
 msgid "Signed Out"
 msgstr "Signed Out"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_change.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_change.html:8
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_change.html:15
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_change.html:4
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_change.html:7
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_change.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:4
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:7
 msgid "Change Password"
 msgstr "Change Password"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete.html:8
 msgid "Delete Password"
 msgstr "Delete Password"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete.html:9
-msgid ""
-"You may delete your password since you are currently logged in using "
-"OpenID."
-msgstr ""
-"You may delete your password since you are currently logged in using "
-"OpenID."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete.html:9
+msgid "You may delete your password since you are currently logged in using OpenID."
+msgstr "You may delete your password since you are currently logged in using OpenID."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete.html:12
 msgid "delete my password"
 msgstr "delete my password"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete_done.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete_done.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete_done.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete_done.html:8
 msgid "Password Deleted"
 msgstr "Password Deleted"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete_done.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete_done.html:9
 msgid "Your password has been deleted."
 msgstr "Your password has been deleted."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:7
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:11
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_done.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_done.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_done.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_done.html:9
 msgid "Password Reset"
 msgstr "Password Reset"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:16
-msgid ""
-"Forgotten your password? Enter your e-mail address below, and we'll send "
-"you an e-mail allowing you to reset it."
-msgstr ""
-"Forgotten your password? Enter your e-mail address below, and we'll send "
-"you an e-mail allowing you to reset it."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:15
+msgid "Forgotten your password? Enter your e-mail address below, and we'll send you an e-mail allowing you to reset it."
+msgstr "Forgotten your password? Enter your e-mail address below, and we'll send you an e-mail allowing you to reset it."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:23
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:20
 msgid "Reset My Password"
 msgstr "Reset My Password"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:28
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:23
 #, python-format
-msgid ""
-"If you have any trouble resetting your password, contact us at <a "
-"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
-msgstr ""
-"If you have any trouble resetting your password, contact us at <a "
-"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+msgid "If you have any trouble resetting your password, contact us at <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+msgstr "If you have any trouble resetting your password, contact us at <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_done.html:15
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_done.html:15
 #, python-format
-msgid ""
-"We have sent you an e-mail. If you do not receive it within a few "
-"minutes, contact us at <a "
-"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
-msgstr ""
-"We have sent you an e-mail. If you do not receive it within a few "
-"minutes, contact us at <a "
-"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+msgid "We have sent you an e-mail. If you do not receive it within a few minutes, contact us at <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+msgstr "We have sent you an e-mail. If you do not receive it within a few minutes, contact us at <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:7
 msgid "Bad Token"
 msgstr "Bad Token"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:11
 #, python-format
-msgid ""
-"The password reset link was invalid, possibly because it has already been"
-" used.  Please request a <a href=\"%(passwd_reset_url)s\">new password "
-"reset</a>."
-msgstr ""
-"The password reset link was invalid, possibly because it has already been"
-" used.  Please request a <a href=\"%(passwd_reset_url)s\">new password "
-"reset</a>."
+msgid "The password reset link was invalid, possibly because it has already been used.  Please request a <a href=\"%(passwd_reset_url)s\">new password reset</a>."
+msgstr "The password reset link was invalid, possibly because it has already been used.  Please request a <a href=\"%(passwd_reset_url)s\">new password reset</a>."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:20
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:17
 msgid "change password"
 msgstr "change password"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:25
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:20
 msgid "Your password is now changed."
 msgstr "Your password is now changed."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_key_message.txt:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_key_message.txt:9
 #, python-format
 msgid ""
-"You're receiving this e-mail because you or someone else has requested a "
-"password for your user account at %(site_domain)s.\n"
-"It can be safely ignored if you did not request a password reset. Click "
-"the link below to reset your password.\n"
+"You're receiving this e-mail because you or someone else has requested a password for your user account at %(site_domain)s.\n"
+"It can be safely ignored if you did not request a password reset. Click the link below to reset your password.\n"
 "\n"
 "%(password_reset_url)s\n"
 "\n"
@@ -417,10 +370,8 @@ msgid ""
 "\n"
 "Thanks for using our site!\n"
 msgstr ""
-"You're receiving this e-mail because you or someone else has requested a "
-"password for your user account at %(site_domain)s.\n"
-"It can be safely ignored if you did not request a password reset. Click "
-"the link below to reset your password.\n"
+"You're receiving this e-mail because you or someone else has requested a password for your user account at %(site_domain)s.\n"
+"It can be safely ignored if you did not request a password reset. Click the link below to reset your password.\n"
 "\n"
 "%(password_reset_url)s\n"
 "\n"
@@ -428,154 +379,121 @@ msgstr ""
 "\n"
 "Thanks for using our site!\n"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_set.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_set.html:9
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_set.html:16
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_set.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_set.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_set.html:13
 msgid "Set Password"
 msgstr "Set Password"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/signup.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:5
 msgid "Signup"
 msgstr "Signup"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:9
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:24
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/signup.html:9
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/signup.html:22
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:21
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:19
 msgid "Sign Up"
 msgstr "Sign Up"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:14
-msgid "Already have an account?"
-msgstr "Already have an account?"
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:14
-msgid "Sign in"
-msgstr "Sign in"
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/timezone_change.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/timezone_change.html:9
-msgid "Timezone"
-msgstr "Timezone"
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/timezone_change.html:11
-msgid ""
-"Pinax can localize all times into your preferred timezone. Change your "
-"timezone below."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:13
+#, python-format
+msgid "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
 msgstr ""
-"Pinax can localize all times into your preferred timezone. Change your "
-"timezone below."
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/timezone_change.html:18
-msgid "Change my timezone"
-msgstr "Change my timezone"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/verification_sent.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/verification_sent.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verification_sent.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verification_sent.html:8
 msgid "Verify Your E-mail Address"
 msgstr "Verify Your E-mail Address"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/verification_sent.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verification_sent.html:10
 #, python-format
-msgid ""
-"We have sent you an e-mail to <b>%(email)s</b> for verification. Follow "
-"the link provided to finalize the signup process. If you do not receive "
-"it within a few minutes, contact us at <a "
-"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
-msgstr ""
-"We have sent you an e-mail to <b>%(email)s</b> for verification. Follow "
-"the link provided to finalize the signup process. If you do not receive "
-"it within a few minutes, contact us at <a "
-"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+msgid "We have sent you an e-mail to <b>%(email)s</b> for verification. Follow the link provided to finalize the signup process. If you do not receive it within a few minutes, contact us at <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+msgstr "We have sent you an e-mail to <b>%(email)s</b> for verification. Follow the link provided to finalize the signup process. If you do not receive it within a few minutes, contact us at <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/snippets/already_logged_in.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/snippets/already_logged_in.html:5
 msgid "Note"
 msgstr "Note"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/snippets/already_logged_in.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/snippets/already_logged_in.html:5
 #, python-format
 msgid "you are already logged in as %(user_display)s."
 msgstr "you are already logged in as %(user_display)s."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/emailconfirmation/confirm_email.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/emailconfirmation/confirm_email.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:8
 msgid "E-mail Address Confirmation"
 msgstr "E-mail Address Confirmation"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/emailconfirmation/confirm_email.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:11
 #, python-format
-msgid ""
-"You have confirmed that <a href=\"mailto:%(email)s\">%(email)s</a> is an "
-"e-mail address for user '%(user)s'."
-msgstr ""
-"You have confirmed that <a href=\"mailto:%(email)s\">%(email)s</a> is an "
-"e-mail address for user '%(user)s'."
+msgid "You have confirmed that <a href=\"mailto:%(email)s\">%(email)s</a> is an e-mail address for user '%(user)s'."
+msgstr "You have confirmed that <a href=\"mailto:%(email)s\">%(email)s</a> is an e-mail address for user '%(user)s'."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/emailconfirmation/confirm_email.html:13
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:13
 msgid "Invalid confirmation key."
 msgstr "Invalid confirmation key."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/openid/login.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/email_confirmation_message.txt:4
+#, python-format
+msgid ""
+"User '%(user)s' at %(site_name)s has given this as an email address.\n"
+"\n"
+"To confirm this is correct, go to %(activate_url)s\n"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/email_confirmation_subject.txt:1
+#, fuzzy
+msgid "Confirm E-mail Address"
+msgstr "Primary e-mail address set"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/openid/login.html:9
 msgid "OpenID Sign In"
 msgstr "OpenID Sign In"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/account_inactive.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/account_inactive.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/account_inactive.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/account_inactive.html:8
 msgid "Account Inactive"
 msgstr "Account Inactive"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/account_inactive.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/account_inactive.html:10
 msgid "This account is inactive."
 msgstr "This account is inactive."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/authentication_error.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/authentication_error.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/authentication_error.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/authentication_error.html:8
 msgid "Social Network Login Failure"
 msgstr "Social Network Login Failure"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/authentication_error.html:10
-msgid ""
-"An error occured while attempting to login via your social network "
-"account."
-msgstr ""
-"An error occured while attempting to login via your social network "
-"account."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/authentication_error.html:10
+msgid "An error occured while attempting to login via your social network account."
+msgstr "An error occured while attempting to login via your social network account."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/connections.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/connections.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:8
 msgid "Account Connections"
 msgstr "Account Connections"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/connections.html:11
-msgid ""
-"You can sign in to your account using any of the following third party "
-"accounts:"
-msgstr ""
-"You can sign in to your account using any of the following third party "
-"accounts:"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:11
+msgid "You can sign in to your account using any of the following third party accounts:"
+msgstr "You can sign in to your account using any of the following third party accounts:"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/connections.html:46
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:46
 msgid "Add a 3rd Party Account"
 msgstr "Add a 3rd Party Account"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/login_cancelled.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/login_cancelled.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:9
 msgid "Login Cancelled"
 msgstr "Login Cancelled"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/login_cancelled.html:13
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:13
 #, 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 <a "
-"href=\"%(login_url)s\">sign in</a>."
-msgstr ""
-"You decided to cancel logging in to our site using one of your exisiting "
-"accounts. If this was a mistake, please proceed to <a "
-"href=\"%(login_url)s\">sign in</a>."
+msgid "You decided to cancel logging in to our site using one of your exisiting accounts. If this was a mistake, please proceed to <a href=\"%(login_url)s\">sign in</a>."
+msgstr "You decided to cancel logging in to our site using one of your exisiting accounts. If this was a mistake, please proceed to <a href=\"%(login_url)s\">sign in</a>."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/signup.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:11
 #, python-format
 msgid ""
 "You are about to use your %(provider_name)s account to login to \n"
@@ -584,3 +502,32 @@ msgstr ""
 "You are about to use your %(provider_name)s account to login to \n"
 "%(site_name)s. As a final step, please complete the following form:"
 
+#~ msgid "Language"
+#~ msgstr "Language"
+
+#~ msgid "Pinax can be used in your preferred language."
+#~ msgstr "Pinax can be used in your preferred language."
+
+#~ msgid "Change my language"
+#~ msgstr "Change my language"
+
+#~ msgid "Already have an account?"
+#~ msgstr "Already have an account?"
+
+#~ msgid "Sign in"
+#~ msgstr "Sign in"
+
+#~ msgid "Timezone"
+#~ msgstr "Timezone"
+
+#~ msgid ""
+#~ "Pinax can localize all times into "
+#~ "your preferred timezone. Change your "
+#~ "timezone below."
+#~ msgstr ""
+#~ "Pinax can localize all times into "
+#~ "your preferred timezone. Change your "
+#~ "timezone below."
+
+#~ msgid "Change my timezone"
+#~ msgstr "Change my timezone"
index 46eb730..e447419 100644 (file)
Binary files a/wolnelektury/locale-contrib/es/LC_MESSAGES/django.mo and b/wolnelektury/locale-contrib/es/LC_MESSAGES/django.mo differ
index d8bf417..d317ca4 100644 (file)
@@ -7,9 +7,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2012-07-19 11:40+0200\n"
-"PO-Revision-Date: 2012-06-04 13:07+0100\n"
-"Last-Translator: x <x>\n"
+"POT-Creation-Date: 2012-08-14 17:40+0200\n"
+"PO-Revision-Date: 2012-08-14 17:50+0100\n"
+"Last-Translator: Radek Czajka <radoslaw.czajka@nowoczesnapolska.org.pl>\n"
 "Language-Team: es <LL@li.org>\n"
 "Plural-Forms: nplurals=2; plural=(n != 1)\n"
 "MIME-Version: 1.0\n"
@@ -17,402 +17,352 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Generated-By: Babel 0.9.6\n"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:36
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:167
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:341
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:36
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:191
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:358
 msgid "Password"
 msgstr "Contraseña"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:40
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:40
 msgid "Remember Me"
 msgstr "Recuérdame"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:52
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:113
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:284
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:363
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:52
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:139
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:301
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:380
 msgid "E-mail"
 msgstr "Correo elctrónico"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:57
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:104
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:57
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:130
 msgid "Username"
 msgstr "Nombre de usuario"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:85
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:85
 msgid "This account is currently inactive."
 msgstr "Esta cuenta de usuario está actualmente inactiva."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:88
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:88
 msgid "The e-mail address and/or password you specified are not correct."
 msgstr "El correo electrónico y/o contraseña son incorrectos."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:90
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:90
 msgid "The username and/or password you specified are not correct."
 msgstr "El nombre de usuario y/o contraseña son incorrectos."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:116
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:142
 msgid "E-mail (optional)"
 msgstr "Correo elctrónico (opcional)"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:127
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:153
 msgid "Usernames can only contain letters, numbers and underscores."
 msgstr "Nombre de usuario sólo puede consistir de letras, números y guiones bajos"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:133
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:159
 msgid "This username is already taken. Please choose another."
 msgstr "El nombre de usuario está ocupado. Por favor, elija otro."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:141
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:167
 msgid "A user is registered with this e-mail address."
 msgstr "Un usuario está registrado con esta direccin de correo electrónico."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:171
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:345
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:195
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:362
 msgid "Password (again)"
 msgstr "Contraseña (otra vez)"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:198
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:330
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:352
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:428
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:225
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:347
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:369
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:444
 msgid "You must type the same password each time."
 msgstr "Tiene que introducir cada vez la misma contraseña."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:234
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:260
 msgid "Your e-mail address has already been verified"
 msgstr "Su correo electrónico ha sido verificado"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:244
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/utils.py:93
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:101
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:117
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:270
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:123
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:93
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:109
 #, python-format
 msgid "Confirmation e-mail sent to %(email)s"
 msgstr "La confirmación ha sido enviada a %(email)s"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:292
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:309
 msgid "This e-mail address already associated with this account."
 msgstr "Este correo electrónico ya ha sido asociado a esta cuenta de usuario."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:293
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:310
 msgid "This e-mail address already associated with another account."
 msgstr "Este correo electrónico ya ha sido asociado a otra cuenta de usuario."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:310
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:327
 msgid "Current Password"
 msgstr "Contraseña actual"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:314
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:411
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:331
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:427
 msgid "New Password"
 msgstr "Nueva contarseña"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:318
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:415
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:335
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:431
 msgid "New Password (again)"
 msgstr "Nueva contarseña (otra vez)"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:324
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:341
 msgid "Please type your current password."
 msgstr "Introduzca su contraseña actual, por favor."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:373
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:390
 msgid "The e-mail address is not assigned to any user account"
 msgstr "Este correo electrónico no ha sido asignado a ninguna cuenta de usuario."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:393
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:409
 msgid "Password Reset E-mail"
 msgstr "La dirección de correo electrónico en caso de restablecer la contraseña"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/utils.py:72
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:84
 #, python-format
 msgid "Successfully signed in as %(user)s."
 msgstr "Ha iniciado sesión como %(user)s"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:133
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:125
 #, python-format
 msgid "Removed e-mail address %(email)s"
 msgstr "Dirección de correo electrónico eliminado %(email)s"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:147
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:139
 msgid "Primary e-mail address set"
 msgstr "La dirección de correo electrónico principal establecida"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:168
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:241
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:160
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:233
 msgid "Password successfully changed."
 msgstr "Contraseña ha sido cambiada con éxito."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:191
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:183
 msgid "Password successfully set."
 msgstr "Contraseña ha sido establecida con éxito."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:255
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/logout.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:247
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/logout.html:10
 msgid "You have signed out."
 msgstr "Ha cerrado sesión."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/openid/forms.py:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/openid/forms.py:6
 msgid "OpenID"
 msgstr "OpenID"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/forms.py:32
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:33
 msgid "Your local account has no password setup."
 msgstr "Su cuenta de usuario local todavía no tiene la contraseña establecida."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/forms.py:36
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:37
 msgid "Your local account has no verified e-mail address."
-msgstr ""
-"Su cuenta de usuario local no dispone de direcciones de correo "
-"electrónico verificadas."
+msgstr "Su cuenta de usuario local no dispone de direcciones de correo electrónico verificadas."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/helpers.py:112
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/helpers.py:111
 msgid "The social account has been connected to your existing account"
 msgstr "La cuenta social ha sido conectada con su cuenta de usuario existente "
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:89
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:89
 #, python-format
 msgid "Invalid response while obtaining request token from \"%s\"."
 msgstr "Respuesta inválida al obtener request token de \"%s\"."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:111
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:111
 #, python-format
 msgid "Invalid response while obtaining access token from \"%s\"."
 msgstr "Respuesta inválida al obtener access token de \"%s\"."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:124
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:124
 #, fuzzy, python-format
 msgid "No request token saved for \"%s\"."
 msgstr "No hay request token guardado para \"%s\"."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:172
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:172
 #, fuzzy, python-format
 msgid "No access token saved for \"%s\"."
 msgstr "No hay acces token guardado para \"%s\"."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:192
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:192
 #, python-format
 msgid "No access to private resources at \"%s\"."
 msgstr "No hay acceso a recursos privados en \"%s\"."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/views.py:68
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/views.py:68
 msgid "The social account has been disconnected"
 msgstr "La cuenta social ha sido desconectada"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:5
 msgid "Account"
 msgstr "Cuenta de usuario"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:8
 msgid "E-mail Addresses"
 msgstr "Direcciones de correo electrónico"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:10
 msgid "The following e-mail addresses are associated to your account:"
-msgstr ""
-"A su cuenta de usuario están asociados los siguientes direcciones de "
-"correo electrónico:"
+msgstr "A su cuenta de usuario están asociados los siguientes direcciones de correo electrónico:"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:26
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:24
 msgid "Verified"
 msgstr "Verificado"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:28
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:26
 msgid "Unverified"
 msgstr "No verificado"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:30
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:28
 msgid "Primary"
 msgstr "Principal"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:36
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:34
 msgid "Make Primary"
 msgstr "La dirección de correo electrónico principal"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:37
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:35
 msgid "Re-send Verification"
 msgstr "Reenviar verificación"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:38
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:36
 msgid "Remove"
 msgstr "Borrar"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:45
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:43
 msgid "Warning:"
 msgstr "Aviso:"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:45
-msgid ""
-"You currently do not have any e-mail address set up. You should really "
-"add an e-mail address so you can receive notifications, reset your "
-"password, etc."
-msgstr ""
-"Actualmente no tiene ninguna dirección de correo electrónico configurada."
-" Debe agregar una para poder recibir notificaciones, restablecer su "
-"contraseña etc."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:43
+msgid "You currently do not have any e-mail address set up. You should really add an e-mail address so you can receive notifications, reset your password, etc."
+msgstr "Actualmente no tiene ninguna dirección de correo electrónico configurada. Debe agregar una para poder recibir notificaciones, restablecer su contraseña etc."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:50
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:48
 msgid "Add E-mail Address"
 msgstr "Agregar dirección de correo electrónico"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:57
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:53
 msgid "Add E-mail"
 msgstr "Agregar correo electrónico"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:69
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:63
 msgid "Do you really want to remove the selected e-mail address?"
 msgstr "¿Está seguro que quiere borrar el correo electrónico seleccionado?"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/language_change.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/language_change.html:9
-msgid "Language"
-msgstr "Idioma"
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/language_change.html:11
-msgid "Pinax can be used in your preferred language."
-msgstr "Se puede usar Pinax en su idioma preferido."
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/language_change.html:18
-msgid "Change my language"
-msgstr "Cambia el idioma"
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:7
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:12
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:47
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:43
 msgid "Sign In"
 msgstr "Iniciar sesión"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:20
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:19
 #, python-format
 msgid ""
 "Please sign in with one\n"
 "of your existing third party accounts. Or, <a \n"
-"href=\"%(signup_url)s\">sign up</a> for a %(site_name)s account and sign "
-"in\n"
+"href=\"%(signup_url)s\">sign up</a> for a %(site_name)s account and sign in\n"
 "below:"
 msgstr ""
 "Por favor, inicie sesión con una \n"
 " de sus cuentas de terceros o <a \n"
-"href=\"%(signup_url)s\"> regístrese </a> en la cuenta de %(site_name)s e "
-"inicie sesión \n"
+"href=\"%(signup_url)s\"> regístrese </a> en la cuenta de %(site_name)s e inicie sesión \n"
 "abajo:"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:28
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:27
 msgid "or"
 msgstr "o"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:45
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:42
 msgid "Forgot Password?"
 msgstr "¿Olvidaste tu contraseña?"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/logout.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/logout.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/logout.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/logout.html:8
 msgid "Signed Out"
 msgstr "Cerrar sesión"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_change.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_change.html:8
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_change.html:15
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_change.html:4
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_change.html:7
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_change.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:4
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:7
 msgid "Change Password"
 msgstr "Cambia la contraseña"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete.html:8
 msgid "Delete Password"
 msgstr "Borra la contraseña"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete.html:9
-msgid ""
-"You may delete your password since you are currently logged in using "
-"OpenID."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete.html:9
+msgid "You may delete your password since you are currently logged in using OpenID."
 msgstr "Puede borrar su contraseña ya que ha iniciado sesión con OpenID."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete.html:12
 msgid "delete my password"
 msgstr "borra mi contraseña"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete_done.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete_done.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete_done.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete_done.html:8
 msgid "Password Deleted"
 msgstr "La contraseña ha sido borrada"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete_done.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete_done.html:9
 msgid "Your password has been deleted."
 msgstr "Su contraseña ha sido borrada. "
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:7
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:11
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_done.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_done.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_done.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_done.html:9
 msgid "Password Reset"
 msgstr "Restablecimiento de la contraseña"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:16
-msgid ""
-"Forgotten your password? Enter your e-mail address below, and we'll send "
-"you an e-mail allowing you to reset it."
-msgstr ""
-"¿Olvidaste tu contraseña? Introduce aquí tu dirección de correo "
-"electrónico y te enviamos un mensaje que te permitirá restablecerla. "
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:15
+msgid "Forgotten your password? Enter your e-mail address below, and we'll send you an e-mail allowing you to reset it."
+msgstr "¿Olvidaste tu contraseña? Introduce aquí tu dirección de correo electrónico y te enviamos un mensaje que te permitirá restablecerla. "
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:23
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:20
 msgid "Reset My Password"
 msgstr "Restablecimiento de la contraseña"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:28
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:23
 #, python-format
-msgid ""
-"If you have any trouble resetting your password, contact us at <a "
-"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
-msgstr ""
-"Si tiene algún problema en restablecer su contraseña, póngase en contacto"
-" con nosotros a través de <a "
-"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+msgid "If you have any trouble resetting your password, contact us at <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+msgstr "Si tiene algún problema en restablecer su contraseña, póngase en contacto con nosotros a través de <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_done.html:15
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_done.html:15
 #, python-format
-msgid ""
-"We have sent you an e-mail. If you do not receive it within a few "
-"minutes, contact us at <a "
-"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
-msgstr ""
-"Le hemos enviado un correo. Si no recibe ningún correo dentro de unos "
-"minutos, póngase en contacto con nosotros a través de <a "
-"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+msgid "We have sent you an e-mail. If you do not receive it within a few minutes, contact us at <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+msgstr "Le hemos enviado un correo. Si no recibe ningún correo dentro de unos minutos, póngase en contacto con nosotros a través de <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:7
 msgid "Bad Token"
 msgstr "Token incorrecto"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:11
 #, python-format
-msgid ""
-"The password reset link was invalid, possibly because it has already been"
-" used.  Please request a <a href=\"%(passwd_reset_url)s\">new password "
-"reset</a>."
-msgstr ""
-"El enlace de restablecimiento de la contraseña ha sido inválido. Es "
-"probable que ya haya sido usado. Por favor, solicite uno nuevo <a "
-"href=\"%(passwd_reset_url)s\">new password reset</a>."
+msgid "The password reset link was invalid, possibly because it has already been used.  Please request a <a href=\"%(passwd_reset_url)s\">new password reset</a>."
+msgstr "El enlace de restablecimiento de la contraseña ha sido inválido. Es probable que ya haya sido usado. Por favor, solicite uno nuevo <a href=\"%(passwd_reset_url)s\">new password reset</a>."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:20
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:17
 msgid "change password"
 msgstr "cambia la contraseña"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:25
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:20
 msgid "Your password is now changed."
 msgstr "Su contraseña ya se ha cambiado."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_key_message.txt:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_key_message.txt:9
 #, python-format
 msgid ""
-"You're receiving this e-mail because you or someone else has requested a "
-"password for your user account at %(site_domain)s.\n"
-"It can be safely ignored if you did not request a password reset. Click "
-"the link below to reset your password.\n"
+"You're receiving this e-mail because you or someone else has requested a password for your user account at %(site_domain)s.\n"
+"It can be safely ignored if you did not request a password reset. Click the link below to reset your password.\n"
 "\n"
 "%(password_reset_url)s\n"
 "\n"
@@ -420,10 +370,8 @@ msgid ""
 "\n"
 "Thanks for using our site!\n"
 msgstr ""
-"Ha recibido este correo porque usted u otra persona ha solicitado la "
-"contraseña de su cuenta de usuario en %(site_domain)s. \n"
-"Si no ha solicitado restablecimiento de su contraseña, pase de este "
-"mensaje. Abra el enlace de abajo para restablecer su contraseña.\n"
+"Ha recibido este correo porque usted u otra persona ha solicitado la contraseña de su cuenta de usuario en %(site_domain)s. \n"
+"Si no ha solicitado restablecimiento de su contraseña, pase de este mensaje. Abra el enlace de abajo para restablecer su contraseña.\n"
 "\n"
 "%(password_reset_url)s\n"
 "\n"
@@ -431,161 +379,155 @@ msgstr ""
 " \n"
 "¡Gracias por usar nuestra página!\n"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_set.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_set.html:9
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_set.html:16
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_set.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_set.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_set.html:13
 msgid "Set Password"
 msgstr "Establecer contraseña"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/signup.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:5
 msgid "Signup"
 msgstr "Registrarse"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:9
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:24
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/signup.html:9
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/signup.html:22
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:21
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:19
 msgid "Sign Up"
 msgstr "Registrarse"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:14
-msgid "Already have an account?"
-msgstr "¿Ya tiene una cuenta de usuario?"
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:14
-msgid "Sign in"
-msgstr "Iniciar sesión"
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/timezone_change.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/timezone_change.html:9
-msgid "Timezone"
-msgstr "Huso horario"
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/timezone_change.html:11
-msgid ""
-"Pinax can localize all times into your preferred timezone. Change your "
-"timezone below."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:13
+#, python-format
+msgid "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
 msgstr ""
-"Pinax puede localizar todos los horarios en su huso horario preferido. "
-"Cambie su huso horario aquí abajo."
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/timezone_change.html:18
-msgid "Change my timezone"
-msgstr "Cambia mi huso horario"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/verification_sent.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/verification_sent.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verification_sent.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verification_sent.html:8
 msgid "Verify Your E-mail Address"
 msgstr "Verifique su dirección de correo electrónico"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/verification_sent.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verification_sent.html:10
 #, python-format
-msgid ""
-"We have sent you an e-mail to <b>%(email)s</b> for verification. Follow "
-"the link provided to finalize the signup process. If you do not receive "
-"it within a few minutes, contact us at <a "
-"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
-msgstr ""
-"Para verificar le hemos enviado un correo a <b>%(email)s</b>. Abra el "
-"enlace que viene en el correo para finalizar el proceso de registrarse. "
-"Si no recibe ningún correo dentro de unos minutos, póngase en contacto "
-"con nosotros a través de <a "
-"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+msgid "We have sent you an e-mail to <b>%(email)s</b> for verification. Follow the link provided to finalize the signup process. If you do not receive it within a few minutes, contact us at <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+msgstr "Para verificar le hemos enviado un correo a <b>%(email)s</b>. Abra el enlace que viene en el correo para finalizar el proceso de registrarse. Si no recibe ningún correo dentro de unos minutos, póngase en contacto con nosotros a través de <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/snippets/already_logged_in.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/snippets/already_logged_in.html:5
 msgid "Note"
 msgstr "Nota"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/snippets/already_logged_in.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/snippets/already_logged_in.html:5
 #, python-format
 msgid "you are already logged in as %(user_display)s."
 msgstr "ya está conectado como %(user_display)s."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/emailconfirmation/confirm_email.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/emailconfirmation/confirm_email.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:8
 msgid "E-mail Address Confirmation"
 msgstr "Confirmación de la dirección de correo electrónico"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/emailconfirmation/confirm_email.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:11
 #, python-format
-msgid ""
-"You have confirmed that <a href=\"mailto:%(email)s\">%(email)s</a> is an "
-"e-mail address for user '%(user)s'."
-msgstr ""
-"Ha confirmado que <a href=\"mailto:%(email)s\">%(email)s</a> es  la "
-"dirección del correo electrónico para usuario '%(user)s'."
+msgid "You have confirmed that <a href=\"mailto:%(email)s\">%(email)s</a> is an e-mail address for user '%(user)s'."
+msgstr "Ha confirmado que <a href=\"mailto:%(email)s\">%(email)s</a> es  la dirección del correo electrónico para usuario '%(user)s'."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/emailconfirmation/confirm_email.html:13
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:13
 msgid "Invalid confirmation key."
 msgstr "Clave de confirmación inválida."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/openid/login.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/email_confirmation_message.txt:4
+#, python-format
+msgid ""
+"User '%(user)s' at %(site_name)s has given this as an email address.\n"
+"\n"
+"To confirm this is correct, go to %(activate_url)s\n"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/email_confirmation_subject.txt:1
+#, fuzzy
+msgid "Confirm E-mail Address"
+msgstr "La dirección de correo electrónico principal establecida"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/openid/login.html:9
 msgid "OpenID Sign In"
 msgstr "Iniciar sesión con OpenID "
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/account_inactive.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/account_inactive.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/account_inactive.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/account_inactive.html:8
 msgid "Account Inactive"
 msgstr "La cuenta de usuario inactiva"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/account_inactive.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/account_inactive.html:10
 msgid "This account is inactive."
 msgstr "Esta cuenta de usuario está inactiva."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/authentication_error.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/authentication_error.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/authentication_error.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/authentication_error.html:8
 msgid "Social Network Login Failure"
 msgstr "Error al iniciar sesión en la red social"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/authentication_error.html:10
-msgid ""
-"An error occured while attempting to login via your social network "
-"account."
-msgstr ""
-"Ha ocurrido un error al intentar iniciar sesión a través de su cuenta de "
-"red social."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/authentication_error.html:10
+msgid "An error occured while attempting to login via your social network account."
+msgstr "Ha ocurrido un error al intentar iniciar sesión a través de su cuenta de red social."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/connections.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/connections.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:8
 msgid "Account Connections"
 msgstr "Conexiones de la cuenta de usuario"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/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:"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/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:"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/connections.html:46
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:46
 msgid "Add a 3rd Party Account"
 msgstr "Agrega una cuenta de terceros"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/login_cancelled.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/login_cancelled.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:9
 msgid "Login Cancelled"
 msgstr "Nombre de usuario ha sido cancelado"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/login_cancelled.html:13
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:13
 #, 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 <a "
-"href=\"%(login_url)s\">sign in</a>."
-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 a<a "
-"href=\"%(login_url)s\">sign in</a>, 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 <a href=\"%(login_url)s\">sign in</a>."
+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 a<a href=\"%(login_url)s\">sign in</a>, por favor."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/signup.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:11
 #, python-format
 msgid ""
 "You are about to use your %(provider_name)s account to login to \n"
 "%(site_name)s. As a final step, please complete the following form:"
 msgstr ""
-"Está a punto de usar su %(provider_name)s cuenta de usuario para iniciar "
-"sesión en \n"
+"Está a punto de usar su %(provider_name)s cuenta de usuario para iniciar sesión en \n"
 "%(site_name)s. El último paso es rellenar este formulario:"
 
+#~ msgid "Language"
+#~ msgstr "Idioma"
+
+#~ msgid "Pinax can be used in your preferred language."
+#~ msgstr "Se puede usar Pinax en su idioma preferido."
+
+#~ msgid "Change my language"
+#~ msgstr "Cambia el idioma"
+
+#~ msgid "Already have an account?"
+#~ msgstr "¿Ya tiene una cuenta de usuario?"
+
+#~ msgid "Sign in"
+#~ msgstr "Iniciar sesión"
+
+#~ msgid "Timezone"
+#~ msgstr "Huso horario"
+
+#~ msgid ""
+#~ "Pinax can localize all times into "
+#~ "your preferred timezone. Change your "
+#~ "timezone below."
+#~ msgstr ""
+#~ "Pinax puede localizar todos los horarios"
+#~ " en su huso horario preferido. Cambie"
+#~ " su huso horario aquí abajo."
+
+#~ msgid "Change my timezone"
+#~ msgstr "Cambia mi huso horario"
index aafb3bc..6fec10b 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2012-07-19 11:40+0200\n"
+"POT-Creation-Date: 2012-08-14 17:40+0200\n"
 "PO-Revision-Date: 2012-03-22 14:23+0100\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: fr <LL@li.org>\n"
@@ -18,266 +18,253 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Generated-By: Babel 0.9.6\n"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:36
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:167
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:341
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:36
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:191
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:358
 msgid "Password"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:40
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:40
 msgid "Remember Me"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:52
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:113
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:284
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:363
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:52
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:139
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:301
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:380
 msgid "E-mail"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:57
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:104
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:57
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:130
 msgid "Username"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:85
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:85
 msgid "This account is currently inactive."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:88
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:88
 msgid "The e-mail address and/or password you specified are not correct."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:90
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:90
 msgid "The username and/or password you specified are not correct."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:116
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:142
 msgid "E-mail (optional)"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:127
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:153
 msgid "Usernames can only contain letters, numbers and underscores."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:133
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:159
 msgid "This username is already taken. Please choose another."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:141
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:167
 msgid "A user is registered with this e-mail address."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:171
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:345
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:195
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:362
 msgid "Password (again)"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:198
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:330
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:352
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:428
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:225
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:347
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:369
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:444
 msgid "You must type the same password each time."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:234
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:260
 msgid "Your e-mail address has already been verified"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:244
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/utils.py:93
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:101
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:117
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:270
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:123
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:93
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:109
 #, python-format
 msgid "Confirmation e-mail sent to %(email)s"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:292
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:309
 msgid "This e-mail address already associated with this account."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:293
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:310
 msgid "This e-mail address already associated with another account."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:310
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:327
 msgid "Current Password"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:314
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:411
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:331
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:427
 msgid "New Password"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:318
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:415
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:335
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:431
 msgid "New Password (again)"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:324
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:341
 msgid "Please type your current password."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:373
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:390
 msgid "The e-mail address is not assigned to any user account"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:393
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:409
 msgid "Password Reset E-mail"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/utils.py:72
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:84
 #, python-format
 msgid "Successfully signed in as %(user)s."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:133
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:125
 #, python-format
 msgid "Removed e-mail address %(email)s"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:147
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:139
 msgid "Primary e-mail address set"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:168
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:241
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:160
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:233
 msgid "Password successfully changed."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:191
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:183
 msgid "Password successfully set."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:255
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/logout.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:247
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/logout.html:10
 msgid "You have signed out."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/openid/forms.py:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/openid/forms.py:6
 msgid "OpenID"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/forms.py:32
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:33
 msgid "Your local account has no password setup."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/forms.py:36
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:37
 msgid "Your local account has no verified e-mail address."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/helpers.py:112
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/helpers.py:111
 msgid "The social account has been connected to your existing account"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:89
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:89
 #, python-format
 msgid "Invalid response while obtaining request token from \"%s\"."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:111
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:111
 #, python-format
 msgid "Invalid response while obtaining access token from \"%s\"."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:124
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:124
 #, python-format
 msgid "No request token saved for \"%s\"."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:172
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:172
 #, python-format
 msgid "No access token saved for \"%s\"."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:192
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:192
 #, python-format
 msgid "No access to private resources at \"%s\"."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/views.py:68
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/views.py:68
 msgid "The social account has been disconnected"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:5
 msgid "Account"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:8
 msgid "E-mail Addresses"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:10
 msgid "The following e-mail addresses are associated to your account:"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:26
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:24
 msgid "Verified"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:28
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:26
 msgid "Unverified"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:30
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:28
 msgid "Primary"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:36
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:34
 msgid "Make Primary"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:37
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:35
 msgid "Re-send Verification"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:38
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:36
 msgid "Remove"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:45
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:43
 msgid "Warning:"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:45
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:43
 msgid ""
 "You currently do not have any e-mail address set up. You should really "
 "add an e-mail address so you can receive notifications, reset your "
 "password, etc."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:50
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:48
 msgid "Add E-mail Address"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:57
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:53
 msgid "Add E-mail"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:69
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:63
 msgid "Do you really want to remove the selected e-mail address?"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/language_change.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/language_change.html:9
-msgid "Language"
-msgstr ""
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/language_change.html:11
-msgid "Pinax can be used in your preferred language."
-msgstr ""
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/language_change.html:18
-msgid "Change my language"
-msgstr ""
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:7
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:12
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:47
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:43
 msgid "Sign In"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:20
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:19
 #, python-format
 msgid ""
 "Please sign in with one\n"
@@ -287,76 +274,76 @@ msgid ""
 "below:"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:28
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:27
 msgid "or"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:45
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:42
 msgid "Forgot Password?"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/logout.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/logout.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/logout.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/logout.html:8
 msgid "Signed Out"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_change.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_change.html:8
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_change.html:15
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_change.html:4
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_change.html:7
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_change.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:4
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:7
 msgid "Change Password"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete.html:8
 msgid "Delete Password"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete.html:9
 msgid ""
 "You may delete your password since you are currently logged in using "
 "OpenID."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete.html:12
 msgid "delete my password"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete_done.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete_done.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete_done.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete_done.html:8
 msgid "Password Deleted"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete_done.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete_done.html:9
 msgid "Your password has been deleted."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:7
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:11
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_done.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_done.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_done.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_done.html:9
 msgid "Password Reset"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:16
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:15
 msgid ""
 "Forgotten your password? Enter your e-mail address below, and we'll send "
 "you an e-mail allowing you to reset it."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:23
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:20
 msgid "Reset My Password"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:28
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:23
 #, python-format
 msgid ""
 "If you have any trouble resetting your password, contact us at <a "
 "href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_done.html:15
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_done.html:15
 #, python-format
 msgid ""
 "We have sent you an e-mail. If you do not receive it within a few "
@@ -364,11 +351,11 @@ msgid ""
 "href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:7
 msgid "Bad Token"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:11
 #, python-format
 msgid ""
 "The password reset link was invalid, possibly because it has already been"
@@ -376,15 +363,15 @@ msgid ""
 "reset</a>."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:20
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:17
 msgid "change password"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:25
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:20
 msgid "Your password is now changed."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_key_message.txt:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_key_message.txt:9
 #, python-format
 msgid ""
 "You're receiving this e-mail because you or someone else has requested a "
@@ -399,53 +386,37 @@ msgid ""
 "Thanks for using our site!\n"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_set.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_set.html:9
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_set.html:16
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_set.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_set.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_set.html:13
 msgid "Set Password"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/signup.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:5
 msgid "Signup"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:9
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:24
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/signup.html:9
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/signup.html:22
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:21
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:19
 msgid "Sign Up"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:14
-msgid "Already have an account?"
-msgstr ""
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:14
-msgid "Sign in"
-msgstr ""
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/timezone_change.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/timezone_change.html:9
-msgid "Timezone"
-msgstr ""
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/timezone_change.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:13
+#, python-format
 msgid ""
-"Pinax can localize all times into your preferred timezone. Change your "
-"timezone below."
-msgstr ""
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/timezone_change.html:18
-msgid "Change my timezone"
+"Already have an account? Then please <a href=\"%(login_url)s\">sign "
+"in</a>."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/verification_sent.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/verification_sent.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verification_sent.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verification_sent.html:8
 msgid "Verify Your E-mail Address"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/verification_sent.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verification_sent.html:10
 #, python-format
 msgid ""
 "We have sent you an e-mail to <b>%(email)s</b> for verification. Follow "
@@ -454,76 +425,88 @@ msgid ""
 "href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/snippets/already_logged_in.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/snippets/already_logged_in.html:5
 msgid "Note"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/snippets/already_logged_in.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/snippets/already_logged_in.html:5
 #, python-format
 msgid "you are already logged in as %(user_display)s."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/emailconfirmation/confirm_email.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/emailconfirmation/confirm_email.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:8
 msgid "E-mail Address Confirmation"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/emailconfirmation/confirm_email.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:11
 #, python-format
 msgid ""
 "You have confirmed that <a href=\"mailto:%(email)s\">%(email)s</a> is an "
 "e-mail address for user '%(user)s'."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/emailconfirmation/confirm_email.html:13
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:13
 msgid "Invalid confirmation key."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/openid/login.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/email_confirmation_message.txt:4
+#, python-format
+msgid ""
+"User '%(user)s' at %(site_name)s has given this as an email address.\n"
+"\n"
+"To confirm this is correct, go to %(activate_url)s\n"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/email_confirmation_subject.txt:1
+msgid "Confirm E-mail Address"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/openid/login.html:9
 msgid "OpenID Sign In"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/account_inactive.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/account_inactive.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/account_inactive.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/account_inactive.html:8
 msgid "Account Inactive"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/account_inactive.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/account_inactive.html:10
 msgid "This account is inactive."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/authentication_error.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/authentication_error.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/authentication_error.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/authentication_error.html:8
 msgid "Social Network Login Failure"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/authentication_error.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/authentication_error.html:10
 msgid ""
 "An error occured while attempting to login via your social network "
 "account."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/connections.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/connections.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:8
 msgid "Account Connections"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/connections.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:11
 msgid ""
 "You can sign in to your account using any of the following third party "
 "accounts:"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/connections.html:46
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:46
 msgid "Add a 3rd Party Account"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/login_cancelled.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/login_cancelled.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:9
 msgid "Login Cancelled"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/login_cancelled.html:13
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:13
 #, python-format
 msgid ""
 "You decided to cancel logging in to our site using one of your exisiting "
@@ -531,10 +514,37 @@ msgid ""
 "href=\"%(login_url)s\">sign in</a>."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/signup.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:11
 #, python-format
 msgid ""
 "You are about to use your %(provider_name)s account to login to \n"
 "%(site_name)s. As a final step, please complete the following form:"
 msgstr ""
 
+#~ msgid "Language"
+#~ msgstr ""
+
+#~ msgid "Pinax can be used in your preferred language."
+#~ msgstr ""
+
+#~ msgid "Change my language"
+#~ msgstr ""
+
+#~ msgid "Already have an account?"
+#~ msgstr ""
+
+#~ msgid "Sign in"
+#~ msgstr ""
+
+#~ msgid "Timezone"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Pinax can localize all times into "
+#~ "your preferred timezone. Change your "
+#~ "timezone below."
+#~ msgstr ""
+
+#~ msgid "Change my timezone"
+#~ msgstr ""
+
index ef986b2..cc70820 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2012-07-19 11:40+0200\n"
+"POT-Creation-Date: 2012-08-14 17:40+0200\n"
 "PO-Revision-Date: 2012-03-22 14:23+0100\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: en <LL@li.org>\n"
@@ -18,266 +18,253 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Generated-By: Babel 0.9.6\n"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:36
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:167
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:341
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:36
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:191
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:358
 msgid "Password"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:40
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:40
 msgid "Remember Me"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:52
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:113
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:284
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:363
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:52
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:139
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:301
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:380
 msgid "E-mail"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:57
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:104
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:57
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:130
 msgid "Username"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:85
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:85
 msgid "This account is currently inactive."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:88
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:88
 msgid "The e-mail address and/or password you specified are not correct."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:90
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:90
 msgid "The username and/or password you specified are not correct."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:116
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:142
 msgid "E-mail (optional)"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:127
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:153
 msgid "Usernames can only contain letters, numbers and underscores."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:133
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:159
 msgid "This username is already taken. Please choose another."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:141
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:167
 msgid "A user is registered with this e-mail address."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:171
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:345
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:195
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:362
 msgid "Password (again)"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:198
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:330
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:352
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:428
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:225
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:347
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:369
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:444
 msgid "You must type the same password each time."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:234
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:260
 msgid "Your e-mail address has already been verified"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:244
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/utils.py:93
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:101
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:117
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:270
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:123
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:93
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:109
 #, python-format
 msgid "Confirmation e-mail sent to %(email)s"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:292
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:309
 msgid "This e-mail address already associated with this account."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:293
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:310
 msgid "This e-mail address already associated with another account."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:310
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:327
 msgid "Current Password"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:314
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:411
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:331
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:427
 msgid "New Password"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:318
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:415
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:335
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:431
 msgid "New Password (again)"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:324
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:341
 msgid "Please type your current password."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:373
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:390
 msgid "The e-mail address is not assigned to any user account"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:393
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:409
 msgid "Password Reset E-mail"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/utils.py:72
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:84
 #, python-format
 msgid "Successfully signed in as %(user)s."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:133
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:125
 #, python-format
 msgid "Removed e-mail address %(email)s"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:147
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:139
 msgid "Primary e-mail address set"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:168
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:241
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:160
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:233
 msgid "Password successfully changed."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:191
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:183
 msgid "Password successfully set."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:255
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/logout.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:247
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/logout.html:10
 msgid "You have signed out."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/openid/forms.py:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/openid/forms.py:6
 msgid "OpenID"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/forms.py:32
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:33
 msgid "Your local account has no password setup."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/forms.py:36
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:37
 msgid "Your local account has no verified e-mail address."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/helpers.py:112
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/helpers.py:111
 msgid "The social account has been connected to your existing account"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:89
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:89
 #, python-format
 msgid "Invalid response while obtaining request token from \"%s\"."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:111
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:111
 #, python-format
 msgid "Invalid response while obtaining access token from \"%s\"."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:124
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:124
 #, python-format
 msgid "No request token saved for \"%s\"."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:172
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:172
 #, python-format
 msgid "No access token saved for \"%s\"."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:192
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:192
 #, python-format
 msgid "No access to private resources at \"%s\"."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/views.py:68
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/views.py:68
 msgid "The social account has been disconnected"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:5
 msgid "Account"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:8
 msgid "E-mail Addresses"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:10
 msgid "The following e-mail addresses are associated to your account:"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:26
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:24
 msgid "Verified"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:28
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:26
 msgid "Unverified"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:30
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:28
 msgid "Primary"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:36
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:34
 msgid "Make Primary"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:37
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:35
 msgid "Re-send Verification"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:38
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:36
 msgid "Remove"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:45
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:43
 msgid "Warning:"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:45
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:43
 msgid ""
 "You currently do not have any e-mail address set up. You should really "
 "add an e-mail address so you can receive notifications, reset your "
 "password, etc."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:50
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:48
 msgid "Add E-mail Address"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:57
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:53
 msgid "Add E-mail"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:69
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:63
 msgid "Do you really want to remove the selected e-mail address?"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/language_change.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/language_change.html:9
-msgid "Language"
-msgstr ""
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/language_change.html:11
-msgid "Pinax can be used in your preferred language."
-msgstr ""
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/language_change.html:18
-msgid "Change my language"
-msgstr ""
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:7
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:12
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:47
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:43
 msgid "Sign In"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:20
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:19
 #, python-format
 msgid ""
 "Please sign in with one\n"
@@ -287,76 +274,76 @@ msgid ""
 "below:"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:28
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:27
 msgid "or"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:45
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:42
 msgid "Forgot Password?"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/logout.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/logout.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/logout.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/logout.html:8
 msgid "Signed Out"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_change.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_change.html:8
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_change.html:15
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_change.html:4
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_change.html:7
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_change.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:4
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:7
 msgid "Change Password"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete.html:8
 msgid "Delete Password"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete.html:9
 msgid ""
 "You may delete your password since you are currently logged in using "
 "OpenID."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete.html:12
 msgid "delete my password"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete_done.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete_done.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete_done.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete_done.html:8
 msgid "Password Deleted"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete_done.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete_done.html:9
 msgid "Your password has been deleted."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:7
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:11
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_done.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_done.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_done.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_done.html:9
 msgid "Password Reset"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:16
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:15
 msgid ""
 "Forgotten your password? Enter your e-mail address below, and we'll send "
 "you an e-mail allowing you to reset it."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:23
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:20
 msgid "Reset My Password"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:28
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:23
 #, python-format
 msgid ""
 "If you have any trouble resetting your password, contact us at <a "
 "href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_done.html:15
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_done.html:15
 #, python-format
 msgid ""
 "We have sent you an e-mail. If you do not receive it within a few "
@@ -364,11 +351,11 @@ msgid ""
 "href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:7
 msgid "Bad Token"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:11
 #, python-format
 msgid ""
 "The password reset link was invalid, possibly because it has already been"
@@ -376,15 +363,15 @@ msgid ""
 "reset</a>."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:20
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:17
 msgid "change password"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:25
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:20
 msgid "Your password is now changed."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_key_message.txt:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_key_message.txt:9
 #, python-format
 msgid ""
 "You're receiving this e-mail because you or someone else has requested a "
@@ -399,53 +386,37 @@ msgid ""
 "Thanks for using our site!\n"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_set.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_set.html:9
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_set.html:16
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_set.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_set.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_set.html:13
 msgid "Set Password"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/signup.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:5
 msgid "Signup"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:9
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:24
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/signup.html:9
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/signup.html:22
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:21
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:19
 msgid "Sign Up"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:14
-msgid "Already have an account?"
-msgstr ""
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:14
-msgid "Sign in"
-msgstr ""
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/timezone_change.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/timezone_change.html:9
-msgid "Timezone"
-msgstr ""
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/timezone_change.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:13
+#, python-format
 msgid ""
-"Pinax can localize all times into your preferred timezone. Change your "
-"timezone below."
-msgstr ""
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/timezone_change.html:18
-msgid "Change my timezone"
+"Already have an account? Then please <a href=\"%(login_url)s\">sign "
+"in</a>."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/verification_sent.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/verification_sent.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verification_sent.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verification_sent.html:8
 msgid "Verify Your E-mail Address"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/verification_sent.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verification_sent.html:10
 #, python-format
 msgid ""
 "We have sent you an e-mail to <b>%(email)s</b> for verification. Follow "
@@ -454,76 +425,88 @@ msgid ""
 "href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/snippets/already_logged_in.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/snippets/already_logged_in.html:5
 msgid "Note"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/snippets/already_logged_in.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/snippets/already_logged_in.html:5
 #, python-format
 msgid "you are already logged in as %(user_display)s."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/emailconfirmation/confirm_email.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/emailconfirmation/confirm_email.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:8
 msgid "E-mail Address Confirmation"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/emailconfirmation/confirm_email.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:11
 #, python-format
 msgid ""
 "You have confirmed that <a href=\"mailto:%(email)s\">%(email)s</a> is an "
 "e-mail address for user '%(user)s'."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/emailconfirmation/confirm_email.html:13
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:13
 msgid "Invalid confirmation key."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/openid/login.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/email_confirmation_message.txt:4
+#, python-format
+msgid ""
+"User '%(user)s' at %(site_name)s has given this as an email address.\n"
+"\n"
+"To confirm this is correct, go to %(activate_url)s\n"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/email_confirmation_subject.txt:1
+msgid "Confirm E-mail Address"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/openid/login.html:9
 msgid "OpenID Sign In"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/account_inactive.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/account_inactive.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/account_inactive.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/account_inactive.html:8
 msgid "Account Inactive"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/account_inactive.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/account_inactive.html:10
 msgid "This account is inactive."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/authentication_error.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/authentication_error.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/authentication_error.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/authentication_error.html:8
 msgid "Social Network Login Failure"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/authentication_error.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/authentication_error.html:10
 msgid ""
 "An error occured while attempting to login via your social network "
 "account."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/connections.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/connections.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:8
 msgid "Account Connections"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/connections.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:11
 msgid ""
 "You can sign in to your account using any of the following third party "
 "accounts:"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/connections.html:46
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:46
 msgid "Add a 3rd Party Account"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/login_cancelled.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/login_cancelled.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:9
 msgid "Login Cancelled"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/login_cancelled.html:13
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:13
 #, python-format
 msgid ""
 "You decided to cancel logging in to our site using one of your exisiting "
@@ -531,10 +514,37 @@ msgid ""
 "href=\"%(login_url)s\">sign in</a>."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/signup.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:11
 #, python-format
 msgid ""
 "You are about to use your %(provider_name)s account to login to \n"
 "%(site_name)s. As a final step, please complete the following form:"
 msgstr ""
 
+#~ msgid "Language"
+#~ msgstr ""
+
+#~ msgid "Pinax can be used in your preferred language."
+#~ msgstr ""
+
+#~ msgid "Change my language"
+#~ msgstr ""
+
+#~ msgid "Already have an account?"
+#~ msgstr ""
+
+#~ msgid "Sign in"
+#~ msgstr ""
+
+#~ msgid "Timezone"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Pinax can localize all times into "
+#~ "your preferred timezone. Change your "
+#~ "timezone below."
+#~ msgstr ""
+
+#~ msgid "Change my timezone"
+#~ msgstr ""
+
diff --git a/wolnelektury/locale-contrib/lt/LC_MESSAGES/django.mo b/wolnelektury/locale-contrib/lt/LC_MESSAGES/django.mo
new file mode 100644 (file)
index 0000000..ad82921
Binary files /dev/null and b/wolnelektury/locale-contrib/lt/LC_MESSAGES/django.mo differ
index ffeef3b..ad40a18 100644 (file)
@@ -7,412 +7,362 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2012-07-19 11:40+0200\n"
-"PO-Revision-Date: 2012-04-05 16:03+0100\n"
-"Last-Translator: Karolina Zuber <suomija@o2.pl>\n"
+"POT-Creation-Date: 2012-08-14 17:40+0200\n"
+"PO-Revision-Date: 2012-08-14 17:50+0100\n"
+"Last-Translator: Radek Czajka <radoslaw.czajka@nowoczesnapolska.org.pl>\n"
 "Language-Team: lt <LL@li.org>\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
-"(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%100<10 || n%100>=20) ? 1 : 2)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Generated-By: Babel 0.9.6\n"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:36
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:167
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:341
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:36
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:191
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:358
 msgid "Password"
 msgstr "Slaptažodis"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:40
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:40
 msgid "Remember Me"
 msgstr "Įsiminti mane"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:52
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:113
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:284
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:363
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:52
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:139
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:301
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:380
 msgid "E-mail"
 msgstr "El. paštas"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:57
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:104
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:57
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:130
 msgid "Username"
 msgstr "Vartotojo vardas"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:85
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:85
 msgid "This account is currently inactive."
 msgstr "Ši paskyra yra šiuo metu neaktyvi."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:88
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:88
 msgid "The e-mail address and/or password you specified are not correct."
 msgstr "El. pašto adresas ir/arba slaptažodis nėra teisingas."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:90
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:90
 msgid "The username and/or password you specified are not correct."
 msgstr "Vartotojo vardas ir/arba slaptažodis nėra teisingas."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:116
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:142
 msgid "E-mail (optional)"
 msgstr "El. paštas (pasirenkamas)"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:127
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:153
 msgid "Usernames can only contain letters, numbers and underscores."
-msgstr ""
-"Vartotojo vardas gali būti sudarytas tik iš raidžių, skaičių ir "
-"pabraukimo brūkšnelių."
+msgstr "Vartotojo vardas gali būti sudarytas tik iš raidžių, skaičių ir pabraukimo brūkšnelių."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:133
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:159
 msgid "This username is already taken. Please choose another."
 msgstr "Šis vartotojo vardas yra užimtas. Prašome pasirinkite kitą."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:141
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:167
 msgid "A user is registered with this e-mail address."
 msgstr "Šiuo elektroninio pašto adresu jau yra užsiregistravęs vartotojas."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:171
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:345
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:195
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:362
 msgid "Password (again)"
 msgstr "Slaptažodis (pakartoti)"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:198
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:330
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:352
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:428
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:225
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:347
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:369
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:444
 msgid "You must type the same password each time."
 msgstr "Kiekvieną kartą turite įvesti tokį patį slaptažodį."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:234
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:260
 msgid "Your e-mail address has already been verified"
 msgstr "Jūsų el.pašto adresas jau buvo patikrintas."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:244
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/utils.py:93
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:101
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:117
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:270
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:123
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:93
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:109
 #, python-format
 msgid "Confirmation e-mail sent to %(email)s"
 msgstr "El. pašto patvirtinimas buvo išsiųstas į %(email)s"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:292
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:309
 msgid "This e-mail address already associated with this account."
 msgstr "Šis el. pašto adresas jau yra susietas su šia paskyra."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:293
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:310
 msgid "This e-mail address already associated with another account."
 msgstr "Šis el. pašto adresas jau yra susietas su kita paskyra."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:310
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:327
 msgid "Current Password"
 msgstr "Dabartinis slaptažodis"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:314
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:411
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:331
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:427
 msgid "New Password"
 msgstr "Naujas slaptažodis"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:318
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:415
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:335
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:431
 msgid "New Password (again)"
 msgstr "Naujas slaptažodis (pakartoti)"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:324
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:341
 msgid "Please type your current password."
 msgstr "Prašome įvesti jūsų dabartinį slaptažodį."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:373
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:390
 msgid "The e-mail address is not assigned to any user account"
 msgstr "Šis el. pašto adresas nėra priskirtas jokio vartotojo paskyrai."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:393
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:409
 msgid "Password Reset E-mail"
 msgstr "Slaptažodžio atstatymo el. laiškas"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/utils.py:72
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:84
 #, python-format
 msgid "Successfully signed in as %(user)s."
 msgstr "Sėkmingai prisijungęs kaip %(user)s."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:133
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:125
 #, python-format
 msgid "Removed e-mail address %(email)s"
 msgstr "Pašalintas el. pašto adresas %(email)s"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:147
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:139
 msgid "Primary e-mail address set"
 msgstr "Nustatytas pagrindinis el. pašto adresas"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:168
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:241
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:160
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:233
 msgid "Password successfully changed."
 msgstr "Slaptažodis sėkmingai pakeistas."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:191
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:183
 msgid "Password successfully set."
 msgstr "Slaptažodis sėkmingai nustatytas."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:255
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/logout.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:247
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/logout.html:10
 msgid "You have signed out."
 msgstr "Jūs atsijungėte."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/openid/forms.py:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/openid/forms.py:6
 msgid "OpenID"
 msgstr "OpenID"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/forms.py:32
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:33
 msgid "Your local account has no password setup."
 msgstr "Jūsų vietinės paskyros slaptažodis dar yra nenustatytas."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/forms.py:36
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:37
 msgid "Your local account has no verified e-mail address."
 msgstr "Jūsų vietinės paskyros el. pašto adresas dar nepatikrintas."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/helpers.py:112
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/helpers.py:111
 msgid "The social account has been connected to your existing account"
 msgstr "Ši socialinė paskyra buvo prijungta prie jūsų paskyros"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:89
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:89
 #, python-format
 msgid "Invalid response while obtaining request token from \"%s\"."
 msgstr "Neteisingas atsakas gaunant užklausos žetoną iš \"%s\"."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:111
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:111
 #, python-format
 msgid "Invalid response while obtaining access token from \"%s\"."
 msgstr "Neteisingas atsakas gaunant prieigos žetoną iš \"%s\"."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:124
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:124
 #, python-format
 msgid "No request token saved for \"%s\"."
 msgstr "Nėra užklausos žetono įrašyto \"%s\"."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:172
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:172
 #, python-format
 msgid "No access token saved for \"%s\"."
 msgstr "Nėra prieigos žetono įrašyto \"%s\"."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:192
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:192
 #, python-format
 msgid "No access to private resources at \"%s\"."
 msgstr "Trūksta prieigos prie privačių išteklių \"%s\"."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/views.py:68
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/views.py:68
 msgid "The social account has been disconnected"
 msgstr "Socialinė paskyra buvo atjungta"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:5
 msgid "Account"
 msgstr "Paskyra"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:8
 msgid "E-mail Addresses"
 msgstr "El. pašto adresai"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:10
 msgid "The following e-mail addresses are associated to your account:"
 msgstr "Šie el. pašto adresai yra priskirti jūsų paskyrai:"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:26
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:24
 msgid "Verified"
 msgstr "Patikrintas"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:28
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:26
 msgid "Unverified"
 msgstr "Nepatikrintas"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:30
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:28
 msgid "Primary"
 msgstr "Pirminis"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:36
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:34
 msgid "Make Primary"
 msgstr "Padaryti pirminiu"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:37
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:35
 msgid "Re-send Verification"
 msgstr "Dar kartą siųsti patikrinimą"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:38
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:36
 msgid "Remove"
 msgstr "Pašalinti"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:45
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:43
 msgid "Warning:"
 msgstr "Įspėjimas:"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:45
-msgid ""
-"You currently do not have any e-mail address set up. You should really "
-"add an e-mail address so you can receive notifications, reset your "
-"password, etc."
-msgstr ""
-"Šiuo metu neturite nustatyto jokio el. pašto adreso. Jūs tikrai "
-"turėtumėte pridėti el. pašto adresą, kad gautumėte pranešimus, "
-"atstatytumėte jūsų slaptažodį ir t.t."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:43
+msgid "You currently do not have any e-mail address set up. You should really add an e-mail address so you can receive notifications, reset your password, etc."
+msgstr "Šiuo metu neturite nustatyto jokio el. pašto adreso. Jūs tikrai turėtumėte pridėti el. pašto adresą, kad gautumėte pranešimus, atstatytumėte jūsų slaptažodį ir t.t."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:50
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:48
 msgid "Add E-mail Address"
 msgstr "Pridėti el. pašto adresą"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:57
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:53
 msgid "Add E-mail"
 msgstr "Pridėti el. paštą"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:69
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:63
 msgid "Do you really want to remove the selected e-mail address?"
 msgstr "Ar esate tikri, kad norite pašalinti pasirinktą  el. pašto adresą?"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/language_change.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/language_change.html:9
-msgid "Language"
-msgstr "Kalba"
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/language_change.html:11
-msgid "Pinax can be used in your preferred language."
-msgstr "Pinax gali būti naudojamas jūsų pageidaujama kalba."
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/language_change.html:18
-msgid "Change my language"
-msgstr "Keisti kalbą"
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:7
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:12
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:47
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:43
 msgid "Sign In"
 msgstr "Prisijungti"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:20
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:19
 #, python-format
 msgid ""
 "Please sign in with one\n"
 "of your existing third party accounts. Or, <a \n"
-"href=\"%(signup_url)s\">sign up</a> for a %(site_name)s account and sign "
-"in\n"
+"href=\"%(signup_url)s\">sign up</a> for a %(site_name)s account and sign in\n"
 "below:"
 msgstr ""
 "Prašome prisijungti su viena\n"
 "iš jūsų third party paskyrų. Arba <a \n"
-"href=\"%(signup_url)s\">užsiregistruoti</a> %(site_name)s paskyrai "
-"sukurti ir prisijungti\n"
+"href=\"%(signup_url)s\">užsiregistruoti</a> %(site_name)s paskyrai sukurti ir prisijungti\n"
 "žemiau:"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:28
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:27
 msgid "or"
 msgstr "arba"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:45
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:42
 msgid "Forgot Password?"
 msgstr "Pamiršote slaptažodį?"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/logout.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/logout.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/logout.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/logout.html:8
 msgid "Signed Out"
 msgstr "Atsijungęs"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_change.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_change.html:8
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_change.html:15
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_change.html:4
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_change.html:7
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_change.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:4
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:7
 msgid "Change Password"
 msgstr "Keisti slaptažodį"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete.html:8
 msgid "Delete Password"
 msgstr "Pašalinti slaptažodį"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete.html:9
-msgid ""
-"You may delete your password since you are currently logged in using "
-"OpenID."
-msgstr ""
-"Galite pašalinti jūsų slaptažodį, nes esate prisijungę naudodamiesi "
-"OpenID."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete.html:9
+msgid "You may delete your password since you are currently logged in using OpenID."
+msgstr "Galite pašalinti jūsų slaptažodį, nes esate prisijungę naudodamiesi OpenID."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete.html:12
 msgid "delete my password"
 msgstr "pašalinti mano slaptažodį"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete_done.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete_done.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete_done.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete_done.html:8
 msgid "Password Deleted"
 msgstr "Slaptažodis pašalintas"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete_done.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete_done.html:9
 msgid "Your password has been deleted."
 msgstr "Jūsų slaptažodis pašalintas."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:7
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:11
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_done.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_done.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_done.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_done.html:9
 msgid "Password Reset"
 msgstr "Slaptažodžio atstatymas"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:16
-msgid ""
-"Forgotten your password? Enter your e-mail address below, and we'll send "
-"you an e-mail allowing you to reset it."
-msgstr ""
-"Pamiršote slaptažodį? Įveskite jūsų el. pašto adresą žemiau ir mes "
-"išsiųsime jums el. laišką leidžiantį jį atstatyti."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:15
+msgid "Forgotten your password? Enter your e-mail address below, and we'll send you an e-mail allowing you to reset it."
+msgstr "Pamiršote slaptažodį? Įveskite jūsų el. pašto adresą žemiau ir mes išsiųsime jums el. laišką leidžiantį jį atstatyti."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:23
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:20
 msgid "Reset My Password"
 msgstr "Atstatyti mano slaptažodį"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:28
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:23
 #, python-format
-msgid ""
-"If you have any trouble resetting your password, contact us at <a "
-"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
-msgstr ""
-"Jei turite problemų su jūsų slaptažodžio atstatymu, susisiekite su mumis "
-"<a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+msgid "If you have any trouble resetting your password, contact us at <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+msgstr "Jei turite problemų su jūsų slaptažodžio atstatymu, susisiekite su mumis <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_done.html:15
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_done.html:15
 #, python-format
-msgid ""
-"We have sent you an e-mail. If you do not receive it within a few "
-"minutes, contact us at <a "
-"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
-msgstr ""
-"Jums išsiuntėme el. laišką. Jei to negausite per kelias minutes, "
-"susisiekite su mumis <a "
-"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+msgid "We have sent you an e-mail. If you do not receive it within a few minutes, contact us at <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+msgstr "Jums išsiuntėme el. laišką. Jei to negausite per kelias minutes, susisiekite su mumis <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:7
 msgid "Bad Token"
 msgstr "Blogas žetonas"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:11
 #, python-format
-msgid ""
-"The password reset link was invalid, possibly because it has already been"
-" used.  Please request a <a href=\"%(passwd_reset_url)s\">new password "
-"reset</a>."
-msgstr ""
-"Atstatymo slaptažodžio nuoroda buvo netinkama, galbūt, nes jau buvo "
-"panaudota. Prašome paprašyti <a href=\"%(passwd_reset_url)s\">naujo "
-"slaptažodžio atstatymo</a>."
+msgid "The password reset link was invalid, possibly because it has already been used.  Please request a <a href=\"%(passwd_reset_url)s\">new password reset</a>."
+msgstr "Atstatymo slaptažodžio nuoroda buvo netinkama, galbūt, nes jau buvo panaudota. Prašome paprašyti <a href=\"%(passwd_reset_url)s\">naujo slaptažodžio atstatymo</a>."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:20
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:17
 msgid "change password"
 msgstr "keisti slaptažodį"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:25
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:20
 msgid "Your password is now changed."
 msgstr "Jūsų slaptažodis pakeistas."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_key_message.txt:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_key_message.txt:9
 #, python-format
 msgid ""
-"You're receiving this e-mail because you or someone else has requested a "
-"password for your user account at %(site_domain)s.\n"
-"It can be safely ignored if you did not request a password reset. Click "
-"the link below to reset your password.\n"
+"You're receiving this e-mail because you or someone else has requested a password for your user account at %(site_domain)s.\n"
+"It can be safely ignored if you did not request a password reset. Click the link below to reset your password.\n"
 "\n"
 "%(password_reset_url)s\n"
 "\n"
@@ -420,167 +370,162 @@ msgid ""
 "\n"
 "Thanks for using our site!\n"
 msgstr ""
-"Gavote šį el. laišką, nes paprašėte, arba kitas asmuo paprašė, atstatyti "
-"slaptažodį jūsų paskyrai čia %(site_domain)s.\n"
-"Galite į jį nekreipti dėmesio jei neprašėte slaptažodžio atstatymo. "
-"Paspauskite jūsų slaptažodžio atstatymui skirtą nuorodą.\n"
+"Gavote šį el. laišką, nes paprašėte, arba kitas asmuo paprašė, atstatyti slaptažodį jūsų paskyrai čia %(site_domain)s.\n"
+"Galite į jį nekreipti dėmesio jei neprašėte slaptažodžio atstatymo. Paspauskite jūsų slaptažodžio atstatymui skirtą nuorodą.\n"
 "\n"
 "%(password_reset_url)s\n"
 "\n"
 "Jūsų vartotojo vardas yra %(username)s\n"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_set.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_set.html:9
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_set.html:16
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_set.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_set.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_set.html:13
 msgid "Set Password"
 msgstr "Nustatyti slaptažodį"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/signup.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:5
 msgid "Signup"
 msgstr "Registracija"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:9
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:24
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/signup.html:9
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/signup.html:22
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:21
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:19
 msgid "Sign Up"
 msgstr "Registruotis"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:14
-msgid "Already have an account?"
-msgstr "Jau turite paskyrą?"
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:14
-msgid "Sign in"
-msgstr "Prisijungti"
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/timezone_change.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/timezone_change.html:9
-msgid "Timezone"
-msgstr "Laiko juosta"
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/timezone_change.html:11
-msgid ""
-"Pinax can localize all times into your preferred timezone. Change your "
-"timezone below."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:13
+#, python-format
+msgid "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
 msgstr ""
-"Pinax gali pritaikyti laiką prie jūsų pasirinktos laiko juostos. Keiskite"
-" laiko juostą žemiau."
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/timezone_change.html:18
-msgid "Change my timezone"
-msgstr "Keisti mano laiko juostą"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/verification_sent.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/verification_sent.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verification_sent.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verification_sent.html:8
 msgid "Verify Your E-mail Address"
 msgstr "Patikrinkite jūsų el. pašto adresą"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/verification_sent.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verification_sent.html:10
 #, python-format
-msgid ""
-"We have sent you an e-mail to <b>%(email)s</b> for verification. Follow "
-"the link provided to finalize the signup process. If you do not receive "
-"it within a few minutes, contact us at <a "
-"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
-msgstr ""
-"Išsiuntėme patvirtinimo el. laišką į <b>%(email)s</b>. Paspauskite "
-"pateiktą nuorodą, norėdami baigti registracijos procesą. Jei to negausite"
-" per kelias minutes, susisiekite su mumis <a "
-"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+msgid "We have sent you an e-mail to <b>%(email)s</b> for verification. Follow the link provided to finalize the signup process. If you do not receive it within a few minutes, contact us at <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+msgstr "Išsiuntėme patvirtinimo el. laišką į <b>%(email)s</b>. Paspauskite pateiktą nuorodą, norėdami baigti registracijos procesą. Jei to negausite per kelias minutes, susisiekite su mumis <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/snippets/already_logged_in.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/snippets/already_logged_in.html:5
 msgid "Note"
 msgstr "Pastaba"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/snippets/already_logged_in.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/snippets/already_logged_in.html:5
 #, python-format
 msgid "you are already logged in as %(user_display)s."
 msgstr "jūs jau esate prisijungęs kaip %(user_display)s."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/emailconfirmation/confirm_email.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/emailconfirmation/confirm_email.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:8
 msgid "E-mail Address Confirmation"
 msgstr "El. pašto adreso patvirtinimas"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/emailconfirmation/confirm_email.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:11
 #, python-format
-msgid ""
-"You have confirmed that <a href=\"mailto:%(email)s\">%(email)s</a> is an "
-"e-mail address for user '%(user)s'."
-msgstr ""
-"Patvirtinote, kad <a href=\"mailto:%(email)s\">%(email)s</a> yra "
-"'%(user)s' vartotojo el. pašto adresas."
+msgid "You have confirmed that <a href=\"mailto:%(email)s\">%(email)s</a> is an e-mail address for user '%(user)s'."
+msgstr "Patvirtinote, kad <a href=\"mailto:%(email)s\">%(email)s</a> yra '%(user)s' vartotojo el. pašto adresas."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/emailconfirmation/confirm_email.html:13
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:13
 msgid "Invalid confirmation key."
 msgstr "Netinkamas patvirtinimo raktas."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/openid/login.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/email_confirmation_message.txt:4
+#, python-format
+msgid ""
+"User '%(user)s' at %(site_name)s has given this as an email address.\n"
+"\n"
+"To confirm this is correct, go to %(activate_url)s\n"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/email_confirmation_subject.txt:1
+#, fuzzy
+msgid "Confirm E-mail Address"
+msgstr "Nustatytas pagrindinis el. pašto adresas"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/openid/login.html:9
 msgid "OpenID Sign In"
 msgstr "OpenID prisijungimas"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/account_inactive.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/account_inactive.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/account_inactive.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/account_inactive.html:8
 msgid "Account Inactive"
 msgstr "Paskyra neaktyvi"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/account_inactive.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/account_inactive.html:10
 msgid "This account is inactive."
 msgstr "Ši paskyra neaktyvi."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/authentication_error.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/authentication_error.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/authentication_error.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/authentication_error.html:8
 msgid "Social Network Login Failure"
 msgstr "Klaida "
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/authentication_error.html:10
-msgid ""
-"An error occured while attempting to login via your social network "
-"account."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/authentication_error.html:10
+msgid "An error occured while attempting to login via your social network account."
 msgstr "Įvyko klaida prisijungiant per jūsų socialinio tinklo paskyrą."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/connections.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/connections.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:8
 msgid "Account Connections"
 msgstr "Paskyros jungtys"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/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 3rd party "
-"paskyromis:"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/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 3rd party paskyromis:"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/connections.html:46
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:46
 msgid "Add a 3rd Party Account"
 msgstr "Pridėti 3rd Party Paskyra"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/login_cancelled.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/login_cancelled.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:9
 msgid "Login Cancelled"
 msgstr "Prisijungimas atšauktas"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/login_cancelled.html:13
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:13
 #, 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 <a "
-"href=\"%(login_url)s\">sign in</a>."
-msgstr ""
-"Nusprendėte atšaukti prisijungimą prie mūsų interneto svetainės "
-"naudodamiesi viena iš jūsų paskyrų. Jei įvyko klaida, prašome pradėti čia"
-" <a href=\"%(login_url)s\">sign in</a>."
+msgid "You decided to cancel logging in to our site using one of your exisiting accounts. If this was a mistake, please proceed to <a href=\"%(login_url)s\">sign in</a>."
+msgstr "Nusprendėte atšaukti prisijungimą prie mūsų interneto svetainės naudodamiesi viena iš jūsų paskyrų. Jei įvyko klaida, prašome pradėti čia <a href=\"%(login_url)s\">sign in</a>."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/signup.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:11
 #, python-format
 msgid ""
 "You are about to use your %(provider_name)s account to login to \n"
 "%(site_name)s. As a final step, please complete the following form:"
 msgstr ""
-"Jūs ruošiatės naudotis jūsų %(provider_name)s paskyra, kad "
-"prisijungtumėte prie \n"
+"Jūs ruošiatės naudotis jūsų %(provider_name)s paskyra, kad prisijungtumėte prie \n"
 "%(site_name)s. Prašome užpildyti šią formą:"
 
+#~ msgid "Language"
+#~ msgstr "Kalba"
+
+#~ msgid "Pinax can be used in your preferred language."
+#~ msgstr "Pinax gali būti naudojamas jūsų pageidaujama kalba."
+
+#~ msgid "Change my language"
+#~ msgstr "Keisti kalbą"
+
+#~ msgid "Already have an account?"
+#~ msgstr "Jau turite paskyrą?"
+
+#~ msgid "Sign in"
+#~ msgstr "Prisijungti"
+
+#~ msgid "Timezone"
+#~ msgstr "Laiko juosta"
+
+#~ msgid ""
+#~ "Pinax can localize all times into "
+#~ "your preferred timezone. Change your "
+#~ "timezone below."
+#~ msgstr ""
+#~ "Pinax gali pritaikyti laiką prie jūsų"
+#~ " pasirinktos laiko juostos. Keiskite laiko"
+#~ " juostą žemiau."
+
+#~ msgid "Change my timezone"
+#~ msgstr "Keisti mano laiko juostą"
diff --git a/wolnelektury/locale-contrib/pl/LC_MESSAGES/django.mo b/wolnelektury/locale-contrib/pl/LC_MESSAGES/django.mo
new file mode 100644 (file)
index 0000000..b60e4da
Binary files /dev/null and b/wolnelektury/locale-contrib/pl/LC_MESSAGES/django.mo differ
index 73d2db7..bf3a36a 100644 (file)
@@ -7,404 +7,360 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2012-07-19 11:40+0200\n"
-"PO-Revision-Date: 2012-03-13 15:39+0100\n"
+"POT-Creation-Date: 2012-08-14 17:40+0200\n"
+"PO-Revision-Date: 2012-08-14 17:49+0100\n"
 "Last-Translator: Radek Czajka <radoslaw.czajka@nowoczesnapolska.org.pl>\n"
 "Language-Team: pl <LL@li.org>\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"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Generated-By: Babel 0.9.6\n"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:36
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:167
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:341
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:36
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:191
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:358
 msgid "Password"
 msgstr "Hasło"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:40
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:40
 msgid "Remember Me"
 msgstr "Zapamiętaj mnie"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:52
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:113
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:284
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:363
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:52
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:139
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:301
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:380
 msgid "E-mail"
 msgstr "E-mail"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:57
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:104
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:57
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:130
 msgid "Username"
 msgstr "Login"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:85
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:85
 msgid "This account is currently inactive."
 msgstr "Konto jest nieaktywne."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:88
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:88
 msgid "The e-mail address and/or password you specified are not correct."
 msgstr "Podany e-mail i/lub hasło są niepoprawne."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:90
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:90
 msgid "The username and/or password you specified are not correct."
 msgstr "Podany login i/lub hasło są niepoprawne."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:116
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:142
 msgid "E-mail (optional)"
 msgstr "E-mail (opcjonalnie)"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:127
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:153
 msgid "Usernames can only contain letters, numbers and underscores."
 msgstr "Login może zawierać tylko litery, cyfry i znaki podkreślenia."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:133
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:159
 msgid "This username is already taken. Please choose another."
 msgstr "Ten login jest zajęty. Proszę wybrać inny."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:141
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:167
 msgid "A user is registered with this e-mail address."
 msgstr "Istnieje użytkownik o tym adresie e-mail."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:171
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:345
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:195
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:362
 msgid "Password (again)"
 msgstr "Hasło (ponownie)"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:198
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:330
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:352
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:428
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:225
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:347
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:369
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:444
 msgid "You must type the same password each time."
 msgstr "Proszę wpisać dwa razy to samo hasło."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:234
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:260
 msgid "Your e-mail address has already been verified"
 msgstr "Adres e-mail jest już zweryfikowany."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:244
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/utils.py:93
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:101
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:117
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:270
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:123
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:93
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:109
 #, python-format
 msgid "Confirmation e-mail sent to %(email)s"
 msgstr "E-mail potwierdzający wysłany do %(email)s"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:292
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:309
 msgid "This e-mail address already associated with this account."
 msgstr "Ten adres e-mail jest już używany przez to konto."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:293
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:310
 msgid "This e-mail address already associated with another account."
 msgstr "Ten adres e-mail jest już używany przez inne konto."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:310
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:327
 msgid "Current Password"
 msgstr "Aktualne hasło"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:314
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:411
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:331
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:427
 msgid "New Password"
 msgstr "Nowe hasło"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:318
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:415
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:335
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:431
 msgid "New Password (again)"
 msgstr "Nowe hasło (ponownie)"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:324
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:341
 msgid "Please type your current password."
 msgstr "Proszę wpisać swoje aktualne hasło."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:373
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:390
 msgid "The e-mail address is not assigned to any user account"
 msgstr "Ten adres e-mail nie jest używany przez żadne konto."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:393
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:409
 msgid "Password Reset E-mail"
 msgstr "E-mail resetujący hasło"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/utils.py:72
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:84
 #, python-format
 msgid "Successfully signed in as %(user)s."
 msgstr "Zalogowano jako  %(user)s."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:133
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:125
 #, python-format
 msgid "Removed e-mail address %(email)s"
 msgstr "Usunięto adres e-mail %(email)s"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:147
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:139
 msgid "Primary e-mail address set"
 msgstr "Ustawiono główny adres e-mail"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:168
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:241
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:160
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:233
 msgid "Password successfully changed."
 msgstr "Hasło zostało zmienione."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:191
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:183
 msgid "Password successfully set."
 msgstr "Hasło zostało ustawione."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:255
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/logout.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:247
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/logout.html:10
 msgid "You have signed out."
 msgstr "Wylogowano."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/openid/forms.py:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/openid/forms.py:6
 msgid "OpenID"
 msgstr "OpenID"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/forms.py:32
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:33
 msgid "Your local account has no password setup."
 msgstr "Twoje konto nie ma ustawionego hasła."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/forms.py:36
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:37
 msgid "Your local account has no verified e-mail address."
 msgstr "Twoje konto nie ma potwierdzonego adresu e-mail."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/helpers.py:112
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/helpers.py:111
 msgid "The social account has been connected to your existing account"
 msgstr "Konto społecznościowe zostało podłączone do Twojego konta."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:89
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:89
 #, python-format
 msgid "Invalid response while obtaining request token from \"%s\"."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:111
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:111
 #, python-format
 msgid "Invalid response while obtaining access token from \"%s\"."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:124
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:124
 #, python-format
 msgid "No request token saved for \"%s\"."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:172
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:172
 #, python-format
 msgid "No access token saved for \"%s\"."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:192
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:192
 #, python-format
 msgid "No access to private resources at \"%s\"."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/views.py:68
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/views.py:68
 msgid "The social account has been disconnected"
 msgstr "Konto społecznościowe zostało odłączone."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:5
 msgid "Account"
 msgstr "Konto"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:8
 msgid "E-mail Addresses"
 msgstr "Adresy e-mail"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:10
 msgid "The following e-mail addresses are associated to your account:"
 msgstr "Z Twoim kontem są związane następujące adresy e-mail:"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:26
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:24
 msgid "Verified"
 msgstr "Potwierdzony"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:28
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:26
 msgid "Unverified"
 msgstr "Nie potwierdzony"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:30
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:28
 msgid "Primary"
 msgstr "Główny"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:36
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:34
 msgid "Make Primary"
 msgstr "Ustaw główny"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:37
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:35
 msgid "Re-send Verification"
 msgstr "Ponownie prześlij link potwierdzający"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:38
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:36
 msgid "Remove"
 msgstr "Usuń"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:45
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:43
 msgid "Warning:"
 msgstr "Uwaga:"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:45
-msgid ""
-"You currently do not have any e-mail address set up. You should really "
-"add an e-mail address so you can receive notifications, reset your "
-"password, etc."
-msgstr ""
-"Nie masz ustawionego żadnego adresu e-mail. Dodanie adresu e-mail "
-"umożliwi odzyskanie konta w przypadku utraty hasła."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:43
+msgid "You currently do not have any e-mail address set up. You should really add an e-mail address so you can receive notifications, reset your password, etc."
+msgstr "Nie masz ustawionego żadnego adresu e-mail. Dodanie adresu e-mail umożliwi odzyskanie konta w przypadku utraty hasła."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:50
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:48
 msgid "Add E-mail Address"
 msgstr "Dodaj adres e-mail"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:57
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:53
 msgid "Add E-mail"
 msgstr "Dodaj e-mail"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:69
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:63
 msgid "Do you really want to remove the selected e-mail address?"
 msgstr "Czy na pewno usunąć wybrany adres e-mail?"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/language_change.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/language_change.html:9
-msgid "Language"
-msgstr "Język"
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/language_change.html:11
-msgid "Pinax can be used in your preferred language."
-msgstr ""
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/language_change.html:18
-msgid "Change my language"
-msgstr "Zmień język"
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:7
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:12
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:47
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:43
 msgid "Sign In"
 msgstr "Zaloguj"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:20
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:19
 #, python-format
 msgid ""
 "Please sign in with one\n"
 "of your existing third party accounts. Or, <a \n"
-"href=\"%(signup_url)s\">sign up</a> for a %(site_name)s account and sign "
-"in\n"
+"href=\"%(signup_url)s\">sign up</a> for a %(site_name)s account and sign in\n"
 "below:"
 msgstr ""
 "Zaloguj za pomocą konta zewnętrznego, albo <a \n"
-"href=\"%(signup_url)s\">zarejestruj się</a> w serwisie %(site_name)s i "
-"zaloguj poniżej:"
+"href=\"%(signup_url)s\">zarejestruj się</a> w serwisie %(site_name)s i zaloguj poniżej:"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:28
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:27
 msgid "or"
 msgstr "lub"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:45
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:42
 msgid "Forgot Password?"
 msgstr "Nie pamiętasz hasła?"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/logout.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/logout.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/logout.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/logout.html:8
 msgid "Signed Out"
 msgstr "Wylogowano"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_change.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_change.html:8
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_change.html:15
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_change.html:4
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_change.html:7
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_change.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:4
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:7
 msgid "Change Password"
 msgstr "Zmień hasło"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete.html:8
 msgid "Delete Password"
 msgstr "Usuń hasło"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete.html:9
-msgid ""
-"You may delete your password since you are currently logged in using "
-"OpenID."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete.html:9
+msgid "You may delete your password since you are currently logged in using OpenID."
 msgstr "Możesz usunąć hasło, ponieważ jesteś zalogowany/-a za pomocą OpenID."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete.html:12
 msgid "delete my password"
 msgstr "usuń moje hasło"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete_done.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete_done.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete_done.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete_done.html:8
 msgid "Password Deleted"
 msgstr "Hasło usunięte"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete_done.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete_done.html:9
 msgid "Your password has been deleted."
 msgstr "Twoje hasło zostało usunięte."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:7
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:11
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_done.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_done.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_done.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_done.html:9
 msgid "Password Reset"
 msgstr "Odzyskiwanie hasła"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:16
-msgid ""
-"Forgotten your password? Enter your e-mail address below, and we'll send "
-"you an e-mail allowing you to reset it."
-msgstr ""
-"Nie pamiętasz swojego hasła? Wpisz adres e-mail, a wyślemy Ci e-mail "
-"umożliwiający zresetowanie go."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:15
+msgid "Forgotten your password? Enter your e-mail address below, and we'll send you an e-mail allowing you to reset it."
+msgstr "Nie pamiętasz swojego hasła? Wpisz adres e-mail, a wyślemy Ci e-mail umożliwiający zresetowanie go."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:23
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:20
 msgid "Reset My Password"
 msgstr "Odzyskaj hasło"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:28
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:23
 #, python-format
-msgid ""
-"If you have any trouble resetting your password, contact us at <a "
-"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
-msgstr ""
-"Jeśli masz problem z odzyskaniem hasła, napisz do nas pod <a "
-"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+msgid "If you have any trouble resetting your password, contact us at <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+msgstr "Jeśli masz problem z odzyskaniem hasła, napisz do nas pod <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_done.html:15
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_done.html:15
 #, python-format
-msgid ""
-"We have sent you an e-mail. If you do not receive it within a few "
-"minutes, contact us at <a "
-"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
-msgstr ""
-"E-mail został wysłany. Jeśli nie otrzymasz go w ciągu kilku minut, napisz"
-" do nas pod <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+msgid "We have sent you an e-mail. If you do not receive it within a few minutes, contact us at <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+msgstr "E-mail został wysłany. Jeśli nie otrzymasz go w ciągu kilku minut, napisz do nas pod <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:7
 msgid "Bad Token"
 msgstr "Błędny klucz"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:11
 #, python-format
-msgid ""
-"The password reset link was invalid, possibly because it has already been"
-" used.  Please request a <a href=\"%(passwd_reset_url)s\">new password "
-"reset</a>."
-msgstr ""
-"Link resetujący hasło jest nieprawidłowy, być może ponieważ został już "
-"wcześniej użyty. Spróbuj <a href=\"%(passwd_reset_url)s\">zresetować "
-"hasło ponownie</a>."
+msgid "The password reset link was invalid, possibly because it has already been used.  Please request a <a href=\"%(passwd_reset_url)s\">new password reset</a>."
+msgstr "Link resetujący hasło jest nieprawidłowy, być może ponieważ został już wcześniej użyty. Spróbuj <a href=\"%(passwd_reset_url)s\">zresetować hasło ponownie</a>."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:20
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:17
 msgid "change password"
 msgstr "zmień hasło"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:25
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:20
 msgid "Your password is now changed."
 msgstr "Hasło zostało zmienione."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_key_message.txt:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_key_message.txt:9
 #, python-format
 msgid ""
-"You're receiving this e-mail because you or someone else has requested a "
-"password for your user account at %(site_domain)s.\n"
-"It can be safely ignored if you did not request a password reset. Click "
-"the link below to reset your password.\n"
+"You're receiving this e-mail because you or someone else has requested a password for your user account at %(site_domain)s.\n"
+"It can be safely ignored if you did not request a password reset. Click the link below to reset your password.\n"
 "\n"
 "%(password_reset_url)s\n"
 "\n"
@@ -412,10 +368,8 @@ msgid ""
 "\n"
 "Thanks for using our site!\n"
 msgstr ""
-"Otrzymujesz tego e-maila, ponieważ zostaliśmy poproszeni o zresetowanie "
-"hasła dla konta w serwisie %(site_domain)s.\n"
-"Możesz go zignorować, jeśli prośba nie pochodzi od Ciebie. Wejdź pod "
-"poniższy link, aby zresetować swoje hasło.\n"
+"Otrzymujesz tego e-maila, ponieważ zostaliśmy poproszeni o zresetowanie hasła dla konta w serwisie %(site_domain)s.\n"
+"Możesz go zignorować, jeśli prośba nie pochodzi od Ciebie. Wejdź pod poniższy link, aby zresetować swoje hasło.\n"
 "\n"
 "%(password_reset_url)s\n"
 "\n"
@@ -423,159 +377,154 @@ msgstr ""
 "\n"
 "Miłego czytania!\n"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_set.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_set.html:9
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_set.html:16
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_set.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_set.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_set.html:13
 msgid "Set Password"
 msgstr "Ustaw hasło"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/signup.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:5
 msgid "Signup"
 msgstr "Rejestracja"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:9
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:24
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/signup.html:9
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/signup.html:22
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:21
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:19
 msgid "Sign Up"
 msgstr "Zarejestruj się"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:14
-msgid "Already have an account?"
-msgstr "Masz już konto?"
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:14
-msgid "Sign in"
-msgstr "Zaloguj się"
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/timezone_change.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/timezone_change.html:9
-msgid "Timezone"
-msgstr ""
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/timezone_change.html:11
-msgid ""
-"Pinax can localize all times into your preferred timezone. Change your "
-"timezone below."
-msgstr ""
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/timezone_change.html:18
-msgid "Change my timezone"
-msgstr ""
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:13
+#, python-format
+msgid "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
+msgstr "Masz już konto? <a href=\"%(login_url)s\">Zaloguj się</a>."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/verification_sent.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/verification_sent.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verification_sent.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verification_sent.html:8
 msgid "Verify Your E-mail Address"
 msgstr "Potwierdź swój adres e-mail"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/verification_sent.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verification_sent.html:10
 #, python-format
-msgid ""
-"We have sent you an e-mail to <b>%(email)s</b> for verification. Follow "
-"the link provided to finalize the signup process. If you do not receive "
-"it within a few minutes, contact us at <a "
-"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
-msgstr ""
-"Na adres <b>%(email)s</b> został wysłany e-mail w celu potwierdzenia "
-"konta. W treści e-maila znajduje się link, pod który trzeba przejść w "
-"celu dokończenia rejestracji. Jeśli nie dostaniesz go w ciągu kilku "
-"minut, napisz do nas pod <a "
-"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+msgid "We have sent you an e-mail to <b>%(email)s</b> for verification. Follow the link provided to finalize the signup process. If you do not receive it within a few minutes, contact us at <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+msgstr "Na adres <b>%(email)s</b> został wysłany e-mail w celu potwierdzenia konta. W treści e-maila znajduje się link, pod który trzeba przejść w celu dokończenia rejestracji. Jeśli nie dostaniesz go w ciągu kilku minut, napisz do nas pod <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/snippets/already_logged_in.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/snippets/already_logged_in.html:5
 msgid "Note"
 msgstr "Zwróć uwagę"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/snippets/already_logged_in.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/snippets/already_logged_in.html:5
 #, python-format
 msgid "you are already logged in as %(user_display)s."
 msgstr "jesteś już zalogowany/-a jako %(user_display)s."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/emailconfirmation/confirm_email.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/emailconfirmation/confirm_email.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:8
 msgid "E-mail Address Confirmation"
 msgstr "Potwierdzenie adresu e-mail"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/emailconfirmation/confirm_email.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:11
 #, python-format
-msgid ""
-"You have confirmed that <a href=\"mailto:%(email)s\">%(email)s</a> is an "
-"e-mail address for user '%(user)s'."
-msgstr ""
-"Adres <a href=\"mailto:%(email)s\">%(email)s</a> został właśnie "
-"powierdzony jako e-mail dla użytkownika '%(user)s'."
+msgid "You have confirmed that <a href=\"mailto:%(email)s\">%(email)s</a> is an e-mail address for user '%(user)s'."
+msgstr "Adres <a href=\"mailto:%(email)s\">%(email)s</a> został właśnie powierdzony jako e-mail dla użytkownika '%(user)s'."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/emailconfirmation/confirm_email.html:13
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:13
 msgid "Invalid confirmation key."
 msgstr "Niepoprawny klucz potwierdzający."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/openid/login.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/email_confirmation_message.txt:4
+#, python-format
+msgid ""
+"User '%(user)s' at %(site_name)s has given this as an email address.\n"
+"\n"
+"To confirm this is correct, go to %(activate_url)s\n"
+msgstr ""
+"Użytkownik '%(user)s' podał ten adres e-mail na stronie  %(site_name)s.\n"
+"\n"
+"Aby go potwierdzić, przejdź do %(activate_url)s\n"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/email_confirmation_subject.txt:1
+msgid "Confirm E-mail Address"
+msgstr "Potwierdź adres e-mail"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/openid/login.html:9
 msgid "OpenID Sign In"
 msgstr "Logowanie przy użyciu OpenID"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/account_inactive.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/account_inactive.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/account_inactive.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/account_inactive.html:8
 msgid "Account Inactive"
 msgstr "Konto nieaktywne"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/account_inactive.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/account_inactive.html:10
 msgid "This account is inactive."
 msgstr "To konto jest nieaktywne."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/authentication_error.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/authentication_error.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/authentication_error.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/authentication_error.html:8
 msgid "Social Network Login Failure"
 msgstr "Błąd podczas logowania przy użyciu sieci społecznościowej."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/authentication_error.html:10
-msgid ""
-"An error occured while attempting to login via your social network "
-"account."
-msgstr ""
-"Podczas próby zalogowania za pośrednictwej konta w sieci społecznościowej"
-" wystąpił błąd."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/authentication_error.html:10
+msgid "An error occured while attempting to login via your social network account."
+msgstr "Podczas próby zalogowania za pośrednictwej konta w sieci społecznościowej wystąpił błąd."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/connections.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/connections.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:8
 msgid "Account Connections"
 msgstr "Powiązania konta"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/connections.html:11
-msgid ""
-"You can sign in to your account using any of the following third party "
-"accounts:"
-msgstr ""
-"Możesz zalogować się na swoje konto używając następujących kont "
-"zewnętrznych:"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:11
+msgid "You can sign in to your account using any of the following third party accounts:"
+msgstr "Możesz zalogować się na swoje konto używając następujących kont zewnętrznych:"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/connections.html:46
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:46
 msgid "Add a 3rd Party Account"
 msgstr "Dodaj konto zewnętrzne"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/login_cancelled.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/login_cancelled.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:9
 msgid "Login Cancelled"
 msgstr "Logowanie anulowane"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/login_cancelled.html:13
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:13
 #, 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 <a "
-"href=\"%(login_url)s\">sign in</a>."
-msgstr ""
-"Logowanie do serwisu za pomocą istniejącego konta zostało anulowane. "
-"Jeśli był to błąd, przejdź do <a href=\"%(login_url)s\">strony "
-"logowania</a>."
+msgid "You decided to cancel logging in to our site using one of your exisiting accounts. If this was a mistake, please proceed to <a href=\"%(login_url)s\">sign in</a>."
+msgstr "Logowanie do serwisu za pomocą istniejącego konta zostało anulowane. Jeśli był to błąd, przejdź do <a href=\"%(login_url)s\">strony logowania</a>."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/signup.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:11
 #, python-format
 msgid ""
 "You are about to use your %(provider_name)s account to login to \n"
 "%(site_name)s. As a final step, please complete the following form:"
 msgstr ""
 "Za chwilę użyjesz konta w serwisie %(provider_name)s aby zalogować się \n"
-"do serwisu %(site_name)s. Zanim to nastąpi, wypełnij proszę ten krótki "
-"formularz:"
+"do serwisu %(site_name)s. Zanim to nastąpi, wypełnij proszę ten krótki formularz:"
+
+#~ msgid "Language"
+#~ msgstr "Język"
+
+#~ msgid "Pinax can be used in your preferred language."
+#~ msgstr ""
+
+#~ msgid "Change my language"
+#~ msgstr "Zmień język"
+
+#~ msgid "Already have an account?"
+#~ msgstr "Masz już konto?"
+
+#~ msgid "Sign in"
+#~ msgstr "Zaloguj się"
+
+#~ msgid "Timezone"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Pinax can localize all times into "
+#~ "your preferred timezone. Change your "
+#~ "timezone below."
+#~ msgstr ""
 
+#~ msgid "Change my timezone"
+#~ msgstr ""
index b9dc1d1..d039922 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2012-07-19 11:40+0200\n"
+"POT-Creation-Date: 2012-08-14 17:40+0200\n"
 "PO-Revision-Date: 2012-03-22 14:23+0100\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: ru <LL@li.org>\n"
@@ -19,266 +19,253 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Generated-By: Babel 0.9.6\n"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:36
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:167
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:341
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:36
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:191
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:358
 msgid "Password"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:40
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:40
 msgid "Remember Me"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:52
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:113
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:284
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:363
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:52
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:139
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:301
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:380
 msgid "E-mail"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:57
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:104
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:57
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:130
 msgid "Username"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:85
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:85
 msgid "This account is currently inactive."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:88
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:88
 msgid "The e-mail address and/or password you specified are not correct."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:90
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:90
 msgid "The username and/or password you specified are not correct."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:116
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:142
 msgid "E-mail (optional)"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:127
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:153
 msgid "Usernames can only contain letters, numbers and underscores."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:133
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:159
 msgid "This username is already taken. Please choose another."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:141
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:167
 msgid "A user is registered with this e-mail address."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:171
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:345
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:195
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:362
 msgid "Password (again)"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:198
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:330
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:352
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:428
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:225
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:347
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:369
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:444
 msgid "You must type the same password each time."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:234
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:260
 msgid "Your e-mail address has already been verified"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:244
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/utils.py:93
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:101
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:117
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:270
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:123
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:93
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:109
 #, python-format
 msgid "Confirmation e-mail sent to %(email)s"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:292
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:309
 msgid "This e-mail address already associated with this account."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:293
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:310
 msgid "This e-mail address already associated with another account."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:310
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:327
 msgid "Current Password"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:314
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:411
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:331
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:427
 msgid "New Password"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:318
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:415
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:335
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:431
 msgid "New Password (again)"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:324
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:341
 msgid "Please type your current password."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:373
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:390
 msgid "The e-mail address is not assigned to any user account"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:393
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:409
 msgid "Password Reset E-mail"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/utils.py:72
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:84
 #, python-format
 msgid "Successfully signed in as %(user)s."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:133
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:125
 #, python-format
 msgid "Removed e-mail address %(email)s"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:147
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:139
 msgid "Primary e-mail address set"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:168
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:241
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:160
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:233
 msgid "Password successfully changed."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:191
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:183
 msgid "Password successfully set."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:255
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/logout.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:247
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/logout.html:10
 msgid "You have signed out."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/openid/forms.py:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/openid/forms.py:6
 msgid "OpenID"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/forms.py:32
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:33
 msgid "Your local account has no password setup."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/forms.py:36
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:37
 msgid "Your local account has no verified e-mail address."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/helpers.py:112
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/helpers.py:111
 msgid "The social account has been connected to your existing account"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:89
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:89
 #, python-format
 msgid "Invalid response while obtaining request token from \"%s\"."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:111
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:111
 #, python-format
 msgid "Invalid response while obtaining access token from \"%s\"."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:124
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:124
 #, python-format
 msgid "No request token saved for \"%s\"."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:172
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:172
 #, python-format
 msgid "No access token saved for \"%s\"."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:192
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:192
 #, python-format
 msgid "No access to private resources at \"%s\"."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/views.py:68
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/views.py:68
 msgid "The social account has been disconnected"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:5
 msgid "Account"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:8
 msgid "E-mail Addresses"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:10
 msgid "The following e-mail addresses are associated to your account:"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:26
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:24
 msgid "Verified"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:28
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:26
 msgid "Unverified"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:30
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:28
 msgid "Primary"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:36
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:34
 msgid "Make Primary"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:37
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:35
 msgid "Re-send Verification"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:38
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:36
 msgid "Remove"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:45
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:43
 msgid "Warning:"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:45
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:43
 msgid ""
 "You currently do not have any e-mail address set up. You should really "
 "add an e-mail address so you can receive notifications, reset your "
 "password, etc."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:50
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:48
 msgid "Add E-mail Address"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:57
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:53
 msgid "Add E-mail"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:69
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:63
 msgid "Do you really want to remove the selected e-mail address?"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/language_change.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/language_change.html:9
-msgid "Language"
-msgstr ""
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/language_change.html:11
-msgid "Pinax can be used in your preferred language."
-msgstr ""
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/language_change.html:18
-msgid "Change my language"
-msgstr ""
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:7
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:12
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:47
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:43
 msgid "Sign In"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:20
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:19
 #, python-format
 msgid ""
 "Please sign in with one\n"
@@ -288,76 +275,76 @@ msgid ""
 "below:"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:28
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:27
 msgid "or"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:45
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:42
 msgid "Forgot Password?"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/logout.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/logout.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/logout.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/logout.html:8
 msgid "Signed Out"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_change.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_change.html:8
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_change.html:15
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_change.html:4
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_change.html:7
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_change.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:4
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:7
 msgid "Change Password"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete.html:8
 msgid "Delete Password"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete.html:9
 msgid ""
 "You may delete your password since you are currently logged in using "
 "OpenID."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete.html:12
 msgid "delete my password"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete_done.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete_done.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete_done.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete_done.html:8
 msgid "Password Deleted"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete_done.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete_done.html:9
 msgid "Your password has been deleted."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:7
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:11
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_done.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_done.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_done.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_done.html:9
 msgid "Password Reset"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:16
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:15
 msgid ""
 "Forgotten your password? Enter your e-mail address below, and we'll send "
 "you an e-mail allowing you to reset it."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:23
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:20
 msgid "Reset My Password"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:28
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:23
 #, python-format
 msgid ""
 "If you have any trouble resetting your password, contact us at <a "
 "href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_done.html:15
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_done.html:15
 #, python-format
 msgid ""
 "We have sent you an e-mail. If you do not receive it within a few "
@@ -365,11 +352,11 @@ msgid ""
 "href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:7
 msgid "Bad Token"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:11
 #, python-format
 msgid ""
 "The password reset link was invalid, possibly because it has already been"
@@ -377,15 +364,15 @@ msgid ""
 "reset</a>."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:20
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:17
 msgid "change password"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:25
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:20
 msgid "Your password is now changed."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_key_message.txt:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_key_message.txt:9
 #, python-format
 msgid ""
 "You're receiving this e-mail because you or someone else has requested a "
@@ -400,53 +387,37 @@ msgid ""
 "Thanks for using our site!\n"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_set.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_set.html:9
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_set.html:16
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_set.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_set.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_set.html:13
 msgid "Set Password"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/signup.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:5
 msgid "Signup"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:9
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:24
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/signup.html:9
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/signup.html:22
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:21
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:19
 msgid "Sign Up"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:14
-msgid "Already have an account?"
-msgstr ""
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:14
-msgid "Sign in"
-msgstr ""
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/timezone_change.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/timezone_change.html:9
-msgid "Timezone"
-msgstr ""
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/timezone_change.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:13
+#, python-format
 msgid ""
-"Pinax can localize all times into your preferred timezone. Change your "
-"timezone below."
-msgstr ""
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/timezone_change.html:18
-msgid "Change my timezone"
+"Already have an account? Then please <a href=\"%(login_url)s\">sign "
+"in</a>."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/verification_sent.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/verification_sent.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verification_sent.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verification_sent.html:8
 msgid "Verify Your E-mail Address"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/verification_sent.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verification_sent.html:10
 #, python-format
 msgid ""
 "We have sent you an e-mail to <b>%(email)s</b> for verification. Follow "
@@ -455,76 +426,88 @@ msgid ""
 "href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/snippets/already_logged_in.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/snippets/already_logged_in.html:5
 msgid "Note"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/snippets/already_logged_in.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/snippets/already_logged_in.html:5
 #, python-format
 msgid "you are already logged in as %(user_display)s."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/emailconfirmation/confirm_email.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/emailconfirmation/confirm_email.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:8
 msgid "E-mail Address Confirmation"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/emailconfirmation/confirm_email.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:11
 #, python-format
 msgid ""
 "You have confirmed that <a href=\"mailto:%(email)s\">%(email)s</a> is an "
 "e-mail address for user '%(user)s'."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/emailconfirmation/confirm_email.html:13
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:13
 msgid "Invalid confirmation key."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/openid/login.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/email_confirmation_message.txt:4
+#, python-format
+msgid ""
+"User '%(user)s' at %(site_name)s has given this as an email address.\n"
+"\n"
+"To confirm this is correct, go to %(activate_url)s\n"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/email_confirmation_subject.txt:1
+msgid "Confirm E-mail Address"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/openid/login.html:9
 msgid "OpenID Sign In"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/account_inactive.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/account_inactive.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/account_inactive.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/account_inactive.html:8
 msgid "Account Inactive"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/account_inactive.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/account_inactive.html:10
 msgid "This account is inactive."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/authentication_error.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/authentication_error.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/authentication_error.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/authentication_error.html:8
 msgid "Social Network Login Failure"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/authentication_error.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/authentication_error.html:10
 msgid ""
 "An error occured while attempting to login via your social network "
 "account."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/connections.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/connections.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:8
 msgid "Account Connections"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/connections.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:11
 msgid ""
 "You can sign in to your account using any of the following third party "
 "accounts:"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/connections.html:46
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:46
 msgid "Add a 3rd Party Account"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/login_cancelled.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/login_cancelled.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:9
 msgid "Login Cancelled"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/login_cancelled.html:13
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:13
 #, python-format
 msgid ""
 "You decided to cancel logging in to our site using one of your exisiting "
@@ -532,10 +515,37 @@ msgid ""
 "href=\"%(login_url)s\">sign in</a>."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/signup.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:11
 #, python-format
 msgid ""
 "You are about to use your %(provider_name)s account to login to \n"
 "%(site_name)s. As a final step, please complete the following form:"
 msgstr ""
 
+#~ msgid "Language"
+#~ msgstr ""
+
+#~ msgid "Pinax can be used in your preferred language."
+#~ msgstr ""
+
+#~ msgid "Change my language"
+#~ msgstr ""
+
+#~ msgid "Already have an account?"
+#~ msgstr ""
+
+#~ msgid "Sign in"
+#~ msgstr ""
+
+#~ msgid "Timezone"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Pinax can localize all times into "
+#~ "your preferred timezone. Change your "
+#~ "timezone below."
+#~ msgstr ""
+
+#~ msgid "Change my timezone"
+#~ msgstr ""
+
index 79a7bac..09c72f5 100644 (file)
Binary files a/wolnelektury/locale-contrib/uk/LC_MESSAGES/django.mo and b/wolnelektury/locale-contrib/uk/LC_MESSAGES/django.mo differ
index b5cc79b..3919fd0 100644 (file)
@@ -7,288 +7,265 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2012-07-19 11:40+0200\n"
-"PO-Revision-Date: 2012-06-01 16:44+0100\n"
-"Last-Translator: Natalia Kertyczak <natalczyk@o2.pl>\n"
+"POT-Creation-Date: 2012-08-14 17:40+0200\n"
+"PO-Revision-Date: 2012-08-14 17:49+0100\n"
+"Last-Translator: Radek Czajka <radoslaw.czajka@nowoczesnapolska.org.pl>\n"
 "Language-Team: uk <LL@li.org>\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"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Generated-By: Babel 0.9.6\n"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:36
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:167
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:341
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:36
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:191
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:358
 msgid "Password"
 msgstr "Пароль"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:40
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:40
 msgid "Remember Me"
 msgstr "Запам’ятати мене"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:52
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:113
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:284
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:363
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:52
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:139
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:301
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:380
 msgid "E-mail"
 msgstr "E-mail"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:57
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:104
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:57
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:130
 msgid "Username"
 msgstr "Ім’я користувача"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:85
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:85
 msgid "This account is currently inactive."
 msgstr "Акаунт на даний момент є неактивним."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:88
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:88
 msgid "The e-mail address and/or password you specified are not correct."
 msgstr "Вказані електронна адреса та/або пароль неправильні."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:90
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:90
 msgid "The username and/or password you specified are not correct."
 msgstr "Вказані ім’я користувача та/або пароль неправильні."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:116
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:142
 msgid "E-mail (optional)"
 msgstr "E-mail (факультативно)"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:127
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:153
 msgid "Usernames can only contain letters, numbers and underscores."
 msgstr "Ім’я користувача може містити тільки букви, цифри та підчеркування."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:133
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:159
 msgid "This username is already taken. Please choose another."
 msgstr "Це ім’я користувача вже використано. Будь ласка, виберіть інше."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:141
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:167
 msgid "A user is registered with this e-mail address."
 msgstr "Користувач з такою електронною адресою вже існує."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:171
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:345
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:195
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:362
 msgid "Password (again)"
 msgstr "Пароль (повторити)"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:198
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:330
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:352
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:428
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:225
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:347
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:369
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:444
 msgid "You must type the same password each time."
 msgstr "Впишіть двічі такий самий пароль."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:234
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:260
 msgid "Your e-mail address has already been verified"
 msgstr "Вашу електронну адресу підтверджено."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:244
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/utils.py:93
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:101
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:117
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:270
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:123
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:93
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:109
 #, python-format
 msgid "Confirmation e-mail sent to %(email)s"
 msgstr "Подвідомлення для підтвердження реєстрації вислано на %(email)s"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:292
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:309
 msgid "This e-mail address already associated with this account."
 msgstr "Ця електронна адреса вже пов'язана з цім акаунтом."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:293
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:310
 msgid "This e-mail address already associated with another account."
 msgstr "Ця електронна адреса вже пов'язана з іншим акаунтом."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:310
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:327
 msgid "Current Password"
 msgstr "Актуальний пароль"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:314
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:411
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:331
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:427
 msgid "New Password"
 msgstr "Новий пароль"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:318
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:415
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:335
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:431
 msgid "New Password (again)"
 msgstr "Новий пароль (повторити)"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:324
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:341
 msgid "Please type your current password."
 msgstr "Введіть будь ласка Ваш теперішній пароль."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:373
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:390
 msgid "The e-mail address is not assigned to any user account"
 msgstr "Ця електронна адреса не пов'язана з жодним акаунтом."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/forms.py:393
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:409
 msgid "Password Reset E-mail"
 msgstr "Повідомлення для встановлення нового паролю"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/utils.py:72
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:84
 #, python-format
 msgid "Successfully signed in as %(user)s."
 msgstr "Ви успішно увійшли як %(user)s."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:133
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:125
 #, python-format
 msgid "Removed e-mail address %(email)s"
 msgstr "Видалено електронну адресу %(email)s"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:147
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:139
 msgid "Primary e-mail address set"
 msgstr "Встановлено основну електронну адресу"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:168
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:241
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:160
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:233
 msgid "Password successfully changed."
 msgstr "Пароль успішно змінено."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:191
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:183
 msgid "Password successfully set."
 msgstr "Успішно встановлено пароль."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/account/views.py:255
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/logout.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:247
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/logout.html:10
 msgid "You have signed out."
 msgstr "Ви вийшли з акаунту."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/openid/forms.py:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/openid/forms.py:6
 msgid "OpenID"
 msgstr "OpenID"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/forms.py:32
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:33
 msgid "Your local account has no password setup."
 msgstr "Для Вашого локального акаунту не встановлено пароля."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/forms.py:36
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:37
 msgid "Your local account has no verified e-mail address."
-msgstr ""
-"Для Вашого локального акаунту не встановлено перевіреної електронної "
-"адреси."
+msgstr "Для Вашого локального акаунту не встановлено перевіреної електронної адреси."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/helpers.py:112
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/helpers.py:111
 msgid "The social account has been connected to your existing account"
 msgstr "Ваш обліковий запис у соціальній мережі пов'язано з існуючим акаунтом."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:89
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:89
 #, python-format
 msgid "Invalid response while obtaining request token from \"%s\"."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:111
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:111
 #, python-format
 msgid "Invalid response while obtaining access token from \"%s\"."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:124
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:124
 #, python-format
 msgid "No request token saved for \"%s\"."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:172
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:172
 #, python-format
 msgid "No access token saved for \"%s\"."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/oauth.py:192
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:192
 #, python-format
 msgid "No access to private resources at \"%s\"."
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/socialaccount/views.py:68
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/views.py:68
 msgid "The social account has been disconnected"
 msgstr "Обліковий запис в соціальній мережі від'єднано."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:5
 msgid "Account"
 msgstr "Акаунт"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:8
 msgid "E-mail Addresses"
 msgstr "Електронні адреси"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:10
 msgid "The following e-mail addresses are associated to your account:"
 msgstr "З Вашим акаунтом пов'язані наступні електронні адреси:"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:26
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:24
 msgid "Verified"
 msgstr "Перевірено"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:28
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:26
 msgid "Unverified"
 msgstr "Неперевірено"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:30
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:28
 msgid "Primary"
 msgstr "Основна"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:36
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:34
 msgid "Make Primary"
 msgstr "Зробити основною"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:37
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:35
 msgid "Re-send Verification"
 msgstr "Надіслати ще раз повідомлення для перевірки"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:38
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:36
 msgid "Remove"
 msgstr "Видалити"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:45
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:43
 msgid "Warning:"
 msgstr "Попередження:"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:45
-msgid ""
-"You currently do not have any e-mail address set up. You should really "
-"add an e-mail address so you can receive notifications, reset your "
-"password, etc."
-msgstr ""
-"Ви не додали жодної електронної адреси. Рекомендуємо Вам додати адресу, "
-"для цього щоб отримувати повідомлення, мати можливість відновлення паролю"
-" тощо."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:43
+msgid "You currently do not have any e-mail address set up. You should really add an e-mail address so you can receive notifications, reset your password, etc."
+msgstr "Ви не додали жодної електронної адреси. Рекомендуємо Вам додати адресу, для цього щоб отримувати повідомлення, мати можливість відновлення паролю тощо."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:50
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:48
 msgid "Add E-mail Address"
 msgstr "Додати електронну адресу"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:57
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:53
 msgid "Add E-mail"
 msgstr "Додати електронну адресу"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/email.html:69
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:63
 msgid "Do you really want to remove the selected e-mail address?"
 msgstr "Чи справді хочете видалити вибрану адресу?"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/language_change.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/language_change.html:9
-msgid "Language"
-msgstr "Мова"
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/language_change.html:11
-msgid "Pinax can be used in your preferred language."
-msgstr "Платформою Pinax можна користуватися на вибраній Вами мові."
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/language_change.html:18
-msgid "Change my language"
-msgstr "Змінити мову"
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:7
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:12
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:47
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:43
 msgid "Sign In"
 msgstr "Увійти в акаунт"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:20
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:19
 #, python-format
 msgid ""
 "Please sign in with one\n"
 "of your existing third party accounts. Or, <a \n"
-"href=\"%(signup_url)s\">sign up</a> for a %(site_name)s account and sign "
-"in\n"
+"href=\"%(signup_url)s\">sign up</a> for a %(site_name)s account and sign in\n"
 "below:"
 msgstr ""
 "Увійдіть за допомогою\n"
@@ -296,120 +273,96 @@ msgstr ""
 "href=\"%(signup_url)s\">увійти</a> в акаунт %(site_name)s та увійти\n"
 "нижче:"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:28
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:27
 msgid "or"
 msgstr "або"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/login.html:45
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:42
 msgid "Forgot Password?"
 msgstr "Забули пароль?"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/logout.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/logout.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/logout.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/logout.html:8
 msgid "Signed Out"
 msgstr "Ви вийшли з акаунту."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_change.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_change.html:8
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_change.html:15
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_change.html:4
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_change.html:7
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_change.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:4
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:7
 msgid "Change Password"
 msgstr "Змінити пароль"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete.html:8
 msgid "Delete Password"
 msgstr "Видалити пароль"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete.html:9
-msgid ""
-"You may delete your password since you are currently logged in using "
-"OpenID."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete.html:9
+msgid "You may delete your password since you are currently logged in using OpenID."
 msgstr "Можете видалити свій пароль, тому що зараз ви увійшли за допомогою OpenID."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete.html:12
 msgid "delete my password"
 msgstr "видалити мій пароль"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete_done.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete_done.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete_done.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete_done.html:8
 msgid "Password Deleted"
 msgstr "Пароль видалено"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_delete_done.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete_done.html:9
 msgid "Your password has been deleted."
 msgstr "Ваш пароль видалено."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:7
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:11
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_done.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_done.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_done.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_done.html:9
 msgid "Password Reset"
 msgstr "Зміна паролю"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:16
-msgid ""
-"Forgotten your password? Enter your e-mail address below, and we'll send "
-"you an e-mail allowing you to reset it."
-msgstr ""
-"Забули пароль? Введіть свою електронну адресу, щоб отримати інструкції "
-"щодо встановлення нового паролю."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:15
+msgid "Forgotten your password? Enter your e-mail address below, and we'll send you an e-mail allowing you to reset it."
+msgstr "Забули пароль? Введіть свою електронну адресу, щоб отримати інструкції щодо встановлення нового паролю."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:23
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:20
 msgid "Reset My Password"
 msgstr "Змінити мій пароль"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset.html:28
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:23
 #, python-format
-msgid ""
-"If you have any trouble resetting your password, contact us at <a "
-"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
-msgstr ""
-"Якщо у Вас виникають проблеми зі зміною паролю, напишіть нам на адресу, "
-"<a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+msgid "If you have any trouble resetting your password, contact us at <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+msgstr "Якщо у Вас виникають проблеми зі зміною паролю, напишіть нам на адресу, <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_done.html:15
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_done.html:15
 #, python-format
-msgid ""
-"We have sent you an e-mail. If you do not receive it within a few "
-"minutes, contact us at <a "
-"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
-msgstr ""
-"Вам було вислано повідомлення. Якщо не отримаєте його протягом кількох "
-"хвилин, напишіть на адресу <a "
-"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+msgid "We have sent you an e-mail. If you do not receive it within a few minutes, contact us at <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+msgstr "Вам було вислано повідомлення. Якщо не отримаєте його протягом кількох хвилин, напишіть на адресу <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:7
 msgid "Bad Token"
 msgstr ""
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:11
 #, python-format
-msgid ""
-"The password reset link was invalid, possibly because it has already been"
-" used.  Please request a <a href=\"%(passwd_reset_url)s\">new password "
-"reset</a>."
-msgstr ""
-"Посилання на зміну пароля було неправильним, тому що його вже "
-"використали. Будь ласка, замовте <a href=\"%(passwd_reset_url)s\">ще одну"
-" зміну пароля</a>."
+msgid "The password reset link was invalid, possibly because it has already been used.  Please request a <a href=\"%(passwd_reset_url)s\">new password reset</a>."
+msgstr "Посилання на зміну пароля було неправильним, тому що його вже використали. Будь ласка, замовте <a href=\"%(passwd_reset_url)s\">ще одну зміну пароля</a>."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:20
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:17
 msgid "change password"
 msgstr "змінити пароль"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_from_key.html:25
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:20
 msgid "Your password is now changed."
 msgstr "Ваш пароль змінено."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_reset_key_message.txt:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_key_message.txt:9
 #, python-format
 msgid ""
-"You're receiving this e-mail because you or someone else has requested a "
-"password for your user account at %(site_domain)s.\n"
-"It can be safely ignored if you did not request a password reset. Click "
-"the link below to reset your password.\n"
+"You're receiving this e-mail because you or someone else has requested a password for your user account at %(site_domain)s.\n"
+"It can be safely ignored if you did not request a password reset. Click the link below to reset your password.\n"
 "\n"
 "%(password_reset_url)s\n"
 "\n"
@@ -417,10 +370,8 @@ msgid ""
 "\n"
 "Thanks for using our site!\n"
 msgstr ""
-"Ви отримали це повідомлення, тому що хтось попросив про зміну пароля для "
-"Вашого акаунту на сайті %(site_domain)s.\n"
-"Якщо ви не просили про зміну, можете проігнорувати це повідомлення. Для "
-"зміни пароля натисніть посилання.\n"
+"Ви отримали це повідомлення, тому що хтось попросив про зміну пароля для Вашого акаунту на сайті %(site_domain)s.\n"
+"Якщо ви не просили про зміну, можете проігнорувати це повідомлення. Для зміни пароля натисніть посилання.\n"
 "\n"
 "%(password_reset_url)s\n"
 "\n"
@@ -428,161 +379,155 @@ msgstr ""
 "\n"
 "Дякуємо за користування нашим сайтом!\n"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_set.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_set.html:9
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/password_set.html:16
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_set.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_set.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_set.html:13
 msgid "Set Password"
 msgstr "Встановити пароль"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/signup.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:5
 msgid "Signup"
 msgstr "Реєстрація"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:9
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:24
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/signup.html:9
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/signup.html:22
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:21
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:19
 msgid "Sign Up"
 msgstr "Реєструватися"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:14
-msgid "Already have an account?"
-msgstr "У вас вже є акаунт?"
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/signup.html:14
-msgid "Sign in"
-msgstr "Увійти"
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/timezone_change.html:6
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/timezone_change.html:9
-msgid "Timezone"
-msgstr "Часовий пояс"
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/timezone_change.html:11
-msgid ""
-"Pinax can localize all times into your preferred timezone. Change your "
-"timezone below."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:13
+#, python-format
+msgid "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
 msgstr ""
-"Pinax може змінити усі години у відповідності до Вашого часового пояса. "
-"Часовий пояс можна змінити нижче."
-
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/timezone_change.html:18
-msgid "Change my timezone"
-msgstr "Змінити часовий пояс"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/verification_sent.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/verification_sent.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verification_sent.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verification_sent.html:8
 msgid "Verify Your E-mail Address"
 msgstr "Перевірити електронну адресу"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/verification_sent.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verification_sent.html:10
 #, python-format
-msgid ""
-"We have sent you an e-mail to <b>%(email)s</b> for verification. Follow "
-"the link provided to finalize the signup process. If you do not receive "
-"it within a few minutes, contact us at <a "
-"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
-msgstr ""
-"Вам було надіслано повідомлення на <b>%(email)s</b> для перевірення "
-"адреси. Натисніть отримане посилання, щоб завершити процес реєстрації. "
-"Якщо не отримажте повідомлення протягом кількох хвилин, напишіть нам на "
-"адресу <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+msgid "We have sent you an e-mail to <b>%(email)s</b> for verification. Follow the link provided to finalize the signup process. If you do not receive it within a few minutes, contact us at <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+msgstr "Вам було надіслано повідомлення на <b>%(email)s</b> для перевірення адреси. Натисніть отримане посилання, щоб завершити процес реєстрації. Якщо не отримажте повідомлення протягом кількох хвилин, напишіть нам на адресу <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/snippets/already_logged_in.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/snippets/already_logged_in.html:5
 msgid "Note"
 msgstr "Увага"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/account/snippets/already_logged_in.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/snippets/already_logged_in.html:5
 #, python-format
 msgid "you are already logged in as %(user_display)s."
 msgstr "ви вже увійшли як користувач %(user_display)s."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/emailconfirmation/confirm_email.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/emailconfirmation/confirm_email.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:8
 msgid "E-mail Address Confirmation"
 msgstr "Підтвердження електронної адреси."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/emailconfirmation/confirm_email.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:11
 #, python-format
-msgid ""
-"You have confirmed that <a href=\"mailto:%(email)s\">%(email)s</a> is an "
-"e-mail address for user '%(user)s'."
-msgstr ""
-"Ви підтвердили, що адреса <a href=\"mailto:%(email)s\">%(email)s</a> є "
-"адресою коричтувача '%(user)s'."
+msgid "You have confirmed that <a href=\"mailto:%(email)s\">%(email)s</a> is an e-mail address for user '%(user)s'."
+msgstr "Ви підтвердили, що адреса <a href=\"mailto:%(email)s\">%(email)s</a> є адресою коричтувача '%(user)s'."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/emailconfirmation/confirm_email.html:13
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:13
 msgid "Invalid confirmation key."
 msgstr "Неправильний ключ підтвердження."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/openid/login.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/email_confirmation_message.txt:4
+#, python-format
+msgid ""
+"User '%(user)s' at %(site_name)s has given this as an email address.\n"
+"\n"
+"To confirm this is correct, go to %(activate_url)s\n"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/email_confirmation_subject.txt:1
+#, fuzzy
+msgid "Confirm E-mail Address"
+msgstr "Встановлено основну електронну адресу"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/openid/login.html:9
 msgid "OpenID Sign In"
 msgstr "Увійти за допомогою OpenID"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/account_inactive.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/account_inactive.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/account_inactive.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/account_inactive.html:8
 msgid "Account Inactive"
 msgstr "Неактивний акаунт"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/account_inactive.html:10
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/account_inactive.html:10
 msgid "This account is inactive."
 msgstr "Цей акаунт неактивний."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/authentication_error.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/authentication_error.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/authentication_error.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/authentication_error.html:8
 msgid "Social Network Login Failure"
 msgstr "Неможливо увійти в систему за допомогою соціальної мережі."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/authentication_error.html:10
-msgid ""
-"An error occured while attempting to login via your social network "
-"account."
-msgstr ""
-"Під час спроби увійти за допомоги облікового запису у соціальній мережі "
-"наступила помилка."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/authentication_error.html:10
+msgid "An error occured while attempting to login via your social network account."
+msgstr "Під час спроби увійти за допомоги облікового запису у соціальній мережі наступила помилка."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/connections.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/connections.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:8
 msgid "Account Connections"
 msgstr "Пов’язані облікові записи"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/connections.html:11
-msgid ""
-"You can sign in to your account using any of the following third party "
-"accounts:"
-msgstr ""
-"Можете увійти у Ваш акаунт за допомогою облікових записів у наступних "
-"системах:"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:11
+msgid "You can sign in to your account using any of the following third party accounts:"
+msgstr "Можете увійти у Ваш акаунт за допомогою облікових записів у наступних системах:"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/connections.html:46
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:46
 msgid "Add a 3rd Party Account"
 msgstr "Додати обліковий запис у іншій системі"
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/login_cancelled.html:5
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/login_cancelled.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:9
 msgid "Login Cancelled"
 msgstr "Спробу увійти в систему скасовано."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/login_cancelled.html:13
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:13
 #, 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 <a "
-"href=\"%(login_url)s\">sign in</a>."
-msgstr ""
-"Ви вирішили скасувати спробу увійти в систему за допомогою вже існуючого "
-"облікового запису. Якщо це помилка, перейдіть до <a "
-"href=\"%(login_url)s\">увійти</a>."
+msgid "You decided to cancel logging in to our site using one of your exisiting accounts. If this was a mistake, please proceed to <a href=\"%(login_url)s\">sign in</a>."
+msgstr "Ви вирішили скасувати спробу увійти в систему за допомогою вже існуючого облікового запису. Якщо це помилка, перейдіть до <a href=\"%(login_url)s\">увійти</a>."
 
-#: /srv/wolnelektury.pl/ve/lib/python2.6/site-packages/allauth/templates/socialaccount/signup.html:12
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:11
 #, python-format
 msgid ""
 "You are about to use your %(provider_name)s account to login to \n"
 "%(site_name)s. As a final step, please complete the following form:"
 msgstr ""
-"Хочете скористатися вашим обліковим записом %(provider_name)s щоб увійти "
-"на сайт \n"
-"%(site_name)s. Для завершення процесу, заповніть будь ласка наступну "
-"форму:"
+"Хочете скористатися вашим обліковим записом %(provider_name)s щоб увійти на сайт \n"
+"%(site_name)s. Для завершення процесу, заповніть будь ласка наступну форму:"
+
+#~ msgid "Language"
+#~ msgstr "Мова"
+
+#~ msgid "Pinax can be used in your preferred language."
+#~ msgstr "Платформою Pinax можна користуватися на вибраній Вами мові."
+
+#~ msgid "Change my language"
+#~ msgstr "Змінити мову"
+
+#~ msgid "Already have an account?"
+#~ msgstr "У вас вже є акаунт?"
+
+#~ msgid "Sign in"
+#~ msgstr "Увійти"
+
+#~ msgid "Timezone"
+#~ msgstr "Часовий пояс"
+
+#~ msgid ""
+#~ "Pinax can localize all times into "
+#~ "your preferred timezone. Change your "
+#~ "timezone below."
+#~ msgstr ""
+#~ "Pinax може змінити усі години у "
+#~ "відповідності до Вашого часового пояса. "
+#~ "Часовий пояс можна змінити нижче."
 
+#~ msgid "Change my timezone"
+#~ msgstr "Змінити часовий пояс"
index 6bf5a88..446c730 100644 (file)
@@ -5,29 +5,12 @@ API_WAIT = 10
 MAX_TAG_LIST = 6
 
 NO_SEARCH_INDEX = False
-NO_BUILD_EPUB = False
-NO_BUILD_TXT = False
-NO_BUILD_FB2 = False
-# You'll need XeLaTeX to generate PDF files.
-NO_BUILD_PDF = True
 NO_CUSTOM_PDF = True
-# You'll need Calibre installed to generate MOBI files.
-NO_BUILD_MOBI = True
-
-
-ALL_EPUB_ZIP = 'wolnelektury_pl_epub'
-ALL_PDF_ZIP = 'wolnelektury_pl_pdf'
-ALL_MOBI_ZIP = 'wolnelektury_pl_mobi'
-ALL_FB2_ZIP = 'wolnelektury_pl_fb2'
 
 CATALOGUE_DEFAULT_LANGUAGE = 'pol'
 PUBLISH_PLAN_FEED = 'http://redakcja.wolnelektury.pl/documents/track/editor-proofreading/?published=false'
 
 # limit rate for ebooks creation
-CATALOGUE_PDF_RATE_LIMIT = '1/m'
-CATALOGUE_EPUB_RATE_LIMIT = '6/m'
-CATALOGUE_FB2_RATE_LIMIT = '5/m'
-CATALOGUE_MOBI_RATE_LIMIT = '5/m'
 CATALOGUE_CUSTOMPDF_RATE_LIMIT = '1/m'
 
 # set to 'new' or 'old' to skip time-consuming test