update django-allauth
authorRadek Czajka <radoslaw.czajka@nowoczesnapolska.org.pl>
Tue, 9 Apr 2013 14:09:50 +0000 (16:09 +0200)
committerRadek Czajka <radoslaw.czajka@nowoczesnapolska.org.pl>
Tue, 9 Apr 2013 14:09:50 +0000 (16:09 +0200)
28 files changed:
apps/wolnelektury_core/templates/openid/login.html
apps/wolnelektury_core/templates/socialaccount/connections.html
apps/wolnelektury_core/templates/socialaccount/login_cancelled.html
apps/wolnelektury_core/templates/socialaccount/snippets/provider_list.html
requirements.txt
scripts/gazeta-links [deleted file]
scripts/genre_families.xml [deleted file]
scripts/git-archive-all.sh [deleted file]
scripts/import_links.py [deleted file]
scripts/make-locale-pack
scripts/make-xml-zip.py
scripts/save-locale-pack
scripts/setpythonpath.sh [deleted file]
scripts/test_api.py [deleted file]
scripts/wiki-links [deleted file]
wolnelektury/locale-contrib/de/LC_MESSAGES/django.po
wolnelektury/locale-contrib/django.pot
wolnelektury/locale-contrib/en/LC_MESSAGES/django.po
wolnelektury/locale-contrib/es/LC_MESSAGES/django.po
wolnelektury/locale-contrib/fr/LC_MESSAGES/django.po
wolnelektury/locale-contrib/it/LC_MESSAGES/django.po
wolnelektury/locale-contrib/lt/LC_MESSAGES/django.po
wolnelektury/locale-contrib/pl/LC_MESSAGES/django.mo
wolnelektury/locale-contrib/pl/LC_MESSAGES/django.po
wolnelektury/locale-contrib/ru/LC_MESSAGES/django.po
wolnelektury/locale-contrib/uk/LC_MESSAGES/django.po
wolnelektury/settings/__init__.py
wolnelektury/settings/auth.py

index ca8aaf3..41eafa4 100644 (file)
@@ -8,7 +8,7 @@
 {% block body %}
 
 <h1>{% trans 'OpenID Sign In' %}</h1>
-
+<div class="normal-text white-box">
 
 <form id="openid_login_form" class="openid_login uniForm" method="post" action="{% url 'openid_login' %}">
 {% csrf_token %}
@@ -29,4 +29,5 @@ OpenID<span class="asteriskField">*</span>
 </fieldset>
 </form>
 
+</div>
 {% endblock %}
index 0446fd9..9896b09 100644 (file)
@@ -7,6 +7,7 @@
 {% block body %}
 <h1>{% trans "Account Connections" %}</h1>
 
+<div class="normal-text white-box">
 {% if form.accounts %}
 <p>{% blocktrans %}You can sign in to your account using any of the following third party accounts:{% endblocktrans %}</p>
 
@@ -24,8 +25,8 @@
 <div class="ctrlHolder">
 <label for="id_account_{{base_account.id}}">
 <input id="id_account_{{base_account.id}}" type="radio" name="account" value="{{base_account.id}}"/>
-<span class="socialaccount_provider {{account.get_provider}}">{{account.get_provider}}</span>
-{{account}}
+<span class="socialaccount_provider {{base_account.provider}} {{account.get_brand.id}}">{{account.get_brand.name}}</span>
+<small>{{account}}</small>
 </label>
 </div>
 {% endwith %}
@@ -50,7 +51,7 @@
 </ul>
 
 {% include "socialaccount/snippets/login_extra.html" %}
-
+</div>
 {% endblock %}
 
 
index 2dc48f1..7e29b65 100644 (file)
@@ -8,10 +8,12 @@
     
 <h1>{% trans "Login Cancelled" %}</h1>
 
+<div class="normal-text white-box">
 {% url 'socialaccount_login' as login_url %}
 {{ login_url }}
 
 <p>{% blocktrans %}You decided to cancel logging in to our site using one of your exisiting accounts. If this was a mistake, please proceed to <a href="{{login_url}}">sign in</a>.{% endblocktrans %}</p>
+</div>
 
 {% endblock %}
 
index 1361d70..80f9c2f 100644 (file)
@@ -1,20 +1,22 @@
+{% load socialaccount %}
 {% load static from staticfiles %}
-{% load allauth_tags %}
-{% load common_tags %}
 
-{% if allauth.openid_enabled %}
-<li><a title="Google" class="socialaccount_provider google" href="{% openid_login_url openid="https://www.google.com/accounts/o8/id" %}">
-       <img alt="Google" src="{% static "img/auth/google.png" %}" /></a></li>
-{% endif %}
-{% if allauth.facebook_enabled %}
-<li><a title="Facebook" class="socialaccount_provider facebook" href="{% facebook_login_url next=request.GET.next|build_absolute_uri:request %}">
-       <img alt="Facebook" src="{% static "img/auth/facebook.png" %}" /></a></li>
-{% endif %}
-{% if allauth.twitter_enabled %}
-<li><a title="Twitter" class="socialaccount_provider twitter" href="{% twitter_login_url %}">
-       <img alt="Twitter" src="{% static "img/auth/twitter.png" %}" /></a></li>
-{% endif %}
-{% if allauth.openid_enabled %}
-<li><a title="OpenID" class="socialaccount_provider openid" href="{% openid_login_url %}">
-       <img alt="OpenID" src="{% static "img/auth/openid.png" %}" /></a></li>
-{% endif %}
+{% for provider in socialaccount.providers %}
+    {% if provider.id == "openid" %}
+        {% for brand in provider.get_brands %}
+            <li>
+                <a title="{{brand.name}}" 
+                    class="socialaccount_provider {{provider.id}} {{brand.id}}" 
+                    href="{% provider_login_url provider.id openid=brand.openid_url %}"
+                    ><img alt="{{ brand.name }}"
+                        src="{% static 'img/auth/'|add:brand.id|add:'.png' %}" /></a>
+            </li>
+        {% endfor %}
+    {% endif %}
+    <li>
+        <a title="{{provider.name}}" class="socialaccount_provider {{provider.id}}" 
+            href="{% provider_login_url provider.id %}"
+            ><img alt="{{ provider.name }}"
+                src="{% static 'img/auth/'|add:provider.id|add:'.png' %}" /></a>
+    </li>
+{% endfor %}
index 158e131..fd14a9e 100644 (file)
@@ -11,9 +11,9 @@ django-maintenancemode>=0.10
 django-piston>=0.2.2.1,<0.2.3
 django-jsonfield>=0.9,<0.10
 django-picklefield
-#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-allauth<0.10 with migration fix
+-e git+git://github.com/rczajka/django-allauth.git@4ecda71b81f9311dea4febe1d2d0105f23c642c7#egg=django-allauth
 
 # Some contrib apps still need it
 simplejson
diff --git a/scripts/gazeta-links b/scripts/gazeta-links
deleted file mode 100644 (file)
index 922969b..0000000
+++ /dev/null
@@ -1,60 +0,0 @@
-aleksander-fredro http://aleksander_fredro.lektury.gazeta.pl/lektury/1,90376,5202533,Aleksander_Fredro_-_biografia_autora.html
-johann-wolfgang-von-goethe http://goethe_johann_wolfgang.lektury.gazeta.pl/lektury/1,89634,5132561,Johann_Wolfgang_Goethe_-_biografia.html
-jan-kochanowski http://jan_kochanowski.lektury.gazeta.pl/lektury/1,90379,5202621,Jan_Kochanowski_-_biografia.html
-maria-konopnicka http://konopnicka_maria.lektury.gazeta.pl/lektury/1,89639,5132605,Maria_Konopnicka_-_biografia.html
-ignacy-krasicki http://krasicki_ignacy.lektury.gazeta.pl/lektury/1,89642,5132887,Ignacy_Krasicki_-_biografia.html
-zygmunt-krasinski http://zygmunt_krasinski.lektury.gazeta.pl/lektury/1,90374,5202485,Zygmunt_Krasinski_-_biografia.html
-boleslaw-lesmian http://lesmian_boleslaw.lektury.gazeta.pl/lektury/1,89643,5132898,Boleslaw_Lesmian_-_biografia_.html
-adam-mickiewicz http://mickiewicz_adam.lektury.gazeta.pl/lektury/1,89644,5053153,Adam_Mickiewicz_-_biografia_.html
-jan-poguelin-moliere http://molier.lektury.gazeta.pl/lektury/1,93571,5609143,Molier___biografia.html
-jan-andrzej-morsztyn http://jan_andrzej_morsztyn.lektury.gazeta.pl/lektury/1,93983,5660227,Jan_Andrzej_Morsztyn___biografia.html
-boleslaw-prus http://prus_boleslaw.lektury.gazeta.pl/lektury/1,89649,5133153,Boleslaw_Prus_-_biografia_.html
-wladyslaw-stanislaw-reymont http://reymont_wladyslaw_stanislaw.lektury.gazeta.pl/lektury/1,89650,5133327,Wladyslaw_Reymont_-_biografia_.html
-henryk-sienkiewicz http://sienkiewicz_henryk.lektury.gazeta.pl/lektury/1,89652,5133345,Henryk_Sienkiewicz_-_biografia_.html
-juliusz-slowacki http://slowacki_juliusz.lektury.gazeta.pl/lektury/1,89653,5133353,Juliusz_Slowacki_-_biografia.html
-sofokles http://sofokles.lektury.gazeta.pl/lektury/1,89654,5133364,Sofokles_-_biografia.html
-stanislaw-wyspianski http://stanislaw_wyspianski.lektury.gazeta.pl/lektury/1,93611,5613067,Stanislaw_Wyspianski___biografia.html
-gabriela-zapolska http://zapolska_gabriela.lektury.gazeta.pl/lektury/1,89656,5133395,Gabriela_Zapolska___biografia.html
-stefan-zeromski http://zeromski_stefan.lektury.gazeta.pl/lektury/1,89657,5710923,Stefan_Zeromski___biografia.html
-antygona http://antygona.lektury.gazeta.pl/lektury/1,89451,5099628,Antygona_.html
-bajki-i-przypowiesci http://bajki.lektury.gazeta.pl/lektury/1,89472,5102409,Bajki.html
-ballady-i-romanse http://ballady_i_romanse.lektury.gazeta.pl/lektury/1,89069,5041258,Ballady_i_romanse_.html
-chlopi http://chlopi.lektury.gazeta.pl/lektury/1,89425,5095761,Chlopi_.html
-cierpienia-mlodego-wertera http://cierpienia_mlodego_wertera.lektury.gazeta.pl/lektury/1,89169,5056058,Cierpienia_mlodego_Wertera_.html
-cuda-milosci-przebog-jak-zyje-serca-juz-nie-majac http://cuda_milosci.lektury.gazeta.pl/lektury/1,93979,5660231,Cuda_milosci.html
-do-trupa http://do_trupa.lektury.gazeta.pl/lektury/1,93982,5662283,Do_trupa.html
-doktor-piotr http://doktor_piotr.lektury.gazeta.pl/lektury/1,88823,4998689,Doktor_Piotr.html
-dusiolek http://dusiolek.lektury.gazeta.pl/lektury/1,88877,5010900,Dusiolek_.html
-dziewczyna http://dziewczyna.lektury.gazeta.pl/lektury/1,88889,5011210,Dziewczyna_.html
-lalka http://lalka.lektury.gazeta.pl/lektury/1,90217,5183302,Lalka.html
-latarnik http://latarnik.lektury.gazeta.pl/lektury/1,90267,5187298,Latarnik.html
-ludzie-bezdomni http://ludzie_bezdomni.lektury.gazeta.pl/lektury/1,88876,5010793,Ludzie_bezdomni_.html
-moralnosc-pani-dulskiej http://moralnosc_pani_dulskiej.lektury.gazeta.pl/lektury/1,88833,5000418,Moralnosc_pani_Dulskiej.html
-nasza-szkapa http://nasza_szkapa.lektury.gazeta.pl/lektury/1,88532,4965124,Nasza_szkapa.html
-nie-boska-komedia http://nie_boska_komedia.lektury.gazeta.pl/lektury/1,90331,5192068,Nie-Boska_komedia.html
-niestatek-oczy-sa-ogien-czolo-jest-zwierciadlem http://niestatek_i.lektury.gazeta.pl/lektury/1,93981,5662285,Niestatek_I.html
-niestatek-predzej-kto-wiatr-w-wor-zamknie-predzej-i-promieni http://niestatek_ii.lektury.gazeta.pl/lektury/1,93980,5662286,Niestatek_II.html
-oda-do-mlodosci http://oda_do_mlodosci.lektury.gazeta.pl/lektury/1,89064,5039102,Oda_do_mlodosci_.html
-odprawa-poslow-greckich http://odprawa_poslow_greckich.lektury.gazeta.pl/lektury/1,93754,5632238,Odprawa_poslow_greckich.html
-piesni-ksiegi-wtore-piesn-v-wieczna-sromota-i-nienagrodzona http://piesn_o_spustoszeniu_podola.lektury.gazeta.pl/lektury/1,90236,5184717,Piesn_o_spustoszeniu_Podola.html
-piesn-swietojanska-o-sobotce http://piesn_swietojanska_o_sobotce.lektury.gazeta.pl/lektury/1,90235,5184500,Piesn_swietojanska_o_Sobotce.html
-grob-agamemnona http://podroz_do_ziemi_swietej.lektury.gazeta.pl/lektury/1,89071,5041538,Podroz_do_Ziemi_Swietej_z_Neapolu.html
-przedwiosnie http://przedwiosnie.lektury.gazeta.pl/lektury/1,89150,5054152,Przedwiosnie_.html
-satyry http://satyry.lektury.gazeta.pl/lektury/1,89474,5102514,Satyry.html
-sonety-krymskie http://sonety_krymskie.lektury.gazeta.pl/lektury/1,89091,5043442,Sonety_krymskie_.html
-swietoszek http://swietoszek.lektury.gazeta.pl/lektury/1,93570,5609125,Swietoszek.html
-testament-moj http://testament_moj.lektury.gazeta.pl/lektury/1,89107,5045974,Testament_moj_.html
-treny http://treny.lektury.gazeta.pl/lektury/1,90265,5186977,Treny.html
-urszula-kochanowska http://urszula_kochanowska.lektury.gazeta.pl/lektury/1,88921,5014764,Urszula_Kochanowska_.html
-w-malinowym-chrusniaku http://w_malinowym_chrusniaku.lektury.gazeta.pl/lektury/1,88922,5014945,W_malinowym_chrusniaku_.html
-wesele http://wesele.lektury.gazeta.pl/lektury/1,93757,5636695,Wesele.html
-zemsta http://zemsta.lektury.gazeta.pl/lektury/1,90268,5187676,Zemsta.html
-starozytnosc http://antyk.lektury.gazeta.pl/lektury/1,94412,5402224,Antyk.html
-sredniowiecze http://sredniowiecze.lektury.gazeta.pl/lektury/1,94433,5402392,Sredniowiecze.html
-renesans http://renesans.lektury.gazeta.pl/lektury/1,91344,5409175,Renesans.html
-barok http://barok.lektury.gazeta.pl/lektury/1,91347,5707242,Barok.html
-oswiecenie http://oswiecenie.lektury.gazeta.pl/lektury/1,91352,5409223,Oswiecenie.html
-romantyzm http://romantyzm.lektury.gazeta.pl/lektury/1,91353,5410249,Romantyzm.html
-pozytywizm http://pozytywizm.lektury.gazeta.pl/lektury/1,91355,5409315,Pozytywizm.html
-1,91356,5409328,Mloda_Polska.html http://www.wolnelektury.pl/katalog/modernizm/
-dwudziestolecie-miedzywojenne http://dwudziestolecie_miedzywojenne.lektury.gazeta.pl/lektury/1,91357,5409357,Dwudziestolecie_miedzywojenne.html
diff --git a/scripts/genre_families.xml b/scripts/genre_families.xml
deleted file mode 100644 (file)
index 771dd9c..0000000
+++ /dev/null
@@ -1,160 +0,0 @@
-<div>
-<li>cielesność
-<span class="subcategories">Ciało,Krew,Zdrowie,Choroba,Kaleka</span></li>
-
-<li>dom
-<span class="subcategories">Dom,Salon,Piwnica,Kuchnia,Ogród,Przestrzeń,Gospodarz,Gospodyni,Sąsiad,Gość,Bezdomność,Bezpieczeństwo,Niebezpieczeństwo</span></li>
-
-<li>działania nieczyste
-<span class="subcategories">Szantaż,Zazdrość,Zdrada,Zemsta,Postęp,Kłamstwo,Fałsz,Pozory,Tajemnica,Szpieg</span></li>
-
-<li>dziedzictwo
-<span class="subcategories">Dziedzictwo,Obyczaje,Pamięć,Historia,Naród,Krew,Państwo,Obowiązek,Patriota,Ruiny,Dom,Przywódca</span></li>
-
-<li>dźwięk
-<span class="subcategories">Cisza,Dźwięk,Muzyka,Śpiew,Poezja</span></li>
-
-<li>edukacja
-<span class="subcategories">Uczeń,Szkoła,Nauczyciel,Nauczycielka,Nauka,Wiedza,Dzieciństwo,Młodość,Dorosłość</span></li>
-
-<li>egzystencja ludzka
-<span class="subcategories">Kondycja ludzka,Los,Błądzenie,Bunt,Buntownik,Pielgrzym,Theatrum mundi,Życie jako wędrówka,Życie snem</span></li>
-
-<li>etapy życia
-<span class="subcategories">Dzieciństwo,Młodość,Dorosłość,Panna młoda,Żona,Mąż,Wdowa,Wdowiec,Starość,Czas,Przemijanie,Przemiana,Kondycja ludzka</span></li>
-
-<li>fauna
-<span class="subcategories">Zwierzęta,Kot,Koń,Motyl,Pająk,Pies,Ptak,Robak,Wąż</span></li>
-
-<li>flora
-<span class="subcategories">Rośliny,Kwiaty,Ogród,Drzewo,Las</span></li>
-
-<li>historie miłosne
-<span class="subcategories">Miłość,Miłość niespełniona,Miłość platoniczna,Miłość romantyczna,Miłość silniejsza niż śmierć,Miłość spełniona,Miłość tragiczna,Kochanek,Kochanek romantyczny,Flirt,Pocałunek,Pożądanie,List,Serce,Łzy,Przysięga,Rozstanie,Tęsknota,Wspomnienia,Marzenia,Zdrada,Rozczarowanie,Rozpacz,Małżeństwo,Ślub,Panna młoda,Przyjaźń</span></li>
-
-<li>jedzenie i picie
-<span class="subcategories">Głód,Bieda,Chleb,Jedzenie,Uczta,Wino,Alkohol,Pijaństwo</span></li>
-
-<li>konflikty
-<span class="subcategories">Kłótnia,Bijatyka,Siła,Przemoc,Krew,Konflikt,Pojedynek,Walka,Wojna,Powstanie,Bunt,Rewolucja</span></li>
-
-<li>momenty graniczne
-<span class="subcategories">Narodziny,Śmierć,Przemiana,Odrodzenie przez grób,Zmartwychwstanie</span></li>
-
-<li>nadużycie władzy
-<span class="subcategories">Władza,Przemoc,Strach,Kara</span></li>
-
-<li>nacjonalizm
-<span class="subcategories">Polak,Niemiec,Rosjanin,Rosja,Car,Żyd,Naród,Obcy,Wróg,Niebezpieczeństwo</span></li>
-
-<li>nastroje melancholijne
-<span class="subcategories">Nuda,Melancholia,Ruiny,Wspomnienia,Marzenie,Przemijanie,Tęsknota,Rozpacz,Śmierć,Los,Kondycja ludzka</span></li>
-
-<li>nastroje rewolucyjne
-<span class="subcategories">Rewolucja,Walka klas,Robotnik,Chłop,Pozycja społeczna,Władza,Przemoc,Sprawiedliwość</span></li>
-
-<li>podporządkowanie
-<span class="subcategories">Sługa,Pan,Praca,Władza,Obyczaje</span></li>
-
-<li>pokrewieństwo
-<span class="subcategories">Rodzina,Ojciec,Matka,Dziecko,Syn,Córka,Brat,Siostra,Sierota,Dziedzictwo,Obowiązek,Wojna pokoleń,Zdrada</span></li>
-
-<li>polityczny obraz świata
-<span class="subcategories">Państwo,Obowiązek,Cnota,Obywatel,Patriota,Ojczyzna,Naród,Przywódca,Władza,Urzędnik,Król,Rycerz,Żołnierz,Wojna,Wróg,Zwycięstwo,Walka,Siła,Historia,Powstanie,Powstaniec,Śmierć bohaterska,Sława,Rewolucja,Sąd,Zdrada</span></li>
-
-<li>pory roku
-<span class="subcategories">Wiosna,Lato,Jesień,Zima,Czas,Przemijanie</span></li>
-
-<li>posiadanie
-<span class="subcategories">Pieniądz,Handel,Korzyść,Chciwość,Kradzież,Bieda,Bogactwo,Skąpiec,Własność,Złodziej,Żebrak</span></li>
-
-<li>poświęcenie
-<span class="subcategories">Poświęcenie,Ofiara,Prometeusz,Miłosierdzie,Chrystus,Zbawienie,Odrodzenie przez grób</span></li>
-
-<li>poznanie
-<span class="subcategories">Filozof,Mądrość,Mędrzec,Głupiec,Głupota,Rozum,Wiedza,Prawda,Fałsz</span></li>
-
-<li>poznanie alternatywne
-<span class="subcategories">Szaleniec,Szaleństwo,Prawda,Pozory,Obraz świata,Serce,Wiedza,Mądrość,Dusza,Duch,Ciało</span></li>
-
-<li>praca
-<span class="subcategories">Praca,Współpraca,Lenistwo,Sługa,Pan Robotnik Praca u podstaw Praca organiczna Idealista Społecznik</span></li>
-
-<li>przyroda
-<span class="subcategories">Natura,Żywioły,Ogień,Ziemia,Wiatr,Woda,Wiosna,Lato,Jesień,Zima,Przemijanie,Słońce,Księżyc,Gwiazda,Obłok,Noc,Świt,Światło,Góra,Rzeka,Morze,Burza,Deszcz,Błoto,Pustynia,Przyroda nieożywiona,Rośliny,Kwiaty,Ogród,Arkadia,Sielanka,Raj,Jabłko,Drzewo,Las,Obraz,Świata,Zwierzęta,Ptak,Motyl,Kot,Koń,Pająk,Pies,Wąż,Robak,Potwór,Organizm,Maszyna</span></li>
-
-<li>regulacja postępowania
-<span class="subcategories">Sumienie,Cnota,Sprawiedliwość,Obowiązek</span></li>
-
-<li>role społeczne
-<span class="subcategories">Kobieta,Mężczyzna,Mąż,Żona,Matka,Ojciec,Dziecko,Syn,Córka,Brat,Siostra,Wdowa,Wdowiec,Nauczyciel,Nauczycielka,Uczeń,Poeta,Literat,Lekarz,Sędzia,Król,Przywódca,Żołnierz,Urzędnik,Filozof,Prorok,Ksiądz</span></li>
-
-<li>rycerskie czasy
-<span class="subcategories">Zamek,Ruiny,Rycerz,Pojedynek,Honor,Wierność,Obowiązek,Walka,Król,Dama</span></li>
-
-<li>rzeczywistość nadprzyrodzona
-<span class="subcategories">Bóg,Chrystus,Matka Boska,Anioł,Szatan,Diabeł,Duch,Dusza,Wampir,Upiór,Czary,Czarownica</span></li>
-
-<li>struktura społeczna
-<span class="subcategories">Chłop,Mieszczanin,Żyd,Szlachcic,Ksiądz,Robotnik,Król,Przywódca,Pozycja społeczna,Dworek,Obyczaje</span></li>
-
-<li>sarmatyzm
-<span class="subcategories">Polak,Sarmata,Szlachcic,Przedmurze chrześcijaństwa,Matka Boska,Religia</span></li>
-
-<li>sprawowanie władzy
-<span class="subcategories">Urzędnik,Państwo,Władza,Przemoc,Sąd,Kara,Więzienie</span></li>
-
-<li>śmierć
-<span class="subcategories">Śmierć,Danse macabre,Gotycyzm,Grób,Otchłań,Pogrzeb,Samobójstwo,Krew,Trup,Morderstwo,Żałoba,Zmartwychwstanie,Melancholia,Cmentarz,Vanitas,Los,Kondycja ludzka</span></li>
-
-<li>środowisko miejskie i wiejskie
-<span class="subcategories">Miasto,Warszawa,Mieszczanin,Handel,Robotnik,Żyd,Wieś,Sielanka,Chłop,Ogród,Arkadia,Organizm,Maszyna,Natura,Przestrzeń</span></li>
-
-<li>świat w perspektywie etycznej
-<span class="subcategories">Dobro,Zło,Sumienie,Kuszenie,Zwątpienie,Wyrzuty sumienia,Wina,Grzech,Kara,Piętno,Los,Sąd ostateczny,Egzorcyzm,Koniec świata,Wieża Babel,Odrodzenie przez grób,Zbawienie,Potępienie,Zaświaty,Piekło,Czyściec,Raj,Nieśmiertelność,Przysięga,Przekleństwo,Religia,Obrzędy,Modlitwa,Niedziela,Przedmurze chrześcijaństwa,Ksiądz,Pobożność,Świętoszek,Święty,Cud,Wierzenia,Zabobony</span></li>
-
-<li>świętowanie
-<span class="subcategories">Wesele,Uczta,Jedzenie,Pijaństwo,Zabawa,Taniec,Muzyka,Śmiech,Śpiew,Bijatyka,Obyczaje,Wierzenia,Zabobony</span></li>
-
-<li>tożsamość pozorna i podwójna
-<span class="subcategories">Portret,Lustro,Cień,Sobowtór,Maska,Przebranie,Strój,Przemiana</span></li>
-
-<li>trunki
-<span class="subcategories">Alkohol,Wino,Carpe diem,Pijaństwo,Karczma,Obyczaje</span></li>
-
-<li>typy bohaterów
-<span class="subcategories">Samotnik,Buntownik,Pielgrzym,Szaleniec,Filozof,Mędrzec,Prorok,Obcy,Przywódca,Realista,Idealista,Społecznik,Syzyf,Prometeusz,Sługa,Uczeń</span></li>
-
-<li>ukrywanie/ujawnianie
-<span class="subcategories">Tajemnica,Przysięga,Zdrada,Szpieg,Kłamstwo,Fałsz</span></li>
-
-<li>upływ czasu
-<span class="subcategories">Wspomnienia,Marzenie,Pamięć,Przemijanie,Czas,Śmierć</span></li>
-
-<li>widzenie
-<span class="subcategories">Oko,Wzrok,Sen,Marzenie,Wizja,Przeczucie,Duch,Dusza,Proroctwo</span></li>
-
-<li>wina i przebaczenie
-<span class="subcategories">Grzech,Wina,Wyrzuty sumienia,Syn marnotrawny,Pokora,Przemiana,Miłosierdzie,Zbawienie</span></li>
-
-<li>wizerunki kobiety
-<span class="subcategories">Kobieta,Kobieta demoniczna,Kobieta „upadła”,Czarownica,Dama,Próżność,Uroda,Mizoginia,Ciało,Córka,Siostra,Żona,Matka</span></li>
-
-<li>w kręgu sztuki
-<span class="subcategories">Artysta,Sztuka,Literat,Poeta,Poetka,Poezja,Muzyka,Taniec,Śpiew,Teatr,Książka,Słowo,Sława,Nieśmiertelność</span></li>
-
-<li>wychodźstwo i uwięzienie
-<span class="subcategories">Emigrant,Tęsknota,Obcy,Więzienie,Przemiana,Więzień,Wolność,Niewola,Wygnanie,Zesłaniec,Syberia,Zbrodnia,Zbrodniarz</span></li>
-
-<li>zagrożenie
-<span class="subcategories">Niebezpieczeństwo,Trucizna,Fałsz,Zdrada,Choroba,Śmierć</span></li>
-
-<li>zajęcia i zawody
-<span class="subcategories">Lekarz,Prawnik,Sędzia,Nauczyciel,Nauczycielka,Literat,Poeta,Poetka,Artysta,Żołnierz,Urzędnik,Sługa,Rycerz</span></li>
-
-<li>życie dworskie
-<span class="subcategories">Dworzanin,Dwór,Elita,Dama,Fircyk,Salon,Błazen,Król,Urzędnik,Sługa,Grzeczność,Obyczaje,Służalczość,Pochlebstwo</span></li>
-
-<li>żywioły
-<span class="subcategories">Żywioły,Ogień,Ziemia,Wiatr,Woda,Przestrzeń</span></li>
-</div>
\ No newline at end of file
diff --git a/scripts/git-archive-all.sh b/scripts/git-archive-all.sh
deleted file mode 100755 (executable)
index af97d96..0000000
+++ /dev/null
@@ -1,208 +0,0 @@
-#!/bin/bash -
-#
-# File:        git-archive-all.sh
-#
-# Description: A utility script that builds an archive file(s) of all
-#              git repositories and submodules in the current path.
-#              Useful for creating a single tarfile of a git super-
-#              project that contains other submodules.
-#
-# Examples:    Use git-archive-all.sh to create archive distributions
-#              from git repositories. To use, simply do:
-#
-#                  cd $GIT_DIR; git-archive-all.sh
-#
-#              where $GIT_DIR is the root of your git superproject.
-#
-# License:     GPL3
-#
-###############################################################################
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
-#
-###############################################################################
-
-# DEBUGGING
-set -e
-set -C # noclobber
-
-# TRAP SIGNALS
-trap 'cleanup' QUIT EXIT
-
-# For security reasons, explicitly set the internal field separator
-# to newline, space, tab
-OLD_IFS=$IFS
-IFS='
-       '
-
-function cleanup () {
-    rm -f $TMPFILE
-    rm -f $TOARCHIVE
-    IFS="$OLD_IFS"
-}
-
-function usage () {
-    echo "Usage is as follows:"
-    echo
-    echo "$PROGRAM <--version>"
-    echo "    Prints the program version number on a line by itself and exits."
-    echo
-    echo "$PROGRAM <--usage|--help|-?>"
-    echo "    Prints this usage output and exits."
-    echo
-    echo "$PROGRAM [--format <fmt>] [--prefix <path>] [--separate|-s] [output_file]"
-    echo "    Creates an archive for the entire git superproject, and its submodules"
-    echo "    using the passed parameters, described below."
-    echo
-    echo "    If '--format' is specified, the archive is created with the named"
-    echo "    git archiver backend. Obviously, this must be a backend that git-archive"
-    echo "    understands. The format defaults to 'tar' if not specified."
-    echo
-    echo "    If '--prefix' is specified, the archive's superproject and all submodules"
-    echo "    are created with the <path> prefix named. The default is to not use one."
-    echo
-    echo "    If '--separate' or '-s' is specified, individual archives will be created"
-    echo "    for each of the superproject itself and its submodules. The default is to"
-    echo "    concatenate individual archives into one larger archive."
-    echo
-    echo "    If 'output_file' is specified, the resulting archive is created as the"
-    echo "    file named. This parameter is essentially a path that must be writeable."
-    echo "    When combined with '--separate' ('-s') this path must refer to a directory."
-    echo "    Without this parameter or when combined with '--separate' the resulting"
-    echo "    archive(s) are named with a dot-separated path of the archived directory and"
-    echo "    a file extension equal to their format (e.g., 'superdir.submodule1dir.tar')."
-}
-
-function version () {
-    echo "$PROGRAM version $VERSION"
-}
-
-# Internal variables and initializations.
-readonly PROGRAM=`basename "$0"`
-readonly VERSION=0.2
-
-OLD_PWD="`pwd`"
-TMPDIR=${TMPDIR:-/tmp}
-TMPFILE=`mktemp "$TMPDIR/$PROGRAM.XXXXXX"` # Create a place to store our work's progress
-TOARCHIVE=`mktemp "$TMPDIR/$PROGRAM.toarchive.XXXXXX"`
-OUT_FILE=$OLD_PWD # assume "this directory" without a name change by default
-SEPARATE=0
-
-FORMAT=tar
-PREFIX=
-TREEISH=HEAD
-
-# RETURN VALUES/EXIT STATUS CODES
-readonly E_BAD_OPTION=254
-readonly E_UNKNOWN=255
-
-# Process command-line arguments.
-while test $# -gt 0; do
-    case $1 in
-        --format )
-            shift
-            FORMAT="$1"
-            shift
-            ;;
-
-        --prefix )
-            shift
-            PREFIX="$1"
-            shift
-            ;;
-
-        --separate | -s )
-            shift
-            SEPARATE=1
-            ;;
-
-        --version )
-            version
-            exit
-            ;;
-
-        -? | --usage | --help )
-            usage
-            exit
-            ;;
-
-        -* )
-            echo "Unrecognized option: $1" >&2
-            usage
-            exit $E_BAD_OPTION
-            ;;
-
-        * )
-            break
-            ;;
-    esac
-done
-
-if [ ! -z "$1" ]; then
-    OUT_FILE="$1"
-    shift
-fi
-
-# Validate parameters; error early, error often.
-if [ $SEPARATE -eq 1 -a ! -d $OUT_FILE ]; then
-    echo "When creating multiple archives, your destination must be a directory."
-    echo "If it's not, you risk being surprised when your files are overwritten."
-    exit
-elif [ `git config -l | grep -q '^core\.bare=false'; echo $?` -ne 0 ]; then
-    echo "$PROGRAM must be run from a git working copy (i.e., not a bare repository)."
-    exit
-fi
-
-# Create the superproject's git-archive
-git archive --format=$FORMAT --prefix="$PREFIX" $TREEISH > $TMPDIR/$(basename $(pwd)).$FORMAT
-echo $TMPDIR/$(basename $(pwd)).$FORMAT >| $TMPFILE # clobber on purpose
-superfile=`head -n 1 $TMPFILE`
-
-# find all '.git' dirs, these show us the remaining to-be-archived dirs
-find . -name '.git' -type d -print | sed -e 's/^\.\///' -e 's/\.git$//' | grep -v '^$' >> $TOARCHIVE
-
-while read path; do
-    TREEISH=$(git submodule | grep "^ .*${path%/} " | cut -d ' ' -f 2) # git-submodule does not list trailing slashes in $path
-    cd "$path"
-    git archive --format=$FORMAT --prefix="${PREFIX}$path" ${TREEISH:-HEAD} > "$TMPDIR"/"$(echo "$path" | sed -e 's/\//./g')"$FORMAT
-    if [ $FORMAT == 'zip' ]; then
-        # delete the empty directory entry; zipped submodules won't unzip if we don't do this
-        zip -d "$(tail -n 1 $TMPFILE)" "${PREFIX}${path%/}" >/dev/null # remove trailing '/'
-    fi
-    echo "$TMPDIR"/"$(echo "$path" | sed -e 's/\//./g')"$FORMAT >> $TMPFILE
-    cd "$OLD_PWD"
-done < $TOARCHIVE
-
-# Concatenate archives into a super-archive.
-if [ $SEPARATE -eq 0 ]; then
-    if [ $FORMAT == 'tar' ]; then
-        sed -e '1d' $TMPFILE | while read file; do
-            tar --concatenate -f "$superfile" "$file" && rm -f "$file"
-        done
-    elif [ $FORMAT == 'zip' ]; then
-        sed -e '1d' $TMPFILE | while read file; do
-            # zip incorrectly stores the full path, so cd and then grow
-            cd `dirname "$file"`
-            zip -g "$superfile" `basename "$file"` && rm -f "$file"
-        done
-        cd "$OLD_PWD"
-    fi
-
-    echo "$superfile" >| $TMPFILE # clobber on purpose
-fi
-
-while read file; do
-    mv "$file" "$OUT_FILE"
-done < $TMPFILE
diff --git a/scripts/import_links.py b/scripts/import_links.py
deleted file mode 100644 (file)
index 0bc190e..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-#!/usr/bin/env python
-# -*- 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 sys
-sys.path.insert(0, '../apps')
-sys.path.insert(0, '../lib')
-sys.path.insert(0, '../wolnelektury')
-sys.path.insert(0, '..')
-
-from django.core.management import setup_environ
-from wolnelektury import settings
-import sys
-
-setup_environ(settings)
-
-from catalogue.models import Book, Tag
-
-
-def import_links(file_name, attribute):
-    for line in file(file_name):
-        slug, link = line.split()
-        link = link.strip('\n')
-        try:
-            book = Book.objects.get(slug=slug)
-            setattr(book, attribute, link)
-            book.save()
-            print 'Link %s for book %s added!' % (link, book)
-        except Book.DoesNotExist:
-            try:
-                tag = Tag.objects.get(slug=slug)
-                setattr(tag, attribute, link)
-                tag.save()
-                print 'Link %s for tag %s added!' % (link, tag)
-            except Tag.DoesNotExist:
-                print 'Invalid slug %s!' % slug
-
-
-import_links('gazeta-links', 'gazeta_link')
-import_links('wiki-links', 'wiki_link')
index f7adc02..9c8e8a7 100755 (executable)
@@ -4,7 +4,7 @@ ME=$0
 ROOT=$(git rev-parse --show-toplevel)
 DST=`mktemp -d`/wl-lokalizacja
 mkdir -p $DST
