From: Radek Czajka <radoslaw.czajka@nowoczesnapolska.org.pl> Date: Tue, 9 Apr 2013 14:09:50 +0000 (+0200) Subject: update django-allauth X-Git-Url: https://git.mdrn.pl/wolnelektury.git/commitdiff_plain/02fe6525fe7fa7c16d6e1dfe0ca040ac07d41325?ds=inline;hp=--cc update django-allauth --- 02fe6525fe7fa7c16d6e1dfe0ca040ac07d41325 diff --git a/apps/wolnelektury_core/templates/openid/login.html b/apps/wolnelektury_core/templates/openid/login.html index ca8aaf379..41eafa479 100644 --- a/apps/wolnelektury_core/templates/openid/login.html +++ b/apps/wolnelektury_core/templates/openid/login.html @@ -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 %} diff --git a/apps/wolnelektury_core/templates/socialaccount/connections.html b/apps/wolnelektury_core/templates/socialaccount/connections.html index 0446fd921..9896b0954 100644 --- a/apps/wolnelektury_core/templates/socialaccount/connections.html +++ b/apps/wolnelektury_core/templates/socialaccount/connections.html @@ -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 %} diff --git a/apps/wolnelektury_core/templates/socialaccount/login_cancelled.html b/apps/wolnelektury_core/templates/socialaccount/login_cancelled.html index 2dc48f180..7e29b65c7 100644 --- a/apps/wolnelektury_core/templates/socialaccount/login_cancelled.html +++ b/apps/wolnelektury_core/templates/socialaccount/login_cancelled.html @@ -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 %} diff --git a/apps/wolnelektury_core/templates/socialaccount/snippets/provider_list.html b/apps/wolnelektury_core/templates/socialaccount/snippets/provider_list.html index 1361d7018..80f9c2f2d 100644 --- a/apps/wolnelektury_core/templates/socialaccount/snippets/provider_list.html +++ b/apps/wolnelektury_core/templates/socialaccount/snippets/provider_list.html @@ -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 %} diff --git a/requirements.txt b/requirements.txt index 158e1319a..fd14a9ea4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -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 index 922969bec..000000000 --- a/scripts/gazeta-links +++ /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 index 771dd9c67..000000000 --- a/scripts/genre_families.xml +++ /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 index af97d9645..000000000 --- a/scripts/git-archive-all.sh +++ /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 index 0bc190e77..000000000 --- a/scripts/import_links.py +++ /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') diff --git a/scripts/make-locale-pack b/scripts/make-locale-pack index f7adc021c..9c8e8a760 100755 --- a/scripts/make-locale-pack +++ b/scripts/make-locale-pack @@ -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() diff --git a/scripts/make-xml-zip.py b/scripts/make-xml-zip.py index d8b3dde88..de579c3e2 100755 --- a/scripts/make-xml-zip.py +++ b/scripts/make-xml-zip.py @@ -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 diff --git a/scripts/save-locale-pack b/scripts/save-locale-pack index 1d140685e..69bc9e517 100755 --- a/scripts/save-locale-pack +++ b/scripts/save-locale-pack @@ -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 index 0b4b18471..000000000 --- a/scripts/setpythonpath.sh +++ /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 index c53cfd3d1..000000000 --- a/scripts/test_api.py +++ /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 index c9cd04582..000000000 --- a/scripts/wiki-links +++ /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 diff --git a/wolnelektury/locale-contrib/de/LC_MESSAGES/django.po b/wolnelektury/locale-contrib/de/LC_MESSAGES/django.po index 096febdac..f10f30ac6 100644 --- a/wolnelektury/locale-contrib/de/LC_MESSAGES/django.po +++ b/wolnelektury/locale-contrib/de/LC_MESSAGES/django.po @@ -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" diff --git a/wolnelektury/locale-contrib/django.pot b/wolnelektury/locale-contrib/django.pot index 2962c6ebb..f41576a47 100644 --- a/wolnelektury/locale-contrib/django.pot +++ b/wolnelektury/locale-contrib/django.pot @@ -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 "" diff --git a/wolnelektury/locale-contrib/en/LC_MESSAGES/django.po b/wolnelektury/locale-contrib/en/LC_MESSAGES/django.po index 41fcb747d..b9d3b9195 100644 --- a/wolnelektury/locale-contrib/en/LC_MESSAGES/django.po +++ b/wolnelektury/locale-contrib/en/LC_MESSAGES/django.po @@ -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" diff --git a/wolnelektury/locale-contrib/es/LC_MESSAGES/django.po b/wolnelektury/locale-contrib/es/LC_MESSAGES/django.po index d317ca493..c2814007d 100644 --- a/wolnelektury/locale-contrib/es/LC_MESSAGES/django.po +++ b/wolnelektury/locale-contrib/es/LC_MESSAGES/django.po @@ -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" diff --git a/wolnelektury/locale-contrib/fr/LC_MESSAGES/django.po b/wolnelektury/locale-contrib/fr/LC_MESSAGES/django.po index 6fec10b7d..806776ed5 100644 --- a/wolnelektury/locale-contrib/fr/LC_MESSAGES/django.po +++ b/wolnelektury/locale-contrib/fr/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-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 "" diff --git a/wolnelektury/locale-contrib/it/LC_MESSAGES/django.po b/wolnelektury/locale-contrib/it/LC_MESSAGES/django.po index cc708204c..a1b2a1e4d 100644 --- a/wolnelektury/locale-contrib/it/LC_MESSAGES/django.po +++ b/wolnelektury/locale-contrib/it/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-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 "" diff --git a/wolnelektury/locale-contrib/lt/LC_MESSAGES/django.po b/wolnelektury/locale-contrib/lt/LC_MESSAGES/django.po index ad40a1899..cfc4c2057 100644 --- a/wolnelektury/locale-contrib/lt/LC_MESSAGES/django.po +++ b/wolnelektury/locale-contrib/lt/LC_MESSAGES/django.po @@ -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Ä " diff --git a/wolnelektury/locale-contrib/pl/LC_MESSAGES/django.mo b/wolnelektury/locale-contrib/pl/LC_MESSAGES/django.mo index b60e4da9f..dd59b8c84 100644 Binary files a/wolnelektury/locale-contrib/pl/LC_MESSAGES/django.mo and b/wolnelektury/locale-contrib/pl/LC_MESSAGES/django.mo differ diff --git a/wolnelektury/locale-contrib/pl/LC_MESSAGES/django.po b/wolnelektury/locale-contrib/pl/LC_MESSAGES/django.po index bf3a36a51..8e7c15ba1 100644 --- a/wolnelektury/locale-contrib/pl/LC_MESSAGES/django.po +++ b/wolnelektury/locale-contrib/pl/LC_MESSAGES/django.po @@ -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." diff --git a/wolnelektury/locale-contrib/ru/LC_MESSAGES/django.po b/wolnelektury/locale-contrib/ru/LC_MESSAGES/django.po index d039922cb..b6d5531bd 100644 --- a/wolnelektury/locale-contrib/ru/LC_MESSAGES/django.po +++ b/wolnelektury/locale-contrib/ru/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2012-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 "" diff --git a/wolnelektury/locale-contrib/uk/LC_MESSAGES/django.po b/wolnelektury/locale-contrib/uk/LC_MESSAGES/django.po index 3919fd0d1..2dfee3cf6 100644 --- a/wolnelektury/locale-contrib/uk/LC_MESSAGES/django.po +++ b/wolnelektury/locale-contrib/uk/LC_MESSAGES/django.po @@ -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 "ЧаÑовий поÑÑ" +#~ msgid "Invalid confirmation key." +#~ msgstr "ÐепÑавилÑний клÑÑ Ð¿ÑдÑвеÑдженнÑ." #~ 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 "ÐмÑниÑи ÑаÑовий поÑÑ" diff --git a/wolnelektury/settings/__init__.py b/wolnelektury/settings/__init__.py index 335b2b1aa..8fdb97399 100644 --- a/wolnelektury/settings/__init__.py +++ b/wolnelektury/settings/__init__.py @@ -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', diff --git a/wolnelektury/settings/auth.py b/wolnelektury/settings/auth.py index 3b703bce4..4d3ea224a 100644 --- a/wolnelektury/settings/auth.py +++ b/wolnelektury/settings/auth.py @@ -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')]}}