From: Marcin Koziej Date: Mon, 3 Sep 2012 14:55:43 +0000 (+0200) Subject: Merge branch 'master' into sunburnt X-Git-Url: https://git.mdrn.pl/wolnelektury.git/commitdiff_plain/ddaff853c515ef7d188523d9ef17d271901dd581?hp=fa9ab52217a8e6912fa4677fc7bb1da21044b470 Merge branch 'master' into sunburnt Conflicts: apps/catalogue/management/commands/importbooks.py apps/catalogue/models/book.py --- diff --git a/apps/catalogue/__init__.py b/apps/catalogue/__init__.py index e69de29bb..1fbdc2093 100644 --- a/apps/catalogue/__init__.py +++ b/apps/catalogue/__init__.py @@ -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') diff --git a/apps/catalogue/constants.py b/apps/catalogue/constants.py index e1c92f8cd..e2181afa0 100644 --- a/apps/catalogue/constants.py +++ b/apps/catalogue/constants.py @@ -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 diff --git a/apps/catalogue/fields.py b/apps/catalogue/fields.py index 5ab78eb03..68aaa4025 100644 --- a/apps/catalogue/fields.py +++ b/apps/catalogue/fields.py @@ -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"]) diff --git a/apps/catalogue/forms.py b/apps/catalogue/forms.py index 5fb113c24..480eddff7 100644 --- a/apps/catalogue/forms.py +++ b/apps/catalogue/forms.py @@ -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"), ( diff --git a/apps/catalogue/locale/pl/LC_MESSAGES/django.mo b/apps/catalogue/locale/pl/LC_MESSAGES/django.mo index 5e2032d5f..dfd8de096 100644 Binary files a/apps/catalogue/locale/pl/LC_MESSAGES/django.mo and b/apps/catalogue/locale/pl/LC_MESSAGES/django.mo differ diff --git a/apps/catalogue/locale/pl/LC_MESSAGES/django.po b/apps/catalogue/locale/pl/LC_MESSAGES/django.po index ea16abf00..f97d11926 100644 --- a/apps/catalogue/locale/pl/LC_MESSAGES/django.po +++ b/apps/catalogue/locale/pl/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-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 \n" "Language-Team: LANGUAGE \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" -" Creative " -"Commons Attribution-ShareAlike 3.0\n" +" Creative Commons Attribution-ShareAlike 3.0\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 "" diff --git a/apps/catalogue/management/commands/checkcovers.py b/apps/catalogue/management/commands/checkcovers.py index ef61702ce..1af39e15a 100644 --- a/apps/catalogue/management/commands/checkcovers.py +++ b/apps/catalogue/management/commands/checkcovers.py @@ -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) diff --git a/apps/catalogue/management/commands/importbooks.py b/apps/catalogue/management/commands/importbooks.py index 1f08f7cff..8f181cf98 100644 --- a/apps/catalogue/management/commands/importbooks.py +++ b/apps/catalogue/management/commands/importbooks.py @@ -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): diff --git a/apps/catalogue/management/commands/pack.py b/apps/catalogue/management/commands/pack.py index 280c0f6ad..6ecf32d59 100755 --- a/apps/catalogue/management/commands/pack.py +++ b/apps/catalogue/management/commands/pack.py @@ -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 index 000000000..f048a4599 --- /dev/null +++ b/apps/catalogue/migrations/0004_remove_parent_fb2.py @@ -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 index 000000000..6f6bc810d --- /dev/null +++ b/apps/catalogue/migrations/0005_auto__chg_field_book_pdf_file__chg_field_book_html_file__chg_field_boo.py @@ -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 diff --git a/apps/catalogue/models/book.py b/apps/catalogue/models/book.py index d3df67e6f..5bc1e1021 100644 --- a/apps/catalogue/models/book.py +++ b/apps/catalogue/models/book.py @@ -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) diff --git a/apps/catalogue/tasks.py b/apps/catalogue/tasks.py index 8906a141c..e7f7b2947 100644 --- a/apps/catalogue/tasks.py +++ b/apps/catalogue/tasks.py @@ -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()))) diff --git a/apps/catalogue/templates/catalogue/book_detail.html b/apps/catalogue/templates/catalogue/book_detail.html index 783b688d2..4c14158ef 100644 --- a/apps/catalogue/templates/catalogue/book_detail.html +++ b/apps/catalogue/templates/catalogue/book_detail.html @@ -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 %} diff --git a/apps/catalogue/templates/catalogue/book_text.html b/apps/catalogue/templates/catalogue/book_text.html index d2d5d330e..bfe666f5d 100644 --- a/apps/catalogue/templates/catalogue/book_text.html +++ b/apps/catalogue/templates/catalogue/book_text.html @@ -46,6 +46,9 @@ {% if book.mobi_file %}
  • MOBI {% trans "for Kindle" %}
  • {% endif %} + {% if book.fb2_file %} +
  • FB2 {% trans "FictionBook" %}
  • + {% endif %} {% if book.txt_file %}
  • TXT {% trans "for advanced usage" %}
  • {% endif %} diff --git a/apps/catalogue/test_utils.py b/apps/catalogue/test_utils.py index f42818f7e..5e02619f9 100644 --- a/apps/catalogue/test_utils.py +++ b/apps/catalogue/test_utils.py @@ -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 diff --git a/apps/catalogue/tests/__init__.py b/apps/catalogue/tests/__init__.py index 9c0163aad..17a05b47c 100644 --- a/apps/catalogue/tests/__init__.py +++ b/apps/catalogue/tests/__init__.py @@ -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 * diff --git a/apps/catalogue/tests/book_import.py b/apps/catalogue/tests/book_import.py index 09d0e1e79..76061d05a 100644 --- a/apps/catalogue/tests/book_import.py +++ b/apps/catalogue/tests/book_import.py @@ -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)) diff --git a/apps/catalogue/tests/bookmedia.py b/apps/catalogue/tests/bookmedia.py index 5d2ba66c3..da427e8b5 100644 --- a/apps/catalogue/tests/bookmedia.py +++ b/apps/catalogue/tests/bookmedia.py @@ -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 index 000000000..765c56b07 --- /dev/null +++ b/apps/catalogue/tests/cover.py @@ -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 = """""" + 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) diff --git a/apps/catalogue/utils.py b/apps/catalogue/utils.py index bda7e0475..1ac0ee8d8 100644 --- a/apps/catalogue/utils.py +++ b/apps/catalogue/utils.py @@ -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 diff --git a/apps/dictionary/models.py b/apps/dictionary/models.py index 52d687181..375bb22ca 100644 --- a/apps/dictionary/models.py +++ b/apps/dictionary/models.py @@ -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) diff --git a/apps/dictionary/tests.py b/apps/dictionary/tests.py index 0de7c5e6d..27285cc14 100755 --- a/apps/dictionary/tests.py +++ b/apps/dictionary/tests.py @@ -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): diff --git a/apps/dictionary/views.py b/apps/dictionary/views.py index a2a814b03..4208d9b4c 100755 --- a/apps/dictionary/views.py +++ b/apps/dictionary/views.py @@ -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) diff --git a/apps/oai/tests/oaipmhapi.py b/apps/oai/tests/oaipmhapi.py index 6ef3b096c..b4947fe3d 100644 --- a/apps/oai/tests/oaipmhapi.py +++ b/apps/oai/tests/oaipmhapi.py @@ -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 index 000000000..d6e9ca05a --- /dev/null +++ b/apps/opds/tests/__init__.py @@ -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 index 000000000..53c172430 --- /dev/null +++ b/apps/opds/tests/files/do-doktora.xml @@ -0,0 +1,56 @@ + + + +Kochanowski, Jan +Do doktora (Fraszka a doktor — to są dwie rzeczy przeciwne...) +http://wolnelektury.pl/lektura/fraszki-ksiegi-trzecie +Krzyżanowski, Julian +Otwinowska, Barbara +Sekuła, Aleksandra +Sutkowska, Olga +Gałecki, Dariusz +Fikcyjny, Tłumacz +Fundacja Nowoczesna Polska +Renesans +Liryka +Fraszka +Publikacja zrealizowana w ramach projektu Wolne Lektury (http://wolnelektury.pl). Reprodukcja cyfrowa wykonana przez Bibliotekę Narodową z egzemplarza pochodzącego ze zbiorów BN. +http://wolnelektury.pl/katalog/lektura/fraszki-ksiegi-trzecie-do-doktora-fraszka-a-doktor-to-sa-dwi +http://www.polona.pl/dlibra/doccontent2?id=1499&from=editionindex&dirids=1 +Jan Kochanowski, Dzieła polskie, tom 1, Państwowy Instytut Wydawniczy, wyd. 8, Warszawa, 1976 +Domena publiczna - Jan Kochanowski zm. 1584 +1584 +xml +text +text +2007-09-07 +SP2 +G +L +pol +http://redakcja.wolnelektury.pl/media/dynamic/cover/image/607.jpg +Artondra Hall@Flickr, CC BY 2.0 +http://redakcja.wolnelektury.pl/cover/image/607 + + + + +Jan Kochanowski + +Fraszki, Księgi wtóre + +Do doktoraÅ»artobliwy ton każe przypuszczać, iż adresatem wierszyka jest Jakub Montanus (por. przyp. do fr. II 49). + + + +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ę. + + + \ No newline at end of file diff --git a/apps/picture/tests/picture_import.py b/apps/picture/tests/picture_import.py index 202acdd65..785aa6d28 100644 --- a/apps/picture/tests/picture_import.py +++ b/apps/picture/tests/picture_import.py @@ -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")) diff --git a/apps/search/tests/index.py b/apps/search/tests/index.py index 738288892..5155a84e4 100644 --- a/apps/search/tests/index.py +++ b/apps/search/tests/index.py @@ -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 index 000000000..6bcdf12cf --- /dev/null +++ b/apps/wolnelektury_core/templates/account/base.html @@ -0,0 +1,10 @@ +{% extends "site_base.html" %} + +{% block body %} +{% block content %} {% endblock %} +{% endblock %} + +{% block extrabody %} +{% block extra_body %} +{% endblock %} +{% endblock %} diff --git a/apps/wolnelektury_core/templates/main_page.html b/apps/wolnelektury_core/templates/main_page.html index fb9b144c4..f9ff45ec4 100755 --- a/apps/wolnelektury_core/templates/main_page.html +++ b/apps/wolnelektury_core/templates/main_page.html @@ -49,7 +49,6 @@ diff --git a/lib/librarian b/lib/librarian index d183a3c15..8059679ab 160000 --- a/lib/librarian +++ b/lib/librarian @@ -1 +1 @@ -Subproject commit d183a3c15dee46ea00ac15c77e72903adfce8d1a +Subproject commit 8059679abd4a0a2e554457dd6266941a31356f73 diff --git a/requirements-test.txt b/requirements-test.txt index d766c0725..1f1021311 100644 --- a/requirements-test.txt +++ b/requirements-test.txt @@ -2,3 +2,4 @@ nose>=0.11 django-nose nosexcover polib +mock diff --git a/requirements.txt b/requirements.txt index 53ff47d2d..c7e33c2f2 100644 --- a/requirements.txt +++ b/requirements.txt @@ -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 index 000000000..d42ae5a14 Binary files /dev/null and b/wolnelektury/locale-contrib/de/LC_MESSAGES/django.mo differ diff --git a/wolnelektury/locale-contrib/de/LC_MESSAGES/django.po b/wolnelektury/locale-contrib/de/LC_MESSAGES/django.po index 14b266541..096febdac 100644 --- a/wolnelektury/locale-contrib/de/LC_MESSAGES/django.po +++ b/wolnelektury/locale-contrib/de/LC_MESSAGES/django.po @@ -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 \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 \n" "Language-Team: de \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, sign up for a %(site_name)s account and sign " -"in\n" +"href=\"%(signup_url)s\">sign up 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, registrieren Sie for a %(site_name)s den " -"Account und loggen Sie sich ein\n" +"href=\"%(signup_url)s\">registrieren Sie 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 %(CONTACT_EMAIL)s." -msgstr "" -"Falls Sie Probleme haben, Ihr Schlüsselwort neu zu stellen, wenden Sie " -"isch biite an uns %(CONTACT_EMAIL)s." +msgid "If you have any trouble resetting your password, contact us at %(CONTACT_EMAIL)s." +msgstr "Falls Sie Probleme haben, Ihr Schlüsselwort neu zu stellen, wenden Sie isch biite an uns %(CONTACT_EMAIL)s." -#: /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 %(CONTACT_EMAIL)s." -msgstr "" -"Wir haben Ihnen eine Email geschickt. Falls Sie sie nicht innerhalb von " -"einigen Minuten erhalten, wenden Sie sich bitte an uns %(CONTACT_EMAIL)s." +msgid "We have sent you an e-mail. If you do not receive it within a few minutes, contact us at %(CONTACT_EMAIL)s." +msgstr "Wir haben Ihnen eine Email geschickt. Falls Sie sie nicht innerhalb von einigen Minuten erhalten, wenden Sie sich bitte an uns %(CONTACT_EMAIL)s." -#: /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 new password " -"reset." -msgstr "" -"Der Passwort-Reset-Link war falsch, da er schon möglicherweise benutzt " -"worden war. Bitten Sie um ein Reset " -"eines neuen Passwortes." +msgid "The password reset link was invalid, possibly because it has already been used. Please request a new password reset." +msgstr "Der Passwort-Reset-Link war falsch, da er schon möglicherweise benutzt worden war. Bitten Sie um ein Reset eines neuen Passwortes." -#: /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 sign in." 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 %(email)s for verification. Follow " -"the link provided to finalize the signup process. If you do not receive " -"it within a few minutes, contact us at %(CONTACT_EMAIL)s." -msgstr "" -"Wir haben Ihnen eine Email geschickt. %(email)s 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 %(CONTACT_EMAIL)s." +msgid "We have sent you an e-mail to %(email)s for verification. Follow the link provided to finalize the signup process. If you do not receive it within a few minutes, contact us at %(CONTACT_EMAIL)s." +msgstr "Wir haben Ihnen eine Email geschickt. %(email)s 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 %(CONTACT_EMAIL)s." -#: /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 %(email)s is an " -"e-mail address for user '%(user)s'." -msgstr "" -"Sie haben bestätigt, dass %(email)s ist " -"mit dem User '%(user)s' verbunden." +msgid "You have confirmed that %(email)s is an e-mail address for user '%(user)s'." +msgstr "Sie haben bestätigt, dass %(email)s 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 sign in." -msgstr "" -"Sie haben sich entschieden, das Einloggen in unsere Webseite mittels " -"eines von Ihren existierenden Accounts. Falls dies ein Fehler war, gehen " -"Sie auf sign in." +msgid "You decided to cancel logging in to our site using one of your exisiting accounts. If this was a mistake, please proceed to sign in." +msgstr "Sie haben sich entschieden, das Einloggen in unsere Webseite mittels eines von Ihren existierenden Accounts. Falls dies ein Fehler war, gehen Sie auf sign in." -#: /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" diff --git a/wolnelektury/locale-contrib/django.pot b/wolnelektury/locale-contrib/django.pot index a50d614cb..2962c6ebb 100644 --- a/wolnelektury/locale-contrib/django.pot +++ b/wolnelektury/locale-contrib/django.pot @@ -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 \n" "Language-Team: LANGUAGE \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 %(CONTACT_EMAIL)s." 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." 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." 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 sign " +"in." 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 %(email)s for verification. Follow " @@ -453,76 +424,88 @@ msgid "" "href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s." 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 %(email)s 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." 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 index 000000000..9786db9c8 Binary files /dev/null and b/wolnelektury/locale-contrib/en/LC_MESSAGES/django.mo differ diff --git a/wolnelektury/locale-contrib/en/LC_MESSAGES/django.po b/wolnelektury/locale-contrib/en/LC_MESSAGES/django.po index 8e9a2ba38..41fcb747d 100644 --- a/wolnelektury/locale-contrib/en/LC_MESSAGES/django.po +++ b/wolnelektury/locale-contrib/en/LC_MESSAGES/django.po @@ -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 \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 \n" "Language-Team: en \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, sign up for a %(site_name)s account and sign " -"in\n" +"href=\"%(signup_url)s\">sign up 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, sign up for a %(site_name)s account and sign " -"in\n" +"href=\"%(signup_url)s\">sign up 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 %(CONTACT_EMAIL)s." -msgstr "" -"If you have any trouble resetting your password, contact us at %(CONTACT_EMAIL)s." +msgid "If you have any trouble resetting your password, contact us at %(CONTACT_EMAIL)s." +msgstr "If you have any trouble resetting your password, contact us at %(CONTACT_EMAIL)s." -#: /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 %(CONTACT_EMAIL)s." -msgstr "" -"We have sent you an e-mail. If you do not receive it within a few " -"minutes, contact us at %(CONTACT_EMAIL)s." +msgid "We have sent you an e-mail. If you do not receive it within a few minutes, contact us at %(CONTACT_EMAIL)s." +msgstr "We have sent you an e-mail. If you do not receive it within a few minutes, contact us at %(CONTACT_EMAIL)s." -#: /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 new password " -"reset." -msgstr "" -"The password reset link was invalid, possibly because it has already been" -" used. Please request a new password " -"reset." +msgid "The password reset link was invalid, possibly because it has already been used. Please request a new password reset." +msgstr "The password reset link was invalid, possibly because it has already been used. Please request a new password reset." -#: /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 sign in." 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 %(email)s for verification. Follow " -"the link provided to finalize the signup process. If you do not receive " -"it within a few minutes, contact us at %(CONTACT_EMAIL)s." -msgstr "" -"We have sent you an e-mail to %(email)s for verification. Follow " -"the link provided to finalize the signup process. If you do not receive " -"it within a few minutes, contact us at %(CONTACT_EMAIL)s." +msgid "We have sent you an e-mail to %(email)s for verification. Follow the link provided to finalize the signup process. If you do not receive it within a few minutes, contact us at %(CONTACT_EMAIL)s." +msgstr "We have sent you an e-mail to %(email)s for verification. Follow the link provided to finalize the signup process. If you do not receive it within a few minutes, contact us at %(CONTACT_EMAIL)s." -#: /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 %(email)s is an " -"e-mail address for user '%(user)s'." -msgstr "" -"You have confirmed that %(email)s is an " -"e-mail address for user '%(user)s'." +msgid "You have confirmed that %(email)s is an e-mail address for user '%(user)s'." +msgstr "You have confirmed that %(email)s 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 sign in." -msgstr "" -"You decided to cancel logging in to our site using one of your exisiting " -"accounts. If this was a mistake, please proceed to sign in." +msgid "You decided to cancel logging in to our site using one of your exisiting accounts. If this was a mistake, please proceed to sign in." +msgstr "You decided to cancel logging in to our site using one of your exisiting accounts. If this was a mistake, please proceed to sign in." -#: /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" diff --git a/wolnelektury/locale-contrib/es/LC_MESSAGES/django.mo b/wolnelektury/locale-contrib/es/LC_MESSAGES/django.mo index 46eb730d9..e447419bb 100644 Binary files a/wolnelektury/locale-contrib/es/LC_MESSAGES/django.mo and b/wolnelektury/locale-contrib/es/LC_MESSAGES/django.mo differ diff --git a/wolnelektury/locale-contrib/es/LC_MESSAGES/django.po b/wolnelektury/locale-contrib/es/LC_MESSAGES/django.po index d8bf41720..d317ca493 100644 --- a/wolnelektury/locale-contrib/es/LC_MESSAGES/django.po +++ b/wolnelektury/locale-contrib/es/LC_MESSAGES/django.po @@ -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 \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 \n" "Language-Team: es \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, sign up for a %(site_name)s account and sign " -"in\n" +"href=\"%(signup_url)s\">sign up 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 regístrese en la cuenta de %(site_name)s e " -"inicie sesión \n" +"href=\"%(signup_url)s\"> regístrese 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 %(CONTACT_EMAIL)s." -msgstr "" -"Si tiene algún problema en restablecer su contraseña, póngase en contacto" -" con nosotros a través de %(CONTACT_EMAIL)s." +msgid "If you have any trouble resetting your password, contact us at %(CONTACT_EMAIL)s." +msgstr "Si tiene algún problema en restablecer su contraseña, póngase en contacto con nosotros a través de %(CONTACT_EMAIL)s." -#: /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 %(CONTACT_EMAIL)s." -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 %(CONTACT_EMAIL)s." +msgid "We have sent you an e-mail. If you do not receive it within a few minutes, contact us at %(CONTACT_EMAIL)s." +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 %(CONTACT_EMAIL)s." -#: /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 new password " -"reset." -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 new password reset." +msgid "The password reset link was invalid, possibly because it has already been used. Please request a new password reset." +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 new password reset." -#: /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 sign in." 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 %(email)s for verification. Follow " -"the link provided to finalize the signup process. If you do not receive " -"it within a few minutes, contact us at %(CONTACT_EMAIL)s." -msgstr "" -"Para verificar le hemos enviado un correo a %(email)s. 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 %(CONTACT_EMAIL)s." +msgid "We have sent you an e-mail to %(email)s for verification. Follow the link provided to finalize the signup process. If you do not receive it within a few minutes, contact us at %(CONTACT_EMAIL)s." +msgstr "Para verificar le hemos enviado un correo a %(email)s. 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 %(CONTACT_EMAIL)s." -#: /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 %(email)s is an " -"e-mail address for user '%(user)s'." -msgstr "" -"Ha confirmado que %(email)s es la " -"dirección del correo electrónico para usuario '%(user)s'." +msgid "You have confirmed that %(email)s is an e-mail address for user '%(user)s'." +msgstr "Ha confirmado que %(email)s 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 sign in." -msgstr "" -"Ha decidido anular lo de iniciar sesión en nuestra página usando una de " -"sus cuentas de usuario existentes. Si se ha equivocado, pase asign in, por favor." +msgid "You decided to cancel logging in to our site using one of your exisiting accounts. If this was a mistake, please proceed to sign in." +msgstr "Ha decidido anular lo de iniciar sesión en nuestra página usando una de sus cuentas de usuario existentes. Si se ha equivocado, pase asign in, por favor." -#: /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" diff --git a/wolnelektury/locale-contrib/fr/LC_MESSAGES/django.po b/wolnelektury/locale-contrib/fr/LC_MESSAGES/django.po index aafb3bc5d..6fec10b7d 100644 --- a/wolnelektury/locale-contrib/fr/LC_MESSAGES/django.po +++ b/wolnelektury/locale-contrib/fr/LC_MESSAGES/django.po @@ -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 \n" "Language-Team: fr \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 %(CONTACT_EMAIL)s." 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." 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." 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 sign " +"in." 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 %(email)s for verification. Follow " @@ -454,76 +425,88 @@ msgid "" "href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s." 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 %(email)s 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." 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/it/LC_MESSAGES/django.po b/wolnelektury/locale-contrib/it/LC_MESSAGES/django.po index ef986b2f5..cc708204c 100644 --- a/wolnelektury/locale-contrib/it/LC_MESSAGES/django.po +++ b/wolnelektury/locale-contrib/it/LC_MESSAGES/django.po @@ -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 \n" "Language-Team: en \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 %(CONTACT_EMAIL)s." 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." 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." 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 sign " +"in." 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 %(email)s for verification. Follow " @@ -454,76 +425,88 @@ msgid "" "href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s." 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 %(email)s 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." 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 index 000000000..ad8292188 Binary files /dev/null and b/wolnelektury/locale-contrib/lt/LC_MESSAGES/django.mo differ diff --git a/wolnelektury/locale-contrib/lt/LC_MESSAGES/django.po b/wolnelektury/locale-contrib/lt/LC_MESSAGES/django.po index ffeef3be4..ad40a1899 100644 --- a/wolnelektury/locale-contrib/lt/LC_MESSAGES/django.po +++ b/wolnelektury/locale-contrib/lt/LC_MESSAGES/django.po @@ -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 \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 \n" "Language-Team: lt \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, sign up for a %(site_name)s account and sign " -"in\n" +"href=\"%(signup_url)s\">sign up 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 užsiregistruoti %(site_name)s paskyrai " -"sukurti ir prisijungti\n" +"href=\"%(signup_url)s\">užsiregistruoti %(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 %(CONTACT_EMAIL)s." -msgstr "" -"Jei turite problemų su jÅ«sų slaptažodžio atstatymu, susisiekite su mumis " -"%(CONTACT_EMAIL)s." +msgid "If you have any trouble resetting your password, contact us at %(CONTACT_EMAIL)s." +msgstr "Jei turite problemų su jÅ«sų slaptažodžio atstatymu, susisiekite su mumis %(CONTACT_EMAIL)s." -#: /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 %(CONTACT_EMAIL)s." -msgstr "" -"Jums iÅ¡siuntėme el. laiÅ¡ką. Jei to negausite per kelias minutes, " -"susisiekite su mumis %(CONTACT_EMAIL)s." +msgid "We have sent you an e-mail. If you do not receive it within a few minutes, contact us at %(CONTACT_EMAIL)s." +msgstr "Jums iÅ¡siuntėme el. laiÅ¡ką. Jei to negausite per kelias minutes, susisiekite su mumis %(CONTACT_EMAIL)s." -#: /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 new password " -"reset." -msgstr "" -"Atstatymo slaptažodžio nuoroda buvo netinkama, galbÅ«t, nes jau buvo " -"panaudota. PraÅ¡ome papraÅ¡yti naujo " -"slaptažodžio atstatymo." +msgid "The password reset link was invalid, possibly because it has already been used. Please request a new password reset." +msgstr "Atstatymo slaptažodžio nuoroda buvo netinkama, galbÅ«t, nes jau buvo panaudota. PraÅ¡ome papraÅ¡yti naujo slaptažodžio atstatymo." -#: /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 sign in." 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 %(email)s for verification. Follow " -"the link provided to finalize the signup process. If you do not receive " -"it within a few minutes, contact us at %(CONTACT_EMAIL)s." -msgstr "" -"IÅ¡siuntėme patvirtinimo el. laiÅ¡ką į %(email)s. Paspauskite " -"pateiktą nuorodą, norėdami baigti registracijos procesą. Jei to negausite" -" per kelias minutes, susisiekite su mumis %(CONTACT_EMAIL)s." +msgid "We have sent you an e-mail to %(email)s for verification. Follow the link provided to finalize the signup process. If you do not receive it within a few minutes, contact us at %(CONTACT_EMAIL)s." +msgstr "IÅ¡siuntėme patvirtinimo el. laiÅ¡ką į %(email)s. Paspauskite pateiktą nuorodą, norėdami baigti registracijos procesą. Jei to negausite per kelias minutes, susisiekite su mumis %(CONTACT_EMAIL)s." -#: /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 %(email)s is an " -"e-mail address for user '%(user)s'." -msgstr "" -"Patvirtinote, kad %(email)s yra " -"'%(user)s' vartotojo el. paÅ¡to adresas." +msgid "You have confirmed that %(email)s is an e-mail address for user '%(user)s'." +msgstr "Patvirtinote, kad %(email)s 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 sign in." -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" -" sign in." +msgid "You decided to cancel logging in to our site using one of your exisiting accounts. If this was a mistake, please proceed to sign in." +msgstr "Nusprendėte atÅ¡aukti prisijungimą prie mÅ«sų interneto svetainės naudodamiesi viena iÅ¡ jÅ«sų paskyrų. Jei įvyko klaida, praÅ¡ome pradėti čia sign in." -#: /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 index 000000000..b60e4da9f Binary files /dev/null and b/wolnelektury/locale-contrib/pl/LC_MESSAGES/django.mo differ diff --git a/wolnelektury/locale-contrib/pl/LC_MESSAGES/django.po b/wolnelektury/locale-contrib/pl/LC_MESSAGES/django.po index 73d2db7ad..bf3a36a51 100644 --- a/wolnelektury/locale-contrib/pl/LC_MESSAGES/django.po +++ b/wolnelektury/locale-contrib/pl/LC_MESSAGES/django.po @@ -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 \n" "Language-Team: pl \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, sign up for a %(site_name)s account and sign " -"in\n" +"href=\"%(signup_url)s\">sign up for a %(site_name)s account and sign in\n" "below:" msgstr "" "Zaloguj za pomocą konta zewnętrznego, albo zarejestruj się w serwisie %(site_name)s i " -"zaloguj poniżej:" +"href=\"%(signup_url)s\">zarejestruj się 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 %(CONTACT_EMAIL)s." -msgstr "" -"Jeśli masz problem z odzyskaniem hasła, napisz do nas pod %(CONTACT_EMAIL)s." +msgid "If you have any trouble resetting your password, contact us at %(CONTACT_EMAIL)s." +msgstr "Jeśli masz problem z odzyskaniem hasła, napisz do nas pod %(CONTACT_EMAIL)s." -#: /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 %(CONTACT_EMAIL)s." -msgstr "" -"E-mail został wysłany. Jeśli nie otrzymasz go w ciągu kilku minut, napisz" -" do nas pod %(CONTACT_EMAIL)s." +msgid "We have sent you an e-mail. If you do not receive it within a few minutes, contact us at %(CONTACT_EMAIL)s." +msgstr "E-mail został wysłany. Jeśli nie otrzymasz go w ciągu kilku minut, napisz do nas pod %(CONTACT_EMAIL)s." -#: /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 new password " -"reset." -msgstr "" -"Link resetujący hasło jest nieprawidłowy, być może ponieważ został już " -"wcześniej użyty. Spróbuj zresetować " -"hasło ponownie." +msgid "The password reset link was invalid, possibly because it has already been used. Please request a new password reset." +msgstr "Link resetujący hasło jest nieprawidłowy, być może ponieważ został już wcześniej użyty. Spróbuj zresetować hasło ponownie." -#: /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 sign in." +msgstr "Masz już konto? Zaloguj się." -#: /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 %(email)s for verification. Follow " -"the link provided to finalize the signup process. If you do not receive " -"it within a few minutes, contact us at %(CONTACT_EMAIL)s." -msgstr "" -"Na adres %(email)s 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 %(CONTACT_EMAIL)s." +msgid "We have sent you an e-mail to %(email)s for verification. Follow the link provided to finalize the signup process. If you do not receive it within a few minutes, contact us at %(CONTACT_EMAIL)s." +msgstr "Na adres %(email)s 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 %(CONTACT_EMAIL)s." -#: /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 %(email)s is an " -"e-mail address for user '%(user)s'." -msgstr "" -"Adres %(email)s został właśnie " -"powierdzony jako e-mail dla użytkownika '%(user)s'." +msgid "You have confirmed that %(email)s is an e-mail address for user '%(user)s'." +msgstr "Adres %(email)s 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 sign in." -msgstr "" -"Logowanie do serwisu za pomocą istniejącego konta zostało anulowane. " -"Jeśli był to błąd, przejdź do strony " -"logowania." +msgid "You decided to cancel logging in to our site using one of your exisiting accounts. If this was a mistake, please proceed to sign in." +msgstr "Logowanie do serwisu za pomocą istniejącego konta zostało anulowane. Jeśli był to błąd, przejdź do strony logowania." -#: /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 "" diff --git a/wolnelektury/locale-contrib/ru/LC_MESSAGES/django.po b/wolnelektury/locale-contrib/ru/LC_MESSAGES/django.po index b9dc1d1ac..d039922cb 100644 --- a/wolnelektury/locale-contrib/ru/LC_MESSAGES/django.po +++ b/wolnelektury/locale-contrib/ru/LC_MESSAGES/django.po @@ -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 \n" "Language-Team: ru \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 %(CONTACT_EMAIL)s." 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." 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." 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 sign " +"in." 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 %(email)s for verification. Follow " @@ -455,76 +426,88 @@ msgid "" "href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s." 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 %(email)s 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." 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/uk/LC_MESSAGES/django.mo b/wolnelektury/locale-contrib/uk/LC_MESSAGES/django.mo index 79a7bac0b..09c72f568 100644 Binary files a/wolnelektury/locale-contrib/uk/LC_MESSAGES/django.mo and b/wolnelektury/locale-contrib/uk/LC_MESSAGES/django.mo differ diff --git a/wolnelektury/locale-contrib/uk/LC_MESSAGES/django.po b/wolnelektury/locale-contrib/uk/LC_MESSAGES/django.po index b5cc79be0..3919fd0d1 100644 --- a/wolnelektury/locale-contrib/uk/LC_MESSAGES/django.po +++ b/wolnelektury/locale-contrib/uk/LC_MESSAGES/django.po @@ -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 \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 \n" "Language-Team: uk \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, sign up for a %(site_name)s account and sign " -"in\n" +"href=\"%(signup_url)s\">sign up for a %(site_name)s account and sign in\n" "below:" msgstr "" "Увійдіть за допомогою\n" @@ -296,120 +273,96 @@ msgstr "" "href=\"%(signup_url)s\">увійти в акаунт %(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 %(CONTACT_EMAIL)s." -msgstr "" -"Якщо у Вас виникають проблеми зі зміною паролю, напишіть нам на адресу, " -"%(CONTACT_EMAIL)s." +msgid "If you have any trouble resetting your password, contact us at %(CONTACT_EMAIL)s." +msgstr "Якщо у Вас виникають проблеми зі зміною паролю, напишіть нам на адресу, %(CONTACT_EMAIL)s." -#: /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 %(CONTACT_EMAIL)s." -msgstr "" -"Вам було вислано повідомлення. Якщо не отримаєте його протягом кількох " -"хвилин, напишіть на адресу %(CONTACT_EMAIL)s." +msgid "We have sent you an e-mail. If you do not receive it within a few minutes, contact us at %(CONTACT_EMAIL)s." +msgstr "Вам було вислано повідомлення. Якщо не отримаєте його протягом кількох хвилин, напишіть на адресу %(CONTACT_EMAIL)s." -#: /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 new password " -"reset." -msgstr "" -"Посилання на зміну пароля було неправильним, тому що його вже " -"використали. Будь ласка, замовте ще одну" -" зміну пароля." +msgid "The password reset link was invalid, possibly because it has already been used. Please request a new password reset." +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 " -"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 sign in." 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 %(email)s for verification. Follow " -"the link provided to finalize the signup process. If you do not receive " -"it within a few minutes, contact us at %(CONTACT_EMAIL)s." -msgstr "" -"Вам було надіслано повідомлення на %(email)s для перевірення " -"адреси. Натисніть отримане посилання, щоб завершити процес реєстрації. " -"Якщо не отримажте повідомлення протягом кількох хвилин, напишіть нам на " -"адресу %(CONTACT_EMAIL)s." +msgid "We have sent you an e-mail to %(email)s for verification. Follow the link provided to finalize the signup process. If you do not receive it within a few minutes, contact us at %(CONTACT_EMAIL)s." +msgstr "Вам було надіслано повідомлення на %(email)s для перевірення адреси. Натисніть отримане посилання, щоб завершити процес реєстрації. Якщо не отримажте повідомлення протягом кількох хвилин, напишіть нам на адресу %(CONTACT_EMAIL)s." -#: /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 %(email)s is an " -"e-mail address for user '%(user)s'." -msgstr "" -"Ви підтвердили, що адреса %(email)s є " -"адресою коричтувача '%(user)s'." +msgid "You have confirmed that %(email)s is an e-mail address for user '%(user)s'." +msgstr "Ви підтвердили, що адреса %(email)s є адресою коричтувача '%(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 sign in." -msgstr "" -"Ви вирішили скасувати спробу увійти в систему за допомогою вже існуючого " -"облікового запису. Якщо це помилка, перейдіть до увійти." +msgid "You decided to cancel logging in to our site using one of your exisiting accounts. If this was a mistake, please proceed to sign in." +msgstr "Ви вирішили скасувати спробу увійти в систему за допомогою вже існуючого облікового запису. Якщо це помилка, перейдіть до увійти." -#: /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 "Змінити часовий пояс" diff --git a/wolnelektury/settings/custom.py b/wolnelektury/settings/custom.py index 6bf5a8806..446c730ee 100644 --- a/wolnelektury/settings/custom.py +++ b/wolnelektury/settings/custom.py @@ -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