-MANAGE=$ROOT/wolnelektury/manage.py
+MANAGE=$ROOT/manage.py
 
 
 export_po()
index d8b3dde..de579c3 100755 (executable)
@@ -7,7 +7,6 @@ import sys
 sys.path.insert(0, '../apps')
 sys.path.insert(0, '../lib')
 sys.path.insert(0, '../lib/librarian')
-sys.path.insert(0, '../wolnelektury')
 sys.path.insert(0, '..')
 
 from django.core.management import setup_environ
index 1d14068..69bc9e5 100755 (executable)
@@ -2,7 +2,7 @@
 
 ME=$0
 ROOT=$(git rev-parse --show-toplevel)
-MANAGE=$ROOT/wolnelektury/manage.py
+MANAGE=$ROOT/manage.py
 
 LOCALIZED=$1
 if [ ! -d "$LOCALIZED" ]; then
diff --git a/scripts/setpythonpath.sh b/scripts/setpythonpath.sh
deleted file mode 100755 (executable)
index 0b4b184..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-export PYTHONPATH=`pwd`/lib:`pwd`/apps:`pwd`/wolnelektury:$PYTHONPATH
\ No newline at end of file
diff --git a/scripts/test_api.py b/scripts/test_api.py
deleted file mode 100644 (file)
index c53cfd3..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/usr/bin/env python
-# -*- 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 httplib2
-from poster.encode import multipart_encode
-from poster.streaminghttp import register_openers
-import sys
-import getpass
-
-register_openers()
-
-datagen, headers = multipart_encode({'book_xml_file': open(sys.argv[1], "rb")})
-data = ''.join(list(datagen))
-for key, value in headers.items():
-    headers[key] = str(value)
-
-password = getpass.getpass()
-
-h = httplib2.Http()
-h.add_credentials('zuber', password)
-h.follow_all_redirects = True
-
-resp, content = h.request(
-    'http://localhost:8000/api/books.json',
-    'POST',
-    body=data,
-    headers=headers
-)
-print resp, content
\ No newline at end of file
diff --git a/scripts/wiki-links b/scripts/wiki-links
deleted file mode 100644 (file)
index c9cd045..0000000
+++ /dev/null
@@ -1,76 +0,0 @@
-hans-christian-andersen http://pl.wikipedia.org/wiki/Hans_Christian_Andersen
-adam-asnyk http://pl.wikipedia.org/wiki/Adam_Asnyk
-honore-de-balzac http://pl.wikipedia.org/wiki/Honor%C3%A9_de_Balzac
-george-gordon-byron http://pl.wikipedia.org/wiki/George_Gordon_Byron
-anton-czechow http://pl.wikipedia.org/wiki/Anton_Czechow
-aleksander-fredro http://pl.wikipedia.org/wiki/Aleksander_Fredro
-johann-wolfgang-von-goethe http://pl.wikipedia.org/wiki/Goethe
-bruno-jasienski http://pl.wikipedia.org/wiki/Bruno_Jasie%C5%84ski
-franciszek-karpinski http://pl.wikipedia.org/wiki/Franciszek_Karpi%C5%84ski
-jan-kasprowicz http://pl.wikipedia.org/wiki/Jan_Kasprowicz
-jan-kochanowski http://pl.wikipedia.org/wiki/Jan_Kochanowski
-maria-konopnicka http://pl.wikipedia.org/wiki/Maria_Konopnicka
-ignacy-krasicki http://pl.wikipedia.org/wiki/Ignacy_Krasicki
-zygmunt-krasinski http://pl.wikipedia.org/wiki/Zygmunt_Krasi%C5%84ski
-boleslaw-lesmian http://pl.wikipedia.org/wiki/Boles%C5%82aw_Le%C5%9Bmian
-adam-mickiewicz http://pl.wikipedia.org/wiki/Adam_Mickiewicz
-moliere http://pl.wikipedia.org/wiki/Moliere
-jan-andrzej-morsztyn http://pl.wikipedia.org/wiki/Jan_Andrzej_Morsztyn
-artur-oppman http://pl.wikipedia.org/wiki/Artur_Oppman
-boleslaw-prus http://pl.wikipedia.org/wiki/Boles%C5%82aw_Prus
-wladyslaw-stanislaw-reymont http://pl.wikipedia.org/wiki/Reymont
-mikolaj-sep-szarzynski http://pl.wikipedia.org/wiki/Miko%C5%82aj_S%C4%99p_Szarzy%C5%84ski
-william-shakespeare http://pl.wikipedia.org/wiki/Szekspir
-henryk-sienkiewicz http://pl.wikipedia.org/wiki/Henryk_Sienkiewicz
-juliusz-slowacki http://pl.wikipedia.org/wiki/Juliusz_S%C5%82owacki
-sofokles http://pl.wikipedia.org/wiki/Sofokles
-stanislaw-wyspianski http://pl.wikipedia.org/wiki/Stanis%C5%82aw_Wyspia%C5%84ski
-gabriela-zapolska http://pl.wikipedia.org/wiki/Gabriela_Zapolska
-stefan-zeromski http://pl.wikipedia.org/wiki/Stefan_%C5%BBeromski
-brzydkie-kaczatko http://pl.wikipedia.org/wiki/Brzydkie_kacz%C4%85tko
-krolowa-sniegu http://pl.wikipedia.org/wiki/Kr%C3%B3lowa_%C5%9Bniegu
-bogurodzica http://pl.wikipedia.org/wiki/Bogurodzica_(pie%C5%9B%C5%84)
-ojciec-goriot http://pl.wikipedia.org/wiki/Ojciec_Goriot
-giaur http://pl.wikipedia.org/wiki/Giaur_(George_Byron)
-zemsta http://pl.wikipedia.org/wiki/Zemsta_(komedia)
-cierpienia-mlodego-wertera http://pl.wikipedia.org/wiki/Cierpienia_m%C5%82odego_Wertera
-odprawa-poslow-greckich http://pl.wikipedia.org/wiki/Odprawa_pos%C5%82%C3%B3w_greckich
-dym http://pl.wikipedia.org/wiki/Dym_(nowela)
-nasza-szkapa http://pl.wikipedia.org/wiki/Nasza_szkapa
-satyry-czesc-pierwsza-zona-modna http://pl.wikipedia.org/wiki/%C5%BBona_modna
-nie-boska-komedia http://pl.wikipedia.org/wiki/Nie-Boska_komedia
-dziewczyna http://pl.wikipedia.org/wiki/Dziewczyna_(Boles%C5%82aw_Le%C5%9Bmian)
-dziady http://pl.wikipedia.org/wiki/Dziady_(dramat)
-oda-do-mlodosci http://pl.wikipedia.org/wiki/Oda_do_m%C5%82odo%C5%9Bci
-ballady-i-romanse-romantycznosc http://pl.wikipedia.org/wiki/Romantyczno%C5%9B%C4%87_(Mickiewicz)
-sonety-krymskie http://pl.wikipedia.org/wiki/Sonety_krymskie
-reduta-ordona http://pl.wikipedia.org/wiki/Reduta_Ordona
-swietoszek http://pl.wikipedia.org/wiki/%C5%9Awi%C4%99toszek
-lalka http://pl.wikipedia.org/wiki/Lalka_(powie%C5%9B%C4%87)
-chlopi http://pl.wikipedia.org/wiki/Ch%C5%82opi_(powie%C5%9B%C4%87)
-hamlet http://pl.wikipedia.org/wiki/Hamlet
-romeo-i-julia http://pl.wikipedia.org/wiki/Romeo_i_Julia
-janko-muzykant http://pl.wikipedia.org/wiki/Janko_Muzykant
-latarnik http://pl.wikipedia.org/wiki/Latarnik_(nowela)
-w-pustyni-i-w-puszczy http://pl.wikipedia.org/wiki/W_pustyni_i_w_puszczy
-balladyna http://pl.wikipedia.org/wiki/Balladyna
-grob-agamemnona http://pl.wikipedia.org/wiki/Gr%C3%B3b_Agamemnona
-hymn-o-zachodzie-slonca-na-morzu http://pl.wikipedia.org/wiki/Hymn_o_zachodzie_s%C5%82o%C5%84ca_na_morzu
-odpowiedz-na-psalmy-przyszlosci http://pl.wikipedia.org/wiki/Odpowied%C5%BA_na_Psalmy_przysz%C5%82o%C5%9Bci
-testament-moj http://pl.wikipedia.org/wiki/Testament_m%C3%B3j
-antygona http://pl.wikipedia.org/wiki/Antygona_(dramat)
-krol-edyp http://pl.wikipedia.org/wiki/Kr%C3%B3l_Edyp
-wesele http://pl.wikipedia.org/wiki/Wesele_(dramat)
-moralnosc-pani-dulskiej http://pl.wikipedia.org/wiki/Moralno%C5%9B%C4%87_Pani_Dulskiej
-ludzie-bezdomni http://pl.wikipedia.org/wiki/Ludzie_bezdomni
-przedwiosnie http://pl.wikipedia.org/wiki/Przedwio%C5%9Bnie_(powie%C5%9B%C4%87)
-silaczka http://pl.wikipedia.org/wiki/Si%C5%82aczka
-treny http://pl.wikipedia.org/wiki/Treny
-starozytnosc http://pl.wikipedia.org/wiki/Staro%C5%BCytno%C5%9B%C4%87
-sredniowiecze http://pl.wikipedia.org/wiki/%C5%9Aredniowiecze
-renesans http://pl.wikipedia.org/wiki/Renesans
-barok http://pl.wikipedia.org/wiki/Barok
-oswiecenie http://pl.wikipedia.org/wiki/O%C5%9Bwiecenie_(okres)
-romantyzm http://pl.wikipedia.org/wiki/Romantyzm
-pozytywizm http://pl.wikipedia.org/wiki/Pozytywizm
-dwudziestolecie-miedzywojenne http://pl.wikipedia.org/wiki/Dwudziestolecie_mi%C4%99dzywojenne_w_Polsce
index 096febd..f10f30a 100644 (file)
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2012-08-14 17:40+0200\n"
+"POT-Creation-Date: 2013-04-09 15:30+0200\n"
 "PO-Revision-Date: 2012-08-14 17:50+0100\n"
 "Last-Translator: Radek Czajka <radoslaw.czajka@nowoczesnapolska.org.pl>\n"
 "Language-Team: de <LL@li.org>\n"
@@ -17,267 +17,369 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Generated-By: Babel 0.9.6\n"
 
-#: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:31
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:47
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:233
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:351
 msgid "Password"
 msgstr "Password"
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:40
+msgid "Password must be a minimum of {0} characters."
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:49
 msgid "Remember Me"
 msgstr "Einspeichern"
 
-#: /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:60
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:173
+#, fuzzy
+msgid "E-mail address"
+msgstr "E-Mail Adresse"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:61
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:182
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:301
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:380
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:368
 msgid "E-mail"
 msgstr "E-Mail"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:57
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:130
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:66
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:67
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:166
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:170
 msgid "Username"
 msgstr "Username"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:85
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:74
+msgid "Username or e-mail"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:108
 msgid "This account is currently inactive."
 msgstr "Dieses Account ist zurzeit inaktiv."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:88
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:112
 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."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:90
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:116
 msgid "The username and/or password you specified are not correct."
 msgstr "Der Username ist nicht korrekt."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:142
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:119
+#, fuzzy
+msgid "The login and/or password you specified are not correct."
+msgstr "Der Username ist nicht korrekt."
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:185
 msgid "E-mail (optional)"
 msgstr "E-Mail (fakultativ)"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:153
-msgid "Usernames can only contain letters, numbers and underscores."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:193
+#, fuzzy
+msgid "Usernames can only contain letters, digits and @/./+/-/_."
 msgstr "Usernamen können nur aus Buchstaben, Ziffern"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:159
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:197
+msgid "Username can not be used. Please use other username."
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:204
 msgid "This username is already taken. Please choose another."
 msgstr "Dieser Username ist schon besetzt. Wählen Sie bitte einen anderen."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:167
-msgid "A user is registered with this e-mail address."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:212
+#, fuzzy
+msgid "A user is already registered with this e-mail address."
 msgstr "Ein User ist schon mit dieser E-Mail-Adresse verbunden."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:195
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:362
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:234
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:352
 msgid "Password (again)"
 msgstr "Password (nochmals)"
 
-#: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:262
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:341
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:357
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:425
 msgid "You must type the same password each time."
 msgstr "Sie müssen dasselbe Password jedesmal eintippen."
 
-#: /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."
-
-#: /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"
-
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:309
-msgid "This e-mail address already associated with this account."
+#, fuzzy
+msgid "This e-mail address is already associated with this account."
 msgstr "Die E-Mail ist schon mit diesem Account verbunden."
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:310
-msgid "This e-mail address already associated with another account."
+#, fuzzy
+msgid "This e-mail address is already associated with another account."
 msgstr "Diese E-Mail-Adresse ist schon mit einem anderen Account verbunden."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:327
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:329
 msgid "Current Password"
 msgstr "Aktuelles Password"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:331
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:427
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:330
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:413
 msgid "New Password"
 msgstr "Neues Password"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:335
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:431
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:331
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:414
 msgid "New Password (again)"
 msgstr "Neues Password (nochmals)"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:341
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:335
 msgid "Please type your current password."
 msgstr "Tippe Ihr Password ein."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:390
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:378
 msgid "The e-mail address is not assigned to any user account"
 msgstr "Diese E-Mail-Adresse ist noch mit keinem anderen Account verbunden."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:409
-msgid "Password Reset E-mail"
-msgstr "Password neu stellen E-Mail"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/models.py:30
+#, fuzzy
+msgid "email address"
+msgstr "E-Mail Adresse"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/models.py:31
+#, fuzzy
+msgid "email addresses"
+msgstr "E-Mail Adresse"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:84
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/models.py:81
+#, fuzzy
+msgid "email confirmation"
+msgstr "E-Mail-Adresse-Bestätigung"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/models.py:82
+#, fuzzy
+msgid "email confirmations"
+msgstr "E-Mail-Adresse-Bestätigung"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:89
 #, python-format
 msgid "Successfully signed in as %(user)s."
 msgstr "Erfolgreich als %(user)s eingeloggt."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:125
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:237
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:216
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:235
+#, python-format
+msgid "Confirmation e-mail sent to %(email)s"
+msgstr "BestBestätigungsmail an %(email)s gesendet"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:141
+#, python-format
+msgid "You have confirmed %(email)s."
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:253
+#, fuzzy, python-format
+msgid "You cannot remove your primary e-mail address (%(email)s)"
+msgstr "Die E-Mail-Adresse %(email)s gelöscht."
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:263
 #, python-format
 msgid "Removed e-mail address %(email)s"
 msgstr "Die E-Mail-Adresse %(email)s gelöscht."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:139
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:289
+#, fuzzy
+msgid "Your primary e-mail address must be verified"
+msgstr "Ihre E-Mail-Adresse wurd erfolgreich verifiziert."
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:301
 msgid "Primary e-mail address set"
 msgstr "Die Haupt-Email-Adresse eingestellt"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:160
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:233
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:330
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:407
 msgid "Password successfully changed."
 msgstr "Password erfolgreich geändert."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:183
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:355
 msgid "Password successfully set."
 msgstr "Password erfolgreich erstellt."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:247
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:423
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/logout.html:10
 msgid "You have signed out."
 msgstr "Sie haben sich ausgeloggt."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/openid/forms.py:6
-msgid "OpenID"
-msgstr "OpenID"
-
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:33
-msgid "Your local account has no password setup."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:47
+#, fuzzy
+msgid "Your account has no password set up."
 msgstr "Ihr lokales Account hat keine Schlüsselworteinstellung"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:37
-msgid "Your local account has no verified e-mail address."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:51
+#, fuzzy
+msgid "Your account has no verified e-mail address."
 msgstr "Ihr lokales Account hat keine verfizierte Email-Adresse"
 
-#: /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."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/helpers.py:129
+#, fuzzy
+msgid "The social account has been connected"
+msgstr "Das Social-Account wurde abgeschaltet."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:89
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/views.py:66
+msgid "The social account has been disconnected"
+msgstr "Das Social-Account wurde abgeschaltet."
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:78
 #, python-format
 msgid "Invalid response while obtaining request token from \"%s\"."
 msgstr "Falsche Antwort beim Erhalten des Fragentokens von \"%s\"."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:111
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:102
 #, python-format
 msgid "Invalid response while obtaining access token from \"%s\"."
 msgstr "Falsche Antwort beim Erhalten des Zugangstokens von \"%s\"."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:124
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:115
 #, python-format
 msgid "No request token saved for \"%s\"."
 msgstr "Keine Fragentokens für \"%s\" gespeichert."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:172
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:160
 #, python-format
 msgid "No access token saved for \"%s\"."
 msgstr "Keine Zugangstokens für \"%s\" gespeichert."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:192
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:178
 #, python-format
 msgid "No access to private resources at \"%s\"."
 msgstr "Kein Zugagng zu privaten Angaben bei \"%s\"."
 
-#: /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."
-
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:6
 msgid "Account"
 msgstr "Account"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:9
 msgid "E-mail Addresses"
 msgstr "E-Mail Adresse"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:10
-msgid "The following e-mail addresses are associated to your account:"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:11
+#, fuzzy
+msgid "The following e-mail addresses are associated with your account:"
 msgstr "Die folgenden E-Mail-Adressen wurden mit Ihrem Account verbunden:"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:24
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:25
 msgid "Verified"
 msgstr "Verifiziert"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:26
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:27
 msgid "Unverified"
 msgstr "Unverifiziert"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:28
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:29
 msgid "Primary"
 msgstr "Primär"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:34
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:35
 msgid "Make Primary"
 msgstr "Stelle als primär ein"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:35
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:36
 msgid "Re-send Verification"
 msgstr "Verifizierung wiedersenden"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:36
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:37
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:35
 msgid "Remove"
 msgstr "Entfernen"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:43
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:44
 msgid "Warning:"
 msgstr "Warnung:"
 
-#: /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."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:44
+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:48
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:49
 msgid "Add E-mail Address"
 msgstr "E-Mail-Adress eintippen"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:53
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:54
 msgid "Add E-mail"
 msgstr "Add E-Mail eintippen"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:63
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:64
 msgid "Do you really want to remove the selected e-mail address?"
 msgstr "Wollen Sie wirklich die angegebene E-Mail-Adresse löschen?"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:7
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirmed.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirmed.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email/email_confirmation_subject.txt:3
+#, fuzzy
+msgid "Confirm E-mail Address"
+msgstr "Die Haupt-Email-Adresse eingestellt"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:17
+#, fuzzy, python-format
+msgid ""
+"Please confirm that <a href=\"mailto:%(email)s\">%(email)s</a> is an "
+"e-mail address for user %(user_display)s."
+msgstr ""
+"Sie haben bestätigt, dass <a href=\"mailto:%(email)s\">%(email)s</a> ist "
+"mit dem User '%(user)s' verbunden."
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:21
+msgid "Confirm"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:28
+#, python-format
+msgid ""
+"This e-mail confirmation link expired or is invalid. Please <a "
+"href=\"%(email_url)s\">issue a new e-mail confirmation request</a>."
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirmed.html:15
+#, fuzzy, python-format
+msgid ""
+"You have confirmed that <a href=\"mailto:%(email)s\">%(email)s</a> is an "
+"e-mail address for user %(user_display)s."
+msgstr ""
+"Sie haben bestätigt, dass <a href=\"mailto:%(email)s\">%(email)s</a> ist "
+"mit dem User '%(user)s' verbunden."
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:7
 #: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:39
 msgid "Sign In"
 msgstr "Anmelden"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:19
-#, python-format
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:16
+#, fuzzy, python-format
 msgid ""
 "Please sign in with one\n"
-"of your existing third party accounts. Or, <a \n"
-"href=\"%(signup_url)s\">sign up</a> for a %(site_name)s account and sign in\n"
-"below:"
+"of your existing third party accounts. Or, <a "
+"href=\"%(signup_url)s\">sign up</a> \n"
+"for a %(site_name)s account and sign in below:"
 msgstr ""
 "Loggen Sie sich bitte ein mit einem\n"
 "von Accounts einer dritten Partei. Oder, <a \n"
-"href=\"%(signup_url)s\">registrieren Sie</a> for a %(site_name)s den Account und loggen Sie sich ein\n"
+"href=\"%(signup_url)s\">registrieren Sie</a> for a %(site_name)s den "
+"Account und loggen Sie sich ein\n"
 "hierunter:"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:27
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:24
 msgid "or"
 msgstr "oder"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:42
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:38
 msgid "Forgot Password?"
 msgstr "Password vergessen?"
 
@@ -289,8 +391,8 @@ msgstr "Ausgeloggt"
 #: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:8
 msgid "Change Password"
 msgstr "Password ändern"
 
@@ -300,8 +402,12 @@ msgid "Delete Password"
 msgstr "Password löschen"
 
 #: /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."
+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:12
 msgid "delete my password"
@@ -324,130 +430,172 @@ msgid "Password Reset"
 msgstr "Password neu erstellen"
 
 #: /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."
+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:20
 msgid "Reset My Password"
 msgstr "Password neu erstellen"
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:23
-#, python-format
-msgid "If you have any trouble resetting your password, contact us at <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
-msgstr "Falls Sie Probleme haben, Ihr Schlüsselwort neu zu stellen, wenden Sie isch biite an uns <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+msgid "Please contact us if you have any trouble resetting your password."
+msgstr ""
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_done.html:15
-#, python-format
-msgid "We have sent you an e-mail. If you do not receive it within a few minutes, contact us at <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
-msgstr "Wir haben Ihnen eine Email geschickt. Falls Sie sie nicht innerhalb von einigen Minuten erhalten, wenden Sie sich bitte an uns <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+#, fuzzy, python-format
+msgid ""
+"We have sent you an e-mail. Please contact us if you do not receive it "
+"within a few minutes."
+msgstr ""
+"Wir haben Ihnen eine Email geschickt. Falls Sie sie nicht innerhalb von "
+"einigen Minuten erhalten, wenden Sie sich bitte an uns <a "
+"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:7
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:8
 msgid "Bad Token"
 msgstr "Falscher Token"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:12
 #, python-format
-msgid "The password reset link was invalid, possibly because it has already been used.  Please request a <a href=\"%(passwd_reset_url)s\">new password reset</a>."
-msgstr "Der Passwort-Reset-Link war falsch, da er schon möglicherweise benutzt worden war. Bitten Sie um ein <a href=\"%(passwd_reset_url)s\">Reset eines neuen Passwortes</a>."
+msgid ""
+"The password reset link was invalid, possibly because it has already been"
+" used.  Please request a <a href=\"%(passwd_reset_url)s\">new password "
+"reset</a>."
+msgstr ""
+"Der Passwort-Reset-Link war falsch, da er schon möglicherweise benutzt "
+"worden war. Bitten Sie um ein <a href=\"%(passwd_reset_url)s\">Reset "
+"eines neuen Passwortes</a>."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:17
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:18
 msgid "change password"
 msgstr "Password ändern"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:20
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:21
 msgid "Your password is now changed."
 msgstr "Password wurde geändert"
 
-#: /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"
-"\n"
-"%(password_reset_url)s\n"
-"\n"
-"In case you forgot, your username is %(username)s.\n"
-"\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"
-"\n"
-"%(password_reset_url)s\n"
-"\n"
-"Falls Sie vergessen haben, ist Ihr Benutzername: %(username)s.\n"
-"\n"
-"Vielen dank, dass Sie unsere Webseite benutzt haben!\n"
-
 #: /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"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:6
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:5
 msgid "Signup"
 msgstr "Registrieren"
 
-#: /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/account/signup.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:19
 #: /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"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:13
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:11
 #, python-format
-msgid "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
+msgid ""
+"Already have an account? Then please <a href=\"%(login_url)s\">sign "
+"in</a>."
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup_closed.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup_closed.html:9
+msgid "Sign Up Closed"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup_closed.html:11
+msgid "We are sorry, but the sign up is currently closed."
 msgstr ""
 
 #: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:9
 msgid "Verify Your E-mail Address"
 msgstr "Verifizieren Sie Ihre E-Mail-Adresse"
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verification_sent.html:10
 #, python-format
-msgid "We have sent you an e-mail to <b>%(email)s</b> for verification. Follow the link provided to finalize the signup process. If you do not receive it within a few minutes, contact us at <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
-msgstr "Wir haben Ihnen eine Email geschickt. <b>%(email)s</b> wegen der Verifizierung. Klicken Sie an das Link, um die Registrierung zu finalisieren.Falls Sie sie nicht innerhalb von einigen Minuten erhalten, wenden Sie sich bitte an uns <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
-
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/snippets/already_logged_in.html:5
-msgid "Note"
-msgstr "Notiz"
+msgid ""
+"We have sent an e-mail to <a href=\"mailto:%(email)s\">%(email)s</a> for "
+"verification. Follow the link provided to finalize the signup process. "
+"Please contact us if you do not receive it within a few minutes."
+msgstr ""
 
-#: /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."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:15
+msgid ""
+"This part of the site requires us to verify that\n"
+"you are who you claim to be. For this purpose, we require that you\n"
+"verify ownership of your e-mail address. "
+msgstr ""
 
-#: /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"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:19
+msgid ""
+"We have sent an e-mail to you for\n"
+"verification. Please click on the link inside this e-mail. Please\n"
+"contact us if you do not receive it within a few minutes."
+msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:21
 #, python-format
-msgid "You have confirmed that <a href=\"mailto:%(email)s\">%(email)s</a> is an e-mail address for user '%(user)s'."
-msgstr "Sie haben bestätigt, dass <a href=\"mailto:%(email)s\">%(email)s</a> ist mit dem User '%(user)s' verbunden."
-
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:13
-msgid "Invalid confirmation key."
-msgstr "Bestätigungsschlüssel fehlerhaft eingetippt."
+msgid ""
+"<strong>Note:</strong> you can still <a href=\"%(email_url)s\">change "
+"your e-mail address</a>."
+msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/email_confirmation_message.txt:4
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email/email_confirmation_message.txt:4
 #, python-format
 msgid ""
-"User '%(user)s' at %(site_name)s has given this as an email address.\n"
+"User %(user_display)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/account/email/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"
+"\n"
+"%(password_reset_url)s\n"
+"\n"
+"In case you forgot, your username is %(username)s.\n"
+"\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"
+"\n"
+"%(password_reset_url)s\n"
+"\n"
+"Falls Sie vergessen haben, ist Ihr Benutzername: %(username)s.\n"
+"\n"
+"Vielen dank, dass Sie unsere Webseite benutzt haben!\n"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email/password_reset_key_subject.txt:3
+msgid "Password Reset E-mail"
+msgstr "Password neu stellen E-Mail"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/snippets/already_logged_in.html:5
+msgid "Note"
+msgstr "Notiz"
+
+#: /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."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/openid/login.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/openid/login.html:10
 msgid "OpenID Sign In"
 msgstr "OpenID Registrieren"
 
@@ -466,7 +614,10 @@ msgid "Social Network Login Failure"
 msgstr "Social-Networt-Login Fehler"
 
 #: /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."
+#, fuzzy
+msgid ""
+"An error occurred while attempting to login via your social network "
+"account."
 msgstr "Ein Fehler ist eingetreten beim Einloggen mithilfe Social-Networt-Account."
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:5
@@ -475,22 +626,35 @@ msgid "Account Connections"
 msgstr "Account-Beziehungen"
 
 #: /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:"
+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:"
 
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:43
+#, fuzzy
+msgid "You currently have no social network accounts connected to this account."
+msgstr "Das Social-Network-Account wurde mit Ihrem Account verbunden."
+
 #: /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."
 
-#: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:10
 msgid "Login Cancelled"
 msgstr "Login annulliert"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:13
-#, python-format
-msgid "You decided to cancel logging in to our site using one of your exisiting accounts. If this was a mistake, please proceed to <a href=\"%(login_url)s\">sign in</a>."
-msgstr "Sie haben sich entschieden, das Einloggen in unsere Webseite mittels eines von Ihren existierenden Accounts. Falls dies ein Fehler war, gehen Sie auf <a href=\"%(login_url)s\">sign in</a>."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:14
+#, fuzzy, python-format
+msgid ""
+"You decided to cancel logging in to our site using one of your existing "
+"accounts. If this was a mistake, please proceed to <a "
+"href=\"%(login_url)s\">sign in</a>."
+msgstr ""
+"Sie haben sich entschieden, das Einloggen in unsere Webseite mittels "
+"eines von Ihren existierenden Accounts. Falls dies ein Fehler war, gehen "
+"Sie auf <a href=\"%(login_url)s\">sign in</a>."
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:11
 #, python-format
@@ -499,34 +663,46 @@ msgid ""
 "%(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"
-
-#~ msgid "Language"
-#~ msgstr "Sprache"
-
-#~ msgid "Pinax can be used in your preferred language."
-#~ msgstr "Pinax kann in der bevorzugten Sprache benutzt werden"
+"sich in %(site_name)s einzuloggen. Der letzte Schritt ist, den folgenden "
+"Formular auszufüllen"
 
-#~ msgid "Change my language"
-#~ msgstr "Sprache wechseln"
+#~ msgid "OpenID"
+#~ msgstr "OpenID"
 
-#~ msgid "Already have an account?"
-#~ msgstr "Haben Sie schon ein Account?"
-
-#~ msgid "Sign in"
-#~ msgstr "Anmelden"
+#~ msgid ""
+#~ "If you have any trouble resetting "
+#~ "your password, contact us at <a "
+#~ "href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+#~ msgstr ""
+#~ "Falls Sie Probleme haben, Ihr "
+#~ "Schlüsselwort neu zu stellen, wenden Sie"
+#~ " isch biite an uns <a "
+#~ "href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
 
-#~ msgid "Timezone"
-#~ msgstr "Zeitzone"
+#~ msgid ""
+#~ "We have sent you an e-mail to "
+#~ "<b>%(email)s</b> for verification. Follow the"
+#~ " link provided to finalize the signup"
+#~ " process. If you do not receive "
+#~ "it within a few minutes, contact "
+#~ "us at <a "
+#~ "href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+#~ msgstr ""
+#~ "Wir haben Ihnen eine Email geschickt."
+#~ " <b>%(email)s</b> wegen der Verifizierung. "
+#~ "Klicken Sie an das Link, um die"
+#~ " Registrierung zu finalisieren.Falls Sie "
+#~ "sie nicht innerhalb von einigen Minuten"
+#~ " erhalten, wenden Sie sich bitte an"
+#~ " uns <a "
+#~ "href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+
+#~ msgid "Invalid confirmation key."
+#~ msgstr "Bestätigungsschlüssel fehlerhaft eingetippt."
 
 #~ msgid ""
-#~ "Pinax can localize all times into "
-#~ "your preferred timezone. Change your "
-#~ "timezone below."
+#~ "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 ""
-#~ "Pinax kann alle Zeiten in Ihre "
-#~ "Zeitzone lokalisieren. Wechseln Sie Ihre "
-#~ "Zeitzone hierunter."
 
-#~ msgid "Change my timezone"
-#~ msgstr "Zeitzone wechseln"
index 2962c6e..f41576a 100644 (file)
@@ -1,14 +1,14 @@
 # Translations template for PROJECT.
-# Copyright (C) 2012 ORGANIZATION
+# Copyright (C) 2013 ORGANIZATION
 # This file is distributed under the same license as the PROJECT project.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
 #
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2012-08-14 17:40+0200\n"
+"POT-Creation-Date: 2013-04-09 15:30+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17,267 +17,341 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Generated-By: Babel 0.9.6\n"
 
-#: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:31
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:47
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:233
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:351
 msgid "Password"
 msgstr ""
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:40
+msgid "Password must be a minimum of {0} characters."
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:49
 msgid "Remember Me"
 msgstr ""
 
-#: /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:60
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:173
+msgid "E-mail address"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:61
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:182
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:301
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:380
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:368
 msgid "E-mail"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:57
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:130
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:66
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:67
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:166
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:170
 msgid "Username"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:85
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:74
+msgid "Username or e-mail"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:108
 msgid "This account is currently inactive."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:88
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:112
 msgid "The e-mail address and/or password you specified are not correct."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:90
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:116
 msgid "The username and/or password you specified are not correct."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:142
-msgid "E-mail (optional)"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:119
+msgid "The login and/or password you specified are not correct."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:153
-msgid "Usernames can only contain letters, numbers and underscores."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:185
+msgid "E-mail (optional)"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:159
-msgid "This username is already taken. Please choose another."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:193
+msgid "Usernames can only contain letters, digits and @/./+/-/_."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:167
-msgid "A user is registered with this e-mail address."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:197
+msgid "Username can not be used. Please use other username."
 msgstr ""
 
-#: /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)"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:204
+msgid "This username is already taken. Please choose another."
 msgstr ""
 
-#: /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."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:212
+msgid "A user is already registered with this e-mail address."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:260
-msgid "Your e-mail address has already been verified"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:234
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:352
+msgid "Password (again)"
 msgstr ""
 
-#: /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"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:262
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:341
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:357
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:425
+msgid "You must type the same password each time."
 msgstr ""
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:309
-msgid "This e-mail address already associated with this account."
+msgid "This e-mail address is already associated with this account."
 msgstr ""
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:310
-msgid "This e-mail address already associated with another account."
+msgid "This e-mail address is already associated with another account."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:327
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:329
 msgid "Current Password"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:331
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:427
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:330
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:413
 msgid "New Password"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:335
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:431
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:331
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:414
 msgid "New Password (again)"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:341
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:335
 msgid "Please type your current password."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:390
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:378
 msgid "The e-mail address is not assigned to any user account"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:409
-msgid "Password Reset E-mail"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/models.py:30
+msgid "email address"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/models.py:31
+msgid "email addresses"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/models.py:81
+msgid "email confirmation"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/models.py:82
+msgid "email confirmations"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:84
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:89
 #, python-format
 msgid "Successfully signed in as %(user)s."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:125
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:237
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:216
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:235
+#, python-format
+msgid "Confirmation e-mail sent to %(email)s"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:141
+#, python-format
+msgid "You have confirmed %(email)s."
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:253
+#, python-format
+msgid "You cannot remove your primary e-mail address (%(email)s)"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:263
 #, python-format
 msgid "Removed e-mail address %(email)s"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:139
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:289
+msgid "Your primary e-mail address must be verified"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:301
 msgid "Primary e-mail address set"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:160
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:233
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:330
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:407
 msgid "Password successfully changed."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:183
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:355
 msgid "Password successfully set."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:247
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:423
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/logout.html:10
 msgid "You have signed out."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/openid/forms.py:6
-msgid "OpenID"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:47
+msgid "Your account has no password set up."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:33
-msgid "Your local account has no password setup."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:51
+msgid "Your account has no verified e-mail address."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:37
-msgid "Your local account has no verified e-mail address."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/helpers.py:129
+msgid "The social account has been connected"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/helpers.py:111
-msgid "The social account has been connected to your existing account"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/views.py:66
+msgid "The social account has been disconnected"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:89
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:78
 #, python-format
 msgid "Invalid response while obtaining request token from \"%s\"."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:111
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:102
 #, python-format
 msgid "Invalid response while obtaining access token from \"%s\"."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:124
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:115
 #, python-format
 msgid "No request token saved for \"%s\"."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:172
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:160
 #, python-format
 msgid "No access token saved for \"%s\"."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:192
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:178
 #, python-format
 msgid "No access to private resources at \"%s\"."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/views.py:68
-msgid "The social account has been disconnected"
-msgstr ""
-
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:6
 msgid "Account"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:9
 msgid "E-mail Addresses"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:10
-msgid "The following e-mail addresses are associated to your account:"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:11
+msgid "The following e-mail addresses are associated with your account:"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:24
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:25
 msgid "Verified"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:26
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:27
 msgid "Unverified"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:28
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:29
 msgid "Primary"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:34
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:35
 msgid "Make Primary"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:35
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:36
 msgid "Re-send Verification"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:36
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:37
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:35
 msgid "Remove"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:43
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:44
 msgid "Warning:"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:43
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:44
 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:48
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:49
 msgid "Add E-mail Address"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:53
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:54
 msgid "Add E-mail"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:63
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:64
 msgid "Do you really want to remove the selected e-mail address?"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:7
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirmed.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirmed.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email/email_confirmation_subject.txt:3
+msgid "Confirm E-mail Address"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:17
+#, python-format
+msgid ""
+"Please confirm that <a href=\"mailto:%(email)s\">%(email)s</a> is an "
+"e-mail address for user %(user_display)s."
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:21
+msgid "Confirm"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:28
+#, python-format
+msgid ""
+"This e-mail confirmation link expired or is invalid. Please <a "
+"href=\"%(email_url)s\">issue a new e-mail confirmation request</a>."
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirmed.html:15
+#, python-format
+msgid ""
+"You have confirmed that <a href=\"mailto:%(email)s\">%(email)s</a> is an "
+"e-mail address for user %(user_display)s."
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:7
 #: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:39
 msgid "Sign In"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:19
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:16
 #, python-format
 msgid ""
 "Please sign in with one\n"
-"of your existing third party accounts. Or, <a \n"
-"href=\"%(signup_url)s\">sign up</a> for a %(site_name)s account and sign "
-"in\n"
-"below:"
+"of your existing third party accounts. Or, <a "
+"href=\"%(signup_url)s\">sign up</a> \n"
+"for a %(site_name)s account and sign in below:"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:27
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:24
 msgid "or"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:42
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:38
 msgid "Forgot Password?"
 msgstr ""
 
@@ -289,8 +363,8 @@ msgstr ""
 #: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:8
 msgid "Change Password"
 msgstr ""
 
@@ -336,25 +410,20 @@ msgid "Reset My Password"
 msgstr ""
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:23
-#, python-format
-msgid ""
-"If you have any trouble resetting your password, contact us at <a "
-"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+msgid "Please contact us if you have any trouble resetting your password."
 msgstr ""
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_done.html:15
-#, python-format
 msgid ""
-"We have sent you an e-mail. If you do not receive it within a few "
-"minutes, contact us at <a "
-"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+"We have sent you an e-mail. Please contact us if you do not receive it "
+"within a few minutes."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:7
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:8
 msgid "Bad Token"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:12
 #, python-format
 msgid ""
 "The password reset link was invalid, possibly because it has already been"
@@ -362,106 +431,122 @@ msgid ""
 "reset</a>."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:17
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:18
 msgid "change password"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:20
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:21
 msgid "Your password is now changed."
 msgstr ""
 
-#: /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"
-"\n"
-"%(password_reset_url)s\n"
-"\n"
-"In case you forgot, your username is %(username)s.\n"
-"\n"
-"Thanks for using our site!\n"
-msgstr ""
-
 #: /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 ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:6
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:5
 msgid "Signup"
 msgstr ""
 
-#: /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/account/signup.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:19
 #: /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 ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:13
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:11
 #, python-format
 msgid ""
 "Already have an account? Then please <a href=\"%(login_url)s\">sign "
 "in</a>."
 msgstr ""
 
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup_closed.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup_closed.html:9
+msgid "Sign Up Closed"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup_closed.html:11
+msgid "We are sorry, but the sign up is currently closed."
+msgstr ""
+
 #: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:9
 msgid "Verify Your E-mail Address"
 msgstr ""
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verification_sent.html:10
 #, python-format
 msgid ""
-"We have sent you an e-mail to <b>%(email)s</b> for verification. Follow "
-"the link provided to finalize the signup process. If you do not receive "
-"it within a few minutes, contact us at <a "
-"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+"We have sent an e-mail to <a href=\"mailto:%(email)s\">%(email)s</a> for "
+"verification. Follow the link provided to finalize the signup process. "
+"Please contact us if you do not receive it within a few minutes."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/snippets/already_logged_in.html:5
-msgid "Note"
-msgstr ""
-
-#: /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."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:15
+msgid ""
+"This part of the site requires us to verify that\n"
+"you are who you claim to be. For this purpose, we require that you\n"
+"verify ownership of your e-mail address. "
 msgstr ""
 
-#: /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"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:19
+msgid ""
+"We have sent an e-mail to you for\n"
+"verification. Please click on the link inside this e-mail. Please\n"
+"contact us if you do not receive it within a few minutes."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:21
 #, python-format
 msgid ""
-"You have confirmed that <a href=\"mailto:%(email)s\">%(email)s</a> is an "
-"e-mail address for user '%(user)s'."
+"<strong>Note:</strong> you can still <a href=\"%(email_url)s\">change "
+"your e-mail address</a>."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:13
-msgid "Invalid confirmation key."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email/email_confirmation_message.txt:4
+#, python-format
+msgid ""
+"User %(user_display)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_message.txt:4
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email/password_reset_key_message.txt:9
 #, python-format
 msgid ""
-"User '%(user)s' at %(site_name)s has given this as an email address.\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"
-"To confirm this is correct, go to %(activate_url)s\n"
+"%(password_reset_url)s\n"
+"\n"
+"In case you forgot, your username is %(username)s.\n"
+"\n"
+"Thanks for using our site!\n"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/email_confirmation_subject.txt:1
-msgid "Confirm E-mail Address"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email/password_reset_key_subject.txt:3
+msgid "Password Reset E-mail"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/snippets/already_logged_in.html:5
+msgid "Note"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/openid/login.html:9
+#: /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 ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/openid/login.html:10
 msgid "OpenID Sign In"
 msgstr ""
 
@@ -481,7 +566,7 @@ 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 "
+"An error occurred while attempting to login via your social network "
 "account."
 msgstr ""
 
@@ -496,19 +581,23 @@ msgid ""
 "accounts:"
 msgstr ""
 
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:43
+msgid "You currently have no social network accounts connected to this account."
+msgstr ""
+
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:46
 msgid "Add a 3rd Party Account"
 msgstr ""
 
-#: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:10
 msgid "Login Cancelled"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:13
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:14
 #, python-format
 msgid ""
-"You decided to cancel logging in to our site using one of your exisiting "
+"You decided to cancel logging in to our site using one of your existing "
 "accounts. If this was a mistake, please proceed to <a "
 "href=\"%(login_url)s\">sign in</a>."
 msgstr ""
index 41fcb74..b9d3b91 100644 (file)
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2012-08-14 17:40+0200\n"
+"POT-Creation-Date: 2013-04-09 15:30+0200\n"
 "PO-Revision-Date: 2012-08-14 17:50+0100\n"
 "Last-Translator: Radek Czajka <radoslaw.czajka@nowoczesnapolska.org.pl>\n"
 "Language-Team: en <LL@li.org>\n"
@@ -17,267 +17,369 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Generated-By: Babel 0.9.6\n"
 
-#: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:31
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:47
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:233
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:351
 msgid "Password"
 msgstr "Password"
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:40
+msgid "Password must be a minimum of {0} characters."
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:49
 msgid "Remember Me"
 msgstr "Remember Me"
 
-#: /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:60
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:173
+#, fuzzy
+msgid "E-mail address"
+msgstr "E-mail Addresses"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:61
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:182
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:301
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:380
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:368
 msgid "E-mail"
 msgstr "E-mail"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:57
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:130
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:66
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:67
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:166
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:170
 msgid "Username"
 msgstr "Username"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:85
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:74
+msgid "Username or e-mail"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:108
 msgid "This account is currently inactive."
 msgstr "This account is currently inactive."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:88
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:112
 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."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:90
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:116
 msgid "The username and/or password you specified are not correct."
 msgstr "The username and/or password you specified are not correct."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:142
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:119
+#, fuzzy
+msgid "The login and/or password you specified are not correct."
+msgstr "The username and/or password you specified are not correct."
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:185
 msgid "E-mail (optional)"
 msgstr "E-mail (optional)"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:153
-msgid "Usernames can only contain letters, numbers and underscores."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:193
+#, fuzzy
+msgid "Usernames can only contain letters, digits and @/./+/-/_."
 msgstr "Usernames can only contain letters, numbers and underscores."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:159
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:197
+msgid "Username can not be used. Please use other username."
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:204
 msgid "This username is already taken. Please choose another."
 msgstr "This username is already taken. Please choose another."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:167
-msgid "A user is registered with this e-mail address."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:212
+#, fuzzy
+msgid "A user is already registered with this e-mail address."
 msgstr "A user is registered with this e-mail address."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:195
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:362
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:234
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:352
 msgid "Password (again)"
 msgstr "Password (again)"
 
-#: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:262
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:341
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:357
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:425
 msgid "You must type the same password each time."
 msgstr "You must type the same password each time."
 
-#: /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"
-
-#: /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"
-
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:309
-msgid "This e-mail address already associated with this account."
+#, fuzzy
+msgid "This e-mail address is already associated with this account."
 msgstr "This e-mail address already associated with this account."
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:310
-msgid "This e-mail address already associated with another account."
+#, fuzzy
+msgid "This e-mail address is already associated with another account."
 msgstr "This e-mail address already associated with another account."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:327
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:329
 msgid "Current Password"
 msgstr "Current Password"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:331
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:427
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:330
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:413
 msgid "New Password"
 msgstr "New Password"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:335
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:431
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:331
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:414
 msgid "New Password (again)"
 msgstr "New Password (again)"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:341
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:335
 msgid "Please type your current password."
 msgstr "Please type your current password."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:390
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:378
 msgid "The e-mail address is not assigned to any user account"
 msgstr "The e-mail address is not assigned to any user account"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:409
-msgid "Password Reset E-mail"
-msgstr "Password Reset E-mail"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/models.py:30
+#, fuzzy
+msgid "email address"
+msgstr "E-mail Addresses"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/models.py:31
+#, fuzzy
+msgid "email addresses"
+msgstr "E-mail Addresses"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:84
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/models.py:81
+#, fuzzy
+msgid "email confirmation"
+msgstr "E-mail Address Confirmation"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/models.py:82
+#, fuzzy
+msgid "email confirmations"
+msgstr "E-mail Address Confirmation"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:89
 #, python-format
 msgid "Successfully signed in as %(user)s."
 msgstr "Successfully signed in as %(user)s."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:125
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:237
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:216
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:235
+#, python-format
+msgid "Confirmation e-mail sent to %(email)s"
+msgstr "Confirmation e-mail sent to %(email)s"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:141
+#, python-format
+msgid "You have confirmed %(email)s."
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:253
+#, fuzzy, python-format
+msgid "You cannot remove your primary e-mail address (%(email)s)"
+msgstr "Removed e-mail address %(email)s"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:263
 #, python-format
 msgid "Removed e-mail address %(email)s"
 msgstr "Removed e-mail address %(email)s"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:139
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:289
+#, fuzzy
+msgid "Your primary e-mail address must be verified"
+msgstr "Your e-mail address has already been verified"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:301
 msgid "Primary e-mail address set"
 msgstr "Primary e-mail address set"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:160
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:233
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:330
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:407
 msgid "Password successfully changed."
 msgstr "Password successfully changed."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:183
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:355
 msgid "Password successfully set."
 msgstr "Password successfully set."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:247
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:423
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/logout.html:10
 msgid "You have signed out."
 msgstr "You have signed out."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/openid/forms.py:6
-msgid "OpenID"
-msgstr "OpenID"
-
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:33
-msgid "Your local account has no password setup."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:47
+#, fuzzy
+msgid "Your account has no password set up."
 msgstr "Your local account has no password setup."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:37
-msgid "Your local account has no verified e-mail address."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:51
+#, fuzzy
+msgid "Your account has no verified e-mail address."
 msgstr "Your local account has no verified e-mail address."
 
-#: /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"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/helpers.py:129
+#, fuzzy
+msgid "The social account has been connected"
+msgstr "The social account has been disconnected"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:89
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/views.py:66
+msgid "The social account has been disconnected"
+msgstr "The social account has been disconnected"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:78
 #, python-format
 msgid "Invalid response while obtaining request token from \"%s\"."
 msgstr "Invalid response while obtaining request token from \"%s\"."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:111
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:102
 #, python-format
 msgid "Invalid response while obtaining access token from \"%s\"."
 msgstr "Invalid response while obtaining access token from \"%s\"."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:124
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:115
 #, python-format
 msgid "No request token saved for \"%s\"."
 msgstr "No request token saved for \"%s\"."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:172
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:160
 #, python-format
 msgid "No access token saved for \"%s\"."
 msgstr "No access token saved for \"%s\"."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:192
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:178
 #, python-format
 msgid "No access to private resources at \"%s\"."
 msgstr "No access to private resources at \"%s\"."
 
-#: /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"
-
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:6
 msgid "Account"
 msgstr "Account"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:9
 msgid "E-mail Addresses"
 msgstr "E-mail Addresses"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:10
-msgid "The following e-mail addresses are associated to your account:"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:11
+#, fuzzy
+msgid "The following e-mail addresses are associated with your account:"
 msgstr "The following e-mail addresses are associated to your account:"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:24
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:25
 msgid "Verified"
 msgstr "Verified"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:26
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:27
 msgid "Unverified"
 msgstr "Unverified"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:28
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:29
 msgid "Primary"
 msgstr "Primary"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:34
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:35
 msgid "Make Primary"
 msgstr "Make Primary"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:35
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:36
 msgid "Re-send Verification"
 msgstr "Re-send Verification"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:36
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:37
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:35
 msgid "Remove"
 msgstr "Remove"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:43
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:44
 msgid "Warning:"
 msgstr "Warning:"
 
-#: /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."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:44
+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:48
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:49
 msgid "Add E-mail Address"
 msgstr "Add E-mail Address"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:53
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:54
 msgid "Add E-mail"
 msgstr "Add E-mail"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:63
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:64
 msgid "Do you really want to remove the selected e-mail address?"
 msgstr "Do you really want to remove the selected e-mail address?"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:7
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirmed.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirmed.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email/email_confirmation_subject.txt:3
+#, fuzzy
+msgid "Confirm E-mail Address"
+msgstr "Primary e-mail address set"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:17
+#, fuzzy, python-format
+msgid ""
+"Please confirm that <a href=\"mailto:%(email)s\">%(email)s</a> is an "
+"e-mail address for user %(user_display)s."
+msgstr ""
+"You have confirmed that <a href=\"mailto:%(email)s\">%(email)s</a> is an "
+"e-mail address for user '%(user)s'."
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:21
+msgid "Confirm"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:28
+#, python-format
+msgid ""
+"This e-mail confirmation link expired or is invalid. Please <a "
+"href=\"%(email_url)s\">issue a new e-mail confirmation request</a>."
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirmed.html:15
+#, fuzzy, python-format
+msgid ""
+"You have confirmed that <a href=\"mailto:%(email)s\">%(email)s</a> is an "
+"e-mail address for user %(user_display)s."
+msgstr ""
+"You have confirmed that <a href=\"mailto:%(email)s\">%(email)s</a> is an "
+"e-mail address for user '%(user)s'."
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:7
 #: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:39
 msgid "Sign In"
 msgstr "Sign In"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:19
-#, python-format
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:16
+#, fuzzy, python-format
 msgid ""
 "Please sign in with one\n"
-"of your existing third party accounts. Or, <a \n"
-"href=\"%(signup_url)s\">sign up</a> for a %(site_name)s account and sign in\n"
-"below:"
+"of your existing third party accounts. Or, <a "
+"href=\"%(signup_url)s\">sign up</a> \n"
+"for a %(site_name)s account and sign in below:"
 msgstr ""
 "Please sign in with one\n"
 "of your existing third party accounts. Or, <a \n"
-"href=\"%(signup_url)s\">sign up</a> for a %(site_name)s account and sign in\n"
+"href=\"%(signup_url)s\">sign up</a> for a %(site_name)s account and sign "
+"in\n"
 "below:"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:27
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:24
 msgid "or"
 msgstr "or"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:42
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:38
 msgid "Forgot Password?"
 msgstr "Forgot Password?"
 
@@ -289,8 +391,8 @@ msgstr "Signed Out"
 #: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:8
 msgid "Change Password"
 msgstr "Change Password"
 
@@ -300,8 +402,12 @@ msgid "Delete Password"
 msgstr "Delete Password"
 
 #: /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."
+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:12
 msgid "delete my password"
@@ -324,131 +430,172 @@ msgid "Password Reset"
 msgstr "Password Reset"
 
 #: /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."
+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:20
 msgid "Reset My Password"
 msgstr "Reset My Password"
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:23
-#, python-format
-msgid "If you have any trouble resetting your password, contact us at <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
-msgstr "If you have any trouble resetting your password, contact us at <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+msgid "Please contact us if you have any trouble resetting your password."
+msgstr ""
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_done.html:15
-#, python-format
-msgid "We have sent you an e-mail. If you do not receive it within a few minutes, contact us at <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
-msgstr "We have sent you an e-mail. If you do not receive it within a few minutes, contact us at <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+#, fuzzy, python-format
+msgid ""
+"We have sent you an e-mail. Please contact us if you do not receive it "
+"within a few minutes."
+msgstr ""
+"We have sent you an e-mail. If you do not receive it within a few "
+"minutes, contact us at <a "
+"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:7
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:8
 msgid "Bad Token"
 msgstr "Bad Token"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:12
 #, python-format
-msgid "The password reset link was invalid, possibly because it has already been used.  Please request a <a href=\"%(passwd_reset_url)s\">new password reset</a>."
-msgstr "The password reset link was invalid, possibly because it has already been used.  Please request a <a href=\"%(passwd_reset_url)s\">new password reset</a>."
+msgid ""
+"The password reset link was invalid, possibly because it has already been"
+" used.  Please request a <a href=\"%(passwd_reset_url)s\">new password "
+"reset</a>."
+msgstr ""
+"The password reset link was invalid, possibly because it has already been"
+" used.  Please request a <a href=\"%(passwd_reset_url)s\">new password "
+"reset</a>."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:17
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:18
 msgid "change password"
 msgstr "change password"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:20
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:21
 msgid "Your password is now changed."
 msgstr "Your password is now changed."
 
-#: /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"
-"\n"
-"%(password_reset_url)s\n"
-"\n"
-"In case you forgot, your username is %(username)s.\n"
-"\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"
-"\n"
-"%(password_reset_url)s\n"
-"\n"
-"In case you forgot, your username is %(username)s.\n"
-"\n"
-"Thanks for using our site!\n"
-
 #: /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"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:6
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:5
 msgid "Signup"
 msgstr "Signup"
 
-#: /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/account/signup.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:19
 #: /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"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:13
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:11
 #, python-format
-msgid "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
+msgid ""
+"Already have an account? Then please <a href=\"%(login_url)s\">sign "
+"in</a>."
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup_closed.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup_closed.html:9
+msgid "Sign Up Closed"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup_closed.html:11
+msgid "We are sorry, but the sign up is currently closed."
 msgstr ""
 
 #: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:9
 msgid "Verify Your E-mail Address"
 msgstr "Verify Your E-mail Address"
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verification_sent.html:10
 #, python-format
-msgid "We have sent you an e-mail to <b>%(email)s</b> for verification. Follow the link provided to finalize the signup process. If you do not receive it within a few minutes, contact us at <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
-msgstr "We have sent you an e-mail to <b>%(email)s</b> for verification. Follow the link provided to finalize the signup process. If you do not receive it within a few minutes, contact us at <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
-
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/snippets/already_logged_in.html:5
-msgid "Note"
-msgstr "Note"
+msgid ""
+"We have sent an e-mail to <a href=\"mailto:%(email)s\">%(email)s</a> for "
+"verification. Follow the link provided to finalize the signup process. "
+"Please contact us if you do not receive it within a few minutes."
+msgstr ""
 
-#: /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."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:15
+msgid ""
+"This part of the site requires us to verify that\n"
+"you are who you claim to be. For this purpose, we require that you\n"
+"verify ownership of your e-mail address. "
+msgstr ""
 
-#: /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"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:19
+msgid ""
+"We have sent an e-mail to you for\n"
+"verification. Please click on the link inside this e-mail. Please\n"
+"contact us if you do not receive it within a few minutes."
+msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:21
 #, python-format
-msgid "You have confirmed that <a href=\"mailto:%(email)s\">%(email)s</a> is an e-mail address for user '%(user)s'."
-msgstr "You have confirmed that <a href=\"mailto:%(email)s\">%(email)s</a> is an e-mail address for user '%(user)s'."
-
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:13
-msgid "Invalid confirmation key."
-msgstr "Invalid confirmation key."
+msgid ""
+"<strong>Note:</strong> you can still <a href=\"%(email_url)s\">change "
+"your e-mail address</a>."
+msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/email_confirmation_message.txt:4
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email/email_confirmation_message.txt:4
 #, python-format
 msgid ""
-"User '%(user)s' at %(site_name)s has given this as an email address.\n"
+"User %(user_display)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/account/email/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"
+"\n"
+"%(password_reset_url)s\n"
+"\n"
+"In case you forgot, your username is %(username)s.\n"
+"\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"
+"\n"
+"%(password_reset_url)s\n"
+"\n"
+"In case you forgot, your username is %(username)s.\n"
+"\n"
+"Thanks for using our site!\n"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/openid/login.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email/password_reset_key_subject.txt:3
+msgid "Password Reset E-mail"
+msgstr "Password Reset E-mail"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/snippets/already_logged_in.html:5
+msgid "Note"
+msgstr "Note"
+
+#: /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."
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/openid/login.html:10
 msgid "OpenID Sign In"
 msgstr "OpenID Sign In"
 
@@ -467,8 +614,13 @@ msgid "Social Network Login Failure"
 msgstr "Social Network Login Failure"
 
 #: /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."
+#, fuzzy
+msgid ""
+"An error occurred 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/connections.html:5
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:8
@@ -476,22 +628,37 @@ msgid "Account Connections"
 msgstr "Account Connections"
 
 #: /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:"
+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:43
+#, fuzzy
+msgid "You currently have no social network accounts connected to this account."
+msgstr "The social account has been connected to your existing account"
 
 #: /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"
 
-#: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:10
 msgid "Login Cancelled"
 msgstr "Login Cancelled"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:13
-#, python-format
-msgid "You decided to cancel logging in to our site using one of your exisiting accounts. If this was a mistake, please proceed to <a href=\"%(login_url)s\">sign in</a>."
-msgstr "You decided to cancel logging in to our site using one of your exisiting accounts. If this was a mistake, please proceed to <a href=\"%(login_url)s\">sign in</a>."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:14
+#, fuzzy, python-format
+msgid ""
+"You decided to cancel logging in to our site using one of your existing "
+"accounts. If this was a mistake, please proceed to <a "
+"href=\"%(login_url)s\">sign in</a>."
+msgstr ""
+"You decided to cancel logging in to our site using one of your exisiting "
+"accounts. If this was a mistake, please proceed to <a "
+"href=\"%(login_url)s\">sign in</a>."
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:11
 #, python-format
@@ -502,32 +669,41 @@ 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 "OpenID"
+#~ msgstr "OpenID"
 
-#~ msgid "Change my language"
-#~ msgstr "Change my language"
-
-#~ msgid "Already have an account?"
-#~ msgstr "Already have an account?"
+#~ msgid ""
+#~ "If you have any trouble resetting "
+#~ "your password, contact us at <a "
+#~ "href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+#~ msgstr ""
+#~ "If you have any trouble resetting "
+#~ "your password, contact us at <a "
+#~ "href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
 
-#~ msgid "Sign in"
-#~ msgstr "Sign in"
+#~ msgid ""
+#~ "We have sent you an e-mail to "
+#~ "<b>%(email)s</b> for verification. Follow the"
+#~ " link provided to finalize the signup"
+#~ " process. If you do not receive "
+#~ "it within a few minutes, contact "
+#~ "us at <a "
+#~ "href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+#~ msgstr ""
+#~ "We have sent you an e-mail to "
+#~ "<b>%(email)s</b> for verification. Follow the"
+#~ " link provided to finalize the signup"
+#~ " process. If you do not receive "
+#~ "it within a few minutes, contact "
+#~ "us at <a "
+#~ "href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
 
-#~ msgid "Timezone"
-#~ msgstr "Timezone"
+#~ msgid "Invalid confirmation key."
+#~ msgstr "Invalid confirmation key."
 
 #~ msgid ""
-#~ "Pinax can localize all times into "
-#~ "your preferred timezone. Change your "
-#~ "timezone below."
+#~ "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 ""
-#~ "Pinax can localize all times into "
-#~ "your preferred timezone. Change your "
-#~ "timezone below."
 
-#~ msgid "Change my timezone"
-#~ msgstr "Change my timezone"
index d317ca4..c281400 100644 (file)
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2012-08-14 17:40+0200\n"
+"POT-Creation-Date: 2013-04-09 15:30+0200\n"
 "PO-Revision-Date: 2012-08-14 17:50+0100\n"
 "Last-Translator: Radek Czajka <radoslaw.czajka@nowoczesnapolska.org.pl>\n"
 "Language-Team: es <LL@li.org>\n"
@@ -17,267 +17,373 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Generated-By: Babel 0.9.6\n"
 
-#: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:31
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:47
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:233
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:351
 msgid "Password"
 msgstr "Contraseña"
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:40
+msgid "Password must be a minimum of {0} characters."
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:49
 msgid "Remember Me"
 msgstr "Recuérdame"
 
-#: /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:60
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:173
+#, fuzzy
+msgid "E-mail address"
+msgstr "Direcciones de correo electrónico"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:61
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:182
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:301
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:380
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:368
 msgid "E-mail"
 msgstr "Correo elctrónico"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:57
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:130
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:66
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:67
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:166
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:170
 msgid "Username"
 msgstr "Nombre de usuario"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:85
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:74
+msgid "Username or e-mail"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:108
 msgid "This account is currently inactive."
 msgstr "Esta cuenta de usuario está actualmente inactiva."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:88
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:112
 msgid "The e-mail address and/or password you specified are not correct."
 msgstr "El correo electrónico y/o contraseña son incorrectos."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:90
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:116
 msgid "The username and/or password you specified are not correct."
 msgstr "El nombre de usuario y/o contraseña son incorrectos."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:142
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:119
+#, fuzzy
+msgid "The login and/or password you specified are not correct."
+msgstr "El nombre de usuario y/o contraseña son incorrectos."
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:185
 msgid "E-mail (optional)"
 msgstr "Correo elctrónico (opcional)"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:153
-msgid "Usernames can only contain letters, numbers and underscores."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:193
+#, fuzzy
+msgid "Usernames can only contain letters, digits and @/./+/-/_."
 msgstr "Nombre de usuario sólo puede consistir de letras, números y guiones bajos"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:159
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:197
+msgid "Username can not be used. Please use other username."
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:204
 msgid "This username is already taken. Please choose another."
 msgstr "El nombre de usuario está ocupado. Por favor, elija otro."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:167
-msgid "A user is registered with this e-mail address."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:212
+#, fuzzy
+msgid "A user is already registered with this e-mail address."
 msgstr "Un usuario está registrado con esta direccin de correo electrónico."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:195
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:362
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:234
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:352
 msgid "Password (again)"
 msgstr "Contraseña (otra vez)"
 
-#: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:262
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:341
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:357
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:425
 msgid "You must type the same password each time."
 msgstr "Tiene que introducir cada vez la misma contraseña."
 
-#: /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"
-
-#: /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"
-
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:309
-msgid "This e-mail address already associated with this account."
+#, fuzzy
+msgid "This e-mail address is already associated with this account."
 msgstr "Este correo electrónico ya ha sido asociado a esta cuenta de usuario."
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:310
-msgid "This e-mail address already associated with another account."
+#, fuzzy
+msgid "This e-mail address is already associated with another account."
 msgstr "Este correo electrónico ya ha sido asociado a otra cuenta de usuario."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:327
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:329
 msgid "Current Password"
 msgstr "Contraseña actual"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:331
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:427
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:330
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:413
 msgid "New Password"
 msgstr "Nueva contarseña"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:335
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:431
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:331
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:414
 msgid "New Password (again)"
 msgstr "Nueva contarseña (otra vez)"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:341
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:335
 msgid "Please type your current password."
 msgstr "Introduzca su contraseña actual, por favor."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:390
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:378
 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."
 
-#: /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"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/models.py:30
+#, fuzzy
+msgid "email address"
+msgstr "Direcciones de correo electrónico"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/models.py:31
+#, fuzzy
+msgid "email addresses"
+msgstr "Direcciones de correo electrónico"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/models.py:81
+#, fuzzy
+msgid "email confirmation"
+msgstr "Confirmación de la dirección de correo electrónico"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/models.py:82
+#, fuzzy
+msgid "email confirmations"
+msgstr "Confirmación de la dirección de correo electrónico"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:84
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:89
 #, python-format
 msgid "Successfully signed in as %(user)s."
 msgstr "Ha iniciado sesión como %(user)s"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:125
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:237
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:216
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:235
+#, python-format
+msgid "Confirmation e-mail sent to %(email)s"
+msgstr "La confirmación ha sido enviada a %(email)s"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:141
+#, python-format
+msgid "You have confirmed %(email)s."
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:253
+#, fuzzy, python-format
+msgid "You cannot remove your primary e-mail address (%(email)s)"
+msgstr "Dirección de correo electrónico eliminado %(email)s"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:263
 #, python-format
 msgid "Removed e-mail address %(email)s"
 msgstr "Dirección de correo electrónico eliminado %(email)s"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:139
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:289
+#, fuzzy
+msgid "Your primary e-mail address must be verified"
+msgstr "Su correo electrónico ha sido verificado"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:301
 msgid "Primary e-mail address set"
 msgstr "La dirección de correo electrónico principal establecida"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:160
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:233
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:330
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:407
 msgid "Password successfully changed."
 msgstr "Contraseña ha sido cambiada con éxito."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:183
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:355
 msgid "Password successfully set."
 msgstr "Contraseña ha sido establecida con éxito."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:247
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:423
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/logout.html:10
 msgid "You have signed out."
 msgstr "Ha cerrado sesión."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/openid/forms.py:6
-msgid "OpenID"
-msgstr "OpenID"
-
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:33
-msgid "Your local account has no password setup."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:47
+#, fuzzy
+msgid "Your account has no password set up."
 msgstr "Su cuenta de usuario local todavía no tiene la contraseña establecida."
 
-#: /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."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:51
+#, fuzzy
+msgid "Your account has no verified e-mail address."
+msgstr ""
+"Su cuenta de usuario local no dispone de direcciones de correo "
+"electrónico verificadas."
 
-#: /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 "
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/helpers.py:129
+#, fuzzy
+msgid "The social account has been connected"
+msgstr "La cuenta social ha sido desconectada"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:89
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/views.py:66
+msgid "The social account has been disconnected"
+msgstr "La cuenta social ha sido desconectada"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:78
 #, python-format
 msgid "Invalid response while obtaining request token from \"%s\"."
 msgstr "Respuesta inválida al obtener request token de \"%s\"."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:111
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:102
 #, python-format
 msgid "Invalid response while obtaining access token from \"%s\"."
 msgstr "Respuesta inválida al obtener access token de \"%s\"."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:124
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:115
 #, fuzzy, python-format
 msgid "No request token saved for \"%s\"."
 msgstr "No hay request token guardado para \"%s\"."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:172
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:160
 #, fuzzy, python-format
 msgid "No access token saved for \"%s\"."
 msgstr "No hay acces token guardado para \"%s\"."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:192
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:178
 #, python-format
 msgid "No access to private resources at \"%s\"."
 msgstr "No hay acceso a recursos privados en \"%s\"."
 
-#: /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"
-
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:6
 msgid "Account"
 msgstr "Cuenta de usuario"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:9
 msgid "E-mail Addresses"
 msgstr "Direcciones de correo electrónico"
 
-#: /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:"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:11
+#, fuzzy
+msgid "The following e-mail addresses are associated with your account:"
+msgstr ""
+"A su cuenta de usuario están asociados los siguientes direcciones de "
+"correo electrónico:"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:24
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:25
 msgid "Verified"
 msgstr "Verificado"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:26
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:27
 msgid "Unverified"
 msgstr "No verificado"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:28
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:29
 msgid "Primary"
 msgstr "Principal"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:34
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:35
 msgid "Make Primary"
 msgstr "La dirección de correo electrónico principal"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:35
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:36
 msgid "Re-send Verification"
 msgstr "Reenviar verificación"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:36
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:37
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:35
 msgid "Remove"
 msgstr "Borrar"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:43
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:44
 msgid "Warning:"
 msgstr "Aviso:"
 
-#: /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."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:44
+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:48
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:49
 msgid "Add E-mail Address"
 msgstr "Agregar dirección de correo electrónico"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:53
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:54
 msgid "Add E-mail"
 msgstr "Agregar correo electrónico"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:63
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:64
 msgid "Do you really want to remove the selected e-mail address?"
 msgstr "¿Está seguro que quiere borrar el correo electrónico seleccionado?"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:7
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirmed.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirmed.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email/email_confirmation_subject.txt:3
+#, 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/account/email_confirm.html:17
+#, fuzzy, python-format
+msgid ""
+"Please confirm that <a href=\"mailto:%(email)s\">%(email)s</a> is an "
+"e-mail address for user %(user_display)s."
+msgstr ""
+"Ha confirmado que <a href=\"mailto:%(email)s\">%(email)s</a> es  la "
+"dirección del correo electrónico para usuario '%(user)s'."
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:21
+msgid "Confirm"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:28
+#, python-format
+msgid ""
+"This e-mail confirmation link expired or is invalid. Please <a "
+"href=\"%(email_url)s\">issue a new e-mail confirmation request</a>."
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirmed.html:15
+#, fuzzy, python-format
+msgid ""
+"You have confirmed that <a href=\"mailto:%(email)s\">%(email)s</a> is an "
+"e-mail address for user %(user_display)s."
+msgstr ""
+"Ha confirmado que <a href=\"mailto:%(email)s\">%(email)s</a> es  la "
+"dirección del correo electrónico para usuario '%(user)s'."
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:7
 #: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:39
 msgid "Sign In"
 msgstr "Iniciar sesión"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:19
-#, python-format
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:16
+#, fuzzy, python-format
 msgid ""
 "Please sign in with one\n"
-"of your existing third party accounts. Or, <a \n"
-"href=\"%(signup_url)s\">sign up</a> for a %(site_name)s account and sign in\n"
-"below:"
+"of your existing third party accounts. Or, <a "
+"href=\"%(signup_url)s\">sign up</a> \n"
+"for a %(site_name)s account and sign in below:"
 msgstr ""
 "Por favor, inicie sesión con una \n"
 " de sus cuentas de terceros o <a \n"
-"href=\"%(signup_url)s\"> regístrese </a> en la cuenta de %(site_name)s e inicie sesión \n"
+"href=\"%(signup_url)s\"> regístrese </a> en la cuenta de %(site_name)s e "
+"inicie sesión \n"
 "abajo:"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:27
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:24
 msgid "or"
 msgstr "o"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:42
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:38
 msgid "Forgot Password?"
 msgstr "¿Olvidaste tu contraseña?"
 
@@ -289,8 +395,8 @@ msgstr "Cerrar sesión"
 #: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:8
 msgid "Change Password"
 msgstr "Cambia la contraseña"
 
@@ -300,7 +406,9 @@ msgid "Delete Password"
 msgstr "Borra la contraseña"
 
 #: /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."
+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."
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete.html:12
@@ -324,131 +432,172 @@ msgid "Password Reset"
 msgstr "Restablecimiento de la contraseña"
 
 #: /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. "
+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:20
 msgid "Reset My Password"
 msgstr "Restablecimiento de la contraseña"
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:23
-#, python-format
-msgid "If you have any trouble resetting your password, contact us at <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
-msgstr "Si tiene algún problema en restablecer su contraseña, póngase en contacto con nosotros a través de <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+msgid "Please contact us if you have any trouble resetting your password."
+msgstr ""
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_done.html:15
-#, python-format
-msgid "We have sent you an e-mail. If you do not receive it within a few minutes, contact us at <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
-msgstr "Le hemos enviado un correo. Si no recibe ningún correo dentro de unos minutos, póngase en contacto con nosotros a través de <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+#, fuzzy, python-format
+msgid ""
+"We have sent you an e-mail. Please contact us if you do not receive it "
+"within a few minutes."
+msgstr ""
+"Le hemos enviado un correo. Si no recibe ningún correo dentro de unos "
+"minutos, póngase en contacto con nosotros a través de <a "
+"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:7
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:8
 msgid "Bad Token"
 msgstr "Token incorrecto"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:12
 #, python-format
-msgid "The password reset link was invalid, possibly because it has already been used.  Please request a <a href=\"%(passwd_reset_url)s\">new password reset</a>."
-msgstr "El enlace de restablecimiento de la contraseña ha sido inválido. Es probable que ya haya sido usado. Por favor, solicite uno nuevo <a href=\"%(passwd_reset_url)s\">new password reset</a>."
+msgid ""
+"The password reset link was invalid, possibly because it has already been"
+" used.  Please request a <a href=\"%(passwd_reset_url)s\">new password "
+"reset</a>."
+msgstr ""
+"El enlace de restablecimiento de la contraseña ha sido inválido. Es "
+"probable que ya haya sido usado. Por favor, solicite uno nuevo <a "
+"href=\"%(passwd_reset_url)s\">new password reset</a>."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:17
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:18
 msgid "change password"
 msgstr "cambia la contraseña"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:20
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:21
 msgid "Your password is now changed."
 msgstr "Su contraseña ya se ha cambiado."
 
-#: /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"
-"\n"
-"%(password_reset_url)s\n"
-"\n"
-"In case you forgot, your username is %(username)s.\n"
-"\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"
-"\n"
-"%(password_reset_url)s\n"
-"\n"
-"Le recordamos que su nombre de usuario es %(username)s.\n"
-" \n"
-"¡Gracias por usar nuestra página!\n"
-
 #: /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"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:6
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:5
 msgid "Signup"
 msgstr "Registrarse"
 
-#: /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/account/signup.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:19
 #: /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"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:13
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:11
 #, python-format
-msgid "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
+msgid ""
+"Already have an account? Then please <a href=\"%(login_url)s\">sign "
+"in</a>."
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup_closed.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup_closed.html:9
+msgid "Sign Up Closed"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup_closed.html:11
+msgid "We are sorry, but the sign up is currently closed."
 msgstr ""
 
 #: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:9
 msgid "Verify Your E-mail Address"
 msgstr "Verifique su dirección de correo electrónico"
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verification_sent.html:10
 #, python-format
-msgid "We have sent you an e-mail to <b>%(email)s</b> for verification. Follow the link provided to finalize the signup process. If you do not receive it within a few minutes, contact us at <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
-msgstr "Para verificar le hemos enviado un correo a <b>%(email)s</b>. Abra el enlace que viene en el correo para finalizar el proceso de registrarse. Si no recibe ningún correo dentro de unos minutos, póngase en contacto con nosotros a través de <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
-
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/snippets/already_logged_in.html:5
-msgid "Note"
-msgstr "Nota"
+msgid ""
+"We have sent an e-mail to <a href=\"mailto:%(email)s\">%(email)s</a> for "
+"verification. Follow the link provided to finalize the signup process. "
+"Please contact us if you do not receive it within a few minutes."
+msgstr ""
 
-#: /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."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:15
+msgid ""
+"This part of the site requires us to verify that\n"
+"you are who you claim to be. For this purpose, we require that you\n"
+"verify ownership of your e-mail address. "
+msgstr ""
 
-#: /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"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:19
+msgid ""
+"We have sent an e-mail to you for\n"
+"verification. Please click on the link inside this e-mail. Please\n"
+"contact us if you do not receive it within a few minutes."
+msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:21
 #, python-format
-msgid "You have confirmed that <a href=\"mailto:%(email)s\">%(email)s</a> is an e-mail address for user '%(user)s'."
-msgstr "Ha confirmado que <a href=\"mailto:%(email)s\">%(email)s</a> es  la dirección del correo electrónico para usuario '%(user)s'."
-
-#: /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."
+msgid ""
+"<strong>Note:</strong> you can still <a href=\"%(email_url)s\">change "
+"your e-mail address</a>."
+msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/email_confirmation_message.txt:4
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email/email_confirmation_message.txt:4
 #, python-format
 msgid ""
-"User '%(user)s' at %(site_name)s has given this as an email address.\n"
+"User %(user_display)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/account/email/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"
+"\n"
+"%(password_reset_url)s\n"
+"\n"
+"In case you forgot, your username is %(username)s.\n"
+"\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"
+"\n"
+"%(password_reset_url)s\n"
+"\n"
+"Le recordamos que su nombre de usuario es %(username)s.\n"
+" \n"
+"¡Gracias por usar nuestra página!\n"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email/password_reset_key_subject.txt:3
+msgid "Password Reset E-mail"
+msgstr "La dirección de correo electrónico en caso de restablecer la contraseña"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/snippets/already_logged_in.html:5
+msgid "Note"
+msgstr "Nota"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/openid/login.html:9
+#: /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."
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/openid/login.html:10
 msgid "OpenID Sign In"
 msgstr "Iniciar sesión con OpenID "
 
@@ -467,8 +616,13 @@ msgid "Social Network Login Failure"
 msgstr "Error al iniciar sesión en la 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."
+#, fuzzy
+msgid ""
+"An error occurred 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/connections.html:5
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:8
@@ -476,22 +630,37 @@ msgid "Account Connections"
 msgstr "Conexiones de la cuenta de usuario"
 
 #: /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:"
+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:43
+#, fuzzy
+msgid "You currently have no social network accounts connected to this account."
+msgstr "La cuenta social ha sido conectada con su cuenta de usuario existente "
 
 #: /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"
 
-#: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:10
 msgid "Login Cancelled"
 msgstr "Nombre de usuario ha sido cancelado"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:13
-#, python-format
-msgid "You decided to cancel logging in to our site using one of your exisiting accounts. If this was a mistake, please proceed to <a href=\"%(login_url)s\">sign in</a>."
-msgstr "Ha decidido anular lo de iniciar sesión en nuestra página usando una de sus cuentas de usuario existentes. Si se ha equivocado, pase a<a href=\"%(login_url)s\">sign in</a>, por favor."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:14
+#, fuzzy, python-format
+msgid ""
+"You decided to cancel logging in to our site using one of your existing "
+"accounts. If this was a mistake, please proceed to <a "
+"href=\"%(login_url)s\">sign in</a>."
+msgstr ""
+"Ha decidido anular lo de iniciar sesión en nuestra página usando una de "
+"sus cuentas de usuario existentes. Si se ha equivocado, pase a<a "
+"href=\"%(login_url)s\">sign in</a>, por favor."
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:11
 #, python-format
@@ -499,35 +668,47 @@ 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 "OpenID"
+#~ msgstr "OpenID"
 
-#~ 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 ""
+#~ "If you have any trouble resetting "
+#~ "your password, contact us at <a "
+#~ "href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+#~ msgstr ""
+#~ "Si tiene algún problema en restablecer"
+#~ " su contraseña, póngase en contacto "
+#~ "con nosotros a través de <a "
+#~ "href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
 
-#~ msgid "Timezone"
-#~ msgstr "Huso horario"
+#~ msgid ""
+#~ "We have sent you an e-mail to "
+#~ "<b>%(email)s</b> for verification. Follow the"
+#~ " link provided to finalize the signup"
+#~ " process. If you do not receive "
+#~ "it within a few minutes, contact "
+#~ "us at <a "
+#~ "href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+#~ msgstr ""
+#~ "Para verificar le hemos enviado un "
+#~ "correo a <b>%(email)s</b>. Abra el "
+#~ "enlace que viene en el correo para"
+#~ " finalizar el proceso de registrarse. "
+#~ "Si no recibe ningún correo dentro "
+#~ "de unos minutos, póngase en contacto "
+#~ "con nosotros a través de <a "
+#~ "href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+
+#~ msgid "Invalid confirmation key."
+#~ msgstr "Clave de confirmación inválida."
 
 #~ msgid ""
-#~ "Pinax can localize all times into "
-#~ "your preferred timezone. Change your "
-#~ "timezone below."
+#~ "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 ""
-#~ "Pinax puede localizar todos los horarios"
-#~ " en su huso horario preferido. Cambie"
-#~ " su huso horario aquí abajo."
 
-#~ msgid "Change my timezone"
-#~ msgstr "Cambia mi huso horario"
index 6fec10b..806776e 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2012-08-14 17:40+0200\n"
+"POT-Creation-Date: 2013-04-09 15:30+0200\n"
 "PO-Revision-Date: 2012-03-22 14:23+0100\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: fr <LL@li.org>\n"
@@ -18,267 +18,341 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Generated-By: Babel 0.9.6\n"
 
-#: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:31
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:47
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:233
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:351
 msgid "Password"
 msgstr ""
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:40
+msgid "Password must be a minimum of {0} characters."
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:49
 msgid "Remember Me"
 msgstr ""
 
-#: /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:60
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:173
+msgid "E-mail address"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:61
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:182
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:301
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:380
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:368
 msgid "E-mail"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:57
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:130
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:66
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:67
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:166
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:170
 msgid "Username"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:85
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:74
+msgid "Username or e-mail"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:108
 msgid "This account is currently inactive."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:88
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:112
 msgid "The e-mail address and/or password you specified are not correct."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:90
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:116
 msgid "The username and/or password you specified are not correct."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:142
-msgid "E-mail (optional)"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:119
+msgid "The login and/or password you specified are not correct."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:153
-msgid "Usernames can only contain letters, numbers and underscores."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:185
+msgid "E-mail (optional)"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:159
-msgid "This username is already taken. Please choose another."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:193
+msgid "Usernames can only contain letters, digits and @/./+/-/_."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:167
-msgid "A user is registered with this e-mail address."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:197
+msgid "Username can not be used. Please use other username."
 msgstr ""
 
-#: /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)"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:204
+msgid "This username is already taken. Please choose another."
 msgstr ""
 
-#: /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."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:212
+msgid "A user is already registered with this e-mail address."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:260
-msgid "Your e-mail address has already been verified"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:234
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:352
+msgid "Password (again)"
 msgstr ""
 
-#: /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"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:262
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:341
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:357
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:425
+msgid "You must type the same password each time."
 msgstr ""
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:309
-msgid "This e-mail address already associated with this account."
+msgid "This e-mail address is already associated with this account."
 msgstr ""
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:310
-msgid "This e-mail address already associated with another account."
+msgid "This e-mail address is already associated with another account."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:327
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:329
 msgid "Current Password"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:331
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:427
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:330
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:413
 msgid "New Password"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:335
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:431
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:331
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:414
 msgid "New Password (again)"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:341
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:335
 msgid "Please type your current password."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:390
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:378
 msgid "The e-mail address is not assigned to any user account"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:409
-msgid "Password Reset E-mail"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/models.py:30
+msgid "email address"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/models.py:31
+msgid "email addresses"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:84
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/models.py:81
+msgid "email confirmation"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/models.py:82
+msgid "email confirmations"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:89
 #, python-format
 msgid "Successfully signed in as %(user)s."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:125
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:237
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:216
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:235
+#, python-format
+msgid "Confirmation e-mail sent to %(email)s"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:141
+#, python-format
+msgid "You have confirmed %(email)s."
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:253
+#, python-format
+msgid "You cannot remove your primary e-mail address (%(email)s)"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:263
 #, python-format
 msgid "Removed e-mail address %(email)s"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:139
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:289
+msgid "Your primary e-mail address must be verified"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:301
 msgid "Primary e-mail address set"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:160
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:233
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:330
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:407
 msgid "Password successfully changed."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:183
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:355
 msgid "Password successfully set."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:247
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:423
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/logout.html:10
 msgid "You have signed out."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/openid/forms.py:6
-msgid "OpenID"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:47
+msgid "Your account has no password set up."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:33
-msgid "Your local account has no password setup."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:51
+msgid "Your account has no verified e-mail address."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:37
-msgid "Your local account has no verified e-mail address."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/helpers.py:129
+msgid "The social account has been connected"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/helpers.py:111
-msgid "The social account has been connected to your existing account"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/views.py:66
+msgid "The social account has been disconnected"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:89
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:78
 #, python-format
 msgid "Invalid response while obtaining request token from \"%s\"."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:111
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:102
 #, python-format
 msgid "Invalid response while obtaining access token from \"%s\"."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:124
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:115
 #, python-format
 msgid "No request token saved for \"%s\"."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:172
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:160
 #, python-format
 msgid "No access token saved for \"%s\"."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:192
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:178
 #, python-format
 msgid "No access to private resources at \"%s\"."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/views.py:68
-msgid "The social account has been disconnected"
-msgstr ""
-
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:6
 msgid "Account"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:9
 msgid "E-mail Addresses"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:10
-msgid "The following e-mail addresses are associated to your account:"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:11
+msgid "The following e-mail addresses are associated with your account:"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:24
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:25
 msgid "Verified"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:26
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:27
 msgid "Unverified"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:28
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:29
 msgid "Primary"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:34
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:35
 msgid "Make Primary"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:35
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:36
 msgid "Re-send Verification"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:36
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:37
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:35
 msgid "Remove"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:43
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:44
 msgid "Warning:"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:43
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:44
 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:48
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:49
 msgid "Add E-mail Address"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:53
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:54
 msgid "Add E-mail"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:63
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:64
 msgid "Do you really want to remove the selected e-mail address?"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:7
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirmed.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirmed.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email/email_confirmation_subject.txt:3
+msgid "Confirm E-mail Address"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:17
+#, python-format
+msgid ""
+"Please confirm that <a href=\"mailto:%(email)s\">%(email)s</a> is an "
+"e-mail address for user %(user_display)s."
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:21
+msgid "Confirm"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:28
+#, python-format
+msgid ""
+"This e-mail confirmation link expired or is invalid. Please <a "
+"href=\"%(email_url)s\">issue a new e-mail confirmation request</a>."
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirmed.html:15
+#, python-format
+msgid ""
+"You have confirmed that <a href=\"mailto:%(email)s\">%(email)s</a> is an "
+"e-mail address for user %(user_display)s."
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:7
 #: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:39
 msgid "Sign In"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:19
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:16
 #, python-format
 msgid ""
 "Please sign in with one\n"
-"of your existing third party accounts. Or, <a \n"
-"href=\"%(signup_url)s\">sign up</a> for a %(site_name)s account and sign "
-"in\n"
-"below:"
+"of your existing third party accounts. Or, <a "
+"href=\"%(signup_url)s\">sign up</a> \n"
+"for a %(site_name)s account and sign in below:"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:27
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:24
 msgid "or"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:42
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:38
 msgid "Forgot Password?"
 msgstr ""
 
@@ -290,8 +364,8 @@ msgstr ""
 #: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:8
 msgid "Change Password"
 msgstr ""
 
@@ -337,25 +411,20 @@ msgid "Reset My Password"
 msgstr ""
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:23
-#, python-format
-msgid ""
-"If you have any trouble resetting your password, contact us at <a "
-"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+msgid "Please contact us if you have any trouble resetting your password."
 msgstr ""
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_done.html:15
-#, python-format
 msgid ""
-"We have sent you an e-mail. If you do not receive it within a few "
-"minutes, contact us at <a "
-"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+"We have sent you an e-mail. Please contact us if you do not receive it "
+"within a few minutes."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:7
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:8
 msgid "Bad Token"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:12
 #, python-format
 msgid ""
 "The password reset link was invalid, possibly because it has already been"
@@ -363,106 +432,122 @@ msgid ""
 "reset</a>."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:17
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:18
 msgid "change password"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:20
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:21
 msgid "Your password is now changed."
 msgstr ""
 
-#: /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"
-"\n"
-"%(password_reset_url)s\n"
-"\n"
-"In case you forgot, your username is %(username)s.\n"
-"\n"
-"Thanks for using our site!\n"
-msgstr ""
-
 #: /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 ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:6
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:5
 msgid "Signup"
 msgstr ""
 
-#: /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/account/signup.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:19
 #: /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 ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:13
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:11
 #, python-format
 msgid ""
 "Already have an account? Then please <a href=\"%(login_url)s\">sign "
 "in</a>."
 msgstr ""
 
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup_closed.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup_closed.html:9
+msgid "Sign Up Closed"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup_closed.html:11
+msgid "We are sorry, but the sign up is currently closed."
+msgstr ""
+
 #: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:9
 msgid "Verify Your E-mail Address"
 msgstr ""
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verification_sent.html:10
 #, python-format
 msgid ""
-"We have sent you an e-mail to <b>%(email)s</b> for verification. Follow "
-"the link provided to finalize the signup process. If you do not receive "
-"it within a few minutes, contact us at <a "
-"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+"We have sent an e-mail to <a href=\"mailto:%(email)s\">%(email)s</a> for "
+"verification. Follow the link provided to finalize the signup process. "
+"Please contact us if you do not receive it within a few minutes."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/snippets/already_logged_in.html:5
-msgid "Note"
-msgstr ""
-
-#: /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."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:15
+msgid ""
+"This part of the site requires us to verify that\n"
+"you are who you claim to be. For this purpose, we require that you\n"
+"verify ownership of your e-mail address. "
 msgstr ""
 
-#: /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"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:19
+msgid ""
+"We have sent an e-mail to you for\n"
+"verification. Please click on the link inside this e-mail. Please\n"
+"contact us if you do not receive it within a few minutes."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:21
 #, python-format
 msgid ""
-"You have confirmed that <a href=\"mailto:%(email)s\">%(email)s</a> is an "
-"e-mail address for user '%(user)s'."
+"<strong>Note:</strong> you can still <a href=\"%(email_url)s\">change "
+"your e-mail address</a>."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:13
-msgid "Invalid confirmation key."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email/email_confirmation_message.txt:4
+#, python-format
+msgid ""
+"User %(user_display)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_message.txt:4
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email/password_reset_key_message.txt:9
 #, python-format
 msgid ""
-"User '%(user)s' at %(site_name)s has given this as an email address.\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"
-"To confirm this is correct, go to %(activate_url)s\n"
+"%(password_reset_url)s\n"
+"\n"
+"In case you forgot, your username is %(username)s.\n"
+"\n"
+"Thanks for using our site!\n"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/email_confirmation_subject.txt:1
-msgid "Confirm E-mail Address"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email/password_reset_key_subject.txt:3
+msgid "Password Reset E-mail"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/snippets/already_logged_in.html:5
+msgid "Note"
+msgstr ""
+
+#: /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 ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/openid/login.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/openid/login.html:10
 msgid "OpenID Sign In"
 msgstr ""
 
@@ -482,7 +567,7 @@ 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 "
+"An error occurred while attempting to login via your social network "
 "account."
 msgstr ""
 
@@ -497,19 +582,23 @@ msgid ""
 "accounts:"
 msgstr ""
 
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:43
+msgid "You currently have no social network accounts connected to this account."
+msgstr ""
+
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:46
 msgid "Add a 3rd Party Account"
 msgstr ""
 
-#: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:10
 msgid "Login Cancelled"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:13
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:14
 #, python-format
 msgid ""
-"You decided to cancel logging in to our site using one of your exisiting "
+"You decided to cancel logging in to our site using one of your existing "
 "accounts. If this was a mistake, please proceed to <a "
 "href=\"%(login_url)s\">sign in</a>."
 msgstr ""
@@ -521,30 +610,95 @@ msgid ""
 "%(site_name)s. As a final step, please complete the following form:"
 msgstr ""
 
-#~ msgid "Language"
+#~ msgid "Usernames can only contain letters, numbers and underscores."
+#~ msgstr ""
+
+#~ msgid "A user is registered with this e-mail address."
 #~ msgstr ""
 
-#~ msgid "Pinax can be used in your preferred language."
+#~ msgid "Your e-mail address has already been verified"
 #~ msgstr ""
 
-#~ msgid "Change my language"
+#~ msgid "This e-mail address already associated with this account."
 #~ msgstr ""
 
-#~ msgid "Already have an account?"
+#~ msgid "This e-mail address already associated with another account."
 #~ msgstr ""
 
-#~ msgid "Sign in"
+#~ msgid "OpenID"
 #~ msgstr ""
 
-#~ msgid "Timezone"
+#~ msgid "Your local account has no password setup."
+#~ msgstr ""
+
+#~ msgid "Your local account has no verified e-mail address."
+#~ msgstr ""
+
+#~ msgid "The social account has been connected to your existing account"
+#~ msgstr ""
+
+#~ msgid "The following e-mail addresses are associated to your account:"
 #~ msgstr ""
 
 #~ msgid ""
-#~ "Pinax can localize all times into "
-#~ "your preferred timezone. Change your "
-#~ "timezone below."
+#~ "Please sign in with one\n"
+#~ "of your existing third party accounts. Or, <a \n"
+#~ "href=\"%(signup_url)s\">sign up</a> for a "
+#~ "%(site_name)s account and sign in\n"
+#~ "below:"
 #~ msgstr ""
 
-#~ msgid "Change my timezone"
+#~ msgid ""
+#~ "If you have any trouble resetting "
+#~ "your password, contact us at <a "
+#~ "href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "We have sent you an e-mail. If "
+#~ "you do not receive it within a "
+#~ "few minutes, contact us at <a "
+#~ "href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "We have sent you an e-mail to "
+#~ "<b>%(email)s</b> for verification. Follow the"
+#~ " link provided to finalize the signup"
+#~ " process. If you do not receive "
+#~ "it within a few minutes, contact "
+#~ "us at <a "
+#~ "href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+#~ msgstr ""
+
+#~ msgid "E-mail Address Confirmation"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "You have confirmed that <a "
+#~ "href=\"mailto:%(email)s\">%(email)s</a> is an e-mail"
+#~ " address for user '%(user)s'."
+#~ msgstr ""
+
+#~ msgid "Invalid confirmation key."
+#~ msgstr ""
+
+#~ 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 ""
+
+#~ msgid ""
+#~ "An error occured while attempting to "
+#~ "login via your social network account."
+#~ 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 <a "
+#~ "href=\"%(login_url)s\">sign in</a>."
 #~ msgstr ""
 
index cc70820..a1b2a1e 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2012-08-14 17:40+0200\n"
+"POT-Creation-Date: 2013-04-09 15:30+0200\n"
 "PO-Revision-Date: 2012-03-22 14:23+0100\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: en <LL@li.org>\n"
@@ -18,267 +18,341 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Generated-By: Babel 0.9.6\n"
 
-#: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:31
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:47
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:233
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:351
 msgid "Password"
 msgstr ""
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:40
+msgid "Password must be a minimum of {0} characters."
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:49
 msgid "Remember Me"
 msgstr ""
 
-#: /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:60
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:173
+msgid "E-mail address"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:61
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:182
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:301
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:380
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:368
 msgid "E-mail"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:57
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:130
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:66
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:67
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:166
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:170
 msgid "Username"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:85
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:74
+msgid "Username or e-mail"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:108
 msgid "This account is currently inactive."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:88
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:112
 msgid "The e-mail address and/or password you specified are not correct."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:90
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:116
 msgid "The username and/or password you specified are not correct."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:142
-msgid "E-mail (optional)"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:119
+msgid "The login and/or password you specified are not correct."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:153
-msgid "Usernames can only contain letters, numbers and underscores."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:185
+msgid "E-mail (optional)"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:159
-msgid "This username is already taken. Please choose another."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:193
+msgid "Usernames can only contain letters, digits and @/./+/-/_."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:167
-msgid "A user is registered with this e-mail address."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:197
+msgid "Username can not be used. Please use other username."
 msgstr ""
 
-#: /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)"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:204
+msgid "This username is already taken. Please choose another."
 msgstr ""
 
-#: /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."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:212
+msgid "A user is already registered with this e-mail address."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:260
-msgid "Your e-mail address has already been verified"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:234
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:352
+msgid "Password (again)"
 msgstr ""
 
-#: /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"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:262
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:341
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:357
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:425
+msgid "You must type the same password each time."
 msgstr ""
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:309
-msgid "This e-mail address already associated with this account."
+msgid "This e-mail address is already associated with this account."
 msgstr ""
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:310
-msgid "This e-mail address already associated with another account."
+msgid "This e-mail address is already associated with another account."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:327
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:329
 msgid "Current Password"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:331
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:427
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:330
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:413
 msgid "New Password"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:335
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:431
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:331
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:414
 msgid "New Password (again)"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:341
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:335
 msgid "Please type your current password."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:390
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:378
 msgid "The e-mail address is not assigned to any user account"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:409
-msgid "Password Reset E-mail"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/models.py:30
+msgid "email address"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/models.py:31
+msgid "email addresses"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:84
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/models.py:81
+msgid "email confirmation"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/models.py:82
+msgid "email confirmations"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:89
 #, python-format
 msgid "Successfully signed in as %(user)s."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:125
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:237
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:216
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:235
+#, python-format
+msgid "Confirmation e-mail sent to %(email)s"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:141
+#, python-format
+msgid "You have confirmed %(email)s."
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:253
+#, python-format
+msgid "You cannot remove your primary e-mail address (%(email)s)"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:263
 #, python-format
 msgid "Removed e-mail address %(email)s"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:139
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:289
+msgid "Your primary e-mail address must be verified"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:301
 msgid "Primary e-mail address set"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:160
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:233
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:330
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:407
 msgid "Password successfully changed."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:183
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:355
 msgid "Password successfully set."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:247
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:423
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/logout.html:10
 msgid "You have signed out."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/openid/forms.py:6
-msgid "OpenID"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:47
+msgid "Your account has no password set up."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:33
-msgid "Your local account has no password setup."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:51
+msgid "Your account has no verified e-mail address."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:37
-msgid "Your local account has no verified e-mail address."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/helpers.py:129
+msgid "The social account has been connected"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/helpers.py:111
-msgid "The social account has been connected to your existing account"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/views.py:66
+msgid "The social account has been disconnected"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:89
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:78
 #, python-format
 msgid "Invalid response while obtaining request token from \"%s\"."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:111
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:102
 #, python-format
 msgid "Invalid response while obtaining access token from \"%s\"."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:124
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:115
 #, python-format
 msgid "No request token saved for \"%s\"."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:172
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:160
 #, python-format
 msgid "No access token saved for \"%s\"."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:192
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:178
 #, python-format
 msgid "No access to private resources at \"%s\"."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/views.py:68
-msgid "The social account has been disconnected"
-msgstr ""
-
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:6
 msgid "Account"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:9
 msgid "E-mail Addresses"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:10
-msgid "The following e-mail addresses are associated to your account:"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:11
+msgid "The following e-mail addresses are associated with your account:"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:24
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:25
 msgid "Verified"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:26
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:27
 msgid "Unverified"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:28
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:29
 msgid "Primary"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:34
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:35
 msgid "Make Primary"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:35
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:36
 msgid "Re-send Verification"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:36
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:37
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:35
 msgid "Remove"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:43
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:44
 msgid "Warning:"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:43
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:44
 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:48
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:49
 msgid "Add E-mail Address"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:53
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:54
 msgid "Add E-mail"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:63
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:64
 msgid "Do you really want to remove the selected e-mail address?"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:7
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirmed.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirmed.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email/email_confirmation_subject.txt:3
+msgid "Confirm E-mail Address"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:17
+#, python-format
+msgid ""
+"Please confirm that <a href=\"mailto:%(email)s\">%(email)s</a> is an "
+"e-mail address for user %(user_display)s."
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:21
+msgid "Confirm"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:28
+#, python-format
+msgid ""
+"This e-mail confirmation link expired or is invalid. Please <a "
+"href=\"%(email_url)s\">issue a new e-mail confirmation request</a>."
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirmed.html:15
+#, python-format
+msgid ""
+"You have confirmed that <a href=\"mailto:%(email)s\">%(email)s</a> is an "
+"e-mail address for user %(user_display)s."
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:7
 #: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:39
 msgid "Sign In"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:19
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:16
 #, python-format
 msgid ""
 "Please sign in with one\n"
-"of your existing third party accounts. Or, <a \n"
-"href=\"%(signup_url)s\">sign up</a> for a %(site_name)s account and sign "
-"in\n"
-"below:"
+"of your existing third party accounts. Or, <a "
+"href=\"%(signup_url)s\">sign up</a> \n"
+"for a %(site_name)s account and sign in below:"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:27
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:24
 msgid "or"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:42
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:38
 msgid "Forgot Password?"
 msgstr ""
 
@@ -290,8 +364,8 @@ msgstr ""
 #: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:8
 msgid "Change Password"
 msgstr ""
 
@@ -337,25 +411,20 @@ msgid "Reset My Password"
 msgstr ""
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:23
-#, python-format
-msgid ""
-"If you have any trouble resetting your password, contact us at <a "
-"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+msgid "Please contact us if you have any trouble resetting your password."
 msgstr ""
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_done.html:15
-#, python-format
 msgid ""
-"We have sent you an e-mail. If you do not receive it within a few "
-"minutes, contact us at <a "
-"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+"We have sent you an e-mail. Please contact us if you do not receive it "
+"within a few minutes."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:7
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:8
 msgid "Bad Token"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:12
 #, python-format
 msgid ""
 "The password reset link was invalid, possibly because it has already been"
@@ -363,106 +432,122 @@ msgid ""
 "reset</a>."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:17
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:18
 msgid "change password"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:20
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:21
 msgid "Your password is now changed."
 msgstr ""
 
-#: /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"
-"\n"
-"%(password_reset_url)s\n"
-"\n"
-"In case you forgot, your username is %(username)s.\n"
-"\n"
-"Thanks for using our site!\n"
-msgstr ""
-
 #: /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 ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:6
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:5
 msgid "Signup"
 msgstr ""
 
-#: /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/account/signup.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:19
 #: /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 ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:13
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:11
 #, python-format
 msgid ""
 "Already have an account? Then please <a href=\"%(login_url)s\">sign "
 "in</a>."
 msgstr ""
 
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup_closed.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup_closed.html:9
+msgid "Sign Up Closed"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup_closed.html:11
+msgid "We are sorry, but the sign up is currently closed."
+msgstr ""
+
 #: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:9
 msgid "Verify Your E-mail Address"
 msgstr ""
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verification_sent.html:10
 #, python-format
 msgid ""
-"We have sent you an e-mail to <b>%(email)s</b> for verification. Follow "
-"the link provided to finalize the signup process. If you do not receive "
-"it within a few minutes, contact us at <a "
-"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+"We have sent an e-mail to <a href=\"mailto:%(email)s\">%(email)s</a> for "
+"verification. Follow the link provided to finalize the signup process. "
+"Please contact us if you do not receive it within a few minutes."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/snippets/already_logged_in.html:5
-msgid "Note"
-msgstr ""
-
-#: /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."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:15
+msgid ""
+"This part of the site requires us to verify that\n"
+"you are who you claim to be. For this purpose, we require that you\n"
+"verify ownership of your e-mail address. "
 msgstr ""
 
-#: /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"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:19
+msgid ""
+"We have sent an e-mail to you for\n"
+"verification. Please click on the link inside this e-mail. Please\n"
+"contact us if you do not receive it within a few minutes."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:21
 #, python-format
 msgid ""
-"You have confirmed that <a href=\"mailto:%(email)s\">%(email)s</a> is an "
-"e-mail address for user '%(user)s'."
+"<strong>Note:</strong> you can still <a href=\"%(email_url)s\">change "
+"your e-mail address</a>."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:13
-msgid "Invalid confirmation key."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email/email_confirmation_message.txt:4
+#, python-format
+msgid ""
+"User %(user_display)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_message.txt:4
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email/password_reset_key_message.txt:9
 #, python-format
 msgid ""
-"User '%(user)s' at %(site_name)s has given this as an email address.\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"
-"To confirm this is correct, go to %(activate_url)s\n"
+"%(password_reset_url)s\n"
+"\n"
+"In case you forgot, your username is %(username)s.\n"
+"\n"
+"Thanks for using our site!\n"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/email_confirmation_subject.txt:1
-msgid "Confirm E-mail Address"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email/password_reset_key_subject.txt:3
+msgid "Password Reset E-mail"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/snippets/already_logged_in.html:5
+msgid "Note"
+msgstr ""
+
+#: /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 ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/openid/login.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/openid/login.html:10
 msgid "OpenID Sign In"
 msgstr ""
 
@@ -482,7 +567,7 @@ 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 "
+"An error occurred while attempting to login via your social network "
 "account."
 msgstr ""
 
@@ -497,19 +582,23 @@ msgid ""
 "accounts:"
 msgstr ""
 
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:43
+msgid "You currently have no social network accounts connected to this account."
+msgstr ""
+
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:46
 msgid "Add a 3rd Party Account"
 msgstr ""
 
-#: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:10
 msgid "Login Cancelled"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:13
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:14
 #, python-format
 msgid ""
-"You decided to cancel logging in to our site using one of your exisiting "
+"You decided to cancel logging in to our site using one of your existing "
 "accounts. If this was a mistake, please proceed to <a "
 "href=\"%(login_url)s\">sign in</a>."
 msgstr ""
@@ -521,30 +610,95 @@ msgid ""
 "%(site_name)s. As a final step, please complete the following form:"
 msgstr ""
 
-#~ msgid "Language"
+#~ msgid "Usernames can only contain letters, numbers and underscores."
+#~ msgstr ""
+
+#~ msgid "A user is registered with this e-mail address."
 #~ msgstr ""
 
-#~ msgid "Pinax can be used in your preferred language."
+#~ msgid "Your e-mail address has already been verified"
 #~ msgstr ""
 
-#~ msgid "Change my language"
+#~ msgid "This e-mail address already associated with this account."
 #~ msgstr ""
 
-#~ msgid "Already have an account?"
+#~ msgid "This e-mail address already associated with another account."
 #~ msgstr ""
 
-#~ msgid "Sign in"
+#~ msgid "OpenID"
 #~ msgstr ""
 
-#~ msgid "Timezone"
+#~ msgid "Your local account has no password setup."
+#~ msgstr ""
+
+#~ msgid "Your local account has no verified e-mail address."
+#~ msgstr ""
+
+#~ msgid "The social account has been connected to your existing account"
+#~ msgstr ""
+
+#~ msgid "The following e-mail addresses are associated to your account:"
 #~ msgstr ""
 
 #~ msgid ""
-#~ "Pinax can localize all times into "
-#~ "your preferred timezone. Change your "
-#~ "timezone below."
+#~ "Please sign in with one\n"
+#~ "of your existing third party accounts. Or, <a \n"
+#~ "href=\"%(signup_url)s\">sign up</a> for a "
+#~ "%(site_name)s account and sign in\n"
+#~ "below:"
 #~ msgstr ""
 
-#~ msgid "Change my timezone"
+#~ msgid ""
+#~ "If you have any trouble resetting "
+#~ "your password, contact us at <a "
+#~ "href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "We have sent you an e-mail. If "
+#~ "you do not receive it within a "
+#~ "few minutes, contact us at <a "
+#~ "href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "We have sent you an e-mail to "
+#~ "<b>%(email)s</b> for verification. Follow the"
+#~ " link provided to finalize the signup"
+#~ " process. If you do not receive "
+#~ "it within a few minutes, contact "
+#~ "us at <a "
+#~ "href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+#~ msgstr ""
+
+#~ msgid "E-mail Address Confirmation"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "You have confirmed that <a "
+#~ "href=\"mailto:%(email)s\">%(email)s</a> is an e-mail"
+#~ " address for user '%(user)s'."
+#~ msgstr ""
+
+#~ msgid "Invalid confirmation key."
+#~ msgstr ""
+
+#~ 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 ""
+
+#~ msgid ""
+#~ "An error occured while attempting to "
+#~ "login via your social network account."
+#~ 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 <a "
+#~ "href=\"%(login_url)s\">sign in</a>."
 #~ msgstr ""
 
index ad40a18..cfc4c20 100644 (file)
@@ -7,277 +7,382 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2012-08-14 17:40+0200\n"
+"POT-Creation-Date: 2013-04-09 15:30+0200\n"
 "PO-Revision-Date: 2012-08-14 17:50+0100\n"
 "Last-Translator: Radek Czajka <radoslaw.czajka@nowoczesnapolska.org.pl>\n"
 "Language-Team: lt <LL@li.org>\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
+"(n%100<10 || n%100>=20) ? 1 : 2)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Generated-By: Babel 0.9.6\n"
 
-#: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:31
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:47
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:233
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:351
 msgid "Password"
 msgstr "Slaptažodis"
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:40
+msgid "Password must be a minimum of {0} characters."
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:49
 msgid "Remember Me"
 msgstr "Įsiminti mane"
 
-#: /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:60
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:173
+#, fuzzy
+msgid "E-mail address"
+msgstr "El. pašto adresai"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:61
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:182
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:301
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:380
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:368
 msgid "E-mail"
 msgstr "El. paštas"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:57
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:130
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:66
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:67
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:166
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:170
 msgid "Username"
 msgstr "Vartotojo vardas"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:85
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:74
+msgid "Username or e-mail"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:108
 msgid "This account is currently inactive."
 msgstr "Ši paskyra yra šiuo metu neaktyvi."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:88
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:112
 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."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:90
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:116
 msgid "The username and/or password you specified are not correct."
 msgstr "Vartotojo vardas ir/arba slaptažodis nėra teisingas."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:142
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:119
+#, fuzzy
+msgid "The login and/or password you specified are not correct."
+msgstr "Vartotojo vardas ir/arba slaptažodis nėra teisingas."
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:185
 msgid "E-mail (optional)"
 msgstr "El. paštas (pasirenkamas)"
 
-#: /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ų."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:193
+#, fuzzy
+msgid "Usernames can only contain letters, digits and @/./+/-/_."
+msgstr ""
+"Vartotojo vardas gali būti sudarytas tik iš raidžių, skaičių ir "
+"pabraukimo brūkšnelių."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:159
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:197
+msgid "Username can not be used. Please use other username."
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:204
 msgid "This username is already taken. Please choose another."
 msgstr "Šis vartotojo vardas yra užimtas. Prašome pasirinkite kitą."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:167
-msgid "A user is registered with this e-mail address."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:212
+#, fuzzy
+msgid "A user is already registered with this e-mail address."
 msgstr "Šiuo elektroninio pašto adresu jau yra užsiregistravęs vartotojas."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:195
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:362
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:234
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:352
 msgid "Password (again)"
 msgstr "Slaptažodis (pakartoti)"
 
-#: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:262
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:341
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:357
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:425
 msgid "You must type the same password each time."
 msgstr "Kiekvieną kartą turite įvesti tokį patį slaptažodį."
 
-#: /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."
-
-#: /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"
-
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:309
-msgid "This e-mail address already associated with this account."
+#, fuzzy
+msgid "This e-mail address is already associated with this account."
 msgstr "Šis el. pašto adresas jau yra susietas su šia paskyra."
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:310
-msgid "This e-mail address already associated with another account."
+#, fuzzy
+msgid "This e-mail address is already associated with another account."
 msgstr "Šis el. pašto adresas jau yra susietas su kita paskyra."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:327
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:329
 msgid "Current Password"
 msgstr "Dabartinis slaptažodis"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:331
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:427
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:330
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:413
 msgid "New Password"
 msgstr "Naujas slaptažodis"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:335
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:431
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:331
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:414
 msgid "New Password (again)"
 msgstr "Naujas slaptažodis (pakartoti)"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:341
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:335
 msgid "Please type your current password."
 msgstr "Prašome įvesti jūsų dabartinį slaptažodį."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:390
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:378
 msgid "The e-mail address is not assigned to any user account"
 msgstr "Šis el. pašto adresas nėra priskirtas jokio vartotojo paskyrai."
 
-#: /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"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/models.py:30
+#, fuzzy
+msgid "email address"
+msgstr "El. pašto adresai"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:84
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/models.py:31
+#, fuzzy
+msgid "email addresses"
+msgstr "El. pašto adresai"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/models.py:81
+#, fuzzy
+msgid "email confirmation"
+msgstr "El. pašto adreso patvirtinimas"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/models.py:82
+#, fuzzy
+msgid "email confirmations"
+msgstr "El. pašto adreso patvirtinimas"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:89
 #, python-format
 msgid "Successfully signed in as %(user)s."
 msgstr "Sėkmingai prisijungęs kaip %(user)s."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:125
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:237
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:216
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:235
+#, python-format
+msgid "Confirmation e-mail sent to %(email)s"
+msgstr "El. pašto patvirtinimas buvo išsiųstas į %(email)s"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:141
+#, python-format
+msgid "You have confirmed %(email)s."
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:253
+#, fuzzy, python-format
+msgid "You cannot remove your primary e-mail address (%(email)s)"
+msgstr "Pašalintas el. pašto adresas %(email)s"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:263
 #, python-format
 msgid "Removed e-mail address %(email)s"
 msgstr "Pašalintas el. pašto adresas %(email)s"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:139
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:289
+#, fuzzy
+msgid "Your primary e-mail address must be verified"
+msgstr "Jūsų el.pašto adresas jau buvo patikrintas."
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:301
 msgid "Primary e-mail address set"
 msgstr "Nustatytas pagrindinis el. pašto adresas"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:160
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:233
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:330
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:407
 msgid "Password successfully changed."
 msgstr "Slaptažodis sėkmingai pakeistas."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:183
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:355
 msgid "Password successfully set."
 msgstr "Slaptažodis sėkmingai nustatytas."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:247
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:423
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/logout.html:10
 msgid "You have signed out."
 msgstr "Jūs atsijungėte."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/openid/forms.py:6
-msgid "OpenID"
-msgstr "OpenID"
-
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:33
-msgid "Your local account has no password setup."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:47
+#, fuzzy
+msgid "Your account has no password set up."
 msgstr "Jūsų vietinės paskyros slaptažodis dar yra nenustatytas."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:37
-msgid "Your local account has no verified e-mail address."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:51
+#, fuzzy
+msgid "Your account has no verified e-mail address."
 msgstr "Jūsų vietinės paskyros el. pašto adresas dar nepatikrintas."
 
-#: /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"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/helpers.py:129
+#, fuzzy
+msgid "The social account has been connected"
+msgstr "Socialinė paskyra buvo atjungta"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/views.py:66
+msgid "The social account has been disconnected"
+msgstr "Socialinė paskyra buvo atjungta"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:89
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:78
 #, python-format
 msgid "Invalid response while obtaining request token from \"%s\"."
 msgstr "Neteisingas atsakas gaunant užklausos žetoną iš \"%s\"."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:111
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:102
 #, python-format
 msgid "Invalid response while obtaining access token from \"%s\"."
 msgstr "Neteisingas atsakas gaunant prieigos žetoną iš \"%s\"."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:124
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:115
 #, python-format
 msgid "No request token saved for \"%s\"."
 msgstr "Nėra užklausos žetono įrašyto \"%s\"."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:172
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:160
 #, python-format
 msgid "No access token saved for \"%s\"."
 msgstr "Nėra prieigos žetono įrašyto \"%s\"."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:192
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:178
 #, python-format
 msgid "No access to private resources at \"%s\"."
 msgstr "Trūksta prieigos prie privačių išteklių \"%s\"."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/views.py:68
-msgid "The social account has been disconnected"
-msgstr "Socialinė paskyra buvo atjungta"
-
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:6
 msgid "Account"
 msgstr "Paskyra"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:9
 msgid "E-mail Addresses"
 msgstr "El. pašto adresai"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:10
-msgid "The following e-mail addresses are associated to your account:"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:11
+#, fuzzy
+msgid "The following e-mail addresses are associated with your account:"
 msgstr "Šie el. pašto adresai yra priskirti jūsų paskyrai:"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:24
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:25
 msgid "Verified"
 msgstr "Patikrintas"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:26
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:27
 msgid "Unverified"
 msgstr "Nepatikrintas"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:28
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:29
 msgid "Primary"
 msgstr "Pirminis"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:34
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:35
 msgid "Make Primary"
 msgstr "Padaryti pirminiu"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:35
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:36
 msgid "Re-send Verification"
 msgstr "Dar kartą siųsti patikrinimą"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:36
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:37
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:35
 msgid "Remove"
 msgstr "Pašalinti"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:43
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:44
 msgid "Warning:"
 msgstr "Įspėjimas:"
 
-#: /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."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:44
+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:48
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:49
 msgid "Add E-mail Address"
 msgstr "Pridėti el. pašto adresą"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:53
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:54
 msgid "Add E-mail"
 msgstr "Pridėti el. paštą"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:63
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:64
 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ą?"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:7
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirmed.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirmed.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email/email_confirmation_subject.txt:3
+#, fuzzy
+msgid "Confirm E-mail Address"
+msgstr "Nustatytas pagrindinis el. pašto adresas"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:17
+#, fuzzy, python-format
+msgid ""
+"Please confirm that <a href=\"mailto:%(email)s\">%(email)s</a> is an "
+"e-mail address for user %(user_display)s."
+msgstr ""
+"Patvirtinote, kad <a href=\"mailto:%(email)s\">%(email)s</a> yra "
+"'%(user)s' vartotojo el. pašto adresas."
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:21
+msgid "Confirm"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:28
+#, python-format
+msgid ""
+"This e-mail confirmation link expired or is invalid. Please <a "
+"href=\"%(email_url)s\">issue a new e-mail confirmation request</a>."
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirmed.html:15
+#, fuzzy, python-format
+msgid ""
+"You have confirmed that <a href=\"mailto:%(email)s\">%(email)s</a> is an "
+"e-mail address for user %(user_display)s."
+msgstr ""
+"Patvirtinote, kad <a href=\"mailto:%(email)s\">%(email)s</a> yra "
+"'%(user)s' vartotojo el. pašto adresas."
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:7
 #: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:39
 msgid "Sign In"
 msgstr "Prisijungti"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:19
-#, python-format
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:16
+#, fuzzy, python-format
 msgid ""
 "Please sign in with one\n"
-"of your existing third party accounts. Or, <a \n"
-"href=\"%(signup_url)s\">sign up</a> for a %(site_name)s account and sign in\n"
-"below:"
+"of your existing third party accounts. Or, <a "
+"href=\"%(signup_url)s\">sign up</a> \n"
+"for a %(site_name)s account and sign in below:"
 msgstr ""
 "Prašome prisijungti su viena\n"
 "iš jūsų third party paskyrų. Arba <a \n"
-"href=\"%(signup_url)s\">užsiregistruoti</a> %(site_name)s paskyrai sukurti ir prisijungti\n"
+"href=\"%(signup_url)s\">užsiregistruoti</a> %(site_name)s paskyrai "
+"sukurti ir prisijungti\n"
 "žemiau:"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:27
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:24
 msgid "or"
 msgstr "arba"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:42
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:38
 msgid "Forgot Password?"
 msgstr "Pamiršote slaptažodį?"
 
@@ -289,8 +394,8 @@ msgstr "Atsijungęs"
 #: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:8
 msgid "Change Password"
 msgstr "Keisti slaptažodį"
 
@@ -300,8 +405,12 @@ msgid "Delete Password"
 msgstr "Pašalinti slaptažodį"
 
 #: /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."
+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:12
 msgid "delete my password"
@@ -324,129 +433,170 @@ msgid "Password Reset"
 msgstr "Slaptažodžio atstatymas"
 
 #: /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."
+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:20
 msgid "Reset My Password"
 msgstr "Atstatyti mano slaptažodį"
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:23
-#, python-format
-msgid "If you have any trouble resetting your password, contact us at <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
-msgstr "Jei turite problemų su jūsų slaptažodžio atstatymu, susisiekite su mumis <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+msgid "Please contact us if you have any trouble resetting your password."
+msgstr ""
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_done.html:15
-#, python-format
-msgid "We have sent you an e-mail. If you do not receive it within a few minutes, contact us at <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
-msgstr "Jums išsiuntėme el. laišką. Jei to negausite per kelias minutes, susisiekite su mumis <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+#, fuzzy, python-format
+msgid ""
+"We have sent you an e-mail. Please contact us if you do not receive it "
+"within a few minutes."
+msgstr ""
+"Jums išsiuntėme el. laišką. Jei to negausite per kelias minutes, "
+"susisiekite su mumis <a "
+"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:7
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:8
 msgid "Bad Token"
 msgstr "Blogas žetonas"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:12
 #, python-format
-msgid "The password reset link was invalid, possibly because it has already been used.  Please request a <a href=\"%(passwd_reset_url)s\">new password reset</a>."
-msgstr "Atstatymo slaptažodžio nuoroda buvo netinkama, galbūt, nes jau buvo panaudota. Prašome paprašyti <a href=\"%(passwd_reset_url)s\">naujo slaptažodžio atstatymo</a>."
+msgid ""
+"The password reset link was invalid, possibly because it has already been"
+" used.  Please request a <a href=\"%(passwd_reset_url)s\">new password "
+"reset</a>."
+msgstr ""
+"Atstatymo slaptažodžio nuoroda buvo netinkama, galbūt, nes jau buvo "
+"panaudota. Prašome paprašyti <a href=\"%(passwd_reset_url)s\">naujo "
+"slaptažodžio atstatymo</a>."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:17
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:18
 msgid "change password"
 msgstr "keisti slaptažodį"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:20
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:21
 msgid "Your password is now changed."
 msgstr "Jūsų slaptažodis pakeistas."
 
-#: /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"
-"\n"
-"%(password_reset_url)s\n"
-"\n"
-"In case you forgot, your username is %(username)s.\n"
-"\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"
-"\n"
-"%(password_reset_url)s\n"
-"\n"
-"Jūsų vartotojo vardas yra %(username)s\n"
-
 #: /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į"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:6
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:5
 msgid "Signup"
 msgstr "Registracija"
 
-#: /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/account/signup.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:19
 #: /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"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:13
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:11
 #, python-format
-msgid "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
+msgid ""
+"Already have an account? Then please <a href=\"%(login_url)s\">sign "
+"in</a>."
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup_closed.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup_closed.html:9
+msgid "Sign Up Closed"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup_closed.html:11
+msgid "We are sorry, but the sign up is currently closed."
 msgstr ""
 
 #: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:9
 msgid "Verify Your E-mail Address"
 msgstr "Patikrinkite jūsų el. pašto adresą"
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verification_sent.html:10
 #, python-format
-msgid "We have sent you an e-mail to <b>%(email)s</b> for verification. Follow the link provided to finalize the signup process. If you do not receive it within a few minutes, contact us at <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
-msgstr "Išsiuntėme patvirtinimo el. laišką į <b>%(email)s</b>. Paspauskite pateiktą nuorodą, norėdami baigti registracijos procesą. Jei to negausite per kelias minutes, susisiekite su mumis <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
-
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/snippets/already_logged_in.html:5
-msgid "Note"
-msgstr "Pastaba"
+msgid ""
+"We have sent an e-mail to <a href=\"mailto:%(email)s\">%(email)s</a> for "
+"verification. Follow the link provided to finalize the signup process. "
+"Please contact us if you do not receive it within a few minutes."
+msgstr ""
 
-#: /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."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:15
+msgid ""
+"This part of the site requires us to verify that\n"
+"you are who you claim to be. For this purpose, we require that you\n"
+"verify ownership of your e-mail address. "
+msgstr ""
 
-#: /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"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:19
+msgid ""
+"We have sent an e-mail to you for\n"
+"verification. Please click on the link inside this e-mail. Please\n"
+"contact us if you do not receive it within a few minutes."
+msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:21
 #, python-format
-msgid "You have confirmed that <a href=\"mailto:%(email)s\">%(email)s</a> is an e-mail address for user '%(user)s'."
-msgstr "Patvirtinote, kad <a href=\"mailto:%(email)s\">%(email)s</a> yra '%(user)s' vartotojo el. pašto adresas."
-
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:13
-msgid "Invalid confirmation key."
-msgstr "Netinkamas patvirtinimo raktas."
+msgid ""
+"<strong>Note:</strong> you can still <a href=\"%(email_url)s\">change "
+"your e-mail address</a>."
+msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/email_confirmation_message.txt:4
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email/email_confirmation_message.txt:4
 #, python-format
 msgid ""
-"User '%(user)s' at %(site_name)s has given this as an email address.\n"
+"User %(user_display)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/account/email/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"
+"\n"
+"%(password_reset_url)s\n"
+"\n"
+"In case you forgot, your username is %(username)s.\n"
+"\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"
+"\n"
+"%(password_reset_url)s\n"
+"\n"
+"Jūsų vartotojo vardas yra %(username)s\n"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/openid/login.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email/password_reset_key_subject.txt:3
+msgid "Password Reset E-mail"
+msgstr "Slaptažodžio atstatymo el. laiškas"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/snippets/already_logged_in.html:5
+msgid "Note"
+msgstr "Pastaba"
+
+#: /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."
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/openid/login.html:10
 msgid "OpenID Sign In"
 msgstr "OpenID prisijungimas"
 
@@ -465,7 +615,10 @@ msgid "Social Network Login Failure"
 msgstr "Klaida "
 
 #: /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."
+#, fuzzy
+msgid ""
+"An error occurred while attempting to login via your social network "
+"account."
 msgstr "Įvyko klaida prisijungiant per jūsų socialinio tinklo paskyrą."
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:5
@@ -474,22 +627,37 @@ msgid "Account Connections"
 msgstr "Paskyros jungtys"
 
 #: /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:"
+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:43
+#, fuzzy
+msgid "You currently have no social network accounts connected to this account."
+msgstr "Ši socialinė paskyra buvo prijungta prie jūsų paskyros"
 
 #: /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"
 
-#: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:10
 msgid "Login Cancelled"
 msgstr "Prisijungimas atšauktas"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:13
-#, python-format
-msgid "You decided to cancel logging in to our site using one of your exisiting accounts. If this was a mistake, please proceed to <a href=\"%(login_url)s\">sign in</a>."
-msgstr "Nusprendėte atšaukti prisijungimą prie mūsų interneto svetainės naudodamiesi viena iš jūsų paskyrų. Jei įvyko klaida, prašome pradėti čia <a href=\"%(login_url)s\">sign in</a>."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:14
+#, fuzzy, python-format
+msgid ""
+"You decided to cancel logging in to our site using one of your existing "
+"accounts. If this was a mistake, please proceed to <a "
+"href=\"%(login_url)s\">sign in</a>."
+msgstr ""
+"Nusprendėte atšaukti prisijungimą prie mūsų interneto svetainės "
+"naudodamiesi viena iš jūsų paskyrų. Jei įvyko klaida, prašome pradėti čia"
+" <a href=\"%(login_url)s\">sign in</a>."
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:11
 #, python-format
@@ -497,35 +665,44 @@ 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 "OpenID"
+#~ msgstr "OpenID"
 
-#~ msgid "Change my language"
-#~ msgstr "Keisti kalbą"
-
-#~ msgid "Already have an account?"
-#~ msgstr "Jau turite paskyrą?"
+#~ msgid ""
+#~ "If you have any trouble resetting "
+#~ "your password, contact us at <a "
+#~ "href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+#~ msgstr ""
+#~ "Jei turite problemų su jūsų slaptažodžio"
+#~ " atstatymu, susisiekite su mumis <a "
+#~ "href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
 
-#~ msgid "Sign in"
-#~ msgstr "Prisijungti"
+#~ msgid ""
+#~ "We have sent you an e-mail to "
+#~ "<b>%(email)s</b> for verification. Follow the"
+#~ " link provided to finalize the signup"
+#~ " process. If you do not receive "
+#~ "it within a few minutes, contact "
+#~ "us at <a "
+#~ "href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+#~ msgstr ""
+#~ "Išsiuntėme patvirtinimo el. laišką į "
+#~ "<b>%(email)s</b>. Paspauskite pateiktą nuorodą, "
+#~ "norėdami baigti registracijos procesą. Jei "
+#~ "to negausite per kelias minutes, "
+#~ "susisiekite su mumis <a "
+#~ "href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
 
-#~ msgid "Timezone"
-#~ msgstr "Laiko juosta"
+#~ msgid "Invalid confirmation key."
+#~ msgstr "Netinkamas patvirtinimo raktas."
 
 #~ msgid ""
-#~ "Pinax can localize all times into "
-#~ "your preferred timezone. Change your "
-#~ "timezone below."
+#~ "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 ""
-#~ "Pinax gali pritaikyti laiką prie jūsų"
-#~ " pasirinktos laiko juostos. Keiskite laiko"
-#~ " juostą žemiau."
 
-#~ msgid "Change my timezone"
-#~ msgstr "Keisti mano laiko juostą"
index b60e4da..dd59b8c 100644 (file)
Binary files a/wolnelektury/locale-contrib/pl/LC_MESSAGES/django.mo and b/wolnelektury/locale-contrib/pl/LC_MESSAGES/django.mo differ
index bf3a36a..8e7c15b 100644 (file)
@@ -7,8 +7,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2012-08-14 17:40+0200\n"
-"PO-Revision-Date: 2012-08-14 17:49+0100\n"
+"POT-Creation-Date: 2013-04-09 15:30+0200\n"
+"PO-Revision-Date: 2013-04-09 15:46+0100\n"
 "Last-Translator: Radek Czajka <radoslaw.czajka@nowoczesnapolska.org.pl>\n"
 "Language-Team: pl <LL@li.org>\n"
 "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
@@ -17,265 +17,333 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Generated-By: Babel 0.9.6\n"
 
-#: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:31
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:47
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:233
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:351
 msgid "Password"
 msgstr "Hasło"
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:40
+msgid "Password must be a minimum of {0} characters."
+msgstr "Hasło musi składać się z co najmniej {0} znaków."
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:49
 msgid "Remember Me"
 msgstr "Zapamiętaj mnie"
 
-#: /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:60
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:173
+msgid "E-mail address"
+msgstr "Adres e-mail"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:61
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:182
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:301
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:380
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:368
 msgid "E-mail"
 msgstr "E-mail"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:57
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:130
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:66
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:67
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:166
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:170
 msgid "Username"
 msgstr "Login"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:85
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:74
+msgid "Username or e-mail"
+msgstr "Nazwa użytkownika lub e-mail."
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:108
 msgid "This account is currently inactive."
 msgstr "Konto jest nieaktywne."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:88
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:112
 msgid "The e-mail address and/or password you specified are not correct."
 msgstr "Podany e-mail i/lub hasło są niepoprawne."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:90
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:116
 msgid "The username and/or password you specified are not correct."
 msgstr "Podany login i/lub hasło są niepoprawne."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:142
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:119
+msgid "The login and/or password you specified are not correct."
+msgstr "Podany login i/lub hasło są niepoprawne."
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:185
 msgid "E-mail (optional)"
 msgstr "E-mail (opcjonalnie)"
 
-#: /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."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:193
+msgid "Usernames can only contain letters, digits and @/./+/-/_."
+msgstr "Login może zawierać tylko litery, cyfry i znaki @/./+/-/_."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:159
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:197
+msgid "Username can not be used. Please use other username."
+msgstr "Ta nazwa użytkownika nie może zostać użyta. Prosimy użyć innej."
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:204
 msgid "This username is already taken. Please choose another."
 msgstr "Ten login jest zajęty. Proszę wybrać inny."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:167
-msgid "A user is registered with this e-mail address."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:212
+msgid "A user is already registered with this e-mail address."
 msgstr "Istnieje użytkownik o tym adresie e-mail."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:195
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:362
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:234
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:352
 msgid "Password (again)"
 msgstr "Hasło (ponownie)"
 
-#: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:262
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:341
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:357
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:425
 msgid "You must type the same password each time."
 msgstr "Proszę wpisać dwa razy to samo hasło."
 
-#: /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."
-
-#: /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"
-
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:309
-msgid "This e-mail address already associated with this account."
+msgid "This e-mail address is already associated with this account."
 msgstr "Ten adres e-mail jest już używany przez to konto."
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:310
-msgid "This e-mail address already associated with another account."
+msgid "This e-mail address is already associated with another account."
 msgstr "Ten adres e-mail jest już używany przez inne konto."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:327
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:329
 msgid "Current Password"
 msgstr "Aktualne hasło"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:331
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:427
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:330
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:413
 msgid "New Password"
 msgstr "Nowe hasło"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:335
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:431
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:331
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:414
 msgid "New Password (again)"
 msgstr "Nowe hasło (ponownie)"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:341
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:335
 msgid "Please type your current password."
 msgstr "Proszę wpisać swoje aktualne hasło."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:390
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:378
 msgid "The e-mail address is not assigned to any user account"
 msgstr "Ten adres e-mail nie jest używany przez żadne konto."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:409
-msgid "Password Reset E-mail"
-msgstr "E-mail resetujący hasło"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/models.py:30
+msgid "email address"
+msgstr "adres e-mail"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/models.py:31
+msgid "email addresses"
+msgstr "adresy e-mail"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/models.py:81
+msgid "email confirmation"
+msgstr "potwierdzenie adresu e-mail"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:84
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/models.py:82
+msgid "email confirmations"
+msgstr "potwierdzenia adresów e-mail"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:89
 #, python-format
 msgid "Successfully signed in as %(user)s."
 msgstr "Zalogowano jako  %(user)s."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:125
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:237
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:216
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:235
+#, python-format
+msgid "Confirmation e-mail sent to %(email)s"
+msgstr "E-mail potwierdzający wysłany do %(email)s"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:141
+#, python-format
+msgid "You have confirmed %(email)s."
+msgstr "Adres %(email)s został potwierdzony."
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:253
+#, python-format
+msgid "You cannot remove your primary e-mail address (%(email)s)"
+msgstr "Nie można usunąć głównego adresu e-mail (%(email)s)"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:263
 #, python-format
 msgid "Removed e-mail address %(email)s"
 msgstr "Usunięto adres e-mail %(email)s"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:139
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:289
+msgid "Your primary e-mail address must be verified"
+msgstr "Główny adres e-mail musi zostać potwierdzony"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:301
 msgid "Primary e-mail address set"
 msgstr "Ustawiono główny adres e-mail"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:160
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:233
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:330
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:407
 msgid "Password successfully changed."
 msgstr "Hasło zostało zmienione."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:183
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:355
 msgid "Password successfully set."
 msgstr "Hasło zostało ustawione."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:247
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:423
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/logout.html:10
 msgid "You have signed out."
 msgstr "Wylogowano."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/openid/forms.py:6
-msgid "OpenID"
-msgstr "OpenID"
-
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:33
-msgid "Your local account has no password setup."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:47
+msgid "Your account has no password set up."
 msgstr "Twoje konto nie ma ustawionego hasła."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:37
-msgid "Your local account has no verified e-mail address."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:51
+msgid "Your account has no verified e-mail address."
 msgstr "Twoje konto nie ma potwierdzonego adresu e-mail."
 
-#: /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."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/helpers.py:129
+msgid "The social account has been connected"
+msgstr "Konto społecznościowe zostało dołączone"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/views.py:66
+msgid "The social account has been disconnected"
+msgstr "Konto społecznościowe zostało odłączone."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:89
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:78
 #, python-format
 msgid "Invalid response while obtaining request token from \"%s\"."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:111
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:102
 #, python-format
 msgid "Invalid response while obtaining access token from \"%s\"."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:124
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:115
 #, python-format
 msgid "No request token saved for \"%s\"."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:172
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:160
 #, python-format
 msgid "No access token saved for \"%s\"."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:192
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:178
 #, python-format
 msgid "No access to private resources at \"%s\"."
-msgstr ""
+msgstr "Brak dostępu do prywatnych zasobów pod adresem \"%s\"."
 
-#: /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."
-
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:6
 msgid "Account"
 msgstr "Konto"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:9
 msgid "E-mail Addresses"
 msgstr "Adresy e-mail"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:10
-msgid "The following e-mail addresses are associated to your account:"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:11
+msgid "The following e-mail addresses are associated with your account:"
 msgstr "Z Twoim kontem są związane następujące adresy e-mail:"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:24
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:25
 msgid "Verified"
 msgstr "Potwierdzony"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:26
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:27
 msgid "Unverified"
 msgstr "Nie potwierdzony"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:28
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:29
 msgid "Primary"
 msgstr "Główny"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:34
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:35
 msgid "Make Primary"
 msgstr "Ustaw główny"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:35
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:36
 msgid "Re-send Verification"
 msgstr "Ponownie prześlij link potwierdzający"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:36
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:37
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:35
 msgid "Remove"
 msgstr "Usuń"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:43
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:44
 msgid "Warning:"
 msgstr "Uwaga:"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:43
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:44
 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:48
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:49
 msgid "Add E-mail Address"
 msgstr "Dodaj adres e-mail"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:53
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:54
 msgid "Add E-mail"
 msgstr "Dodaj e-mail"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:63
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:64
 msgid "Do you really want to remove the selected e-mail address?"
 msgstr "Czy na pewno usunąć wybrany adres e-mail?"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:7
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirmed.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirmed.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email/email_confirmation_subject.txt:3
+msgid "Confirm E-mail Address"
+msgstr "Potwierdź adres e-mail"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:17
+#, python-format
+msgid "Please confirm that <a href=\"mailto:%(email)s\">%(email)s</a> is an e-mail address for user %(user_display)s."
+msgstr "Proszę potwierdzić adres <a href=\"mailto:%(email)s\">%(email)s</a> jako e-mail użytkownika '%(user_display)s'."
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:21
+msgid "Confirm"
+msgstr "Potwierdź"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:28
+#, python-format
+msgid "This e-mail confirmation link expired or is invalid. Please <a href=\"%(email_url)s\">issue a new e-mail confirmation request</a>."
+msgstr "Ten link z wiadomości e-mail jest nieprawidłowy lub nieaktualny. Możesz <a href=\"%(email_url)s\">zamówić kolejny link weryfikacyjny</a>."
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirmed.html:15
+#, python-format
+msgid "You have confirmed that <a href=\"mailto:%(email)s\">%(email)s</a> is an e-mail address for user %(user_display)s."
+msgstr "Adres <a href=\"mailto:%(email)s\">%(email)s</a> został właśnie powierdzony jako e-mail dla użytkownika '%(user_display)s'."
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:7
 #: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:39
 msgid "Sign In"
 msgstr "Zaloguj"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:19
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:16
 #, python-format
 msgid ""
 "Please sign in with one\n"
-"of your existing third party accounts. Or, <a \n"
-"href=\"%(signup_url)s\">sign up</a> for a %(site_name)s account and sign in\n"
-"below:"
+"of your existing third party accounts. Or, <a href=\"%(signup_url)s\">sign up</a> \n"
+"for a %(site_name)s account and sign in below:"
 msgstr ""
 "Zaloguj za pomocą konta zewnętrznego, albo <a \n"
 "href=\"%(signup_url)s\">zarejestruj się</a> w serwisie %(site_name)s i zaloguj poniżej:"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:27
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:24
 msgid "or"
 msgstr "lub"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:42
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:38
 msgid "Forgot Password?"
 msgstr "Nie pamiętasz hasła?"
 
@@ -287,8 +355,8 @@ msgstr "Wylogowano"
 #: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:8
 msgid "Change Password"
 msgstr "Zmień hasło"
 
@@ -330,125 +398,146 @@ msgid "Reset My Password"
 msgstr "Odzyskaj hasło"
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:23
-#, python-format
-msgid "If you have any trouble resetting your password, contact us at <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
-msgstr "Jeśli masz problem z odzyskaniem hasła, napisz do nas pod <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+msgid "Please contact us if you have any trouble resetting your password."
+msgstr "Prosimy o kontakt w przypadku problemów z uzyskaniem nowego hasła."
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_done.html:15
 #, python-format
-msgid "We have sent you an e-mail. If you do not receive it within a few minutes, contact us at <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
-msgstr "E-mail został wysłany. Jeśli nie otrzymasz go w ciągu kilku minut, napisz do nas pod <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+msgid "We have sent you an e-mail. Please contact us if you do not receive it within a few minutes."
+msgstr "E-mail został wysłany. Prosimy o kontakt, jeśli wiadomość nie dotrze w ciągu kilku minut."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:7
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:8
 msgid "Bad Token"
 msgstr "Błędny klucz"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:12
 #, python-format
 msgid "The password reset link was invalid, possibly because it has already been used.  Please request a <a href=\"%(passwd_reset_url)s\">new password reset</a>."
 msgstr "Link resetujący hasło jest nieprawidłowy, być może ponieważ został już wcześniej użyty. Spróbuj <a href=\"%(passwd_reset_url)s\">zresetować hasło ponownie</a>."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:17
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:18
 msgid "change password"
 msgstr "zmień hasło"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:20
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:21
 msgid "Your password is now changed."
 msgstr "Hasło zostało zmienione."
 
-#: /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"
-"\n"
-"%(password_reset_url)s\n"
-"\n"
-"In case you forgot, your username is %(username)s.\n"
-"\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"
-"\n"
-"%(password_reset_url)s\n"
-"\n"
-"W razie czego, Twój login to: %(username)s.\n"
-"\n"
-"Miłego czytania!\n"
-
 #: /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"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:6
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:5
 msgid "Signup"
 msgstr "Rejestracja"
 
-#: /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/account/signup.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:19
 #: /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ę"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:13
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:11
 #, python-format
 msgid "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
 msgstr "Masz już konto? <a href=\"%(login_url)s\">Zaloguj się</a>."
 
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup_closed.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup_closed.html:9
+msgid "Sign Up Closed"
+msgstr "Rejestracja zamknięta"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup_closed.html:11
+msgid "We are sorry, but the sign up is currently closed."
+msgstr "Przepraszamy, ale rejestracja jest obecnie zamknięta."
+
 #: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:9
 msgid "Verify Your E-mail Address"
 msgstr "Potwierdź swój adres e-mail"
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verification_sent.html:10
 #, python-format
-msgid "We have sent you an e-mail to <b>%(email)s</b> for verification. Follow the link provided to finalize the signup process. If you do not receive it within a few minutes, contact us at <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
-msgstr "Na adres <b>%(email)s</b> został wysłany e-mail w celu potwierdzenia konta. W treści e-maila znajduje się link, pod który trzeba przejść w celu dokończenia rejestracji. Jeśli nie dostaniesz go w ciągu kilku minut, napisz do nas pod <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
-
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/snippets/already_logged_in.html:5
-msgid "Note"
-msgstr "Zwróć uwagę"
+msgid "We have sent an e-mail to <a href=\"mailto:%(email)s\">%(email)s</a> for verification. Follow the link provided to finalize the signup process. Please contact us if you do not receive it within a few minutes."
+msgstr "Na podany adres e-mail <a href=\"mailto:%(email)s\">%(email)s</a> została wysłana wiadomość w celu weryfikacji. Proszę kliknąć w podany w tej wiadomości link w celu zakończenia procesu rejestracji. Prosimy o kontakt, jeśli wiadomość nie dotrze w ciągu kilku minut."
 
-#: /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."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:15
+msgid ""
+"This part of the site requires us to verify that\n"
+"you are who you claim to be. For this purpose, we require that you\n"
+"verify ownership of your e-mail address. "
+msgstr ""
+"W celu korzystania z tej części strony wymagamy\n"
+"potwierdzenia tożsamości. W tym celu konieczne jest\n"
+"potwierdzenie adresu e-mail. "
 
-#: /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"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:19
+msgid ""
+"We have sent an e-mail to you for\n"
+"verification. Please click on the link inside this e-mail. Please\n"
+"contact us if you do not receive it within a few minutes."
+msgstr ""
+"Na podany adres została wysłana wiadomość w celu\n"
+"weryfikacji. Proszę kliknąć na link wewnątrz tej wiadomości. Prosimy\n"
+"o kontakt, jeśli wiadomość nie dotrze w ciągu kilku minut."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:21
 #, python-format
-msgid "You have confirmed that <a href=\"mailto:%(email)s\">%(email)s</a> is an e-mail address for user '%(user)s'."
-msgstr "Adres <a href=\"mailto:%(email)s\">%(email)s</a> został właśnie powierdzony jako e-mail dla użytkownika '%(user)s'."
-
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:13
-msgid "Invalid confirmation key."
-msgstr "Niepoprawny klucz potwierdzający."
+msgid "<strong>Note:</strong> you can still <a href=\"%(email_url)s\">change your e-mail address</a>."
+msgstr "<strong>Uwaga:</strong> nadal możesz <a href=\"%(email_url)s\">zmienić swój adres e-mail</a>."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/email_confirmation_message.txt:4
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email/email_confirmation_message.txt:4
 #, python-format
 msgid ""
-"User '%(user)s' at %(site_name)s has given this as an email address.\n"
+"User %(user_display)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"
+"Użytkownik '%(user_display)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/account/email/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"
+"\n"
+"%(password_reset_url)s\n"
+"\n"
+"In case you forgot, your username is %(username)s.\n"
+"\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"
+"\n"
+"%(password_reset_url)s\n"
+"\n"
+"W razie czego, Twój login to: %(username)s.\n"
+"\n"
+"Miłego czytania!\n"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email/password_reset_key_subject.txt:3
+msgid "Password Reset E-mail"
+msgstr "E-mail resetujący hasło"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/snippets/already_logged_in.html:5
+msgid "Note"
+msgstr "Zwróć uwagę"
+
+#: /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."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/openid/login.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/openid/login.html:10
 msgid "OpenID Sign In"
 msgstr "Logowanie przy użyciu OpenID"
 
@@ -467,7 +556,7 @@ msgid "Social Network Login Failure"
 msgstr "Błąd podczas logowania przy użyciu sieci społecznościowej."
 
 #: /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."
+msgid "An error occurred 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/connections.html:5
@@ -479,18 +568,22 @@ msgstr "Powiązania konta"
 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:43
+msgid "You currently have no social network accounts connected to this account."
+msgstr "Aktualnie do Twojego konta nie są podłączone żadne konta w sieciach społecznościowych."
+
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:46
 msgid "Add a 3rd Party Account"
 msgstr "Dodaj konto zewnętrzne"
 
-#: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:10
 msgid "Login Cancelled"
 msgstr "Logowanie anulowane"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:13
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:14
 #, python-format
-msgid "You decided to cancel logging in to our site using one of your exisiting accounts. If this was a mistake, please proceed to <a href=\"%(login_url)s\">sign in</a>."
+msgid "You decided to cancel logging in to our site using one of your existing accounts. If this was a mistake, please proceed to <a href=\"%(login_url)s\">sign in</a>."
 msgstr "Logowanie do serwisu za pomocą istniejącego konta zostało anulowane. Jeśli był to błąd, przejdź do <a href=\"%(login_url)s\">strony logowania</a>."
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:11
@@ -502,29 +595,35 @@ 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:"
 
-#~ 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 "OpenID"
+#~ msgstr "OpenID"
 
 #~ msgid ""
-#~ "Pinax can localize all times into "
-#~ "your preferred timezone. Change your "
-#~ "timezone below."
+#~ "If you have any trouble resetting "
+#~ "your password, contact us at <a "
+#~ "href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
 #~ msgstr ""
+#~ "Jeśli masz problem z odzyskaniem hasła,"
+#~ " napisz do nas pod <a "
+#~ "href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
 
-#~ msgid "Change my timezone"
+#~ msgid ""
+#~ "We have sent you an e-mail to "
+#~ "<b>%(email)s</b> for verification. Follow the"
+#~ " link provided to finalize the signup"
+#~ " process. If you do not receive "
+#~ "it within a few minutes, contact "
+#~ "us at <a "
+#~ "href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
 #~ msgstr ""
+#~ "Na adres <b>%(email)s</b> został wysłany "
+#~ "e-mail w celu potwierdzenia konta. W "
+#~ "treści e-maila znajduje się link, pod"
+#~ " który trzeba przejść w celu "
+#~ "dokończenia rejestracji. Jeśli nie dostaniesz"
+#~ " go w ciągu kilku minut, napisz "
+#~ "do nas pod <a "
+#~ "href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+
+#~ msgid "Invalid confirmation key."
+#~ msgstr "Niepoprawny klucz potwierdzający."
index d039922..b6d5531 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2012-08-14 17:40+0200\n"
+"POT-Creation-Date: 2013-04-09 15:30+0200\n"
 "PO-Revision-Date: 2012-03-22 14:23+0100\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: ru <LL@li.org>\n"
@@ -19,267 +19,341 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Generated-By: Babel 0.9.6\n"
 
-#: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:31
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:47
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:233
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:351
 msgid "Password"
 msgstr ""
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:40
+msgid "Password must be a minimum of {0} characters."
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:49
 msgid "Remember Me"
 msgstr ""
 
-#: /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:60
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:173
+msgid "E-mail address"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:61
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:182
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:301
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:380
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:368
 msgid "E-mail"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:57
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:130
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:66
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:67
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:166
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:170
 msgid "Username"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:85
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:74
+msgid "Username or e-mail"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:108
 msgid "This account is currently inactive."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:88
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:112
 msgid "The e-mail address and/or password you specified are not correct."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:90
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:116
 msgid "The username and/or password you specified are not correct."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:142
-msgid "E-mail (optional)"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:119
+msgid "The login and/or password you specified are not correct."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:153
-msgid "Usernames can only contain letters, numbers and underscores."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:185
+msgid "E-mail (optional)"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:159
-msgid "This username is already taken. Please choose another."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:193
+msgid "Usernames can only contain letters, digits and @/./+/-/_."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:167
-msgid "A user is registered with this e-mail address."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:197
+msgid "Username can not be used. Please use other username."
 msgstr ""
 
-#: /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)"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:204
+msgid "This username is already taken. Please choose another."
 msgstr ""
 
-#: /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."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:212
+msgid "A user is already registered with this e-mail address."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:260
-msgid "Your e-mail address has already been verified"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:234
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:352
+msgid "Password (again)"
 msgstr ""
 
-#: /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"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:262
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:341
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:357
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:425
+msgid "You must type the same password each time."
 msgstr ""
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:309
-msgid "This e-mail address already associated with this account."
+msgid "This e-mail address is already associated with this account."
 msgstr ""
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:310
-msgid "This e-mail address already associated with another account."
+msgid "This e-mail address is already associated with another account."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:327
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:329
 msgid "Current Password"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:331
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:427
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:330
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:413
 msgid "New Password"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:335
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:431
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:331
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:414
 msgid "New Password (again)"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:341
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:335
 msgid "Please type your current password."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:390
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:378
 msgid "The e-mail address is not assigned to any user account"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:409
-msgid "Password Reset E-mail"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/models.py:30
+msgid "email address"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/models.py:31
+msgid "email addresses"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:84
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/models.py:81
+msgid "email confirmation"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/models.py:82
+msgid "email confirmations"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:89
 #, python-format
 msgid "Successfully signed in as %(user)s."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:125
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:237
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:216
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:235
+#, python-format
+msgid "Confirmation e-mail sent to %(email)s"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:141
+#, python-format
+msgid "You have confirmed %(email)s."
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:253
+#, python-format
+msgid "You cannot remove your primary e-mail address (%(email)s)"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:263
 #, python-format
 msgid "Removed e-mail address %(email)s"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:139
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:289
+msgid "Your primary e-mail address must be verified"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:301
 msgid "Primary e-mail address set"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:160
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:233
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:330
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:407
 msgid "Password successfully changed."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:183
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:355
 msgid "Password successfully set."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:247
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:423
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/logout.html:10
 msgid "You have signed out."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/openid/forms.py:6
-msgid "OpenID"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:47
+msgid "Your account has no password set up."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:33
-msgid "Your local account has no password setup."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:51
+msgid "Your account has no verified e-mail address."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:37
-msgid "Your local account has no verified e-mail address."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/helpers.py:129
+msgid "The social account has been connected"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/helpers.py:111
-msgid "The social account has been connected to your existing account"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/views.py:66
+msgid "The social account has been disconnected"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:89
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:78
 #, python-format
 msgid "Invalid response while obtaining request token from \"%s\"."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:111
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:102
 #, python-format
 msgid "Invalid response while obtaining access token from \"%s\"."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:124
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:115
 #, python-format
 msgid "No request token saved for \"%s\"."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:172
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:160
 #, python-format
 msgid "No access token saved for \"%s\"."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:192
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:178
 #, python-format
 msgid "No access to private resources at \"%s\"."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/views.py:68
-msgid "The social account has been disconnected"
-msgstr ""
-
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:6
 msgid "Account"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:9
 msgid "E-mail Addresses"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:10
-msgid "The following e-mail addresses are associated to your account:"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:11
+msgid "The following e-mail addresses are associated with your account:"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:24
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:25
 msgid "Verified"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:26
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:27
 msgid "Unverified"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:28
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:29
 msgid "Primary"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:34
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:35
 msgid "Make Primary"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:35
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:36
 msgid "Re-send Verification"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:36
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:37
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:35
 msgid "Remove"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:43
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:44
 msgid "Warning:"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:43
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:44
 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:48
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:49
 msgid "Add E-mail Address"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:53
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:54
 msgid "Add E-mail"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:63
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:64
 msgid "Do you really want to remove the selected e-mail address?"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:7
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirmed.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirmed.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email/email_confirmation_subject.txt:3
+msgid "Confirm E-mail Address"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:17
+#, python-format
+msgid ""
+"Please confirm that <a href=\"mailto:%(email)s\">%(email)s</a> is an "
+"e-mail address for user %(user_display)s."
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:21
+msgid "Confirm"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:28
+#, python-format
+msgid ""
+"This e-mail confirmation link expired or is invalid. Please <a "
+"href=\"%(email_url)s\">issue a new e-mail confirmation request</a>."
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirmed.html:15
+#, python-format
+msgid ""
+"You have confirmed that <a href=\"mailto:%(email)s\">%(email)s</a> is an "
+"e-mail address for user %(user_display)s."
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:7
 #: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:39
 msgid "Sign In"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:19
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:16
 #, python-format
 msgid ""
 "Please sign in with one\n"
-"of your existing third party accounts. Or, <a \n"
-"href=\"%(signup_url)s\">sign up</a> for a %(site_name)s account and sign "
-"in\n"
-"below:"
+"of your existing third party accounts. Or, <a "
+"href=\"%(signup_url)s\">sign up</a> \n"
+"for a %(site_name)s account and sign in below:"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:27
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:24
 msgid "or"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:42
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:38
 msgid "Forgot Password?"
 msgstr ""
 
@@ -291,8 +365,8 @@ msgstr ""
 #: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:8
 msgid "Change Password"
 msgstr ""
 
@@ -338,25 +412,20 @@ msgid "Reset My Password"
 msgstr ""
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:23
-#, python-format
-msgid ""
-"If you have any trouble resetting your password, contact us at <a "
-"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+msgid "Please contact us if you have any trouble resetting your password."
 msgstr ""
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_done.html:15
-#, python-format
 msgid ""
-"We have sent you an e-mail. If you do not receive it within a few "
-"minutes, contact us at <a "
-"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+"We have sent you an e-mail. Please contact us if you do not receive it "
+"within a few minutes."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:7
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:8
 msgid "Bad Token"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:12
 #, python-format
 msgid ""
 "The password reset link was invalid, possibly because it has already been"
@@ -364,106 +433,122 @@ msgid ""
 "reset</a>."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:17
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:18
 msgid "change password"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:20
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:21
 msgid "Your password is now changed."
 msgstr ""
 
-#: /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"
-"\n"
-"%(password_reset_url)s\n"
-"\n"
-"In case you forgot, your username is %(username)s.\n"
-"\n"
-"Thanks for using our site!\n"
-msgstr ""
-
 #: /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 ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:6
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:5
 msgid "Signup"
 msgstr ""
 
-#: /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/account/signup.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:19
 #: /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 ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:13
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:11
 #, python-format
 msgid ""
 "Already have an account? Then please <a href=\"%(login_url)s\">sign "
 "in</a>."
 msgstr ""
 
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup_closed.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup_closed.html:9
+msgid "Sign Up Closed"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup_closed.html:11
+msgid "We are sorry, but the sign up is currently closed."
+msgstr ""
+
 #: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:9
 msgid "Verify Your E-mail Address"
 msgstr ""
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verification_sent.html:10
 #, python-format
 msgid ""
-"We have sent you an e-mail to <b>%(email)s</b> for verification. Follow "
-"the link provided to finalize the signup process. If you do not receive "
-"it within a few minutes, contact us at <a "
-"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+"We have sent an e-mail to <a href=\"mailto:%(email)s\">%(email)s</a> for "
+"verification. Follow the link provided to finalize the signup process. "
+"Please contact us if you do not receive it within a few minutes."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/snippets/already_logged_in.html:5
-msgid "Note"
-msgstr ""
-
-#: /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."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:15
+msgid ""
+"This part of the site requires us to verify that\n"
+"you are who you claim to be. For this purpose, we require that you\n"
+"verify ownership of your e-mail address. "
 msgstr ""
 
-#: /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"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:19
+msgid ""
+"We have sent an e-mail to you for\n"
+"verification. Please click on the link inside this e-mail. Please\n"
+"contact us if you do not receive it within a few minutes."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:21
 #, python-format
 msgid ""
-"You have confirmed that <a href=\"mailto:%(email)s\">%(email)s</a> is an "
-"e-mail address for user '%(user)s'."
+"<strong>Note:</strong> you can still <a href=\"%(email_url)s\">change "
+"your e-mail address</a>."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:13
-msgid "Invalid confirmation key."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email/email_confirmation_message.txt:4
+#, python-format
+msgid ""
+"User %(user_display)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_message.txt:4
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email/password_reset_key_message.txt:9
 #, python-format
 msgid ""
-"User '%(user)s' at %(site_name)s has given this as an email address.\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"
-"To confirm this is correct, go to %(activate_url)s\n"
+"%(password_reset_url)s\n"
+"\n"
+"In case you forgot, your username is %(username)s.\n"
+"\n"
+"Thanks for using our site!\n"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/email_confirmation_subject.txt:1
-msgid "Confirm E-mail Address"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email/password_reset_key_subject.txt:3
+msgid "Password Reset E-mail"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/snippets/already_logged_in.html:5
+msgid "Note"
+msgstr ""
+
+#: /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 ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/openid/login.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/openid/login.html:10
 msgid "OpenID Sign In"
 msgstr ""
 
@@ -483,7 +568,7 @@ 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 "
+"An error occurred while attempting to login via your social network "
 "account."
 msgstr ""
 
@@ -498,19 +583,23 @@ msgid ""
 "accounts:"
 msgstr ""
 
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:43
+msgid "You currently have no social network accounts connected to this account."
+msgstr ""
+
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:46
 msgid "Add a 3rd Party Account"
 msgstr ""
 
-#: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:10
 msgid "Login Cancelled"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:13
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:14
 #, python-format
 msgid ""
-"You decided to cancel logging in to our site using one of your exisiting "
+"You decided to cancel logging in to our site using one of your existing "
 "accounts. If this was a mistake, please proceed to <a "
 "href=\"%(login_url)s\">sign in</a>."
 msgstr ""
@@ -522,30 +611,95 @@ msgid ""
 "%(site_name)s. As a final step, please complete the following form:"
 msgstr ""
 
-#~ msgid "Language"
+#~ msgid "Usernames can only contain letters, numbers and underscores."
+#~ msgstr ""
+
+#~ msgid "A user is registered with this e-mail address."
 #~ msgstr ""
 
-#~ msgid "Pinax can be used in your preferred language."
+#~ msgid "Your e-mail address has already been verified"
 #~ msgstr ""
 
-#~ msgid "Change my language"
+#~ msgid "This e-mail address already associated with this account."
 #~ msgstr ""
 
-#~ msgid "Already have an account?"
+#~ msgid "This e-mail address already associated with another account."
 #~ msgstr ""
 
-#~ msgid "Sign in"
+#~ msgid "OpenID"
 #~ msgstr ""
 
-#~ msgid "Timezone"
+#~ msgid "Your local account has no password setup."
+#~ msgstr ""
+
+#~ msgid "Your local account has no verified e-mail address."
+#~ msgstr ""
+
+#~ msgid "The social account has been connected to your existing account"
+#~ msgstr ""
+
+#~ msgid "The following e-mail addresses are associated to your account:"
 #~ msgstr ""
 
 #~ msgid ""
-#~ "Pinax can localize all times into "
-#~ "your preferred timezone. Change your "
-#~ "timezone below."
+#~ "Please sign in with one\n"
+#~ "of your existing third party accounts. Or, <a \n"
+#~ "href=\"%(signup_url)s\">sign up</a> for a "
+#~ "%(site_name)s account and sign in\n"
+#~ "below:"
 #~ msgstr ""
 
-#~ msgid "Change my timezone"
+#~ msgid ""
+#~ "If you have any trouble resetting "
+#~ "your password, contact us at <a "
+#~ "href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "We have sent you an e-mail. If "
+#~ "you do not receive it within a "
+#~ "few minutes, contact us at <a "
+#~ "href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+#~ msgstr ""
+
+#~ msgid ""
+#~ "We have sent you an e-mail to "
+#~ "<b>%(email)s</b> for verification. Follow the"
+#~ " link provided to finalize the signup"
+#~ " process. If you do not receive "
+#~ "it within a few minutes, contact "
+#~ "us at <a "
+#~ "href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+#~ msgstr ""
+
+#~ msgid "E-mail Address Confirmation"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "You have confirmed that <a "
+#~ "href=\"mailto:%(email)s\">%(email)s</a> is an e-mail"
+#~ " address for user '%(user)s'."
+#~ msgstr ""
+
+#~ msgid "Invalid confirmation key."
+#~ msgstr ""
+
+#~ 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 ""
+
+#~ msgid ""
+#~ "An error occured while attempting to "
+#~ "login via your social network account."
+#~ 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 <a "
+#~ "href=\"%(login_url)s\">sign in</a>."
 #~ msgstr ""
 
index 3919fd0..2dfee3c 100644 (file)
@@ -7,277 +7,381 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2012-08-14 17:40+0200\n"
+"POT-Creation-Date: 2013-04-09 15:30+0200\n"
 "PO-Revision-Date: 2012-08-14 17:49+0100\n"
 "Last-Translator: Radek Czajka <radoslaw.czajka@nowoczesnapolska.org.pl>\n"
 "Language-Team: uk <LL@li.org>\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
+"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Generated-By: Babel 0.9.6\n"
 
-#: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:31
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:47
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:233
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:351
 msgid "Password"
 msgstr "Пароль"
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:40
+msgid "Password must be a minimum of {0} characters."
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:49
 msgid "Remember Me"
 msgstr "Запам’ятати мене"
 
-#: /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:60
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:173
+#, fuzzy
+msgid "E-mail address"
+msgstr "Електронні адреси"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:61
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:182
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:301
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:380
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:368
 msgid "E-mail"
 msgstr "E-mail"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:57
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:130
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:66
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:67
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:166
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:170
 msgid "Username"
 msgstr "Ім’я користувача"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:85
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:74
+msgid "Username or e-mail"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:108
 msgid "This account is currently inactive."
 msgstr "Акаунт на даний момент є неактивним."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:88
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:112
 msgid "The e-mail address and/or password you specified are not correct."
 msgstr "Вказані електронна адреса та/або пароль неправильні."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:90
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:116
 msgid "The username and/or password you specified are not correct."
 msgstr "Вказані ім’я користувача та/або пароль неправильні."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:142
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:119
+#, fuzzy
+msgid "The login and/or password you specified are not correct."
+msgstr "Вказані ім’я користувача та/або пароль неправильні."
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:185
 msgid "E-mail (optional)"
 msgstr "E-mail (факультативно)"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:153
-msgid "Usernames can only contain letters, numbers and underscores."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:193
+#, fuzzy
+msgid "Usernames can only contain letters, digits and @/./+/-/_."
 msgstr "Ім’я користувача може містити тільки букви, цифри та підчеркування."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:159
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:197
+msgid "Username can not be used. Please use other username."
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:204
 msgid "This username is already taken. Please choose another."
 msgstr "Це ім’я користувача вже використано. Будь ласка, виберіть інше."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:167
-msgid "A user is registered with this e-mail address."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:212
+#, fuzzy
+msgid "A user is already registered with this e-mail address."
 msgstr "Користувач з такою електронною адресою вже існує."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:195
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:362
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:234
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:352
 msgid "Password (again)"
 msgstr "Пароль (повторити)"
 
-#: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:262
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:341
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:357
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:425
 msgid "You must type the same password each time."
 msgstr "Впишіть двічі такий самий пароль."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:260
-msgid "Your e-mail address has already been verified"
-msgstr "Вашу електронну адресу підтверджено."
-
-#: /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"
-
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:309
-msgid "This e-mail address already associated with this account."
+#, fuzzy
+msgid "This e-mail address is already associated with this account."
 msgstr "Ця електронна адреса вже пов'язана з цім акаунтом."
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:310
-msgid "This e-mail address already associated with another account."
+#, fuzzy
+msgid "This e-mail address is already associated with another account."
 msgstr "Ця електронна адреса вже пов'язана з іншим акаунтом."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:327
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:329
 msgid "Current Password"
 msgstr "Актуальний пароль"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:331
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:427
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:330
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:413
 msgid "New Password"
 msgstr "Новий пароль"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:335
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:431
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:331
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:414
 msgid "New Password (again)"
 msgstr "Новий пароль (повторити)"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:341
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:335
 msgid "Please type your current password."
 msgstr "Введіть будь ласка Ваш теперішній пароль."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:390
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:378
 msgid "The e-mail address is not assigned to any user account"
 msgstr "Ця електронна адреса не пов'язана з жодним акаунтом."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/forms.py:409
-msgid "Password Reset E-mail"
-msgstr "Повідомлення для встановлення нового паролю"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/models.py:30
+#, fuzzy
+msgid "email address"
+msgstr "Електронні адреси"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/models.py:31
+#, fuzzy
+msgid "email addresses"
+msgstr "Електронні адреси"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:84
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/models.py:81
+#, fuzzy
+msgid "email confirmation"
+msgstr "Підтвердження електронної адреси."
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/models.py:82
+#, fuzzy
+msgid "email confirmations"
+msgstr "Підтвердження електронної адреси."
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:89
 #, python-format
 msgid "Successfully signed in as %(user)s."
 msgstr "Ви успішно увійшли як %(user)s."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:125
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/utils.py:237
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:216
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:235
+#, python-format
+msgid "Confirmation e-mail sent to %(email)s"
+msgstr "Подвідомлення для підтвердження реєстрації вислано на %(email)s"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:141
+#, python-format
+msgid "You have confirmed %(email)s."
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:253
+#, fuzzy, python-format
+msgid "You cannot remove your primary e-mail address (%(email)s)"
+msgstr "Видалено електронну адресу %(email)s"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:263
 #, python-format
 msgid "Removed e-mail address %(email)s"
 msgstr "Видалено електронну адресу %(email)s"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:139
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:289
+#, fuzzy
+msgid "Your primary e-mail address must be verified"
+msgstr "Вашу електронну адресу підтверджено."
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:301
 msgid "Primary e-mail address set"
 msgstr "Встановлено основну електронну адресу"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:160
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:233
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:330
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:407
 msgid "Password successfully changed."
 msgstr "Пароль успішно змінено."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:183
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:355
 msgid "Password successfully set."
 msgstr "Успішно встановлено пароль."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:247
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/account/views.py:423
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/logout.html:10
 msgid "You have signed out."
 msgstr "Ви вийшли з акаунту."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/openid/forms.py:6
-msgid "OpenID"
-msgstr "OpenID"
-
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:33
-msgid "Your local account has no password setup."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:47
+#, fuzzy
+msgid "Your account has no password set up."
 msgstr "Для Вашого локального акаунту не встановлено пароля."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:37
-msgid "Your local account has no verified e-mail address."
-msgstr "Для Вашого локального акаунту не встановлено перевіреної електронної адреси."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/forms.py:51
+#, fuzzy
+msgid "Your account has no verified e-mail address."
+msgstr ""
+"Для Вашого локального акаунту не встановлено перевіреної електронної "
+"адреси."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/helpers.py:111
-msgid "The social account has been connected to your existing account"
-msgstr "Ваш обліковий запис у соціальній мережі пов'язано з існуючим акаунтом."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/helpers.py:129
+#, fuzzy
+msgid "The social account has been connected"
+msgstr "Обліковий запис в соціальній мережі від'єднано."
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/views.py:66
+msgid "The social account has been disconnected"
+msgstr "Обліковий запис в соціальній мережі від'єднано."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:89
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:78
 #, python-format
 msgid "Invalid response while obtaining request token from \"%s\"."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:111
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:102
 #, python-format
 msgid "Invalid response while obtaining access token from \"%s\"."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:124
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:115
 #, python-format
 msgid "No request token saved for \"%s\"."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:172
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:160
 #, python-format
 msgid "No access token saved for \"%s\"."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/oauth.py:192
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/providers/oauth/client.py:178
 #, python-format
 msgid "No access to private resources at \"%s\"."
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/socialaccount/views.py:68
-msgid "The social account has been disconnected"
-msgstr "Обліковий запис в соціальній мережі від'єднано."
-
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:6
 msgid "Account"
 msgstr "Акаунт"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:8
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:9
 msgid "E-mail Addresses"
 msgstr "Електронні адреси"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:10
-msgid "The following e-mail addresses are associated to your account:"
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:11
+#, fuzzy
+msgid "The following e-mail addresses are associated with your account:"
 msgstr "З Вашим акаунтом пов'язані наступні електронні адреси:"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:24
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:25
 msgid "Verified"
 msgstr "Перевірено"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:26
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:27
 msgid "Unverified"
 msgstr "Неперевірено"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:28
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:29
 msgid "Primary"
 msgstr "Основна"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:34
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:35
 msgid "Make Primary"
 msgstr "Зробити основною"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:35
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:36
 msgid "Re-send Verification"
 msgstr "Надіслати ще раз повідомлення для перевірки"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:36
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:37
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:35
 msgid "Remove"
 msgstr "Видалити"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:43
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:44
 msgid "Warning:"
 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 "Ви не додали жодної електронної адреси. Рекомендуємо Вам додати адресу, для цього щоб отримувати повідомлення, мати можливість відновлення паролю тощо."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:44
+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:48
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:49
 msgid "Add E-mail Address"
 msgstr "Додати електронну адресу"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:53
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:54
 msgid "Add E-mail"
 msgstr "Додати електронну адресу"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:63
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email.html:64
 msgid "Do you really want to remove the selected e-mail address?"
 msgstr "Чи справді хочете видалити вибрану адресу?"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:7
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirmed.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirmed.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email/email_confirmation_subject.txt:3
+#, fuzzy
+msgid "Confirm E-mail Address"
+msgstr "Встановлено основну електронну адресу"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:17
+#, fuzzy, python-format
+msgid ""
+"Please confirm that <a href=\"mailto:%(email)s\">%(email)s</a> is an "
+"e-mail address for user %(user_display)s."
+msgstr ""
+"Ви підтвердили, що адреса <a href=\"mailto:%(email)s\">%(email)s</a> є "
+"адресою коричтувача '%(user)s'."
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:21
+msgid "Confirm"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirm.html:28
+#, python-format
+msgid ""
+"This e-mail confirmation link expired or is invalid. Please <a "
+"href=\"%(email_url)s\">issue a new e-mail confirmation request</a>."
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email_confirmed.html:15
+#, fuzzy, python-format
+msgid ""
+"You have confirmed that <a href=\"mailto:%(email)s\">%(email)s</a> is an "
+"e-mail address for user %(user_display)s."
+msgstr ""
+"Ви підтвердили, що адреса <a href=\"mailto:%(email)s\">%(email)s</a> є "
+"адресою коричтувача '%(user)s'."
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:7
 #: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:39
 msgid "Sign In"
 msgstr "Увійти в акаунт"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:19
-#, python-format
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:16
+#, fuzzy, python-format
 msgid ""
 "Please sign in with one\n"
-"of your existing third party accounts. Or, <a \n"
-"href=\"%(signup_url)s\">sign up</a> for a %(site_name)s account and sign in\n"
-"below:"
+"of your existing third party accounts. Or, <a "
+"href=\"%(signup_url)s\">sign up</a> \n"
+"for a %(site_name)s account and sign in below:"
 msgstr ""
 "Увійдіть за допомогою\n"
 "існуючого облікового запису у іншій системі. Можете також, <a \n"
 "href=\"%(signup_url)s\">увійти</a> в акаунт %(site_name)s та увійти\n"
 "нижче:"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:27
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:24
 msgid "or"
 msgstr "або"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:42
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/login.html:38
 msgid "Forgot Password?"
 msgstr "Забули пароль?"
 
@@ -289,8 +393,8 @@ msgstr "Ви вийшли з акаунту."
 #: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:8
 msgid "Change Password"
 msgstr "Змінити пароль"
 
@@ -300,7 +404,9 @@ msgid "Delete Password"
 msgstr "Видалити пароль"
 
 #: /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."
+msgid ""
+"You may delete your password since you are currently logged in using "
+"OpenID."
 msgstr "Можете видалити свій пароль, тому що зараз ви увійшли за допомогою OpenID."
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_delete.html:12
@@ -324,131 +430,172 @@ msgid "Password Reset"
 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 "Забули пароль? Введіть свою електронну адресу, щоб отримати інструкції щодо встановлення нового паролю."
+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:20
 msgid "Reset My Password"
 msgstr "Змінити мій пароль"
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset.html:23
-#, python-format
-msgid "If you have any trouble resetting your password, contact us at <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
-msgstr "Якщо у Вас виникають проблеми зі зміною паролю, напишіть нам на адресу, <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+msgid "Please contact us if you have any trouble resetting your password."
+msgstr ""
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_done.html:15
-#, python-format
-msgid "We have sent you an e-mail. If you do not receive it within a few minutes, contact us at <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
-msgstr "Вам було вислано повідомлення. Якщо не отримаєте його протягом кількох хвилин, напишіть на адресу <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+#, fuzzy, python-format
+msgid ""
+"We have sent you an e-mail. Please contact us if you do not receive it "
+"within a few minutes."
+msgstr ""
+"Вам було вислано повідомлення. Якщо не отримаєте його протягом кількох "
+"хвилин, напишіть на адресу <a "
+"href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:7
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:8
 msgid "Bad Token"
 msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:12
 #, python-format
-msgid "The password reset link was invalid, possibly because it has already been used.  Please request a <a href=\"%(passwd_reset_url)s\">new password reset</a>."
-msgstr "Посилання на зміну пароля було неправильним, тому що його вже використали. Будь ласка, замовте <a href=\"%(passwd_reset_url)s\">ще одну зміну пароля</a>."
+msgid ""
+"The password reset link was invalid, possibly because it has already been"
+" used.  Please request a <a href=\"%(passwd_reset_url)s\">new password "
+"reset</a>."
+msgstr ""
+"Посилання на зміну пароля було неправильним, тому що його вже "
+"використали. Будь ласка, замовте <a href=\"%(passwd_reset_url)s\">ще одну"
+" зміну пароля</a>."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:17
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:18
 msgid "change password"
 msgstr "змінити пароль"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:20
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/password_reset_from_key.html:21
 msgid "Your password is now changed."
 msgstr "Ваш пароль змінено."
 
-#: /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"
-"\n"
-"%(password_reset_url)s\n"
-"\n"
-"In case you forgot, your username is %(username)s.\n"
-"\n"
-"Thanks for using our site!\n"
-msgstr ""
-"Ви отримали це повідомлення, тому що хтось попросив про зміну пароля для Вашого акаунту на сайті %(site_domain)s.\n"
-"Якщо ви не просили про зміну, можете проігнорувати це повідомлення. Для зміни пароля натисніть посилання.\n"
-"\n"
-"%(password_reset_url)s\n"
-"\n"
-"Нагадуємо, що Ваше ім'я користувача це %(username)s.\n"
-"\n"
-"Дякуємо за користування нашим сайтом!\n"
-
 #: /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 "Встановити пароль"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:5
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:6
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:5
 msgid "Signup"
 msgstr "Реєстрація"
 
-#: /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/account/signup.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:19
 #: /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 "Реєструватися"
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:13
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup.html:11
 #, python-format
-msgid "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
+msgid ""
+"Already have an account? Then please <a href=\"%(login_url)s\">sign "
+"in</a>."
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup_closed.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup_closed.html:9
+msgid "Sign Up Closed"
+msgstr ""
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/signup_closed.html:11
+msgid "We are sorry, but the sign up is currently closed."
 msgstr ""
 
 #: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:9
 msgid "Verify Your E-mail Address"
 msgstr "Перевірити електронну адресу"
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verification_sent.html:10
 #, python-format
-msgid "We have sent you an e-mail to <b>%(email)s</b> for verification. Follow the link provided to finalize the signup process. If you do not receive it within a few minutes, contact us at <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
-msgstr "Вам було надіслано повідомлення на <b>%(email)s</b> для перевірення адреси. Натисніть отримане посилання, щоб завершити процес реєстрації. Якщо не отримажте повідомлення протягом кількох хвилин, напишіть нам на адресу <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
-
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/snippets/already_logged_in.html:5
-msgid "Note"
-msgstr "Увага"
+msgid ""
+"We have sent an e-mail to <a href=\"mailto:%(email)s\">%(email)s</a> for "
+"verification. Follow the link provided to finalize the signup process. "
+"Please contact us if you do not receive it within a few minutes."
+msgstr ""
 
-#: /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."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:15
+msgid ""
+"This part of the site requires us to verify that\n"
+"you are who you claim to be. For this purpose, we require that you\n"
+"verify ownership of your e-mail address. "
+msgstr ""
 
-#: /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 "Підтвердження електронної адреси."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:19
+msgid ""
+"We have sent an e-mail to you for\n"
+"verification. Please click on the link inside this e-mail. Please\n"
+"contact us if you do not receive it within a few minutes."
+msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:11
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/verified_email_required.html:21
 #, python-format
-msgid "You have confirmed that <a href=\"mailto:%(email)s\">%(email)s</a> is an e-mail address for user '%(user)s'."
-msgstr "Ви підтвердили, що адреса <a href=\"mailto:%(email)s\">%(email)s</a> є адресою коричтувача '%(user)s'."
-
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/confirm_email.html:13
-msgid "Invalid confirmation key."
-msgstr "Неправильний ключ підтвердження."
+msgid ""
+"<strong>Note:</strong> you can still <a href=\"%(email_url)s\">change "
+"your e-mail address</a>."
+msgstr ""
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/emailconfirmation/email_confirmation_message.txt:4
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email/email_confirmation_message.txt:4
 #, python-format
 msgid ""
-"User '%(user)s' at %(site_name)s has given this as an email address.\n"
+"User %(user_display)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/account/email/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"
+"\n"
+"%(password_reset_url)s\n"
+"\n"
+"In case you forgot, your username is %(username)s.\n"
+"\n"
+"Thanks for using our site!\n"
+msgstr ""
+"Ви отримали це повідомлення, тому що хтось попросив про зміну пароля для "
+"Вашого акаунту на сайті %(site_domain)s.\n"
+"Якщо ви не просили про зміну, можете проігнорувати це повідомлення. Для "
+"зміни пароля натисніть посилання.\n"
+"\n"
+"%(password_reset_url)s\n"
+"\n"
+"Нагадуємо, що Ваше ім'я користувача це %(username)s.\n"
+"\n"
+"Дякуємо за користування нашим сайтом!\n"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/email/password_reset_key_subject.txt:3
+msgid "Password Reset E-mail"
+msgstr "Повідомлення для встановлення нового паролю"
+
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/account/snippets/already_logged_in.html:5
+msgid "Note"
+msgstr "Увага"
+
+#: /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."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/openid/login.html:9
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/openid/login.html:10
 msgid "OpenID Sign In"
 msgstr "Увійти за допомогою OpenID"
 
@@ -467,8 +614,13 @@ msgid "Social Network Login Failure"
 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 "Під час спроби увійти за допомоги облікового запису у соціальній мережі наступила помилка."
+#, fuzzy
+msgid ""
+"An error occurred while attempting to login via your social network "
+"account."
+msgstr ""
+"Під час спроби увійти за допомоги облікового запису у соціальній мережі "
+"наступила помилка."
 
 #: /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
@@ -476,22 +628,37 @@ msgid "Account Connections"
 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 "Можете увійти у Ваш акаунт за допомогою облікових записів у наступних системах:"
+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:43
+#, fuzzy
+msgid "You currently have no social network accounts connected to this account."
+msgstr "Ваш обліковий запис у соціальній мережі пов'язано з існуючим акаунтом."
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/connections.html:46
 msgid "Add a 3rd Party Account"
 msgstr "Додати обліковий запис у іншій системі"
 
-#: /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
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:6
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:10
 msgid "Login Cancelled"
 msgstr "Спробу увійти в систему скасовано."
 
-#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:13
-#, python-format
-msgid "You decided to cancel logging in to our site using one of your exisiting accounts. If this was a mistake, please proceed to <a href=\"%(login_url)s\">sign in</a>."
-msgstr "Ви вирішили скасувати спробу увійти в систему за допомогою вже існуючого облікового запису. Якщо це помилка, перейдіть до <a href=\"%(login_url)s\">увійти</a>."
+#: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/login_cancelled.html:14
+#, fuzzy, python-format
+msgid ""
+"You decided to cancel logging in to our site using one of your existing "
+"accounts. If this was a mistake, please proceed to <a "
+"href=\"%(login_url)s\">sign in</a>."
+msgstr ""
+"Ви вирішили скасувати спробу увійти в систему за допомогою вже існуючого "
+"облікового запису. Якщо це помилка, перейдіть до <a "
+"href=\"%(login_url)s\">увійти</a>."
 
 #: /home/rczajka/.virtualenvs/wolnelektury/src/django-allauth/allauth/templates/socialaccount/signup.html:11
 #, python-format
@@ -499,35 +666,46 @@ 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. Для завершення процесу, заповніть будь ласка наступну форму:"
-
-#~ msgid "Language"
-#~ msgstr "Мова"
+"Хочете скористатися вашим обліковим записом %(provider_name)s щоб увійти "
+"на сайт \n"
+"%(site_name)s. Для завершення процесу, заповніть будь ласка наступну "
+"форму:"
 
-#~ msgid "Pinax can be used in your preferred language."
-#~ msgstr "Платформою Pinax можна користуватися на вибраній Вами мові."
+#~ msgid "OpenID"
+#~ msgstr "OpenID"
 
-#~ msgid "Change my language"
-#~ msgstr "Змінити мову"
-
-#~ msgid "Already have an account?"
-#~ msgstr "У вас вже є акаунт?"
+#~ msgid ""
+#~ "If you have any trouble resetting "
+#~ "your password, contact us at <a "
+#~ "href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+#~ msgstr ""
+#~ "Якщо у Вас виникають проблеми зі "
+#~ "зміною паролю, напишіть нам на адресу,"
+#~ " <a href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
 
-#~ msgid "Sign in"
-#~ msgstr "Увійти"
+#~ msgid ""
+#~ "We have sent you an e-mail to "
+#~ "<b>%(email)s</b> for verification. Follow the"
+#~ " link provided to finalize the signup"
+#~ " process. If you do not receive "
+#~ "it within a few minutes, contact "
+#~ "us at <a "
+#~ "href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
+#~ msgstr ""
+#~ "Вам було надіслано повідомлення на "
+#~ "<b>%(email)s</b> для перевірення адреси. "
+#~ "Натисніть отримане посилання, щоб завершити"
+#~ " процес реєстрації. Якщо не отримажте "
+#~ "повідомлення протягом кількох хвилин, напишіть"
+#~ " нам на адресу <a "
+#~ "href=\"mailto:%(CONTACT_EMAIL)s\">%(CONTACT_EMAIL)s</a>."
 
-#~ msgid "Timezone"
-#~ msgstr "ЧаÑ\81овий Ð¿Ð¾Ñ\8fÑ\81"
+#~ msgid "Invalid confirmation key."
+#~ msgstr "Ð\9dепÑ\80авилÑ\8cний ÐºÐ»Ñ\8eÑ\87 Ð¿Ñ\96дÑ\82веÑ\80дженнÑ\8f."
 
 #~ msgid ""
-#~ "Pinax can localize all times into "
-#~ "your preferred timezone. Change your "
-#~ "timezone below."
+#~ "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 ""
-#~ "Pinax може змінити усі години у "
-#~ "відповідності до Вашого часового пояса. "
-#~ "Часовий пояс можна змінити нижче."
 
-#~ msgid "Change my timezone"
-#~ msgstr "Змінити часовий пояс"
index 335b2b1..8fdb973 100644 (file)
@@ -20,8 +20,9 @@ TEMPLATE_CONTEXT_PROCESSORS = (
     'django.core.context_processors.request',
     'wolnelektury_core.context_processors.extra_settings',
     'search.context_processors.search_form',
-    "allauth.context_processors.allauth",
+
     "allauth.account.context_processors.account",
+    "allauth.socialaccount.context_processors.socialaccount",
 )
 
 MIDDLEWARE_CLASSES = [
@@ -90,14 +91,13 @@ INSTALLED_APPS_CONTRIB = [
     #'django_nose',
 
     #allauth stuff
-    'emailconfirmation',
     'uni_form',
     'allauth',
     'allauth.account',
     'allauth.socialaccount',
-    'allauth.openid',
-    #'allauth.facebook',
-    #'allauth.twitter',
+    'allauth.socialaccount.providers.openid',
+    'allauth.socialaccount.providers.facebook',
+    #'allauth.socialaccount.providers.twitter',
 
     # included
     'modeltranslation',
index 3b703bc..4d3ea22 100644 (file)
@@ -2,10 +2,18 @@ AUTHENTICATION_BACKENDS = [
     'django.contrib.auth.backends.ModelBackend',
     'allauth.account.auth_backends.AuthenticationBackend',
 ]
-EMAIL_CONFIRMATION_DAYS = 2
+ACCOUNT_EMAIL_CONFIRMATION_EXPIRE_DAYS = 2
 LOGIN_URL = '/uzytkownik/login/'
 
 LOGIN_REDIRECT_URL = '/'
 
 SOCIALACCOUNT_AUTO_SIGNUP = False
 SOCIALACCOUNT_QUERY_EMAIL = True
+
+
+SOCIALACCOUNT_PROVIDERS = \
+    { 'openid':
+        { 'SERVERS':
+            [dict(id='google',
+                  name='Google',
+                  openid_url='https://www.google.com/accounts/o8/id')]}}