Codebase list django-allauth / 6560094
Import upstream version 0.45.0 Debian Janitor 2 years ago
98 changed file(s) with 2331 addition(s) and 1269 deletion(s). Raw diff Collapse all Expand all
5555 Fábio Santos
5656 George Whewell
5757 Griffith Rees
58 Guignard Javier
5859 Guilhem Saurel
5960 Guillaume Vincent
6061 Guoyu Hao
8586 JoonHwan Kim
8687 Josh Owen
8788 Josh Wright
89 Joshua Butler
8890 Joshua Sorenson
8991 Julen Ruiz Aizpuru
9092 Justin Michalicek
113115 Niklas A Emanuelsson
114116 Oleg Sergeev
115117 Patrick Paul
118 Paul Juergen Fischer
116119 Paulo Eduardo Neves
117120 Pavel Savchenko
118121 Peter Bittner
0 0.45.0 (2021-07-11)
1 *******************
2
3
4 Note worthy changes
5 -------------------
6
7 - New providers: Feishu, NetIQ, Frontier, CILogin.
8
9
010 0.44.0 (2020-11-25)
111 *******************
212
00 The MIT License (MIT)
11
2 Copyright (c) 2010-2020 Raymond Penners and contributors
2 Copyright (c) 2010-2021 Raymond Penners and contributors
33
44 Permission is hereby granted, free of charge, to any person
55 obtaining a copy of this software and associated documentation
00 Metadata-Version: 1.1
11 Name: django-allauth
2 Version: 0.44.0
2 Version: 0.45.0
33 Summary: Integrated set of Django applications addressing authentication, registration, account management as well as 3rd party (social) account authentication.
44 Home-page: http://github.com/pennersr/django-allauth
55 Author: Raymond Penners
99 Welcome to django-allauth!
1010 ==========================
1111
12 .. image:: https://travis-ci.org/pennersr/django-allauth.svg
13 :target: http://travis-ci.org/pennersr/django-allauth
12 .. image:: https://api.travis-ci.com/pennersr/django-allauth.svg?branch=master
13 :target: http://travis-ci.com/pennersr/django-allauth
1414
1515 .. image:: https://img.shields.io/pypi/v/django-allauth.svg
1616 :target: https://pypi.python.org/pypi/django-allauth
106106 Classifier: Programming Language :: Python :: 3.6
107107 Classifier: Programming Language :: Python :: 3.7
108108 Classifier: Programming Language :: Python :: 3.8
109 Classifier: Programming Language :: Python :: 3.9
109110 Classifier: Framework :: Django
110111 Classifier: Framework :: Django :: 2.0
111112 Classifier: Framework :: Django :: 2.1
11 Welcome to django-allauth!
22 ==========================
33
4 .. image:: https://travis-ci.org/pennersr/django-allauth.svg
5 :target: http://travis-ci.org/pennersr/django-allauth
4 .. image:: https://api.travis-ci.com/pennersr/django-allauth.svg?branch=master
5 :target: http://travis-ci.com/pennersr/django-allauth
66
77 .. image:: https://img.shields.io/pypi/v/django-allauth.svg
88 :target: https://pypi.python.org/pypi/django-allauth
77
88 """
99
10 VERSION = (0, 44, 0, "final", 0)
10 VERSION = (0, 45, 0, "final", 0)
1111
1212 __title__ = "django-allauth"
1313 __version_info__ = VERSION
1616 )
1717 __author__ = "Raymond Penners"
1818 __license__ = "MIT"
19 __copyright__ = "Copyright 2010-2020 Raymond Penners and contributors"
19 __copyright__ = "Copyright 2010-2021 Raymond Penners and contributors"
0 default_app_config = "allauth.account.apps.AccountConfig"
0 import django
1
2
3 if django.VERSION < (3, 2): # pragma: no cover
4 default_app_config = "allauth.account.apps.AccountConfig"
99 list_filter = ("primary", "verified")
1010 search_fields = []
1111 raw_id_fields = ("user",)
12 actions = ["make_verified"]
1213
1314 def get_search_fields(self, request):
1415 base_fields = get_adapter(request).get_user_search_fields()
1516 return ["email"] + list(map(lambda a: "user__" + a, base_fields))
17
18 def make_verified(self, request, queryset):
19 queryset.update(verified=True)
20
21 make_verified.short_description = "Mark selected email addresses as verified"
1622
1723
1824 class EmailConfirmationAdmin(admin.ModelAdmin):
125125 from django.contrib.messages.middleware import MessageMiddleware
126126 from django.contrib.sessions.middleware import SessionMiddleware
127127
128 SessionMiddleware().process_request(request)
129 MessageMiddleware().process_request(request)
128 SessionMiddleware(lambda request: None).process_request(request)
129 MessageMiddleware(lambda request: None).process_request(request)
130130 request.user = AnonymousUser()
131131 request.session["account_verified_email"] = verified_email
132132 from .views import signup
177177 from django.contrib.messages.middleware import MessageMiddleware
178178 from django.contrib.sessions.middleware import SessionMiddleware
179179
180 SessionMiddleware().process_request(request)
181 MessageMiddleware().process_request(request)
180 SessionMiddleware(lambda request: None).process_request(request)
181 MessageMiddleware(lambda request: None).process_request(request)
182182 request.user = AnonymousUser()
183183 from .views import signup
184184
398398 q = qlist[0]
399399 for q2 in qlist[1:]:
400400 q = q | q2
401 ret = get_user_model().objects.filter(q)
402 else:
403 ret = get_user_model().objects.filter(
401 ret = get_user_model()._default_manager.filter(q)
402 else:
403 ret = get_user_model()._default_manager.filter(
404404 **{
405405 app_settings.USER_MODEL_USERNAME_FIELD
406406 + "__in": [u.lower() for u in username]
466466 User = get_user_model()
467467 # TODO: Ugh, isn't there a cleaner way to determine whether or not
468468 # the PK is a str-like field?
469 if getattr(User._meta.pk, "remote_field", None):
469 remote_field = getattr(User._meta.pk, "remote_field", None)
470 if remote_field and getattr(remote_field, "to", None):
470471 pk_field = User._meta.pk.remote_field.to._meta.pk
471472 else:
472473 pk_field = User._meta.pk
66 msgstr ""
77 "Project-Id-Version: 0.1\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2020-10-11 11:15-0500\n"
9 "POT-Creation-Date: 2021-07-11 07:33-0500\n"
1010 "PO-Revision-Date: 2016-01-19 19:32+0100\n"
1111 "Last-Translator: David D Lowe <daviddlowe.flimm@gmail.com>\n"
1212 "Language-Team: Arabic\n"
3939 msgid "Accounts"
4040 msgstr "الحسابات"
4141
42 #: account/forms.py:58 account/forms.py:403
42 #: account/forms.py:58 account/forms.py:412
4343 msgid "You must type the same password each time."
4444 msgstr "يجب عليك كتابة نفس كلمة المرور في كل مرة‪.‬"
4545
46 #: account/forms.py:87 account/forms.py:372 account/forms.py:486
46 #: account/forms.py:91 account/forms.py:380 account/forms.py:497
4747 msgid "Password"
4848 msgstr "كلمة السر"
4949
50 #: account/forms.py:88
50 #: account/forms.py:92
5151 msgid "Remember Me"
5252 msgstr "تذكرني"
5353
54 #: account/forms.py:92
54 #: account/forms.py:96
5555 msgid "This account is currently inactive."
5656 msgstr "هذا الحساب غير نشط حاليا."
5757
58 #: account/forms.py:94
58 #: account/forms.py:98
5959 msgid "The e-mail address and/or password you specified are not correct."
6060 msgstr "عنوان البريد الإلكتروني و / أو كلمة المرور الذي حددته غير صحيحة."
6161
62 #: account/forms.py:97
62 #: account/forms.py:101
6363 msgid "The username and/or password you specified are not correct."
6464 msgstr "اسم المستخدم و / أو كلمة المرور الذي حددته غير صحيحة."
6565
66 #: account/forms.py:108 account/forms.py:273 account/forms.py:429
67 #: account/forms.py:505
66 #: account/forms.py:112 account/forms.py:278 account/forms.py:438
67 #: account/forms.py:516
6868 msgid "E-mail address"
6969 msgstr "عنوان البريد الالكتروني"
7070
71 #: account/forms.py:111 account/forms.py:308 account/forms.py:426
72 #: account/forms.py:500
71 #: account/forms.py:116 account/forms.py:315 account/forms.py:435
72 #: account/forms.py:511
7373 msgid "E-mail"
7474 msgstr "البريد الالكتروني"
7575
76 #: account/forms.py:113 account/forms.py:115 account/forms.py:263
77 #: account/forms.py:267
76 #: account/forms.py:119 account/forms.py:122 account/forms.py:268
77 #: account/forms.py:271
7878 msgid "Username"
7979 msgstr "اسم المستخدم"
8080
81 #: account/forms.py:126
81 #: account/forms.py:132
8282 msgid "Username or e-mail"
8383 msgstr "اسم المستخدم أو البريد الالكتروني"
8484
85 #: account/forms.py:130
85 #: account/forms.py:135
8686 msgctxt "field label"
8787 msgid "Login"
8888 msgstr "تسجيل الدخول"
8989
90 #: account/forms.py:299
90 #: account/forms.py:306
9191 msgid "E-mail (again)"
9292 msgstr "البريد الالكتروني ‪(مجددا)‬"
9393
94 #: account/forms.py:303
94 #: account/forms.py:310
9595 msgid "E-mail address confirmation"
9696 msgstr "تأكيد البريد الإلكتروني"
9797
98 #: account/forms.py:311
98 #: account/forms.py:318
9999 msgid "E-mail (optional)"
100100 msgstr "البريد الالكتروني ‪)‬اختياري‪(‬"
101101
102 #: account/forms.py:351
102 #: account/forms.py:358
103103 msgid "You must type the same email each time."
104104 msgstr "يجب عليك كتابة نفس البريد الالكتروني في كل مرة‪.‬"
105105
106 #: account/forms.py:374 account/forms.py:487
106 #: account/forms.py:383 account/forms.py:498
107107 msgid "Password (again)"
108108 msgstr "كلمة السر ‪)‬مرة أخرى‪(‬"
109109
110 #: account/forms.py:438
110 #: account/forms.py:447
111111 msgid "This e-mail address is already associated with this account."
112112 msgstr "عنوان البريد الإلكتروني هذا بالفعل المقترنة مع هذا الحساب."
113113
114 #: account/forms.py:441
114 #: account/forms.py:450
115115 msgid "This e-mail address is already associated with another account."
116116 msgstr "عنوان البريد الإلكتروني هذا مقترن بالفعل بحساب آخر."
117117
118 #: account/forms.py:443
118 #: account/forms.py:452
119119 #, fuzzy, python-format
120120 #| msgid "Your account has no verified e-mail address."
121121 msgid "You cannot add more than %d e-mail addresses."
122122 msgstr "حسابك ليس لديه عنوان البريد الإلكتروني تحققنا منها."
123123
124 #: account/forms.py:467
124 #: account/forms.py:477
125125 msgid "Current Password"
126126 msgstr "كلمة المرور الحالية"
127127
128 #: account/forms.py:468 account/forms.py:557
128 #: account/forms.py:479 account/forms.py:569
129129 msgid "New Password"
130130 msgstr "كلمة المرور الجديدة"
131131
132 #: account/forms.py:469 account/forms.py:558
132 #: account/forms.py:480 account/forms.py:570
133133 msgid "New Password (again)"
134134 msgstr "كلمة المرور الجديدة (مرة أخرى)"
135135
136 #: account/forms.py:477
136 #: account/forms.py:488
137137 msgid "Please type your current password."
138138 msgstr "الرجاء كتابة كلمة المرور الحالية الخاصة بك."
139139
140 #: account/forms.py:516
140 #: account/forms.py:528
141141 msgid "The e-mail address is not assigned to any user account"
142142 msgstr "لم يتم تعيين عنوان البريد الإلكتروني لأي حساب مستخدم"
143143
144 #: account/forms.py:579
144 #: account/forms.py:591
145145 msgid "The password reset token was invalid."
146146 msgstr "خطأ في شهادة اعادة تعيين كلمة المرور."
147147
202202 msgid "Your account has no password set up."
203203 msgstr "حسابك ليس لديه كلمة مرور اقامة."
204204
205 #: socialaccount/adapter.py:141
205 #: socialaccount/adapter.py:138
206206 msgid "Your account has no verified e-mail address."
207207 msgstr "حسابك ليس لديه عنوان البريد الإلكتروني تحققنا منها."
208208
77 msgstr ""
88 "Project-Id-Version: 0.35\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2020-10-11 11:15-0500\n"
10 "POT-Creation-Date: 2021-07-11 07:33-0500\n"
1111 "PO-Revision-Date: 2018-04-17 16:52+0200\n"
1212 "Last-Translator: Beda Kosata <beda.kosata@gmail.com>\n"
1313 "Language-Team: Czech <>\n"
1515 "MIME-Version: 1.0\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
18 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
18 "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n "
19 "<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
1920 "X-Generator: Gtranslator 2.91.7\n"
2021
2122 #: account/adapter.py:45
3940 msgid "Accounts"
4041 msgstr "Účty"
4142
42 #: account/forms.py:58 account/forms.py:403
43 #: account/forms.py:58 account/forms.py:412
4344 msgid "You must type the same password each time."
4445 msgstr "Hesla se musí shodovat."
4546
46 #: account/forms.py:87 account/forms.py:372 account/forms.py:486
47 #: account/forms.py:91 account/forms.py:380 account/forms.py:497
4748 msgid "Password"
4849 msgstr "Heslo"
4950
50 #: account/forms.py:88
51 #: account/forms.py:92
5152 msgid "Remember Me"
5253 msgstr "Zapamatovat"
5354
54 #: account/forms.py:92
55 #: account/forms.py:96
5556 msgid "This account is currently inactive."
5657 msgstr "Účet je v tuto chvíli neaktivní."
5758
58 #: account/forms.py:94
59 #: account/forms.py:98
5960 msgid "The e-mail address and/or password you specified are not correct."
6061 msgstr "Zadaný e-mail nebo heslo není správné."
6162
62 #: account/forms.py:97
63 #: account/forms.py:101
6364 msgid "The username and/or password you specified are not correct."
6465 msgstr "Zadané uživatelské jméno nebo heslo není správné."
6566
66 #: account/forms.py:108 account/forms.py:273 account/forms.py:429
67 #: account/forms.py:505
67 #: account/forms.py:112 account/forms.py:278 account/forms.py:438
68 #: account/forms.py:516
6869 msgid "E-mail address"
6970 msgstr "E-mailová adresa"
7071
71 #: account/forms.py:111 account/forms.py:308 account/forms.py:426
72 #: account/forms.py:500
72 #: account/forms.py:116 account/forms.py:315 account/forms.py:435
73 #: account/forms.py:511
7374 msgid "E-mail"
7475 msgstr "E-mail"
7576
76 #: account/forms.py:113 account/forms.py:115 account/forms.py:263
77 #: account/forms.py:267
77 #: account/forms.py:119 account/forms.py:122 account/forms.py:268
78 #: account/forms.py:271
7879 msgid "Username"
7980 msgstr "Uživatelské jméno"
8081
81 #: account/forms.py:126
82 #: account/forms.py:132
8283 msgid "Username or e-mail"
8384 msgstr "Uživatelské jméno nebo e-mail"
8485
85 #: account/forms.py:130
86 #: account/forms.py:135
8687 msgctxt "field label"
8788 msgid "Login"
8889 msgstr "Login"
8990
90 #: account/forms.py:299
91 #: account/forms.py:306
9192 msgid "E-mail (again)"
9293 msgstr "E-mail (znovu)"
9394
94 #: account/forms.py:303
95 #: account/forms.py:310
9596 msgid "E-mail address confirmation"
9697 msgstr "Potrvzení e-mailové adresy"
9798
98 #: account/forms.py:311
99 #: account/forms.py:318
99100 msgid "E-mail (optional)"
100101 msgstr "E-mail (nepovinné)"
101102
102 #: account/forms.py:351
103 #: account/forms.py:358
103104 msgid "You must type the same email each time."
104105 msgstr "Vložené emaily se musí shodovat."
105106
106 #: account/forms.py:374 account/forms.py:487
107 #: account/forms.py:383 account/forms.py:498
107108 msgid "Password (again)"
108109 msgstr "Heslo (znovu)"
109110
110 #: account/forms.py:438
111 #: account/forms.py:447
111112 msgid "This e-mail address is already associated with this account."
112113 msgstr "Tento e-mail je již k tomuto účtu přiřazen."
113114
114 #: account/forms.py:441
115 #: account/forms.py:450
115116 msgid "This e-mail address is already associated with another account."
116117 msgstr "Tento e-mail je již přiřazen k jinému účtu."
117118
118 #: account/forms.py:443
119 #: account/forms.py:452
119120 #, fuzzy, python-format
120121 #| msgid "Your account has no verified e-mail address."
121122 msgid "You cannot add more than %d e-mail addresses."
122123 msgstr "Váš účet nemá žádný ověřený e-mail."
123124
124 #: account/forms.py:467
125 #: account/forms.py:477
125126 msgid "Current Password"
126127 msgstr "Současné heslo"
127128
128 #: account/forms.py:468 account/forms.py:557
129 #: account/forms.py:479 account/forms.py:569
129130 msgid "New Password"
130131 msgstr "Nové heslo"
131132
132 #: account/forms.py:469 account/forms.py:558
133 #: account/forms.py:480 account/forms.py:570
133134 msgid "New Password (again)"
134135 msgstr "Nové heslo (znovu)"
135136
136 #: account/forms.py:477
137 #: account/forms.py:488
137138 msgid "Please type your current password."
138139 msgstr "Prosím, zadejte svoje současné heslo."
139140
140 #: account/forms.py:516
141 #: account/forms.py:528
141142 msgid "The e-mail address is not assigned to any user account"
142143 msgstr "E-mail není přiřazen k žádnému účtu"
143144
144 #: account/forms.py:579
145 #: account/forms.py:591
145146 msgid "The password reset token was invalid."
146147 msgstr "Token pro reset hesla není platný."
147148
171172
172173 #: account/models.py:86
173174 msgid "created"
174 msgstr "vytvořit"
175 msgstr "vytvořil"
175176
176177 #: account/models.py:87
177178 msgid "sent"
202203 msgid "Your account has no password set up."
203204 msgstr "Váš účet nemá nastavené heslo."
204205
205 #: socialaccount/adapter.py:141
206 #: socialaccount/adapter.py:138
206207 msgid "Your account has no verified e-mail address."
207208 msgstr "Váš účet nemá žádný ověřený e-mail."
208209
66 msgstr ""
77 "Project-Id-Version: \n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2020-10-11 11:15-0500\n"
9 "POT-Creation-Date: 2021-07-11 07:33-0500\n"
1010 "PO-Revision-Date: 2018-09-03 16:04+0200\n"
1111 "Last-Translator: b'Tuk Bredsdorff <tukodeb@gmail.com>'\n"
1212 "Language-Team: \n"
3838 msgid "Accounts"
3939 msgstr "Konti"
4040
41 #: account/forms.py:58 account/forms.py:403
41 #: account/forms.py:58 account/forms.py:412
4242 msgid "You must type the same password each time."
4343 msgstr "Du skal skrive den samme adgangskode hver gang."
4444
45 #: account/forms.py:87 account/forms.py:372 account/forms.py:486
45 #: account/forms.py:91 account/forms.py:380 account/forms.py:497
4646 msgid "Password"
4747 msgstr "Adgangskode"
4848
49 #: account/forms.py:88
49 #: account/forms.py:92
5050 msgid "Remember Me"
5151 msgstr "Husk mig"
5252
53 #: account/forms.py:92
53 #: account/forms.py:96
5454 msgid "This account is currently inactive."
5555 msgstr "Denne konto er i øjeblikket inaktiv."
5656
57 #: account/forms.py:94
57 #: account/forms.py:98
5858 msgid "The e-mail address and/or password you specified are not correct."
5959 msgstr "Den angivne e-mail-adresse og/eller adgangskode er ikke korrekt."
6060
61 #: account/forms.py:97
61 #: account/forms.py:101
6262 msgid "The username and/or password you specified are not correct."
6363 msgstr "Det angivne brugernavn og/eller adgangskoden er ikke korrekt."
6464
65 #: account/forms.py:108 account/forms.py:273 account/forms.py:429
66 #: account/forms.py:505
65 #: account/forms.py:112 account/forms.py:278 account/forms.py:438
66 #: account/forms.py:516
6767 msgid "E-mail address"
6868 msgstr "E-mail adresse"
6969
70 #: account/forms.py:111 account/forms.py:308 account/forms.py:426
71 #: account/forms.py:500
70 #: account/forms.py:116 account/forms.py:315 account/forms.py:435
71 #: account/forms.py:511
7272 msgid "E-mail"
7373 msgstr "E-mail"
7474
75 #: account/forms.py:113 account/forms.py:115 account/forms.py:263
76 #: account/forms.py:267
75 #: account/forms.py:119 account/forms.py:122 account/forms.py:268
76 #: account/forms.py:271
7777 msgid "Username"
7878 msgstr "Brugernavn"
7979
80 #: account/forms.py:126
80 #: account/forms.py:132
8181 msgid "Username or e-mail"
8282 msgstr "Brugernavn eller e-mail"
8383
84 #: account/forms.py:130
84 #: account/forms.py:135
8585 msgctxt "field label"
8686 msgid "Login"
8787 msgstr "Bruger"
8888
89 #: account/forms.py:299
89 #: account/forms.py:306
9090 msgid "E-mail (again)"
9191 msgstr "E-mail (igen)"
9292
93 #: account/forms.py:303
93 #: account/forms.py:310
9494 msgid "E-mail address confirmation"
9595 msgstr "Bekræftelse af e-mail-adresse"
9696
97 #: account/forms.py:311
97 #: account/forms.py:318
9898 msgid "E-mail (optional)"
9999 msgstr "E-mail (valgfri)"
100100
101 #: account/forms.py:351
101 #: account/forms.py:358
102102 msgid "You must type the same email each time."
103103 msgstr "Du skal skrive den samme e-mail hver gang."
104104
105 #: account/forms.py:374 account/forms.py:487
105 #: account/forms.py:383 account/forms.py:498
106106 msgid "Password (again)"
107107 msgstr "Adgangskode (igen)"
108108
109 #: account/forms.py:438
109 #: account/forms.py:447
110110 msgid "This e-mail address is already associated with this account."
111111 msgstr "Denne e-mail-adresse er allerede knyttet til denne konto."
112112
113 #: account/forms.py:441
113 #: account/forms.py:450
114114 msgid "This e-mail address is already associated with another account."
115115 msgstr "Denne e-mail-adresse er allerede knyttet til en anden konto."
116116
117 #: account/forms.py:443
117 #: account/forms.py:452
118118 #, fuzzy, python-format
119119 #| msgid "Your account has no verified e-mail address."
120120 msgid "You cannot add more than %d e-mail addresses."
121121 msgstr "Din konto har ikke noget bekræftiget e-mail adresse."
122122
123 #: account/forms.py:467
123 #: account/forms.py:477
124124 msgid "Current Password"
125125 msgstr "Nuværende adgangskode"
126126
127 #: account/forms.py:468 account/forms.py:557
127 #: account/forms.py:479 account/forms.py:569
128128 msgid "New Password"
129129 msgstr "Ny adgangskode"
130130
131 #: account/forms.py:469 account/forms.py:558
131 #: account/forms.py:480 account/forms.py:570
132132 msgid "New Password (again)"
133133 msgstr "Ny adgangskode (igen)"
134134
135 #: account/forms.py:477
135 #: account/forms.py:488
136136 msgid "Please type your current password."
137137 msgstr "Indtast din nuværende adgangskode."
138138
139 #: account/forms.py:516
139 #: account/forms.py:528
140140 msgid "The e-mail address is not assigned to any user account"
141141 msgstr "E-mail-adressen er ikke tildelt til nogen brugerkonto"
142142
143 #: account/forms.py:579
143 #: account/forms.py:591
144144 msgid "The password reset token was invalid."
145145 msgstr "Token for nulstilling af adgangskode var ugyldig."
146146
201201 msgid "Your account has no password set up."
202202 msgstr "Der er ikke oprettet noget password til din konto."
203203
204 #: socialaccount/adapter.py:141
204 #: socialaccount/adapter.py:138
205205 msgid "Your account has no verified e-mail address."
206206 msgstr "Din konto har ikke noget bekræftiget e-mail adresse."
207207
77 msgstr ""
88 "Project-Id-Version: django-allauth\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2020-10-11 11:15-0500\n"
10 "POT-Creation-Date: 2021-07-11 07:33-0500\n"
1111 "PO-Revision-Date: 2020-10-15 19:48+0200\n"
1212 "Last-Translator: Jannis Vajen <jvajen@gmail.com>\n"
1313 "Language-Team: German (http://www.transifex.com/projects/p/django-allauth/"
4242 msgid "Accounts"
4343 msgstr "Konten"
4444
45 #: account/forms.py:58 account/forms.py:403
45 #: account/forms.py:58 account/forms.py:412
4646 msgid "You must type the same password each time."
4747 msgstr "Du musst zweimal das selbe Passwort eingeben."
4848
49 #: account/forms.py:87 account/forms.py:372 account/forms.py:486
49 #: account/forms.py:91 account/forms.py:380 account/forms.py:497
5050 msgid "Password"
5151 msgstr "Passwort"
5252
53 #: account/forms.py:88
53 #: account/forms.py:92
5454 msgid "Remember Me"
5555 msgstr "Angemeldet bleiben"
5656
57 #: account/forms.py:92
57 #: account/forms.py:96
5858 msgid "This account is currently inactive."
5959 msgstr "Dieses Konto ist derzeit inaktiv."
6060
61 #: account/forms.py:94
61 #: account/forms.py:98
6262 msgid "The e-mail address and/or password you specified are not correct."
6363 msgstr "Die E-Mail-Adresse und/oder das Passwort sind leider falsch."
6464
65 #: account/forms.py:97
65 #: account/forms.py:101
6666 msgid "The username and/or password you specified are not correct."
6767 msgstr "Der Anmeldename und/oder das Passwort sind leider falsch."
6868
69 #: account/forms.py:108 account/forms.py:273 account/forms.py:429
70 #: account/forms.py:505
69 #: account/forms.py:112 account/forms.py:278 account/forms.py:438
70 #: account/forms.py:516
7171 msgid "E-mail address"
7272 msgstr "E-Mail-Adresse"
7373
74 #: account/forms.py:111 account/forms.py:308 account/forms.py:426
75 #: account/forms.py:500
74 #: account/forms.py:116 account/forms.py:315 account/forms.py:435
75 #: account/forms.py:511
7676 msgid "E-mail"
7777 msgstr "E-Mail"
7878
79 #: account/forms.py:113 account/forms.py:115 account/forms.py:263
80 #: account/forms.py:267
79 #: account/forms.py:119 account/forms.py:122 account/forms.py:268
80 #: account/forms.py:271
8181 msgid "Username"
8282 msgstr "Anmeldename"
8383
84 #: account/forms.py:126
84 #: account/forms.py:132
8585 msgid "Username or e-mail"
8686 msgstr "Anmeldename oder E-Mail"
8787
88 #: account/forms.py:130
88 #: account/forms.py:135
8989 msgctxt "field label"
9090 msgid "Login"
9191 msgstr "Anmeldung"
9292
93 #: account/forms.py:299
93 #: account/forms.py:306
9494 msgid "E-mail (again)"
9595 msgstr "E-Mail (wiederholen)"
9696
97 #: account/forms.py:303
97 #: account/forms.py:310
9898 msgid "E-mail address confirmation"
9999 msgstr "Bestätigung der E-Mail-Adresse"
100100
101 #: account/forms.py:311
101 #: account/forms.py:318
102102 msgid "E-mail (optional)"
103103 msgstr "E-Mail (optional)"
104104
105 #: account/forms.py:351
105 #: account/forms.py:358
106106 msgid "You must type the same email each time."
107107 msgstr "Du musst zweimal dieselbe E-Mail-Adresse eingeben."
108108
109 #: account/forms.py:374 account/forms.py:487
109 #: account/forms.py:383 account/forms.py:498
110110 msgid "Password (again)"
111111 msgstr "Passwort (Wiederholung)"
112112
113 #: account/forms.py:438
113 #: account/forms.py:447
114114 msgid "This e-mail address is already associated with this account."
115115 msgstr "Diese E-Mail-Adresse wird bereits in diesem Konto verwendet."
116116
117 #: account/forms.py:441
117 #: account/forms.py:450
118118 msgid "This e-mail address is already associated with another account."
119119 msgstr "Diese E-Mail-Adresse wird bereits in einem anderen Konto verwendet."
120120
121 #: account/forms.py:443
121 #: account/forms.py:452
122122 #, fuzzy, python-format
123123 #| msgid "Your account has no verified e-mail address."
124124 msgid "You cannot add more than %d e-mail addresses."
125125 msgstr "Dein Konto hat keine bestätigte E-Mail-Adresse."
126126
127 #: account/forms.py:467
127 #: account/forms.py:477
128128 msgid "Current Password"
129129 msgstr "Aktuelles Passwort"
130130
131 #: account/forms.py:468 account/forms.py:557
131 #: account/forms.py:479 account/forms.py:569
132132 msgid "New Password"
133133 msgstr "Neues Passwort"
134134
135 #: account/forms.py:469 account/forms.py:558
135 #: account/forms.py:480 account/forms.py:570
136136 msgid "New Password (again)"
137137 msgstr "Neues Passwort (Wiederholung)"
138138
139 #: account/forms.py:477
139 #: account/forms.py:488
140140 msgid "Please type your current password."
141141 msgstr "Bitte gib dein aktuelles Passwort ein."
142142
143 #: account/forms.py:516
143 #: account/forms.py:528
144144 msgid "The e-mail address is not assigned to any user account"
145145 msgstr "Diese E-Mail-Adresse ist keinem Konto zugeordnet"
146146
147 #: account/forms.py:579
147 #: account/forms.py:591
148148 msgid "The password reset token was invalid."
149149 msgstr "Das Sicherheits-Token zum Zurücksetzen des Passwortes war ungültig."
150150
205205 msgid "Your account has no password set up."
206206 msgstr "Für dein Konto wurde noch kein Passwort festgelegt."
207207
208 #: socialaccount/adapter.py:141
208 #: socialaccount/adapter.py:138
209209 msgid "Your account has no verified e-mail address."
210210 msgstr "Dein Konto hat keine bestätigte E-Mail-Adresse."
211211
418418 "\n"
419419 "To confirm this is correct, go to %(activate_url)s"
420420 msgstr ""
421 "Du erhältst diese E-Mail, weil der Nutzer %(user_display)s von %(site_domain)s deine E-Mail-Adresse als seine angab, um sie mit seinem Konto zu verknüpfen.\n"
421 "Du erhältst diese E-Mail, weil der Nutzer %(user_display)s von "
422 "%(site_domain)s deine E-Mail-Adresse als seine angab, um sie mit seinem "
423 "Konto zu verknüpfen.\n"
422424 "\n"
423425 "Um dies zu bestätigen, rufe bitte folgende Adresse auf: %(activate_url)s"
424426
433435 "It can be safely ignored if you did not request a password reset. Click the "
434436 "link below to reset your password."
435437 msgstr ""
436 "Du erhältst diese E-Mail weil du oder jemand anderes die Zurücksetzung des Passwortes für dein Konto gefordert hat.\n"
437 "Falls es sich dabei nicht um dich handelt, kann diese Nachricht ignoriert werden. Rufe folgende Adresse auf um dein Passwort zurückzusetzen."
438 "Du erhältst diese E-Mail weil du oder jemand anderes die Zurücksetzung des "
439 "Passwortes für dein Konto gefordert hat.\n"
440 "Falls es sich dabei nicht um dich handelt, kann diese Nachricht ignoriert "
441 "werden. Rufe folgende Adresse auf um dein Passwort zurückzusetzen."
438442
439443 #: templates/account/email/password_reset_key_message.txt:9
440444 #, python-format
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2020-10-11 11:15-0500\n"
10 "POT-Creation-Date: 2021-07-11 07:33-0500\n"
1111 "PO-Revision-Date: 2014-08-12 00:29+0200\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
3838 msgid "Accounts"
3939 msgstr "Λογαριασμοί"
4040
41 #: account/forms.py:58 account/forms.py:403
41 #: account/forms.py:58 account/forms.py:412
4242 msgid "You must type the same password each time."
4343 msgstr "Πρέπει να δοθεί το ίδιο συνθηματικό κάθε φορά."
4444
45 #: account/forms.py:87 account/forms.py:372 account/forms.py:486
45 #: account/forms.py:91 account/forms.py:380 account/forms.py:497
4646 msgid "Password"
4747 msgstr "Συνθηματικό"
4848
49 #: account/forms.py:88
49 #: account/forms.py:92
5050 msgid "Remember Me"
5151 msgstr "Αυτόματη Σύνδεση"
5252
53 #: account/forms.py:92
53 #: account/forms.py:96
5454 msgid "This account is currently inactive."
5555 msgstr "Αυτός ο λογαριασμός είναι ανενεργός."
5656
57 #: account/forms.py:94
57 #: account/forms.py:98
5858 msgid "The e-mail address and/or password you specified are not correct."
5959 msgstr "Η διέυθυνση e-mail ή/και το συνθηματικό που δόθηκαν δεν είναι σωστά."
6060
61 #: account/forms.py:97
61 #: account/forms.py:101
6262 msgid "The username and/or password you specified are not correct."
6363 msgstr "Το όνομα χρήστη ή/και το συνθηματικό που δόθηκαν δεν είναι σωστά."
6464
65 #: account/forms.py:108 account/forms.py:273 account/forms.py:429
66 #: account/forms.py:505
65 #: account/forms.py:112 account/forms.py:278 account/forms.py:438
66 #: account/forms.py:516
6767 msgid "E-mail address"
6868 msgstr "Διεύθυνση e-mail"
6969
70 #: account/forms.py:111 account/forms.py:308 account/forms.py:426
71 #: account/forms.py:500
70 #: account/forms.py:116 account/forms.py:315 account/forms.py:435
71 #: account/forms.py:511
7272 msgid "E-mail"
7373 msgstr "E-mail"
7474
75 #: account/forms.py:113 account/forms.py:115 account/forms.py:263
76 #: account/forms.py:267
75 #: account/forms.py:119 account/forms.py:122 account/forms.py:268
76 #: account/forms.py:271
7777 msgid "Username"
7878 msgstr "Όνομα χρήστη"
7979
80 #: account/forms.py:126
80 #: account/forms.py:132
8181 msgid "Username or e-mail"
8282 msgstr "Όνομα χρήστη ή e-mail"
8383
84 #: account/forms.py:130
84 #: account/forms.py:135
8585 msgctxt "field label"
8686 msgid "Login"
8787 msgstr "Σύνδεση"
8888
89 #: account/forms.py:299
89 #: account/forms.py:306
9090 #, fuzzy
9191 #| msgid "E-mail (optional)"
9292 msgid "E-mail (again)"
9393 msgstr "E-mail (επιβεβαίωση)"
9494
95 #: account/forms.py:303
95 #: account/forms.py:310
9696 #, fuzzy
9797 #| msgid "email confirmation"
9898 msgid "E-mail address confirmation"
9999 msgstr "Επιβεβαίωση διεύθυνσης e-mail"
100100
101 #: account/forms.py:311
101 #: account/forms.py:318
102102 msgid "E-mail (optional)"
103103 msgstr "E-mail (προαιρετικό)"
104104
105 #: account/forms.py:351
105 #: account/forms.py:358
106106 #, fuzzy
107107 #| msgid "You must type the same password each time."
108108 msgid "You must type the same email each time."
109109 msgstr "Πρέπει να δοθεί το ίδιο email κάθε φορά."
110110
111 #: account/forms.py:374 account/forms.py:487
111 #: account/forms.py:383 account/forms.py:498
112112 msgid "Password (again)"
113113 msgstr "Συνθηματικό (επιβεβαίωση)"
114114
115 #: account/forms.py:438
115 #: account/forms.py:447
116116 msgid "This e-mail address is already associated with this account."
117117 msgstr "Αυτό το e-mail χρησιμοποιείται ήδη από αυτό το λογαριασμό."
118118
119 #: account/forms.py:441
119 #: account/forms.py:450
120120 msgid "This e-mail address is already associated with another account."
121121 msgstr "Αυτό το e-mail χρησιμοποιείται ήδη από άλλο λογαριασμό."
122122
123 #: account/forms.py:443
123 #: account/forms.py:452
124124 #, fuzzy, python-format
125125 #| msgid "Your account has no verified e-mail address."
126126 msgid "You cannot add more than %d e-mail addresses."
127127 msgstr "Δεν έχει επιβεβαιωθεί κανένα e-mail του λογαριασμού σας."
128128
129 #: account/forms.py:467
129 #: account/forms.py:477
130130 msgid "Current Password"
131131 msgstr "Τρέχον συνθηματικό"
132132
133 #: account/forms.py:468 account/forms.py:557
133 #: account/forms.py:479 account/forms.py:569
134134 msgid "New Password"
135135 msgstr "Νέο συνθηματικό"
136136
137 #: account/forms.py:469 account/forms.py:558
137 #: account/forms.py:480 account/forms.py:570
138138 msgid "New Password (again)"
139139 msgstr "Νέο συνθηματικό (επιβεβαίωση)"
140140
141 #: account/forms.py:477
141 #: account/forms.py:488
142142 msgid "Please type your current password."
143143 msgstr "Παρακαλώ γράψτε το τρέχον συνθηματικό σας."
144144
145 #: account/forms.py:516
145 #: account/forms.py:528
146146 msgid "The e-mail address is not assigned to any user account"
147147 msgstr "Το e-mail δεν χρησιμοποιείται από κανέναν λογαριασμό"
148148
149 #: account/forms.py:579
149 #: account/forms.py:591
150150 msgid "The password reset token was invalid."
151151 msgstr "Το κουπόνι επαναφοράς του συνθηματικού δεν ήταν έγκυρο."
152152
207207 msgid "Your account has no password set up."
208208 msgstr "Δεν έχει οριστεί συνθηματικό στον λογαριασμό σας."
209209
210 #: socialaccount/adapter.py:141
210 #: socialaccount/adapter.py:138
211211 msgid "Your account has no verified e-mail address."
212212 msgstr "Δεν έχει επιβεβαιωθεί κανένα e-mail του λογαριασμού σας."
213213
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2020-10-11 11:15-0500\n"
10 "POT-Creation-Date: 2021-07-11 07:33-0500\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1515 "MIME-Version: 1.0\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
18 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1819
1920 #: account/adapter.py:45
2021 msgid "Username can not be used. Please use other username."
3738 msgid "Accounts"
3839 msgstr ""
3940
40 #: account/forms.py:58 account/forms.py:403
41 #: account/forms.py:58 account/forms.py:412
4142 msgid "You must type the same password each time."
4243 msgstr ""
4344
44 #: account/forms.py:87 account/forms.py:372 account/forms.py:486
45 #: account/forms.py:91 account/forms.py:380 account/forms.py:497
4546 msgid "Password"
4647 msgstr ""
4748
48 #: account/forms.py:88
49 #: account/forms.py:92
4950 msgid "Remember Me"
5051 msgstr ""
5152
52 #: account/forms.py:92
53 #: account/forms.py:96
5354 msgid "This account is currently inactive."
5455 msgstr ""
5556
56 #: account/forms.py:94
57 #: account/forms.py:98
5758 msgid "The e-mail address and/or password you specified are not correct."
5859 msgstr ""
5960
60 #: account/forms.py:97
61 #: account/forms.py:101
6162 msgid "The username and/or password you specified are not correct."
6263 msgstr ""
6364
64 #: account/forms.py:108 account/forms.py:273 account/forms.py:429
65 #: account/forms.py:505
65 #: account/forms.py:112 account/forms.py:278 account/forms.py:438
66 #: account/forms.py:516
6667 msgid "E-mail address"
6768 msgstr ""
6869
69 #: account/forms.py:111 account/forms.py:308 account/forms.py:426
70 #: account/forms.py:500
70 #: account/forms.py:116 account/forms.py:315 account/forms.py:435
71 #: account/forms.py:511
7172 msgid "E-mail"
7273 msgstr ""
7374
74 #: account/forms.py:113 account/forms.py:115 account/forms.py:263
75 #: account/forms.py:267
75 #: account/forms.py:119 account/forms.py:122 account/forms.py:268
76 #: account/forms.py:271
7677 msgid "Username"
7778 msgstr ""
7879
79 #: account/forms.py:126
80 #: account/forms.py:132
8081 msgid "Username or e-mail"
8182 msgstr ""
8283
83 #: account/forms.py:130
84 #: account/forms.py:135
8485 msgctxt "field label"
8586 msgid "Login"
8687 msgstr ""
8788
88 #: account/forms.py:299
89 #: account/forms.py:306
8990 msgid "E-mail (again)"
9091 msgstr ""
9192
92 #: account/forms.py:303
93 #: account/forms.py:310
9394 msgid "E-mail address confirmation"
9495 msgstr ""
9596
96 #: account/forms.py:311
97 #: account/forms.py:318
9798 msgid "E-mail (optional)"
9899 msgstr ""
99100
100 #: account/forms.py:351
101 #: account/forms.py:358
101102 msgid "You must type the same email each time."
102103 msgstr ""
103104
104 #: account/forms.py:374 account/forms.py:487
105 #: account/forms.py:383 account/forms.py:498
105106 msgid "Password (again)"
106107 msgstr ""
107108
108 #: account/forms.py:438
109 #: account/forms.py:447
109110 msgid "This e-mail address is already associated with this account."
110111 msgstr ""
111112
112 #: account/forms.py:441
113 #: account/forms.py:450
113114 msgid "This e-mail address is already associated with another account."
114115 msgstr ""
115116
116 #: account/forms.py:443
117 #: account/forms.py:452
117118 #, python-format
118119 msgid "You cannot add more than %d e-mail addresses."
119120 msgstr ""
120121
121 #: account/forms.py:467
122 #: account/forms.py:477
122123 msgid "Current Password"
123124 msgstr ""
124125
125 #: account/forms.py:468 account/forms.py:557
126 #: account/forms.py:479 account/forms.py:569
126127 msgid "New Password"
127128 msgstr ""
128129
129 #: account/forms.py:469 account/forms.py:558
130 #: account/forms.py:480 account/forms.py:570
130131 msgid "New Password (again)"
131132 msgstr ""
132133
133 #: account/forms.py:477
134 #: account/forms.py:488
134135 msgid "Please type your current password."
135136 msgstr ""
136137
137 #: account/forms.py:516
138 #: account/forms.py:528
138139 msgid "The e-mail address is not assigned to any user account"
139140 msgstr ""
140141
141 #: account/forms.py:579
142 #: account/forms.py:591
142143 msgid "The password reset token was invalid."
143144 msgstr ""
144145
197198 msgid "Your account has no password set up."
198199 msgstr ""
199200
200 #: socialaccount/adapter.py:141
201 #: socialaccount/adapter.py:138
201202 msgid "Your account has no verified e-mail address."
202203 msgstr ""
203204
66 msgstr ""
77 "Project-Id-Version: django-allauth\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2020-10-11 11:15-0500\n"
9 "POT-Creation-Date: 2021-07-11 07:33-0500\n"
1010 "PO-Revision-Date: 2018-02-14 17:46-0600\n"
1111 "Last-Translator: Jannis Š\n"
1212 "Language-Team: Spanish (http://www.transifex.com/projects/p/django-allauth/"
3939 msgid "Accounts"
4040 msgstr "Cuentas"
4141
42 #: account/forms.py:58 account/forms.py:403
42 #: account/forms.py:58 account/forms.py:412
4343 msgid "You must type the same password each time."
4444 msgstr "Debes escribir la misma contraseña cada vez."
4545
46 #: account/forms.py:87 account/forms.py:372 account/forms.py:486
46 #: account/forms.py:91 account/forms.py:380 account/forms.py:497
4747 msgid "Password"
4848 msgstr "Contraseña"
4949
50 #: account/forms.py:88
50 #: account/forms.py:92
5151 msgid "Remember Me"
5252 msgstr "Recordarme"
5353
54 #: account/forms.py:92
54 #: account/forms.py:96
5555 msgid "This account is currently inactive."
5656 msgstr "Esta cuenta está desactivada actualmente."
5757
58 #: account/forms.py:94
58 #: account/forms.py:98
5959 msgid "The e-mail address and/or password you specified are not correct."
6060 msgstr ""
6161 "El correo electrónico y/o la contraseña que especificaste no son correctos."
6262
63 #: account/forms.py:97
63 #: account/forms.py:101
6464 msgid "The username and/or password you specified are not correct."
6565 msgstr "El usuario y/o la contraseña que especificaste no son correctos."
6666
67 #: account/forms.py:108 account/forms.py:273 account/forms.py:429
68 #: account/forms.py:505
67 #: account/forms.py:112 account/forms.py:278 account/forms.py:438
68 #: account/forms.py:516
6969 msgid "E-mail address"
7070 msgstr "Correo electrónico"
7171
72 #: account/forms.py:111 account/forms.py:308 account/forms.py:426
73 #: account/forms.py:500
72 #: account/forms.py:116 account/forms.py:315 account/forms.py:435
73 #: account/forms.py:511
7474 msgid "E-mail"
7575 msgstr "Correo electrónico"
7676
77 #: account/forms.py:113 account/forms.py:115 account/forms.py:263
78 #: account/forms.py:267
77 #: account/forms.py:119 account/forms.py:122 account/forms.py:268
78 #: account/forms.py:271
7979 msgid "Username"
8080 msgstr "Usuario"
8181
82 #: account/forms.py:126
82 #: account/forms.py:132
8383 msgid "Username or e-mail"
8484 msgstr "Nombre de usuario o correo electrónico"
8585
86 #: account/forms.py:130
86 #: account/forms.py:135
8787 msgctxt "field label"
8888 msgid "Login"
8989 msgstr "Iniciar sesión"
9090
91 #: account/forms.py:299
91 #: account/forms.py:306
9292 msgid "E-mail (again)"
9393 msgstr "Correo Electrónico (otra vez)"
9494
95 #: account/forms.py:303
95 #: account/forms.py:310
9696 msgid "E-mail address confirmation"
9797 msgstr "Confirmación de la dirección de correo electrónico"
9898
99 #: account/forms.py:311
99 #: account/forms.py:318
100100 msgid "E-mail (optional)"
101101 msgstr "Correo Electrónico (opcional)"
102102
103 #: account/forms.py:351
103 #: account/forms.py:358
104104 msgid "You must type the same email each time."
105105 msgstr "Debe escribir el mismo correo electrónico cada vez."
106106
107 #: account/forms.py:374 account/forms.py:487
107 #: account/forms.py:383 account/forms.py:498
108108 msgid "Password (again)"
109109 msgstr "Contraseña (de nuevo)"
110110
111 #: account/forms.py:438
111 #: account/forms.py:447
112112 msgid "This e-mail address is already associated with this account."
113113 msgstr "Este correo electrónico ya está asociado con esta cuenta."
114114
115 #: account/forms.py:441
115 #: account/forms.py:450
116116 msgid "This e-mail address is already associated with another account."
117117 msgstr "Este correo electrónico ya está asociado con otra cuenta."
118118
119 #: account/forms.py:443
119 #: account/forms.py:452
120120 #, fuzzy, python-format
121121 #| msgid "Your account has no verified e-mail address."
122122 msgid "You cannot add more than %d e-mail addresses."
123123 msgstr "Tu cuenta no tiene un correo electrónico verificado."
124124
125 #: account/forms.py:467
125 #: account/forms.py:477
126126 msgid "Current Password"
127127 msgstr "Contraseña actual"
128128
129 #: account/forms.py:468 account/forms.py:557
129 #: account/forms.py:479 account/forms.py:569
130130 msgid "New Password"
131131 msgstr "Nueva contraseña"
132132
133 #: account/forms.py:469 account/forms.py:558
133 #: account/forms.py:480 account/forms.py:570
134134 msgid "New Password (again)"
135135 msgstr "Nueva contraseña (de nuevo)"
136136
137 #: account/forms.py:477
137 #: account/forms.py:488
138138 msgid "Please type your current password."
139139 msgstr "Por favor, escribe tu contraseña actual."
140140
141 #: account/forms.py:516
141 #: account/forms.py:528
142142 msgid "The e-mail address is not assigned to any user account"
143143 msgstr ""
144144 "La dirección de correo electrónico no está asignada a ninguna cuenta de "
145145 "usuario"
146146
147 #: account/forms.py:579
147 #: account/forms.py:591
148148 msgid "The password reset token was invalid."
149149 msgstr ""
150150
205205 msgid "Your account has no password set up."
206206 msgstr "Tu cuenta no tiene una contraseña definida."
207207
208 #: socialaccount/adapter.py:141
208 #: socialaccount/adapter.py:138
209209 msgid "Your account has no verified e-mail address."
210210 msgstr "Tu cuenta no tiene un correo electrónico verificado."
211211
66 msgstr ""
77 "Project-Id-Version: django-allauth\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2020-10-11 11:15-0500\n"
9 "POT-Creation-Date: 2021-07-11 07:33-0500\n"
1010 "PO-Revision-Date: 2018-08-29 08:16+0200\n"
1111 "Last-Translator: Eneko Illarramendi <eneko@illarra.com>\n"
1212 "Language-Team: Basque <translate@tropela.eus>\n"
4040 msgid "Accounts"
4141 msgstr "Kontuak"
4242
43 #: account/forms.py:58 account/forms.py:403
43 #: account/forms.py:58 account/forms.py:412
4444 msgid "You must type the same password each time."
4545 msgstr "Pasahitz berdina idatzi behar duzu aldi bakoitzean."
4646
47 #: account/forms.py:87 account/forms.py:372 account/forms.py:486
47 #: account/forms.py:91 account/forms.py:380 account/forms.py:497
4848 msgid "Password"
4949 msgstr "Pasahitza"
5050
51 #: account/forms.py:88
51 #: account/forms.py:92
5252 msgid "Remember Me"
5353 msgstr "Gogora nazazue"
5454
55 #: account/forms.py:92
55 #: account/forms.py:96
5656 msgid "This account is currently inactive."
5757 msgstr "Kontu hau ez dago aktiboa orain."
5858
59 #: account/forms.py:94
59 #: account/forms.py:98
6060 msgid "The e-mail address and/or password you specified are not correct."
6161 msgstr "Sartutako helbide elektronikoa eta/edo pasahitza ez dira zuzenak."
6262
63 #: account/forms.py:97
63 #: account/forms.py:101
6464 msgid "The username and/or password you specified are not correct."
6565 msgstr "Sartutako erabiltzailea eta/edo pasahitza ez dira zuzenak."
6666
67 #: account/forms.py:108 account/forms.py:273 account/forms.py:429
68 #: account/forms.py:505
67 #: account/forms.py:112 account/forms.py:278 account/forms.py:438
68 #: account/forms.py:516
6969 msgid "E-mail address"
7070 msgstr "Helbide elektronikoa"
7171
72 #: account/forms.py:111 account/forms.py:308 account/forms.py:426
73 #: account/forms.py:500
72 #: account/forms.py:116 account/forms.py:315 account/forms.py:435
73 #: account/forms.py:511
7474 msgid "E-mail"
7575 msgstr "Emaila"
7676
77 #: account/forms.py:113 account/forms.py:115 account/forms.py:263
78 #: account/forms.py:267
77 #: account/forms.py:119 account/forms.py:122 account/forms.py:268
78 #: account/forms.py:271
7979 msgid "Username"
8080 msgstr "Erabiltzailea"
8181
82 #: account/forms.py:126
82 #: account/forms.py:132
8383 msgid "Username or e-mail"
8484 msgstr "Erabiltzailea edo emaila"
8585
86 #: account/forms.py:130
86 #: account/forms.py:135
8787 msgctxt "field label"
8888 msgid "Login"
8989 msgstr "Logina"
9090
91 #: account/forms.py:299
91 #: account/forms.py:306
9292 msgid "E-mail (again)"
9393 msgstr "Emaila (berriro)"
9494
95 #: account/forms.py:303
95 #: account/forms.py:310
9696 msgid "E-mail address confirmation"
9797 msgstr "Helbide elektronikoaren egiaztapena"
9898
99 #: account/forms.py:311
99 #: account/forms.py:318
100100 msgid "E-mail (optional)"
101101 msgstr "Emaila (hautazkoa)"
102102
103 #: account/forms.py:351
103 #: account/forms.py:358
104104 msgid "You must type the same email each time."
105105 msgstr "Email berdina idatzi behar duzu aldi bakoitzean."
106106
107 #: account/forms.py:374 account/forms.py:487
107 #: account/forms.py:383 account/forms.py:498
108108 msgid "Password (again)"
109109 msgstr "Pasahitza (berriro)"
110110
111 #: account/forms.py:438
111 #: account/forms.py:447
112112 msgid "This e-mail address is already associated with this account."
113113 msgstr "Helbide elektroniko hau dagoeneko kontu honi lotuta dago."
114114
115 #: account/forms.py:441
115 #: account/forms.py:450
116116 msgid "This e-mail address is already associated with another account."
117117 msgstr "Helbide elektroniko hau dagoeneko beste kontu bati lotuta dago."
118118
119 #: account/forms.py:443
119 #: account/forms.py:452
120120 #, fuzzy, python-format
121121 #| msgid "Your account has no verified e-mail address."
122122 msgid "You cannot add more than %d e-mail addresses."
123123 msgstr "Zure kontuak ez du egiaztatutako emailik."
124124
125 #: account/forms.py:467
125 #: account/forms.py:477
126126 msgid "Current Password"
127127 msgstr "Oraingo pasahitza"
128128
129 #: account/forms.py:468 account/forms.py:557
129 #: account/forms.py:479 account/forms.py:569
130130 msgid "New Password"
131131 msgstr "Pasahitz berria"
132132
133 #: account/forms.py:469 account/forms.py:558
133 #: account/forms.py:480 account/forms.py:570
134134 msgid "New Password (again)"
135135 msgstr "Pasahitz berria (berriro)"
136136
137 #: account/forms.py:477
137 #: account/forms.py:488
138138 msgid "Please type your current password."
139139 msgstr "Mesedez idatzi zure oraingo pasahitza."
140140
141 #: account/forms.py:516
141 #: account/forms.py:528
142142 msgid "The e-mail address is not assigned to any user account"
143143 msgstr "Helbide elektroniko hau ez dago kontu bati lotuta"
144144
145 #: account/forms.py:579
145 #: account/forms.py:591
146146 msgid "The password reset token was invalid."
147147 msgstr "Pasahitza berrezartzeko \"token\"-a baliogabea da."
148148
203203 msgid "Your account has no password set up."
204204 msgstr "Zure kontuak ez du pasahitzik zehaztuta."
205205
206 #: socialaccount/adapter.py:141
206 #: socialaccount/adapter.py:138
207207 msgid "Your account has no verified e-mail address."
208208 msgstr "Zure kontuak ez du egiaztatutako emailik."
209209
55 msgstr ""
66 "Project-Id-Version: \n"
77 "Report-Msgid-Bugs-To: \n"
8 "POT-Creation-Date: 2020-10-11 11:15-0500\n"
8 "POT-Creation-Date: 2021-07-11 07:33-0500\n"
99 "PO-Revision-Date: 2020-06-14 17:00-0000\n"
1010 "Last-Translator: Mohammad Ali Amini <hakhsin@gmail.com>\n"
1111 "Language-Team: \n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
1616 "X-Generator: Poedit 1.7.4\n"
17 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
1718
1819 #: account/adapter.py:45
1920 msgid "Username can not be used. Please use other username."
3738 msgid "Accounts"
3839 msgstr "حساب‌ها"
3940
40 #: account/forms.py:58 account/forms.py:403
41 #: account/forms.py:58 account/forms.py:412
4142 msgid "You must type the same password each time."
4243 msgstr "هربار باید گذرواژه‌ی یکسانی وارد کنی."
4344
44 #: account/forms.py:87 account/forms.py:372 account/forms.py:486
45 #: account/forms.py:91 account/forms.py:380 account/forms.py:497
4546 msgid "Password"
4647 msgstr "گذرواژه"
4748
48 #: account/forms.py:88
49 #: account/forms.py:92
4950 msgid "Remember Me"
5051 msgstr "مرا به یادآور"
5152
52 #: account/forms.py:92
53 #: account/forms.py:96
5354 msgid "This account is currently inactive."
5455 msgstr "اکنون این حساب غیرفعال است."
5556
56 #: account/forms.py:94
57 #: account/forms.py:98
5758 msgid "The e-mail address and/or password you specified are not correct."
5859 msgstr "نشانی رایانامه یا گذرواژه نادرست است."
5960
60 #: account/forms.py:97
61 #: account/forms.py:101
6162 msgid "The username and/or password you specified are not correct."
6263 msgstr "نام‌کاربری یا گذرواژه نادرست است."
6364
64 #: account/forms.py:108 account/forms.py:273 account/forms.py:429
65 #: account/forms.py:505
65 #: account/forms.py:112 account/forms.py:278 account/forms.py:438
66 #: account/forms.py:516
6667 msgid "E-mail address"
6768 msgstr "نشانی رایانامه"
6869
69 #: account/forms.py:111 account/forms.py:308 account/forms.py:426
70 #: account/forms.py:500
70 #: account/forms.py:116 account/forms.py:315 account/forms.py:435
71 #: account/forms.py:511
7172 msgid "E-mail"
7273 msgstr "رایانامه"
7374
74 #: account/forms.py:113 account/forms.py:115 account/forms.py:263
75 #: account/forms.py:267
75 #: account/forms.py:119 account/forms.py:122 account/forms.py:268
76 #: account/forms.py:271
7677 msgid "Username"
7778 msgstr "نام‌کاربری"
7879
79 #: account/forms.py:126
80 #: account/forms.py:132
8081 msgid "Username or e-mail"
8182 msgstr "نام‌کاربری ویا رایانامه"
8283
83 #: account/forms.py:130
84 #: account/forms.py:135
8485 msgctxt "field label"
8586 msgid "Login"
8687 msgstr "ورود"
8788
88 #: account/forms.py:299
89 #: account/forms.py:306
8990 #, fuzzy
9091 #| msgid "E-mail (optional)"
9192 msgid "E-mail (again)"
9293 msgstr "رایانامه (ازنو)"
9394
94 #: account/forms.py:303
95 #: account/forms.py:310
9596 #, fuzzy
9697 #| msgid "email confirmation"
9798 msgid "E-mail address confirmation"
9899 msgstr "تاییدیه‌ی نشانی رایانامه"
99100
100 #: account/forms.py:311
101 #: account/forms.py:318
101102 msgid "E-mail (optional)"
102103 msgstr "رایانامه (اختیاری)"
103104
104 #: account/forms.py:351
105 #: account/forms.py:358
105106 #, fuzzy
106107 #| msgid "You must type the same password each time."
107108 msgid "You must type the same email each time."
108109 msgstr "هربار باید رایانامه‌ی یکسانی وارد کنی."
109110
110 #: account/forms.py:374 account/forms.py:487
111 #: account/forms.py:383 account/forms.py:498
111112 msgid "Password (again)"
112113 msgstr "گذرواژه (ازنو)"
113114
114 #: account/forms.py:438
115 #: account/forms.py:447
115116 #, fuzzy
116117 #| msgid "This e-mail address is already associated with another account."
117118 msgid "This e-mail address is already associated with this account."
118119 msgstr "این نشانی رایانامه ازقبل به این حساب وصل شده."
119120
120 #: account/forms.py:441
121 #: account/forms.py:450
121122 msgid "This e-mail address is already associated with another account."
122123 msgstr "این نشانی رایانامه ازقبل به حساب دیگری وصل شده."
123124
124 #: account/forms.py:443
125 #: account/forms.py:452
125126 #, fuzzy, python-format
126127 #| msgid "Your account has no verified e-mail address."
127128 msgid "You cannot add more than %d e-mail addresses."
128129 msgstr "حساب‌ات هیچ رایانامه‌ي تایید‌شده‌ای ندارد."
129130
130 #: account/forms.py:467
131 #: account/forms.py:477
131132 msgid "Current Password"
132133 msgstr "گذرواژه کنونی"
133134
134 #: account/forms.py:468 account/forms.py:557
135 #: account/forms.py:479 account/forms.py:569
135136 msgid "New Password"
136137 msgstr "گذرواژه جدید"
137138
138 #: account/forms.py:469 account/forms.py:558
139 #: account/forms.py:480 account/forms.py:570
139140 msgid "New Password (again)"
140141 msgstr "گذرواژه جدید (ازنو)"
141142
142 #: account/forms.py:477
143 #: account/forms.py:488
143144 msgid "Please type your current password."
144145 msgstr "لطفا گذرواژه کنونی‌‌ات را وارد کن."
145146
146 #: account/forms.py:516
147 #: account/forms.py:528
147148 msgid "The e-mail address is not assigned to any user account"
148149 msgstr "این نشانی رایانامه به هیچ حساب کاربری‌ای منتسب نشده."
149150
150 #: account/forms.py:579
151 #: account/forms.py:591
151152 msgid "The password reset token was invalid."
152153 msgstr "توکن بازنشانی گذرواژه نامعتبر است."
153154
208209 msgid "Your account has no password set up."
209210 msgstr "هیچ گذرواژه‌ای برای حساب‌ات نهاده نشده."
210211
211 #: socialaccount/adapter.py:141
212 #: socialaccount/adapter.py:138
212213 msgid "Your account has no verified e-mail address."
213214 msgstr "حساب‌ات هیچ رایانامه‌ي تایید‌شده‌ای ندارد."
214215
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2020-10-11 11:15-0500\n"
10 "POT-Creation-Date: 2021-07-11 07:33-0500\n"
1111 "PO-Revision-Date: 2020-10-15 19:56+0200\n"
1212 "Last-Translator: Anonymous User <seppo.erviala@iki.fi>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
4040 msgid "Accounts"
4141 msgstr "Tili"
4242
43 #: account/forms.py:58 account/forms.py:403
43 #: account/forms.py:58 account/forms.py:412
4444 msgid "You must type the same password each time."
4545 msgstr "Salasanojen tulee olla samat."
4646
47 #: account/forms.py:87 account/forms.py:372 account/forms.py:486
47 #: account/forms.py:91 account/forms.py:380 account/forms.py:497
4848 msgid "Password"
4949 msgstr "Salasana"
5050
51 #: account/forms.py:88
51 #: account/forms.py:92
5252 msgid "Remember Me"
5353 msgstr "Muista minut"
5454
55 #: account/forms.py:92
55 #: account/forms.py:96
5656 msgid "This account is currently inactive."
5757 msgstr "Tämä tili on poistettu käytöstä."
5858
59 #: account/forms.py:94
59 #: account/forms.py:98
6060 msgid "The e-mail address and/or password you specified are not correct."
6161 msgstr "Annettu sähköposti tai salasana ei ole oikein."
6262
63 #: account/forms.py:97
63 #: account/forms.py:101
6464 msgid "The username and/or password you specified are not correct."
6565 msgstr "Annettu käyttäjänimi tai salasana ei ole oikein."
6666
67 #: account/forms.py:108 account/forms.py:273 account/forms.py:429
68 #: account/forms.py:505
67 #: account/forms.py:112 account/forms.py:278 account/forms.py:438
68 #: account/forms.py:516
6969 msgid "E-mail address"
7070 msgstr "Sähköpostiosoite"
7171
72 #: account/forms.py:111 account/forms.py:308 account/forms.py:426
73 #: account/forms.py:500
72 #: account/forms.py:116 account/forms.py:315 account/forms.py:435
73 #: account/forms.py:511
7474 msgid "E-mail"
7575 msgstr "Sähköposti"
7676
77 #: account/forms.py:113 account/forms.py:115 account/forms.py:263
78 #: account/forms.py:267
77 #: account/forms.py:119 account/forms.py:122 account/forms.py:268
78 #: account/forms.py:271
7979 msgid "Username"
8080 msgstr "Käyttäjänimi"
8181
82 #: account/forms.py:126
82 #: account/forms.py:132
8383 msgid "Username or e-mail"
8484 msgstr "Käyttäjänimi tai sähköposti"
8585
86 #: account/forms.py:130
86 #: account/forms.py:135
8787 msgctxt "field label"
8888 msgid "Login"
8989 msgstr "Käyttäjätunnus"
9090
91 #: account/forms.py:299
91 #: account/forms.py:306
9292 #, fuzzy
9393 #| msgid "E-mail (optional)"
9494 msgid "E-mail (again)"
9595 msgstr "Sähköpostiosoite (valinnainen)"
9696
97 #: account/forms.py:303
97 #: account/forms.py:310
9898 #, fuzzy
9999 #| msgid "email confirmation"
100100 msgid "E-mail address confirmation"
101101 msgstr "sähköpostivarmistus"
102102
103 #: account/forms.py:311
103 #: account/forms.py:318
104104 msgid "E-mail (optional)"
105105 msgstr "Sähköpostiosoite (valinnainen)"
106106
107 #: account/forms.py:351
107 #: account/forms.py:358
108108 #, fuzzy
109109 #| msgid "You must type the same password each time."
110110 msgid "You must type the same email each time."
111111 msgstr "Salasanojen tulee olla samat."
112112
113 #: account/forms.py:374 account/forms.py:487
113 #: account/forms.py:383 account/forms.py:498
114114 msgid "Password (again)"
115115 msgstr "Salasana (uudestaan)"
116116
117 #: account/forms.py:438
117 #: account/forms.py:447
118118 msgid "This e-mail address is already associated with this account."
119119 msgstr "Sähköpostiosoite on jo liitetty tähän tilliin."
120120
121 #: account/forms.py:441
121 #: account/forms.py:450
122122 msgid "This e-mail address is already associated with another account."
123123 msgstr "Sähköpostiosoite on jo liitetty toiseen tiliin."
124124
125 #: account/forms.py:443
125 #: account/forms.py:452
126126 #, fuzzy, python-format
127127 #| msgid "Your account has no verified e-mail address."
128128 msgid "You cannot add more than %d e-mail addresses."
129129 msgstr "Tiliisi ei ole liitetty vahvistettua sähköpostiosoitetta."
130130
131 #: account/forms.py:467
131 #: account/forms.py:477
132132 msgid "Current Password"
133133 msgstr "Nykyinen salasana"
134134
135 #: account/forms.py:468 account/forms.py:557
135 #: account/forms.py:479 account/forms.py:569
136136 msgid "New Password"
137137 msgstr "Uusi salasana"
138138
139 #: account/forms.py:469 account/forms.py:558
139 #: account/forms.py:480 account/forms.py:570
140140 msgid "New Password (again)"
141141 msgstr "Uusi salasana (uudestaan)"
142142
143 #: account/forms.py:477
143 #: account/forms.py:488
144144 msgid "Please type your current password."
145145 msgstr "Ole hyvä ja anna nykyinen salasanasi."
146146
147 #: account/forms.py:516
147 #: account/forms.py:528
148148 msgid "The e-mail address is not assigned to any user account"
149149 msgstr "Sähköpostiosoite ei vastaa yhtäkään käyttäjätiliä."
150150
151 #: account/forms.py:579
151 #: account/forms.py:591
152152 msgid "The password reset token was invalid."
153153 msgstr "Salasanan uusimistarkiste ei kelpaa."
154154
209209 msgid "Your account has no password set up."
210210 msgstr "Tilillesi ei ole asetettu salasanaa."
211211
212 #: socialaccount/adapter.py:141
212 #: socialaccount/adapter.py:138
213213 msgid "Your account has no verified e-mail address."
214214 msgstr "Tiliisi ei ole liitetty vahvistettua sähköpostiosoitetta."
215215
421421 "\n"
422422 "To confirm this is correct, go to %(activate_url)s"
423423 msgstr ""
424 "Sait tämän viestin, koska käyttäjä %(user_display)s palvelusta %(site_domain)s antoi sähköpostiosoitteesi liitettäväksi tiliinsä.\n"
424 "Sait tämän viestin, koska käyttäjä %(user_display)s palvelusta "
425 "%(site_domain)s antoi sähköpostiosoitteesi liitettäväksi tiliinsä.\n"
425426 "\n"
426427 "Vahvistaaksesi tiedot oikeiksi mene osoitteeseen %(activate_url)s"
427428
436437 "It can be safely ignored if you did not request a password reset. Click the "
437438 "link below to reset your password."
438439 msgstr ""
439 "Sait tämän sähköpostin, koska sinä tai joku muu on pyytänyt salasasi uusimista palvelussa %(site_domain)s.\n"
440 "Tämän viestin voi jättää huomiotta, jos et pyytänyt salasanan uusimista. Klikkaa alla olevaa linkkiä uusiaksesi salasanasi."
440 "Sait tämän sähköpostin, koska sinä tai joku muu on pyytänyt salasasi "
441 "uusimista palvelussa %(site_domain)s.\n"
442 "Tämän viestin voi jättää huomiotta, jos et pyytänyt salasanan uusimista. "
443 "Klikkaa alla olevaa linkkiä uusiaksesi salasanasi."
441444
442445 #: templates/account/email/password_reset_key_message.txt:9
443446 #, python-format
99 msgstr ""
1010 "Project-Id-Version: django-allauth\n"
1111 "Report-Msgid-Bugs-To: \n"
12 "POT-Creation-Date: 2020-10-11 11:15-0500\n"
12 "POT-Creation-Date: 2021-07-11 07:33-0500\n"
1313 "PO-Revision-Date: 2020-10-15 19:47+0200\n"
1414 "Last-Translator: Gilou <contact+dev@gilouweb.com>\n"
1515 "Language-Team: français <>\n"
4242 msgid "Accounts"
4343 msgstr "Comptes"
4444
45 #: account/forms.py:58 account/forms.py:403
45 #: account/forms.py:58 account/forms.py:412
4646 msgid "You must type the same password each time."
4747 msgstr "Vous devez saisir deux fois le même mot de passe."
4848
49 #: account/forms.py:87 account/forms.py:372 account/forms.py:486
49 #: account/forms.py:91 account/forms.py:380 account/forms.py:497
5050 msgid "Password"
5151 msgstr "Mot de passe"
5252
53 #: account/forms.py:88
53 #: account/forms.py:92
5454 msgid "Remember Me"
5555 msgstr "Se souvenir de moi"
5656
57 #: account/forms.py:92
57 #: account/forms.py:96
5858 msgid "This account is currently inactive."
5959 msgstr "Ce compte est actuellement désactivé."
6060
61 #: account/forms.py:94
61 #: account/forms.py:98
6262 msgid "The e-mail address and/or password you specified are not correct."
6363 msgstr "L’adresse e-mail ou le mot de passe sont incorrects."
6464
65 #: account/forms.py:97
65 #: account/forms.py:101
6666 msgid "The username and/or password you specified are not correct."
6767 msgstr "Le pseudo ou le mot de passe sont incorrects."
6868
69 #: account/forms.py:108 account/forms.py:273 account/forms.py:429
70 #: account/forms.py:505
69 #: account/forms.py:112 account/forms.py:278 account/forms.py:438
70 #: account/forms.py:516
7171 msgid "E-mail address"
7272 msgstr "Adresse e-mail"
7373
74 #: account/forms.py:111 account/forms.py:308 account/forms.py:426
75 #: account/forms.py:500
74 #: account/forms.py:116 account/forms.py:315 account/forms.py:435
75 #: account/forms.py:511
7676 msgid "E-mail"
7777 msgstr "E-mail"
7878
79 #: account/forms.py:113 account/forms.py:115 account/forms.py:263
80 #: account/forms.py:267
79 #: account/forms.py:119 account/forms.py:122 account/forms.py:268
80 #: account/forms.py:271
8181 msgid "Username"
8282 msgstr "Pseudonyme"
8383
84 #: account/forms.py:126
84 #: account/forms.py:132
8585 msgid "Username or e-mail"
8686 msgstr "Pseudonyme ou e-mail"
8787
88 #: account/forms.py:130
88 #: account/forms.py:135
8989 msgctxt "field label"
9090 msgid "Login"
9191 msgstr "Identifiant"
9292
93 #: account/forms.py:299
93 #: account/forms.py:306
9494 msgid "E-mail (again)"
9595 msgstr "E-mail (confirmation)"
9696
97 #: account/forms.py:303
97 #: account/forms.py:310
9898 msgid "E-mail address confirmation"
9999 msgstr "Confirmation d'adresse e-mail"
100100
101 #: account/forms.py:311
101 #: account/forms.py:318
102102 msgid "E-mail (optional)"
103103 msgstr "E-mail (facultatif)"
104104
105 #: account/forms.py:351
105 #: account/forms.py:358
106106 msgid "You must type the same email each time."
107107 msgstr "Vous devez saisir deux fois le même email."
108108
109 #: account/forms.py:374 account/forms.py:487
109 #: account/forms.py:383 account/forms.py:498
110110 msgid "Password (again)"
111111 msgstr "Mot de passe (confirmation)"
112112
113 #: account/forms.py:438
113 #: account/forms.py:447
114114 msgid "This e-mail address is already associated with this account."
115115 msgstr "L'adresse e-mail est déjà associée à votre compte."
116116
117 #: account/forms.py:441
117 #: account/forms.py:450
118118 msgid "This e-mail address is already associated with another account."
119119 msgstr "L'adresse e-mail est déjà associée à un autre compte."
120120
121 #: account/forms.py:443
121 #: account/forms.py:452
122122 #, fuzzy, python-format
123123 #| msgid "Your account has no verified e-mail address."
124124 msgid "You cannot add more than %d e-mail addresses."
125125 msgstr "Vous devez d'abord associer une adresse e-mail à votre compte."
126126
127 #: account/forms.py:467
127 #: account/forms.py:477
128128 msgid "Current Password"
129129 msgstr "Mot de passe actuel"
130130
131 #: account/forms.py:468 account/forms.py:557
131 #: account/forms.py:479 account/forms.py:569
132132 msgid "New Password"
133133 msgstr "Nouveau mot de passe"
134134
135 #: account/forms.py:469 account/forms.py:558
135 #: account/forms.py:480 account/forms.py:570
136136 msgid "New Password (again)"
137137 msgstr "Nouveau mot de passe (confirmation)"
138138
139 #: account/forms.py:477
139 #: account/forms.py:488
140140 msgid "Please type your current password."
141141 msgstr "Merci d'indiquer votre mot de passe actuel."
142142
143 #: account/forms.py:516
143 #: account/forms.py:528
144144 msgid "The e-mail address is not assigned to any user account"
145145 msgstr "Cette adresse e-mail n'est pas associée à un compte utilisateur"
146146
147 #: account/forms.py:579
147 #: account/forms.py:591
148148 msgid "The password reset token was invalid."
149149 msgstr "Le jeton de réinitialisation de mot de passe est invalide."
150150
205205 msgid "Your account has no password set up."
206206 msgstr "Vous devez d'abord définir le mot de passe de votre compte."
207207
208 #: socialaccount/adapter.py:141
208 #: socialaccount/adapter.py:138
209209 msgid "Your account has no verified e-mail address."
210210 msgstr "Vous devez d'abord associer une adresse e-mail à votre compte."
211211
418418 "\n"
419419 "To confirm this is correct, go to %(activate_url)s"
420420 msgstr ""
421 "Vous recevez cet e-mail car l'utilisateur %(user_display)s a indiqué votre adresse pour se connecter à son compte sur %(site_domain)s.\n"
421 "Vous recevez cet e-mail car l'utilisateur %(user_display)s a indiqué votre "
422 "adresse pour se connecter à son compte sur %(site_domain)s.\n"
422423 "\n"
423 "Pour confirmer que vous en êtes bien le propriétaire, allez à %(activate_url)s"
424 "Pour confirmer que vous en êtes bien le propriétaire, allez à "
425 "%(activate_url)s"
424426
425427 #: templates/account/email/email_confirmation_subject.txt:3
426428 msgid "Please Confirm Your E-mail Address"
433435 "It can be safely ignored if you did not request a password reset. Click the "
434436 "link below to reset your password."
435437 msgstr ""
436 "Vous recevez cet e-mail car vous ou quelqu'un d'autre a demandé le mot de passe pour votre compte utilisateur.\n"
437 "Vous pouvez simplement ignorer ce message si vous n'êtes pas à l'origine de cette demande. Sinon, cliquez sur le lien ci-dessous pour réinitialiser votre mot de passe."
438 "Vous recevez cet e-mail car vous ou quelqu'un d'autre a demandé le mot de "
439 "passe pour votre compte utilisateur.\n"
440 "Vous pouvez simplement ignorer ce message si vous n'êtes pas à l'origine de "
441 "cette demande. Sinon, cliquez sur le lien ci-dessous pour réinitialiser "
442 "votre mot de passe."
438443
439444 #: templates/account/email/password_reset_key_message.txt:9
440445 #, python-format
623628
624629 #: templates/account/password_reset_from_key.html:17
625630 msgid "change password"
626 msgstr "modifer le mot de passe"
631 msgstr "modifier le mot de passe"
627632
628633 #: templates/account/password_reset_from_key.html:20
629634 #: templates/account/password_reset_from_key_done.html:8
66 msgstr ""
77 "Project-Id-Version: 0.1\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2020-10-11 11:15-0500\n"
9 "POT-Creation-Date: 2021-07-11 07:33-0500\n"
1010 "PO-Revision-Date: 2017-08-26 16:11+0300\n"
1111 "Last-Translator: Udi Oron <udioron@gmail.com>\n"
1212 "Language-Team: Hebrew\n"
3838 msgid "Accounts"
3939 msgstr "חשבונות"
4040
41 #: account/forms.py:58 account/forms.py:403
41 #: account/forms.py:58 account/forms.py:412
4242 msgid "You must type the same password each time."
4343 msgstr "יש להזין את אותה הסיסמה פעמיים."
4444
45 #: account/forms.py:87 account/forms.py:372 account/forms.py:486
45 #: account/forms.py:91 account/forms.py:380 account/forms.py:497
4646 msgid "Password"
4747 msgstr "סיסמה"
4848
49 #: account/forms.py:88
49 #: account/forms.py:92
5050 msgid "Remember Me"
5151 msgstr "זכור אותי"
5252
53 #: account/forms.py:92
53 #: account/forms.py:96
5454 msgid "This account is currently inactive."
5555 msgstr "חשבון זה אינו פעיל כעת."
5656
57 #: account/forms.py:94
57 #: account/forms.py:98
5858 msgid "The e-mail address and/or password you specified are not correct."
5959 msgstr "כתובת האימייל ו/או הסיסמה אינם נכונים."
6060
61 #: account/forms.py:97
61 #: account/forms.py:101
6262 msgid "The username and/or password you specified are not correct."
6363 msgstr "שם המשתמש ו/או הסיסמה אינם נכונים."
6464
65 #: account/forms.py:108 account/forms.py:273 account/forms.py:429
66 #: account/forms.py:505
65 #: account/forms.py:112 account/forms.py:278 account/forms.py:438
66 #: account/forms.py:516
6767 msgid "E-mail address"
6868 msgstr "כתובת אימייל"
6969
70 #: account/forms.py:111 account/forms.py:308 account/forms.py:426
71 #: account/forms.py:500
70 #: account/forms.py:116 account/forms.py:315 account/forms.py:435
71 #: account/forms.py:511
7272 msgid "E-mail"
7373 msgstr "אימייל"
7474
75 #: account/forms.py:113 account/forms.py:115 account/forms.py:263
76 #: account/forms.py:267
75 #: account/forms.py:119 account/forms.py:122 account/forms.py:268
76 #: account/forms.py:271
7777 msgid "Username"
7878 msgstr "שם משתמש"
7979
80 #: account/forms.py:126
80 #: account/forms.py:132
8181 msgid "Username or e-mail"
8282 msgstr "שם משתמש או אימייל"
8383
84 #: account/forms.py:130
84 #: account/forms.py:135
8585 msgctxt "field label"
8686 msgid "Login"
8787 msgstr "כניסה"
8888
89 #: account/forms.py:299
89 #: account/forms.py:306
9090 msgid "E-mail (again)"
9191 msgstr "אימייל (שוב)"
9292
93 #: account/forms.py:303
93 #: account/forms.py:310
9494 msgid "E-mail address confirmation"
9595 msgstr "אישור כתובת אימייל"
9696
97 #: account/forms.py:311
97 #: account/forms.py:318
9898 msgid "E-mail (optional)"
9999 msgstr "אימייל (לא חובה)"
100100
101 #: account/forms.py:351
101 #: account/forms.py:358
102102 msgid "You must type the same email each time."
103103 msgstr "יש להזין את אותו האימייל פעמיים."
104104
105 #: account/forms.py:374 account/forms.py:487
105 #: account/forms.py:383 account/forms.py:498
106106 msgid "Password (again)"
107107 msgstr "סיסמה (שוב)"
108108
109 #: account/forms.py:438
109 #: account/forms.py:447
110110 msgid "This e-mail address is already associated with this account."
111111 msgstr "כתובת אימייל זו כבר משויכת לחשבון זה."
112112
113 #: account/forms.py:441
113 #: account/forms.py:450
114114 msgid "This e-mail address is already associated with another account."
115115 msgstr "כתובת אימייל זו כבר משויכת לחשבון אחר."
116116
117 #: account/forms.py:443
117 #: account/forms.py:452
118118 #, fuzzy, python-format
119119 #| msgid "Your account has no verified e-mail address."
120120 msgid "You cannot add more than %d e-mail addresses."
121121 msgstr "לא נמצאו כתובות אימייל מאומתות לחשבונך."
122122
123 #: account/forms.py:467
123 #: account/forms.py:477
124124 msgid "Current Password"
125125 msgstr "סיסמה נוכחית"
126126
127 #: account/forms.py:468 account/forms.py:557
127 #: account/forms.py:479 account/forms.py:569
128128 msgid "New Password"
129129 msgstr "סיסמה חדשה"
130130
131 #: account/forms.py:469 account/forms.py:558
131 #: account/forms.py:480 account/forms.py:570
132132 msgid "New Password (again)"
133133 msgstr "סיסמה חדשה (שוב)"
134134
135 #: account/forms.py:477
135 #: account/forms.py:488
136136 msgid "Please type your current password."
137137 msgstr "אנא הזן את הסיסמה הנוכחית."
138138
139 #: account/forms.py:516
139 #: account/forms.py:528
140140 msgid "The e-mail address is not assigned to any user account"
141141 msgstr "כתובת אימייל זו אינה משויכת לאף חשבון"
142142
143 #: account/forms.py:579
143 #: account/forms.py:591
144144 msgid "The password reset token was invalid."
145145 msgstr "אסימון איפוס הסיסמה אינו תקין."
146146
201201 msgid "Your account has no password set up."
202202 msgstr "לא נבחרה סיסמה לחשבונך."
203203
204 #: socialaccount/adapter.py:141
204 #: socialaccount/adapter.py:138
205205 msgid "Your account has no verified e-mail address."
206206 msgstr "לא נמצאו כתובות אימייל מאומתות לחשבונך."
207207
99 msgstr ""
1010 "Project-Id-Version: PACKAGE VERSION\n"
1111 "Report-Msgid-Bugs-To: \n"
12 "POT-Creation-Date: 2020-10-11 11:15-0500\n"
12 "POT-Creation-Date: 2021-07-11 07:33-0500\n"
1313 "PO-Revision-Date: 2014-08-12 00:31+0200\n"
1414 "Last-Translator: <goran.cetusic@gmail.com>\n"
1515 "Language-Team: Bojan Mihelac <bmihelac@mihelac.org>\n"
4343 msgid "Accounts"
4444 msgstr "Korisnički računi"
4545
46 #: account/forms.py:58 account/forms.py:403
46 #: account/forms.py:58 account/forms.py:412
4747 msgid "You must type the same password each time."
4848 msgstr "Potrebno je upisati istu lozinku svaki put."
4949
50 #: account/forms.py:87 account/forms.py:372 account/forms.py:486
50 #: account/forms.py:91 account/forms.py:380 account/forms.py:497
5151 msgid "Password"
5252 msgstr "Lozinka"
5353
54 #: account/forms.py:88
54 #: account/forms.py:92
5555 msgid "Remember Me"
5656 msgstr "Zapamti me"
5757
58 #: account/forms.py:92
58 #: account/forms.py:96
5959 msgid "This account is currently inactive."
6060 msgstr "Ovaj korisnički račun je privremeno neaktivan."
6161
62 #: account/forms.py:94
62 #: account/forms.py:98
6363 msgid "The e-mail address and/or password you specified are not correct."
6464 msgstr "E-mail adresa i/ili lozinka nisu ispravni."
6565
66 #: account/forms.py:97
66 #: account/forms.py:101
6767 msgid "The username and/or password you specified are not correct."
6868 msgstr "Korisničko ime i/ili lozinka nisu ispravni."
6969
70 #: account/forms.py:108 account/forms.py:273 account/forms.py:429
71 #: account/forms.py:505
70 #: account/forms.py:112 account/forms.py:278 account/forms.py:438
71 #: account/forms.py:516
7272 msgid "E-mail address"
7373 msgstr "E-mail adresa"
7474
75 #: account/forms.py:111 account/forms.py:308 account/forms.py:426
76 #: account/forms.py:500
75 #: account/forms.py:116 account/forms.py:315 account/forms.py:435
76 #: account/forms.py:511
7777 msgid "E-mail"
7878 msgstr "E-mail"
7979
80 #: account/forms.py:113 account/forms.py:115 account/forms.py:263
81 #: account/forms.py:267
80 #: account/forms.py:119 account/forms.py:122 account/forms.py:268
81 #: account/forms.py:271
8282 msgid "Username"
8383 msgstr "Korisničko ime"
8484
85 #: account/forms.py:126
85 #: account/forms.py:132
8686 msgid "Username or e-mail"
8787 msgstr "Korisničko ime ili e-mail"
8888
89 #: account/forms.py:130
89 #: account/forms.py:135
9090 msgctxt "field label"
9191 msgid "Login"
9292 msgstr "Prijava"
9393
94 #: account/forms.py:299
94 #: account/forms.py:306
9595 #, fuzzy
9696 #| msgid "E-mail (optional)"
9797 msgid "E-mail (again)"
9898 msgstr "E-mail (neobavezno)"
9999
100 #: account/forms.py:303
100 #: account/forms.py:310
101101 #, fuzzy
102102 #| msgid "email confirmation"
103103 msgid "E-mail address confirmation"
104104 msgstr "E-mail potvrda"
105105
106 #: account/forms.py:311
106 #: account/forms.py:318
107107 msgid "E-mail (optional)"
108108 msgstr "E-mail (neobavezno)"
109109
110 #: account/forms.py:351
110 #: account/forms.py:358
111111 #, fuzzy
112112 #| msgid "You must type the same password each time."
113113 msgid "You must type the same email each time."
114114 msgstr "Potrebno je upisati istu lozinku svaki put."
115115
116 #: account/forms.py:374 account/forms.py:487
116 #: account/forms.py:383 account/forms.py:498
117117 msgid "Password (again)"
118118 msgstr "Lozinka (ponovno)"
119119
120 #: account/forms.py:438
120 #: account/forms.py:447
121121 msgid "This e-mail address is already associated with this account."
122122 msgstr "E-mail adresa je već registrirana s ovim korisničkim računom."
123123
124 #: account/forms.py:441
124 #: account/forms.py:450
125125 msgid "This e-mail address is already associated with another account."
126126 msgstr "E-mail adresa je već registrirana s drugim korisničkim računom."
127127
128 #: account/forms.py:443
128 #: account/forms.py:452
129129 #, fuzzy, python-format
130130 #| msgid "Your account has no verified e-mail address."
131131 msgid "You cannot add more than %d e-mail addresses."
132132 msgstr "Vaš korisnički račun nema potvrđenu e-mail adresu."
133133
134 #: account/forms.py:467
134 #: account/forms.py:477
135135 msgid "Current Password"
136136 msgstr "Trenutna lozinka"
137137
138 #: account/forms.py:468 account/forms.py:557
138 #: account/forms.py:479 account/forms.py:569
139139 msgid "New Password"
140140 msgstr "Nova lozinka"
141141
142 #: account/forms.py:469 account/forms.py:558
142 #: account/forms.py:480 account/forms.py:570
143143 msgid "New Password (again)"
144144 msgstr "Nova lozinka (ponovno)"
145145
146 #: account/forms.py:477
146 #: account/forms.py:488
147147 msgid "Please type your current password."
148148 msgstr "Molimo unesite trenutnu lozinku."
149149
150 #: account/forms.py:516
150 #: account/forms.py:528
151151 msgid "The e-mail address is not assigned to any user account"
152152 msgstr "Upisana e-mail adresa nije dodijeljena niti jednom korisničkom računu"
153153
154 #: account/forms.py:579
154 #: account/forms.py:591
155155 msgid "The password reset token was invalid."
156156 msgstr ""
157157
212212 msgid "Your account has no password set up."
213213 msgstr "Vaš korisnički račun nema postavljenu lozinku."
214214
215 #: socialaccount/adapter.py:141
215 #: socialaccount/adapter.py:138
216216 msgid "Your account has no verified e-mail address."
217217 msgstr "Vaš korisnički račun nema potvrđenu e-mail adresu."
218218
66 msgstr ""
77 "Project-Id-Version: \n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2020-10-11 11:15-0500\n"
9 "POT-Creation-Date: 2021-07-11 07:33-0500\n"
1010 "PO-Revision-Date: 2015-05-08 22:42+0100\n"
1111 "Last-Translator: Tamás Makó <tom@greenplug.hu>\n"
1212 "Language-Team: \n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "X-Generator: Poedit 1.7.6\n"
18 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1819
1920 #: account/adapter.py:45
2021 msgid "Username can not be used. Please use other username."
3738 msgid "Accounts"
3839 msgstr "Felhasználók"
3940
40 #: account/forms.py:58 account/forms.py:403
41 #: account/forms.py:58 account/forms.py:412
4142 msgid "You must type the same password each time."
4243 msgstr "Ugyanazt a jelszót kell megadni mindannyiszor."
4344
44 #: account/forms.py:87 account/forms.py:372 account/forms.py:486
45 #: account/forms.py:91 account/forms.py:380 account/forms.py:497
4546 msgid "Password"
4647 msgstr "Jelszó"
4748
48 #: account/forms.py:88
49 #: account/forms.py:92
4950 msgid "Remember Me"
5051 msgstr "Emlékezz rám"
5152
52 #: account/forms.py:92
53 #: account/forms.py:96
5354 msgid "This account is currently inactive."
5455 msgstr "A felhasználó jelenleg nem aktív."
5556
56 #: account/forms.py:94
57 #: account/forms.py:98
5758 msgid "The e-mail address and/or password you specified are not correct."
5859 msgstr "A megadott email vagy a jelszó hibás."
5960
60 #: account/forms.py:97
61 #: account/forms.py:101
6162 msgid "The username and/or password you specified are not correct."
6263 msgstr "A megadott felhasználó vagy a jelszó hibás."
6364
64 #: account/forms.py:108 account/forms.py:273 account/forms.py:429
65 #: account/forms.py:505
65 #: account/forms.py:112 account/forms.py:278 account/forms.py:438
66 #: account/forms.py:516
6667 msgid "E-mail address"
6768 msgstr "Email"
6869
69 #: account/forms.py:111 account/forms.py:308 account/forms.py:426
70 #: account/forms.py:500
70 #: account/forms.py:116 account/forms.py:315 account/forms.py:435
71 #: account/forms.py:511
7172 msgid "E-mail"
7273 msgstr "Email"
7374
74 #: account/forms.py:113 account/forms.py:115 account/forms.py:263
75 #: account/forms.py:267
75 #: account/forms.py:119 account/forms.py:122 account/forms.py:268
76 #: account/forms.py:271
7677 msgid "Username"
7778 msgstr "Felhasználó azonosító"
7879
79 #: account/forms.py:126
80 #: account/forms.py:132
8081 msgid "Username or e-mail"
8182 msgstr "Felhasználó azonosító vagy email"
8283
83 #: account/forms.py:130
84 #: account/forms.py:135
8485 msgctxt "field label"
8586 msgid "Login"
8687 msgstr "Bejelentkezés"
8788
88 #: account/forms.py:299
89 #: account/forms.py:306
8990 #, fuzzy
9091 #| msgid "E-mail (optional)"
9192 msgid "E-mail (again)"
9293 msgstr "Email (nem kötelező)"
9394
94 #: account/forms.py:303
95 #: account/forms.py:310
9596 #, fuzzy
9697 #| msgid "E-mail address"
9798 msgid "E-mail address confirmation"
9899 msgstr "Email"
99100
100 #: account/forms.py:311
101 #: account/forms.py:318
101102 msgid "E-mail (optional)"
102103 msgstr "Email (nem kötelező)"
103104
104 #: account/forms.py:351
105 #: account/forms.py:358
105106 #, fuzzy
106107 #| msgid "You must type the same password each time."
107108 msgid "You must type the same email each time."
108109 msgstr "Ugyanazt a jelszót kell megadni mindannyiszor."
109110
110 #: account/forms.py:374 account/forms.py:487
111 #: account/forms.py:383 account/forms.py:498
111112 msgid "Password (again)"
112113 msgstr "Jelszó (ismét)"
113114
114 #: account/forms.py:438
115 #: account/forms.py:447
115116 msgid "This e-mail address is already associated with this account."
116117 msgstr "Ez az email cím már hozzá van rendelve ehhez a felhasználóhoz."
117118
118 #: account/forms.py:441
119 #: account/forms.py:450
119120 msgid "This e-mail address is already associated with another account."
120121 msgstr "Ez az email cím már hozzá van rendelve egy másik felhasználóhoz."
121122
122 #: account/forms.py:443
123 #: account/forms.py:452
123124 #, fuzzy, python-format
124125 #| msgid "Your account has no verified e-mail address."
125126 msgid "You cannot add more than %d e-mail addresses."
126127 msgstr "A felhasználódnak nincs ellenőrzött email címe."
127128
128 #: account/forms.py:467
129 #: account/forms.py:477
129130 msgid "Current Password"
130131 msgstr "Jelenlegi jelszó"
131132
132 #: account/forms.py:468 account/forms.py:557
133 #: account/forms.py:479 account/forms.py:569
133134 msgid "New Password"
134135 msgstr "Új jelszó"
135136
136 #: account/forms.py:469 account/forms.py:558
137 #: account/forms.py:480 account/forms.py:570
137138 msgid "New Password (again)"
138139 msgstr "Új jelszó (ismét)"
139140
140 #: account/forms.py:477
141 #: account/forms.py:488
141142 msgid "Please type your current password."
142143 msgstr "Kérlek add meg az aktuális jelszavadat!"
143144
144 #: account/forms.py:516
145 #: account/forms.py:528
145146 msgid "The e-mail address is not assigned to any user account"
146147 msgstr "Az email cím nincs hozzárendelve egyetlen felhasználóhoz sem"
147148
148 #: account/forms.py:579
149 #: account/forms.py:591
149150 msgid "The password reset token was invalid."
150151 msgstr ""
151152
206207 msgid "Your account has no password set up."
207208 msgstr "A felhasználódnak nincs beállított jelszava."
208209
209 #: socialaccount/adapter.py:141
210 #: socialaccount/adapter.py:138
210211 msgid "Your account has no verified e-mail address."
211212 msgstr "A felhasználódnak nincs ellenőrzött email címe."
212213
99 msgstr ""
1010 "Project-Id-Version: django-allauth\n"
1111 "Report-Msgid-Bugs-To: \n"
12 "POT-Creation-Date: 2020-10-11 11:15-0500\n"
12 "POT-Creation-Date: 2021-07-11 07:33-0500\n"
1313 "PO-Revision-Date: 2020-10-15 19:55+0200\n"
1414 "Last-Translator: Sandro <sandro@e-den.it>\n"
1515 "Language: it\n"
4040 msgid "Accounts"
4141 msgstr "Account"
4242
43 #: account/forms.py:58 account/forms.py:403
43 #: account/forms.py:58 account/forms.py:412
4444 msgid "You must type the same password each time."
4545 msgstr "Devi digitare la stessa password."
4646
47 #: account/forms.py:87 account/forms.py:372 account/forms.py:486
47 #: account/forms.py:91 account/forms.py:380 account/forms.py:497
4848 msgid "Password"
4949 msgstr "Password"
5050
51 #: account/forms.py:88
51 #: account/forms.py:92
5252 msgid "Remember Me"
5353 msgstr "Ricordami"
5454
55 #: account/forms.py:92
55 #: account/forms.py:96
5656 msgid "This account is currently inactive."
5757 msgstr "Questo account non è attualmente attivo."
5858
59 #: account/forms.py:94
59 #: account/forms.py:98
6060 msgid "The e-mail address and/or password you specified are not correct."
6161 msgstr "L'indirizzo e-mail e/o la password che hai usato non sono corretti."
6262
63 #: account/forms.py:97
63 #: account/forms.py:101
6464 msgid "The username and/or password you specified are not correct."
6565 msgstr "Lo username e/o la password che hai usato non sono corretti."
6666
67 #: account/forms.py:108 account/forms.py:273 account/forms.py:429
68 #: account/forms.py:505
67 #: account/forms.py:112 account/forms.py:278 account/forms.py:438
68 #: account/forms.py:516
6969 msgid "E-mail address"
7070 msgstr "Indirizzo e-mail"
7171
72 #: account/forms.py:111 account/forms.py:308 account/forms.py:426
73 #: account/forms.py:500
72 #: account/forms.py:116 account/forms.py:315 account/forms.py:435
73 #: account/forms.py:511
7474 msgid "E-mail"
7575 msgstr "E-mail"
7676
77 #: account/forms.py:113 account/forms.py:115 account/forms.py:263
78 #: account/forms.py:267
77 #: account/forms.py:119 account/forms.py:122 account/forms.py:268
78 #: account/forms.py:271
7979 msgid "Username"
8080 msgstr "Username"
8181
82 #: account/forms.py:126
82 #: account/forms.py:132
8383 msgid "Username or e-mail"
8484 msgstr "Username o e-mail"
8585
86 #: account/forms.py:130
86 #: account/forms.py:135
8787 msgctxt "field label"
8888 msgid "Login"
8989 msgstr "Login"
9090
91 #: account/forms.py:299
91 #: account/forms.py:306
9292 msgid "E-mail (again)"
9393 msgstr "E-mail (di nuovo)"
9494
95 #: account/forms.py:303
95 #: account/forms.py:310
9696 msgid "E-mail address confirmation"
9797 msgstr "Conferma dell'indirizzo emai"
9898
99 #: account/forms.py:311
99 #: account/forms.py:318
100100 msgid "E-mail (optional)"
101101 msgstr "E-mail (opzionale)"
102102
103 #: account/forms.py:351
103 #: account/forms.py:358
104104 msgid "You must type the same email each time."
105105 msgstr "Devi digitare la stessa password ogni volta."
106106
107 #: account/forms.py:374 account/forms.py:487
107 #: account/forms.py:383 account/forms.py:498
108108 msgid "Password (again)"
109109 msgstr "Password (nuovamente)"
110110
111 #: account/forms.py:438
111 #: account/forms.py:447
112112 msgid "This e-mail address is already associated with this account."
113113 msgstr "Questo indirizzo e-mail è già associato a questo account."
114114
115 #: account/forms.py:441
115 #: account/forms.py:450
116116 msgid "This e-mail address is already associated with another account."
117117 msgstr "Questo indirizzo e-mail è gia associato a un altro account."
118118
119 #: account/forms.py:443
119 #: account/forms.py:452
120120 #, fuzzy, python-format
121121 #| msgid "Your account has no verified e-mail address."
122122 msgid "You cannot add more than %d e-mail addresses."
123123 msgstr "Non hai ancora verificato il tuo indirizzo e-mail."
124124
125 #: account/forms.py:467
125 #: account/forms.py:477
126126 msgid "Current Password"
127127 msgstr "Password attuale"
128128
129 #: account/forms.py:468 account/forms.py:557
129 #: account/forms.py:479 account/forms.py:569
130130 msgid "New Password"
131131 msgstr "Nuova password"
132132
133 #: account/forms.py:469 account/forms.py:558
133 #: account/forms.py:480 account/forms.py:570
134134 msgid "New Password (again)"
135135 msgstr "Nuova password (nuovamente)"
136136
137 #: account/forms.py:477
137 #: account/forms.py:488
138138 msgid "Please type your current password."
139139 msgstr "Per favore digita la tua password attuale."
140140
141 #: account/forms.py:516
141 #: account/forms.py:528
142142 msgid "The e-mail address is not assigned to any user account"
143143 msgstr "L'indirizzo e-mail non è assegnato a nessun account utente"
144144
145 #: account/forms.py:579
145 #: account/forms.py:591
146146 msgid "The password reset token was invalid."
147147 msgstr "Il codice per il reset della password non è valido."
148148
203203 msgid "Your account has no password set up."
204204 msgstr "Il tuo account non ha ancora nessuna password."
205205
206 #: socialaccount/adapter.py:141
206 #: socialaccount/adapter.py:138
207207 msgid "Your account has no verified e-mail address."
208208 msgstr "Non hai ancora verificato il tuo indirizzo e-mail."
209209
415415 "\n"
416416 "To confirm this is correct, go to %(activate_url)s"
417417 msgstr ""
418 "L'Utente %(user_display)s di %(site_domain)s ha registrato questo indirizzo e-mail.\n"
418 "L'Utente %(user_display)s di %(site_domain)s ha registrato questo indirizzo "
419 "e-mail.\n"
419420 "Per confermare, clicca qui %(activate_url)s"
420421
421422 #: templates/account/email/email_confirmation_subject.txt:3
429430 "It can be safely ignored if you did not request a password reset. Click the "
430431 "link below to reset your password."
431432 msgstr ""
432 "Hai ricevuto questa mail perché hai richiesto la password per il tuo account utente.\n"
433 "Se non hai richiesto tu il reset della password, ignora questa mail, altrimenti clicca sul link qui sotto per fare il reset della password."
433 "Hai ricevuto questa mail perché hai richiesto la password per il tuo account "
434 "utente.\n"
435 "Se non hai richiesto tu il reset della password, ignora questa mail, "
436 "altrimenti clicca sul link qui sotto per fare il reset della password."
434437
435438 #: templates/account/email/password_reset_key_message.txt:9
436439 #, python-format
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2020-10-11 11:15-0500\n"
10 "POT-Creation-Date: 2021-07-11 07:33-0500\n"
1111 "PO-Revision-Date: 2014-08-12 00:32+0200\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
3838 msgid "Accounts"
3939 msgstr "アカウント"
4040
41 #: account/forms.py:58 account/forms.py:403
41 #: account/forms.py:58 account/forms.py:412
4242 msgid "You must type the same password each time."
4343 msgstr "同じパスワードを入力してください。"
4444
45 #: account/forms.py:87 account/forms.py:372 account/forms.py:486
45 #: account/forms.py:91 account/forms.py:380 account/forms.py:497
4646 msgid "Password"
4747 msgstr "パスワード"
4848
49 #: account/forms.py:88
49 #: account/forms.py:92
5050 msgid "Remember Me"
5151 msgstr "ログインしたままにする"
5252
53 #: account/forms.py:92
53 #: account/forms.py:96
5454 msgid "This account is currently inactive."
5555 msgstr "このアカウントは現在無効です。"
5656
57 #: account/forms.py:94
57 #: account/forms.py:98
5858 msgid "The e-mail address and/or password you specified are not correct."
5959 msgstr "入力されたメールアドレスもしくはパスワードが正しくありません。"
6060
61 #: account/forms.py:97
61 #: account/forms.py:101
6262 msgid "The username and/or password you specified are not correct."
6363 msgstr "入力されたユーザー名もしくはパスワードが正しくありません。"
6464
65 #: account/forms.py:108 account/forms.py:273 account/forms.py:429
66 #: account/forms.py:505
65 #: account/forms.py:112 account/forms.py:278 account/forms.py:438
66 #: account/forms.py:516
6767 msgid "E-mail address"
6868 msgstr "メールアドレス"
6969
70 #: account/forms.py:111 account/forms.py:308 account/forms.py:426
71 #: account/forms.py:500
70 #: account/forms.py:116 account/forms.py:315 account/forms.py:435
71 #: account/forms.py:511
7272 msgid "E-mail"
7373 msgstr "メールアドレス"
7474
75 #: account/forms.py:113 account/forms.py:115 account/forms.py:263
76 #: account/forms.py:267
75 #: account/forms.py:119 account/forms.py:122 account/forms.py:268
76 #: account/forms.py:271
7777 msgid "Username"
7878 msgstr "ユーザー名"
7979
80 #: account/forms.py:126
80 #: account/forms.py:132
8181 msgid "Username or e-mail"
8282 msgstr "ユーザー名またはメールアドレス"
8383
84 #: account/forms.py:130
84 #: account/forms.py:135
8585 msgctxt "field label"
8686 msgid "Login"
8787 msgstr "ログイン"
8888
89 #: account/forms.py:299
89 #: account/forms.py:306
9090 msgid "E-mail (again)"
9191 msgstr "メールアドレス(確認用)"
9292
93 #: account/forms.py:303
93 #: account/forms.py:310
9494 #, fuzzy
9595 #| msgid "email confirmation"
9696 msgid "E-mail address confirmation"
9797 msgstr "メールアドレスの確認"
9898
99 #: account/forms.py:311
99 #: account/forms.py:318
100100 msgid "E-mail (optional)"
101101 msgstr "メールアドレス(オプション)"
102102
103 #: account/forms.py:351
103 #: account/forms.py:358
104104 #, fuzzy
105105 #| msgid "You must type the same password each time."
106106 msgid "You must type the same email each time."
107107 msgstr "同じパスワードを入力してください。"
108108
109 #: account/forms.py:374 account/forms.py:487
109 #: account/forms.py:383 account/forms.py:498
110110 msgid "Password (again)"
111111 msgstr "パスワード(再入力)"
112112
113 #: account/forms.py:438
113 #: account/forms.py:447
114114 msgid "This e-mail address is already associated with this account."
115115 msgstr "このメールアドレスはすでに登録されています。"
116116
117 #: account/forms.py:441
117 #: account/forms.py:450
118118 msgid "This e-mail address is already associated with another account."
119119 msgstr "このメールアドレスは別のアカウントで使用されています。"
120120
121 #: account/forms.py:443
121 #: account/forms.py:452
122122 #, fuzzy, python-format
123123 #| msgid "Your account has no verified e-mail address."
124124 msgid "You cannot add more than %d e-mail addresses."
125125 msgstr "確認済みのメールアドレスの登録が必要です。"
126126
127 #: account/forms.py:467
127 #: account/forms.py:477
128128 msgid "Current Password"
129129 msgstr "現在のパスワード"
130130
131 #: account/forms.py:468 account/forms.py:557
131 #: account/forms.py:479 account/forms.py:569
132132 msgid "New Password"
133133 msgstr "新しいパスワード"
134134
135 #: account/forms.py:469 account/forms.py:558
135 #: account/forms.py:480 account/forms.py:570
136136 msgid "New Password (again)"
137137 msgstr "新しいパスワード(再入力)"
138138
139 #: account/forms.py:477
139 #: account/forms.py:488
140140 msgid "Please type your current password."
141141 msgstr "現在のパスワードを入力してください。"
142142
143 #: account/forms.py:516
143 #: account/forms.py:528
144144 msgid "The e-mail address is not assigned to any user account"
145145 msgstr "このメールアドレスで登録されたユーザーアカウントがありません。"
146146
147 #: account/forms.py:579
147 #: account/forms.py:591
148148 msgid "The password reset token was invalid."
149149 msgstr ""
150150
203203 msgid "Your account has no password set up."
204204 msgstr "アカウントにパスワードを設定する必要があります。"
205205
206 #: socialaccount/adapter.py:141
206 #: socialaccount/adapter.py:138
207207 msgid "Your account has no verified e-mail address."
208208 msgstr "確認済みのメールアドレスの登録が必要です。"
209209
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2020-10-11 11:15-0500\n"
10 "POT-Creation-Date: 2021-07-11 07:33-0500\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
3838 msgid "Accounts"
3939 msgstr "계정"
4040
41 #: account/forms.py:58 account/forms.py:403
41 #: account/forms.py:58 account/forms.py:412
4242 msgid "You must type the same password each time."
4343 msgstr "동일한 비밀번호를 입력해야 합니다."
4444
45 #: account/forms.py:87 account/forms.py:372 account/forms.py:486
45 #: account/forms.py:91 account/forms.py:380 account/forms.py:497
4646 msgid "Password"
4747 msgstr "비밀번호"
4848
49 #: account/forms.py:88
49 #: account/forms.py:92
5050 msgid "Remember Me"
5151 msgstr "아이디 저장"
5252
53 #: account/forms.py:92
53 #: account/forms.py:96
5454 msgid "This account is currently inactive."
5555 msgstr "해당 계정은 현재 비활성화 상태입니다."
5656
57 #: account/forms.py:94
57 #: account/forms.py:98
5858 msgid "The e-mail address and/or password you specified are not correct."
5959 msgstr "이메일 또는 비밀번호가 올바르지 않습니다."
6060
61 #: account/forms.py:97
61 #: account/forms.py:101
6262 msgid "The username and/or password you specified are not correct."
6363 msgstr "아이디 또는 비밀번호가 올바르지 않습니다."
6464
65 #: account/forms.py:108 account/forms.py:273 account/forms.py:429
66 #: account/forms.py:505
65 #: account/forms.py:112 account/forms.py:278 account/forms.py:438
66 #: account/forms.py:516
6767 msgid "E-mail address"
6868 msgstr "이메일 주소"
6969
70 #: account/forms.py:111 account/forms.py:308 account/forms.py:426
71 #: account/forms.py:500
70 #: account/forms.py:116 account/forms.py:315 account/forms.py:435
71 #: account/forms.py:511
7272 msgid "E-mail"
7373 msgstr "이메일"
7474
75 #: account/forms.py:113 account/forms.py:115 account/forms.py:263
76 #: account/forms.py:267
75 #: account/forms.py:119 account/forms.py:122 account/forms.py:268
76 #: account/forms.py:271
7777 msgid "Username"
7878 msgstr "아이디"
7979
80 #: account/forms.py:126
80 #: account/forms.py:132
8181 msgid "Username or e-mail"
8282 msgstr "아이디 또는 이메일"
8383
84 #: account/forms.py:130
84 #: account/forms.py:135
8585 msgctxt "field label"
8686 msgid "Login"
8787 msgstr "로그인"
8888
89 #: account/forms.py:299
89 #: account/forms.py:306
9090 msgid "E-mail (again)"
9191 msgstr "이메일 (확인)"
9292
93 #: account/forms.py:303
93 #: account/forms.py:310
9494 msgid "E-mail address confirmation"
9595 msgstr "이메일 주소 확인"
9696
97 #: account/forms.py:311
97 #: account/forms.py:318
9898 msgid "E-mail (optional)"
9999 msgstr "이메일 (선택사항)"
100100
101 #: account/forms.py:351
101 #: account/forms.py:358
102102 msgid "You must type the same email each time."
103103 msgstr "동일한 이메일을 입력해야 합니다."
104104
105 #: account/forms.py:374 account/forms.py:487
105 #: account/forms.py:383 account/forms.py:498
106106 msgid "Password (again)"
107107 msgstr "비밀번호 (확인)"
108108
109 #: account/forms.py:438
109 #: account/forms.py:447
110110 msgid "This e-mail address is already associated with this account."
111111 msgstr "해당 이메일은 이미 이 계정에 등록되어 있습니다."
112112
113 #: account/forms.py:441
113 #: account/forms.py:450
114114 msgid "This e-mail address is already associated with another account."
115115 msgstr "해당 이메일은 다른 계정에 등록되어 있습니다."
116116
117 #: account/forms.py:443
117 #: account/forms.py:452
118118 #, fuzzy, python-format
119119 #| msgid "Your account has no verified e-mail address."
120120 msgid "You cannot add more than %d e-mail addresses."
121121 msgstr "당신의 계정에는 인증된 이메일이 없습니다."
122122
123 #: account/forms.py:467
123 #: account/forms.py:477
124124 msgid "Current Password"
125125 msgstr "현재 비밀번호"
126126
127 #: account/forms.py:468 account/forms.py:557
127 #: account/forms.py:479 account/forms.py:569
128128 msgid "New Password"
129129 msgstr "새 비밀번호"
130130
131 #: account/forms.py:469 account/forms.py:558
131 #: account/forms.py:480 account/forms.py:570
132132 msgid "New Password (again)"
133133 msgstr "새 비밀번호 (확인)"
134134
135 #: account/forms.py:477
135 #: account/forms.py:488
136136 msgid "Please type your current password."
137137 msgstr "현재 비밀번호를 입력하세요."
138138
139 #: account/forms.py:516
139 #: account/forms.py:528
140140 msgid "The e-mail address is not assigned to any user account"
141141 msgstr "해당 이메일을 가지고 있는 사용자가 없습니다."
142142
143 #: account/forms.py:579
143 #: account/forms.py:591
144144 msgid "The password reset token was invalid."
145145 msgstr "비밀번호 초기화 토큰이 올바르지 않습니다."
146146
201201 msgid "Your account has no password set up."
202202 msgstr "당신의 계정에 비밀번호가 설정되어있지 않습니다."
203203
204 #: socialaccount/adapter.py:141
204 #: socialaccount/adapter.py:138
205205 msgid "Your account has no verified e-mail address."
206206 msgstr "당신의 계정에는 인증된 이메일이 없습니다."
207207
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2020-10-11 11:15-0500\n"
9 "POT-Creation-Date: 2021-07-11 07:33-0500\n"
1010 "PO-Revision-Date: 2016-07-20 22:24+0600\n"
1111 "Last-Translator: Murat Jumashev <jumasheff at gmail dot com>\n"
1212 "Language-Team: LANGUAGE <LL@li.org>\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "X-Generator: Poedit 1.5.4\n"
18 "Plural-Forms: nplurals=1; plural=0;\n"
1819
1920 #: account/adapter.py:45
2021 msgid "Username can not be used. Please use other username."
3738 msgid "Accounts"
3839 msgstr "Эсептер"
3940
40 #: account/forms.py:58 account/forms.py:403
41 #: account/forms.py:58 account/forms.py:412
4142 msgid "You must type the same password each time."
4243 msgstr "Сиз ошол эле купуяны кайрадан териңиз."
4344
44 #: account/forms.py:87 account/forms.py:372 account/forms.py:486
45 #: account/forms.py:91 account/forms.py:380 account/forms.py:497
4546 msgid "Password"
4647 msgstr "Купуя"
4748
48 #: account/forms.py:88
49 #: account/forms.py:92
4950 msgid "Remember Me"
5051 msgstr "Мени эстеп кал"
5152
52 #: account/forms.py:92
53 #: account/forms.py:96
5354 msgid "This account is currently inactive."
5455 msgstr "Бул эсеп учурда активдүү эмес."
5556
56 #: account/forms.py:94
57 #: account/forms.py:98
5758 msgid "The e-mail address and/or password you specified are not correct."
5859 msgstr "Сиз берген эмейл дарек жана/же купуя туура эмес."
5960
60 #: account/forms.py:97
61 #: account/forms.py:101
6162 msgid "The username and/or password you specified are not correct."
6263 msgstr "Сиз берген колдонуучу аты жана/же купуя туура эмес."
6364
64 #: account/forms.py:108 account/forms.py:273 account/forms.py:429
65 #: account/forms.py:505
65 #: account/forms.py:112 account/forms.py:278 account/forms.py:438
66 #: account/forms.py:516
6667 msgid "E-mail address"
6768 msgstr "Эмейл дарек"
6869
69 #: account/forms.py:111 account/forms.py:308 account/forms.py:426
70 #: account/forms.py:500
70 #: account/forms.py:116 account/forms.py:315 account/forms.py:435
71 #: account/forms.py:511
7172 msgid "E-mail"
7273 msgstr "Эмейл"
7374
74 #: account/forms.py:113 account/forms.py:115 account/forms.py:263
75 #: account/forms.py:267
75 #: account/forms.py:119 account/forms.py:122 account/forms.py:268
76 #: account/forms.py:271
7677 msgid "Username"
7778 msgstr "Колдонуучу аты"
7879
79 #: account/forms.py:126
80 #: account/forms.py:132
8081 msgid "Username or e-mail"
8182 msgstr "Колдонуучу аты же эмейл"
8283
83 #: account/forms.py:130
84 #: account/forms.py:135
8485 msgctxt "field label"
8586 msgid "Login"
8687 msgstr "Логин"
8788
88 #: account/forms.py:299
89 #: account/forms.py:306
8990 #, fuzzy
9091 #| msgid "E-mail (optional)"
9192 msgid "E-mail (again)"
9293 msgstr "Эмейл (милдеттүү эмес)"
9394
94 #: account/forms.py:303
95 #: account/forms.py:310
9596 #, fuzzy
9697 #| msgid "email confirmation"
9798 msgid "E-mail address confirmation"
9899 msgstr "эмейл ырастоо"
99100
100 #: account/forms.py:311
101 #: account/forms.py:318
101102 msgid "E-mail (optional)"
102103 msgstr "Эмейл (милдеттүү эмес)"
103104
104 #: account/forms.py:351
105 #: account/forms.py:358
105106 #, fuzzy
106107 #| msgid "You must type the same password each time."
107108 msgid "You must type the same email each time."
108109 msgstr "Сиз ошол эле купуяны кайрадан териңиз."
109110
110 #: account/forms.py:374 account/forms.py:487
111 #: account/forms.py:383 account/forms.py:498
111112 msgid "Password (again)"
112113 msgstr "Купуя (дагы бир жолу)"
113114
114 #: account/forms.py:438
115 #: account/forms.py:447
115116 msgid "This e-mail address is already associated with this account."
116117 msgstr "Бул эмейл дарек ушул эсеп менен буга чейин туташтырылган."
117118
118 #: account/forms.py:441
119 #: account/forms.py:450
119120 msgid "This e-mail address is already associated with another account."
120121 msgstr "Бул эмейл дарек башка бир эсеп менен буга чейин туташтырылган."
121122
122 #: account/forms.py:443
123 #: account/forms.py:452
123124 #, fuzzy, python-format
124125 #| msgid "Your account has no verified e-mail address."
125126 msgid "You cannot add more than %d e-mail addresses."
126127 msgstr "Сиздин эсебиңизде дурусталган эмейл даректер жок."
127128
128 #: account/forms.py:467
129 #: account/forms.py:477
129130 msgid "Current Password"
130131 msgstr "Азыркы купуя"
131132
132 #: account/forms.py:468 account/forms.py:557
133 #: account/forms.py:479 account/forms.py:569
133134 msgid "New Password"
134135 msgstr "Жаңы купуя"
135136
136 #: account/forms.py:469 account/forms.py:558
137 #: account/forms.py:480 account/forms.py:570
137138 msgid "New Password (again)"
138139 msgstr "Жаңы купуя (кайрадан)"
139140
140 #: account/forms.py:477
141 #: account/forms.py:488
141142 msgid "Please type your current password."
142143 msgstr "Учурдагы купуяңызды жазыңыз."
143144
144 #: account/forms.py:516
145 #: account/forms.py:528
145146 msgid "The e-mail address is not assigned to any user account"
146147 msgstr "Эмейл дарек эч бир колдонуучу эсебине байланган эмес"
147148
148 #: account/forms.py:579
149 #: account/forms.py:591
149150 msgid "The password reset token was invalid."
150151 msgstr "Купуяны жаңыртуу токени туура эмес."
151152
206207 msgid "Your account has no password set up."
207208 msgstr "Сиздин эсебиңизде купуя орнотулган эмес."
208209
209 #: socialaccount/adapter.py:141
210 #: socialaccount/adapter.py:138
210211 msgid "Your account has no verified e-mail address."
211212 msgstr "Сиздин эсебиңизде дурусталган эмейл даректер жок."
212213
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2020-10-11 11:15-0500\n"
10 "POT-Creation-Date: 2021-07-11 07:33-0500\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1515 "MIME-Version: 1.0\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
18 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
19 "%100<10 || n%100>=20) ? 1 : 2);\n"
18 "Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < "
19 "11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? "
20 "1 : n % 1 != 0 ? 2: 3);\n"
2021
2122 #: account/adapter.py:45
2223 msgid "Username can not be used. Please use other username."
4041 msgid "Accounts"
4142 msgstr "Paskyros"
4243
43 #: account/forms.py:58 account/forms.py:403
44 #: account/forms.py:58 account/forms.py:412
4445 msgid "You must type the same password each time."
4546 msgstr "Turite įvesti tą patį slaptažodį kiekvieną kartą."
4647
47 #: account/forms.py:87 account/forms.py:372 account/forms.py:486
48 #: account/forms.py:91 account/forms.py:380 account/forms.py:497
4849 msgid "Password"
4950 msgstr "Slaptažodis"
5051
51 #: account/forms.py:88
52 #: account/forms.py:92
5253 msgid "Remember Me"
5354 msgstr "Prisimink mane"
5455
55 #: account/forms.py:92
56 #: account/forms.py:96
5657 msgid "This account is currently inactive."
5758 msgstr "Šiuo metu ši paskyra yra neaktyvi."
5859
59 #: account/forms.py:94
60 #: account/forms.py:98
6061 msgid "The e-mail address and/or password you specified are not correct."
6162 msgstr "Pateiktas el. pašto adresas ir/arba slaptažodis yra neteisingi."
6263
63 #: account/forms.py:97
64 #: account/forms.py:101
6465 msgid "The username and/or password you specified are not correct."
6566 msgstr "Pateiktas naudotojo vardas ir/arba slaptažodis yra neteisingi."
6667
67 #: account/forms.py:108 account/forms.py:273 account/forms.py:429
68 #: account/forms.py:505
68 #: account/forms.py:112 account/forms.py:278 account/forms.py:438
69 #: account/forms.py:516
6970 msgid "E-mail address"
7071 msgstr "El. pašto adresas"
7172
72 #: account/forms.py:111 account/forms.py:308 account/forms.py:426
73 #: account/forms.py:500
73 #: account/forms.py:116 account/forms.py:315 account/forms.py:435
74 #: account/forms.py:511
7475 msgid "E-mail"
7576 msgstr "El. paštas"
7677
77 #: account/forms.py:113 account/forms.py:115 account/forms.py:263
78 #: account/forms.py:267
78 #: account/forms.py:119 account/forms.py:122 account/forms.py:268
79 #: account/forms.py:271
7980 msgid "Username"
8081 msgstr "Naudotojo vardas"
8182
82 #: account/forms.py:126
83 #: account/forms.py:132
8384 msgid "Username or e-mail"
8485 msgstr "Naudotojo vardas arba el. paštas"
8586
86 #: account/forms.py:130
87 #: account/forms.py:135
8788 msgctxt "field label"
8889 msgid "Login"
8990 msgstr "Prisijungimo vardas"
9091
91 #: account/forms.py:299
92 #: account/forms.py:306
9293 #, fuzzy
9394 #| msgid "E-mail (optional)"
9495 msgid "E-mail (again)"
9596 msgstr "El. paštas (neprivalomas)"
9697
97 #: account/forms.py:303
98 #: account/forms.py:310
9899 #, fuzzy
99100 #| msgid "email confirmation"
100101 msgid "E-mail address confirmation"
101102 msgstr "el. pašto patvirtinimas"
102103
103 #: account/forms.py:311
104 #: account/forms.py:318
104105 msgid "E-mail (optional)"
105106 msgstr "El. paštas (neprivalomas)"
106107
107 #: account/forms.py:351
108 #: account/forms.py:358
108109 #, fuzzy
109110 #| msgid "You must type the same password each time."
110111 msgid "You must type the same email each time."
111112 msgstr "Turite įvesti tą patį slaptažodį kiekvieną kartą."
112113
113 #: account/forms.py:374 account/forms.py:487
114 #: account/forms.py:383 account/forms.py:498
114115 msgid "Password (again)"
115116 msgstr "Slaptažodis (pakartoti)"
116117
117 #: account/forms.py:438
118 #: account/forms.py:447
118119 msgid "This e-mail address is already associated with this account."
119120 msgstr "Šis el. pašto adresas jau susietas su šia paskyra."
120121
121 #: account/forms.py:441
122 #: account/forms.py:450
122123 msgid "This e-mail address is already associated with another account."
123124 msgstr "Šis el. pašto adresas jau susietas su kita paskyra."
124125
125 #: account/forms.py:443
126 #: account/forms.py:452
126127 #, fuzzy, python-format
127128 #| msgid "Your account has no verified e-mail address."
128129 msgid "You cannot add more than %d e-mail addresses."
129130 msgstr "Jūsų paskyra neturi patvirtinto el. pašto adreso."
130131
131 #: account/forms.py:467
132 #: account/forms.py:477
132133 msgid "Current Password"
133134 msgstr "Esamas slaptažodis"
134135
135 #: account/forms.py:468 account/forms.py:557
136 #: account/forms.py:479 account/forms.py:569
136137 msgid "New Password"
137138 msgstr "Naujas slaptažodis"
138139
139 #: account/forms.py:469 account/forms.py:558
140 #: account/forms.py:480 account/forms.py:570
140141 msgid "New Password (again)"
141142 msgstr "Naujas slaptažodis (pakartoti)"
142143
143 #: account/forms.py:477
144 #: account/forms.py:488
144145 msgid "Please type your current password."
145146 msgstr "Prašome įvesti esamą jūsų slaptažodį."
146147
147 #: account/forms.py:516
148 #: account/forms.py:528
148149 msgid "The e-mail address is not assigned to any user account"
149150 msgstr "El. pašto adresas nėra susietas su jokia naudotojo paskyra"
150151
151 #: account/forms.py:579
152 #: account/forms.py:591
152153 msgid "The password reset token was invalid."
153154 msgstr "Neteisingas slaptažodžio atstatymo atpažinimo ženklas."
154155
209210 msgid "Your account has no password set up."
210211 msgstr "Jūsų paskyra neturi nustatyto slaptažodžio."
211212
212 #: socialaccount/adapter.py:141
213 #: socialaccount/adapter.py:138
213214 msgid "Your account has no verified e-mail address."
214215 msgstr "Jūsų paskyra neturi patvirtinto el. pašto adreso."
215216
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2020-10-11 11:15-0500\n"
10 "POT-Creation-Date: 2021-07-11 07:33-0500\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
4141 msgid "Accounts"
4242 msgstr "Konti"
4343
44 #: account/forms.py:58 account/forms.py:403
44 #: account/forms.py:58 account/forms.py:412
4545 msgid "You must type the same password each time."
4646 msgstr "Katru reizi jums ir jāievada tā pati parole."
4747
48 #: account/forms.py:87 account/forms.py:372 account/forms.py:486
48 #: account/forms.py:91 account/forms.py:380 account/forms.py:497
4949 msgid "Password"
5050 msgstr "Parole"
5151
52 #: account/forms.py:88
52 #: account/forms.py:92
5353 msgid "Remember Me"
5454 msgstr "Atcerēties mani"
5555
56 #: account/forms.py:92
56 #: account/forms.py:96
5757 msgid "This account is currently inactive."
5858 msgstr "Šis konts šobrīd ir neaktīvs."
5959
60 #: account/forms.py:94
60 #: account/forms.py:98
6161 msgid "The e-mail address and/or password you specified are not correct."
6262 msgstr "Nepareizs e-pasts un/vai parole."
6363
64 #: account/forms.py:97
64 #: account/forms.py:101
6565 msgid "The username and/or password you specified are not correct."
6666 msgstr "Nepareizs lietotāja vārds un/vai parole."
6767
68 #: account/forms.py:108 account/forms.py:273 account/forms.py:429
69 #: account/forms.py:505
68 #: account/forms.py:112 account/forms.py:278 account/forms.py:438
69 #: account/forms.py:516
7070 msgid "E-mail address"
7171 msgstr "E-pasta adrese"
7272
73 #: account/forms.py:111 account/forms.py:308 account/forms.py:426
74 #: account/forms.py:500
73 #: account/forms.py:116 account/forms.py:315 account/forms.py:435
74 #: account/forms.py:511
7575 msgid "E-mail"
7676 msgstr "E-pasts"
7777
78 #: account/forms.py:113 account/forms.py:115 account/forms.py:263
79 #: account/forms.py:267
78 #: account/forms.py:119 account/forms.py:122 account/forms.py:268
79 #: account/forms.py:271
8080 msgid "Username"
8181 msgstr "Lietotājvārds"
8282
83 #: account/forms.py:126
83 #: account/forms.py:132
8484 msgid "Username or e-mail"
8585 msgstr "Lietotājvārds vai e-pasts"
8686
87 #: account/forms.py:130
87 #: account/forms.py:135
8888 msgctxt "field label"
8989 msgid "Login"
9090 msgstr "Ieiet"
9191
92 #: account/forms.py:299
92 #: account/forms.py:306
9393 #, fuzzy
9494 #| msgid "E-mail (optional)"
9595 msgid "E-mail (again)"
9696 msgstr "E-pasts (izvēles)"
9797
98 #: account/forms.py:303
98 #: account/forms.py:310
9999 #, fuzzy
100100 #| msgid "email confirmation"
101101 msgid "E-mail address confirmation"
102102 msgstr "e-pasta apstiprinājums"
103103
104 #: account/forms.py:311
104 #: account/forms.py:318
105105 msgid "E-mail (optional)"
106106 msgstr "E-pasts (izvēles)"
107107
108 #: account/forms.py:351
108 #: account/forms.py:358
109109 #, fuzzy
110110 #| msgid "You must type the same password each time."
111111 msgid "You must type the same email each time."
112112 msgstr "Katru reizi jums ir jāievada tā pati parole."
113113
114 #: account/forms.py:374 account/forms.py:487
114 #: account/forms.py:383 account/forms.py:498
115115 msgid "Password (again)"
116116 msgstr "Parole (vēlreiz)"
117117
118 #: account/forms.py:438
118 #: account/forms.py:447
119119 msgid "This e-mail address is already associated with this account."
120120 msgstr "Šī e-pasta adrese jau ir piesaistīta šim kontam."
121121
122 #: account/forms.py:441
122 #: account/forms.py:450
123123 msgid "This e-mail address is already associated with another account."
124124 msgstr "Šī e-pasta adrese jau ir piesaistīta citam kontam."
125125
126 #: account/forms.py:443
126 #: account/forms.py:452
127127 #, fuzzy, python-format
128128 #| msgid "Your account has no verified e-mail address."
129129 msgid "You cannot add more than %d e-mail addresses."
130130 msgstr "Jūsu kontam nav apstiprinātas e-pasta adreses."
131131
132 #: account/forms.py:467
132 #: account/forms.py:477
133133 msgid "Current Password"
134134 msgstr "Šobrīdējā parole"
135135
136 #: account/forms.py:468 account/forms.py:557
136 #: account/forms.py:479 account/forms.py:569
137137 msgid "New Password"
138138 msgstr "Jaunā parole"
139139
140 #: account/forms.py:469 account/forms.py:558
140 #: account/forms.py:480 account/forms.py:570
141141 msgid "New Password (again)"
142142 msgstr "Jaunā parole (vēlreiz)"
143143
144 #: account/forms.py:477
144 #: account/forms.py:488
145145 msgid "Please type your current password."
146146 msgstr "Lūdzu ievadiet jūsu šobrīdējo paroli."
147147
148 #: account/forms.py:516
148 #: account/forms.py:528
149149 msgid "The e-mail address is not assigned to any user account"
150150 msgstr "E-pasta adrese nav piesaistīta nevienam lietotāja kontam"
151151
152 #: account/forms.py:579
152 #: account/forms.py:591
153153 msgid "The password reset token was invalid."
154154 msgstr "Paroles atjaunošanas marķieris bija nederīgs."
155155
210210 msgid "Your account has no password set up."
211211 msgstr "Jūsu kontam nav uzstādīta parole."
212212
213 #: socialaccount/adapter.py:141
213 #: socialaccount/adapter.py:138
214214 msgid "Your account has no verified e-mail address."
215215 msgstr "Jūsu kontam nav apstiprinātas e-pasta adreses."
216216
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2020-10-11 11:15-0500\n"
10 "POT-Creation-Date: 2021-07-11 07:33-0500\n"
1111 "PO-Revision-Date: 2019-12-18 18:56+0100\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1515 "MIME-Version: 1.0\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
18 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1819
1920 #: account/adapter.py:45
2021 msgid "Username can not be used. Please use other username."
3738 msgid "Accounts"
3839 msgstr "Kontoer"
3940
40 #: account/forms.py:58 account/forms.py:403
41 #: account/forms.py:58 account/forms.py:412
4142 msgid "You must type the same password each time."
4243 msgstr "Du må skrive det samme passordet hver gang."
4344
44 #: account/forms.py:87 account/forms.py:372 account/forms.py:486
45 #: account/forms.py:91 account/forms.py:380 account/forms.py:497
4546 msgid "Password"
4647 msgstr "Passord"
4748
48 #: account/forms.py:88
49 #: account/forms.py:92
4950 msgid "Remember Me"
5051 msgstr "Husk meg"
5152
52 #: account/forms.py:92
53 #: account/forms.py:96
5354 msgid "This account is currently inactive."
5455 msgstr "Denne kontoen er inaktiv."
5556
56 #: account/forms.py:94
57 #: account/forms.py:98
5758 msgid "The e-mail address and/or password you specified are not correct."
5859 msgstr "E-postadressen og/eller passordet du oppgav er feil."
5960
60 #: account/forms.py:97
61 #: account/forms.py:101
6162 msgid "The username and/or password you specified are not correct."
6263 msgstr "Brukernavnet og/eller passordet du oppgav er feil."
6364
64 #: account/forms.py:108 account/forms.py:273 account/forms.py:429
65 #: account/forms.py:505
65 #: account/forms.py:112 account/forms.py:278 account/forms.py:438
66 #: account/forms.py:516
6667 msgid "E-mail address"
6768 msgstr "E-postadresse"
6869
69 #: account/forms.py:111 account/forms.py:308 account/forms.py:426
70 #: account/forms.py:500
70 #: account/forms.py:116 account/forms.py:315 account/forms.py:435
71 #: account/forms.py:511
7172 msgid "E-mail"
7273 msgstr "E-post"
7374
74 #: account/forms.py:113 account/forms.py:115 account/forms.py:263
75 #: account/forms.py:267
75 #: account/forms.py:119 account/forms.py:122 account/forms.py:268
76 #: account/forms.py:271
7677 msgid "Username"
7778 msgstr "Brukernavn"
7879
79 #: account/forms.py:126
80 #: account/forms.py:132
8081 msgid "Username or e-mail"
8182 msgstr "Brukernavn eller e-post"
8283
83 #: account/forms.py:130
84 #: account/forms.py:135
8485 msgctxt "field label"
8586 msgid "Login"
8687 msgstr "Logg inn"
8788
88 #: account/forms.py:299
89 #: account/forms.py:306
8990 msgid "E-mail (again)"
9091 msgstr "E-post (igjen)"
9192
92 #: account/forms.py:303
93 #: account/forms.py:310
9394 msgid "E-mail address confirmation"
9495 msgstr "Bekreftelse av e-postadresse"
9596
96 #: account/forms.py:311
97 #: account/forms.py:318
9798 msgid "E-mail (optional)"
9899 msgstr "E-post (valgfritt)"
99100
100 #: account/forms.py:351
101 #: account/forms.py:358
101102 msgid "You must type the same email each time."
102103 msgstr "Du må skrive inn samme e-post hver gang."
103104
104 #: account/forms.py:374 account/forms.py:487
105 #: account/forms.py:383 account/forms.py:498
105106 msgid "Password (again)"
106107 msgstr "Passord (igjen)"
107108
108 #: account/forms.py:438
109 #: account/forms.py:447
109110 msgid "This e-mail address is already associated with this account."
110111 msgstr "Denne e-postadressen er allerede tilknyttet denne kontoen."
111112
112 #: account/forms.py:441
113 #: account/forms.py:450
113114 msgid "This e-mail address is already associated with another account."
114115 msgstr "Denne e-postadressen er tilknyttet en annen konto."
115116
116 #: account/forms.py:443
117 #: account/forms.py:452
117118 #, fuzzy, python-format
118119 #| msgid "Your account has no verified e-mail address."
119120 msgid "You cannot add more than %d e-mail addresses."
120121 msgstr "Din konto har ingen verifisert e-postadresse."
121122
122 #: account/forms.py:467
123 #: account/forms.py:477
123124 msgid "Current Password"
124125 msgstr "Nåværende passord"
125126
126 #: account/forms.py:468 account/forms.py:557
127 #: account/forms.py:479 account/forms.py:569
127128 msgid "New Password"
128129 msgstr "Nytt passord"
129130
130 #: account/forms.py:469 account/forms.py:558
131 #: account/forms.py:480 account/forms.py:570
131132 msgid "New Password (again)"
132133 msgstr "Nytt passord (igjen)"
133134
134 #: account/forms.py:477
135 #: account/forms.py:488
135136 msgid "Please type your current password."
136137 msgstr "Vennligst skriv inn ditt passord."
137138
138 #: account/forms.py:516
139 #: account/forms.py:528
139140 msgid "The e-mail address is not assigned to any user account"
140141 msgstr "E-postadressen er ikke tilknyttet noen brukerkonto"
141142
142 #: account/forms.py:579
143 #: account/forms.py:591
143144 msgid "The password reset token was invalid."
144145 msgstr "Nøkkelen for passordgjenopprettelse var ugyldig."
145146
200201 msgid "Your account has no password set up."
201202 msgstr "Kontoen din har ikke noe passord."
202203
203 #: socialaccount/adapter.py:141
204 #: socialaccount/adapter.py:138
204205 msgid "Your account has no verified e-mail address."
205206 msgstr "Din konto har ingen verifisert e-postadresse."
206207
77 msgstr ""
88 "Project-Id-Version: django-allauth\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2020-10-11 11:15-0500\n"
10 "POT-Creation-Date: 2021-07-11 07:33-0500\n"
1111 "PO-Revision-Date: 2020-10-11 18:21+0200\n"
1212 "Last-Translator: pennersr <raymond.penners@intenct.nl>\n"
1313 "Language-Team: Dutch (http://www.transifex.com/projects/p/django-allauth/"
3939 msgid "Accounts"
4040 msgstr "Accounts"
4141
42 #: account/forms.py:58 account/forms.py:403
42 #: account/forms.py:58 account/forms.py:412
4343 msgid "You must type the same password each time."
4444 msgstr "Je moet hetzelfde wachtwoord twee keer intoetsen."
4545
46 #: account/forms.py:87 account/forms.py:372 account/forms.py:486
46 #: account/forms.py:91 account/forms.py:380 account/forms.py:497
4747 msgid "Password"
4848 msgstr "Wachtwoord"
4949
50 #: account/forms.py:88
50 #: account/forms.py:92
5151 msgid "Remember Me"
5252 msgstr "Onthouden"
5353
54 #: account/forms.py:92
54 #: account/forms.py:96
5555 msgid "This account is currently inactive."
5656 msgstr "Dit account is niet actief"
5757
58 #: account/forms.py:94
58 #: account/forms.py:98
5959 msgid "The e-mail address and/or password you specified are not correct."
6060 msgstr "Je e-mailadres en wachtwoord komen niet overeen."
6161
62 #: account/forms.py:97
62 #: account/forms.py:101
6363 msgid "The username and/or password you specified are not correct."
6464 msgstr "Je gebruikersnaam en wachtwoord komen niet overeen."
6565
66 #: account/forms.py:108 account/forms.py:273 account/forms.py:429
67 #: account/forms.py:505
66 #: account/forms.py:112 account/forms.py:278 account/forms.py:438
67 #: account/forms.py:516
6868 msgid "E-mail address"
6969 msgstr "E-mailadres"
7070
71 #: account/forms.py:111 account/forms.py:308 account/forms.py:426
72 #: account/forms.py:500
71 #: account/forms.py:116 account/forms.py:315 account/forms.py:435
72 #: account/forms.py:511
7373 msgid "E-mail"
7474 msgstr "E-mail"
7575
76 #: account/forms.py:113 account/forms.py:115 account/forms.py:263
77 #: account/forms.py:267
76 #: account/forms.py:119 account/forms.py:122 account/forms.py:268
77 #: account/forms.py:271
7878 msgid "Username"
7979 msgstr "Gebruikersnaam"
8080
81 #: account/forms.py:126
81 #: account/forms.py:132
8282 msgid "Username or e-mail"
8383 msgstr "Gebruikersnaam of e-mail"
8484
85 #: account/forms.py:130
85 #: account/forms.py:135
8686 msgctxt "field label"
8787 msgid "Login"
8888 msgstr "Login"
8989
90 #: account/forms.py:299
90 #: account/forms.py:306
9191 msgid "E-mail (again)"
9292 msgstr "E-mail (optioneel)"
9393
94 #: account/forms.py:303
94 #: account/forms.py:310
9595 msgid "E-mail address confirmation"
9696 msgstr "Bevestig e-mailadres"
9797
98 #: account/forms.py:311
98 #: account/forms.py:318
9999 msgid "E-mail (optional)"
100100 msgstr "E-mail (optioneel)"
101101
102 #: account/forms.py:351
102 #: account/forms.py:358
103103 msgid "You must type the same email each time."
104104 msgstr "Je moet hetzelfde e-mailadres twee keer intoetsen."
105105
106 #: account/forms.py:374 account/forms.py:487
106 #: account/forms.py:383 account/forms.py:498
107107 msgid "Password (again)"
108108 msgstr "Wachtwoord (bevestigen)"
109109
110 #: account/forms.py:438
110 #: account/forms.py:447
111111 msgid "This e-mail address is already associated with this account."
112112 msgstr "Dit e-mailadres is al geassocieerd met dit account."
113113
114 #: account/forms.py:441
114 #: account/forms.py:450
115115 msgid "This e-mail address is already associated with another account."
116116 msgstr "Dit e-mailadres is al geassocieerd met een ander account."
117117
118 #: account/forms.py:443
118 #: account/forms.py:452
119119 #, python-format
120120 msgid "You cannot add more than %d e-mail addresses."
121121 msgstr "Je kunt niet meer dan %d e-mailadressen toevoegen."
122122
123 #: account/forms.py:467
123 #: account/forms.py:477
124124 msgid "Current Password"
125125 msgstr "Huidig wachtwoord"
126126
127 #: account/forms.py:468 account/forms.py:557
127 #: account/forms.py:479 account/forms.py:569
128128 msgid "New Password"
129129 msgstr "Nieuw wachtwoord"
130130
131 #: account/forms.py:469 account/forms.py:558
131 #: account/forms.py:480 account/forms.py:570
132132 msgid "New Password (again)"
133133 msgstr "Nieuw wachtwoord (bevestigen)"
134134
135 #: account/forms.py:477
135 #: account/forms.py:488
136136 msgid "Please type your current password."
137137 msgstr "Geef je huidige wachtwoord op."
138138
139 #: account/forms.py:516
139 #: account/forms.py:528
140140 msgid "The e-mail address is not assigned to any user account"
141141 msgstr "Dit e-mailadres is niet bij ons bekend"
142142
143 #: account/forms.py:579
143 #: account/forms.py:591
144144 msgid "The password reset token was invalid."
145145 msgstr "De wachtwoordherstel-sleutel is niet geldig."
146146
201201 msgid "Your account has no password set up."
202202 msgstr "Je account heeft geen wachtwoord ingesteld."
203203
204 #: socialaccount/adapter.py:141
204 #: socialaccount/adapter.py:138
205205 msgid "Your account has no verified e-mail address."
206206 msgstr "Je account heeft geen geverifieerd e-mailadres."
207207
55 msgstr ""
66 "Project-Id-Version: \n"
77 "Report-Msgid-Bugs-To: \n"
8 "POT-Creation-Date: 2020-10-11 11:15-0500\n"
8 "POT-Creation-Date: 2021-07-11 07:33-0500\n"
99 "PO-Revision-Date: 2020-10-12 12:34+0200\n"
1010 "Last-Translator: Radek Czajka <radekczajka@mdrn.pl>\n"
1111 "Language-Team: \n"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
1616 "X-Generator: Poedit 2.3\n"
17 "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n"
18 "%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n"
19 "%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
1720
1821 #: account/adapter.py:45
1922 msgid "Username can not be used. Please use other username."
3639 msgid "Accounts"
3740 msgstr "Konta"
3841
39 #: account/forms.py:58 account/forms.py:403
42 #: account/forms.py:58 account/forms.py:412
4043 msgid "You must type the same password each time."
4144 msgstr "Musisz wpisać za każdym razem to samo hasło."
4245
43 #: account/forms.py:87 account/forms.py:372 account/forms.py:486
46 #: account/forms.py:91 account/forms.py:380 account/forms.py:497
4447 msgid "Password"
4548 msgstr "Hasło"
4649
47 #: account/forms.py:88
50 #: account/forms.py:92
4851 msgid "Remember Me"
4952 msgstr "Pamiętaj mnie"
5053
51 #: account/forms.py:92
54 #: account/forms.py:96
5255 msgid "This account is currently inactive."
5356 msgstr "Konto jest obecnie nieaktywne."
5457
55 #: account/forms.py:94
58 #: account/forms.py:98
5659 msgid "The e-mail address and/or password you specified are not correct."
5760 msgstr "Podany adres e-mail i/lub hasło są niepoprawne."
5861
59 #: account/forms.py:97
62 #: account/forms.py:101
6063 msgid "The username and/or password you specified are not correct."
6164 msgstr "Podana nazwa użytkownika i/lub hasło są niepoprawne."
6265
63 #: account/forms.py:108 account/forms.py:273 account/forms.py:429
64 #: account/forms.py:505
66 #: account/forms.py:112 account/forms.py:278 account/forms.py:438
67 #: account/forms.py:516
6568 msgid "E-mail address"
6669 msgstr "Adres e-mail"
6770
68 #: account/forms.py:111 account/forms.py:308 account/forms.py:426
69 #: account/forms.py:500
71 #: account/forms.py:116 account/forms.py:315 account/forms.py:435
72 #: account/forms.py:511
7073 msgid "E-mail"
7174 msgstr "E-mail"
7275
73 #: account/forms.py:113 account/forms.py:115 account/forms.py:263
74 #: account/forms.py:267
76 #: account/forms.py:119 account/forms.py:122 account/forms.py:268
77 #: account/forms.py:271
7578 msgid "Username"
7679 msgstr "Nazwa użytkownika"
7780
78 #: account/forms.py:126
81 #: account/forms.py:132
7982 msgid "Username or e-mail"
8083 msgstr "Nazwa użytkownika lub e-mail"
8184
82 #: account/forms.py:130
85 #: account/forms.py:135
8386 msgctxt "field label"
8487 msgid "Login"
8588 msgstr "Login"
8689
87 #: account/forms.py:299
90 #: account/forms.py:306
8891 msgid "E-mail (again)"
8992 msgstr "E-mail (ponownie)"
9093
91 #: account/forms.py:303
94 #: account/forms.py:310
9295 msgid "E-mail address confirmation"
9396 msgstr "Powierdzenie adresu email"
9497
95 #: account/forms.py:311
98 #: account/forms.py:318
9699 msgid "E-mail (optional)"
97100 msgstr "E-mail (opcjonalnie)"
98101
99 #: account/forms.py:351
102 #: account/forms.py:358
100103 msgid "You must type the same email each time."
101104 msgstr "Musisz wpisać za każdym razem ten sam e-mail."
102105
103 #: account/forms.py:374 account/forms.py:487
106 #: account/forms.py:383 account/forms.py:498
104107 msgid "Password (again)"
105108 msgstr "Hasło (ponownie)"
106109
107 #: account/forms.py:438
110 #: account/forms.py:447
108111 msgid "This e-mail address is already associated with this account."
109112 msgstr "Ten adres e-mail jest już powiązany z tym kontem."
110113
111 #: account/forms.py:441
114 #: account/forms.py:450
112115 msgid "This e-mail address is already associated with another account."
113116 msgstr "Ten adres e-mail jest już powiązany z innym kontem."
114117
115 #: account/forms.py:443
118 #: account/forms.py:452
116119 #, python-format
117120 msgid "You cannot add more than %d e-mail addresses."
118121 msgstr "Nie możesz dodać więcej niż %d adresów e-mail."
119122
120 #: account/forms.py:467
123 #: account/forms.py:477
121124 msgid "Current Password"
122125 msgstr "Obecne hasło"
123126
124 #: account/forms.py:468 account/forms.py:557
127 #: account/forms.py:479 account/forms.py:569
125128 msgid "New Password"
126129 msgstr "Nowe hasło"
127130
128 #: account/forms.py:469 account/forms.py:558
131 #: account/forms.py:480 account/forms.py:570
129132 msgid "New Password (again)"
130133 msgstr "Nowe hasło (ponownie)"
131134
132 #: account/forms.py:477
135 #: account/forms.py:488
133136 msgid "Please type your current password."
134137 msgstr "Proszę wpisz swoje obecne hasło."
135138
136 #: account/forms.py:516
139 #: account/forms.py:528
137140 msgid "The e-mail address is not assigned to any user account"
138141 msgstr "Adres e-mail nie jest powiązany z żadnym kontem użytkownika"
139142
140 #: account/forms.py:579
143 #: account/forms.py:591
141144 msgid "The password reset token was invalid."
142145 msgstr "Token resetowania hasła był nieprawidłowy."
143146
198201 msgid "Your account has no password set up."
199202 msgstr "Twoje konto nie posiada hasła."
200203
201 #: socialaccount/adapter.py:141
204 #: socialaccount/adapter.py:138
202205 msgid "Your account has no verified e-mail address."
203206 msgstr "Twoje konto nie ma zweryfikowanego adresu e-mail."
204207
228231
229232 #: socialaccount/models.py:55
230233 msgid "API secret, client secret, or consumer secret"
231 msgstr "Klucz prywatny API/klienta/dbiorcy"
234 msgstr "Klucz prywatny API, klienta lub odbiorcy"
232235
233236 #: socialaccount/models.py:58
234237 msgid "Key"
602605
603606 #: templates/account/password_reset_from_key.html:7
604607 msgid "Bad Token"
605 msgstr "Zły klucz"
608 msgstr "Nieprawidłowy klucz"
606609
607610 #: templates/account/password_reset_from_key.html:11
608611 #, python-format
697700 msgstr ""
698701 "Wysłaliśmy Ci wiadomość e-mail.\n"
699702 "W celu weryfikacji musisz kliknąć w łącze zawarte w wiadomości. Proszę "
700 "skontaktuj się z nami, jeśli nie dotarła do Ciebie w ciągu paru minut."
703 "skontaktuj się z nami, jeśli nie dotarła do Ciebie w ciągu kilku minut."
701704
702705 #: templates/account/verified_email_required.html:20
703706 #, python-format
1010 msgstr ""
1111 "Project-Id-Version: django-allauth\n"
1212 "Report-Msgid-Bugs-To: \n"
13 "POT-Creation-Date: 2020-10-11 11:15-0500\n"
13 "POT-Creation-Date: 2021-07-11 07:33-0500\n"
1414 "PO-Revision-Date: 2014-12-01 01:20+0000\n"
1515 "Last-Translator: cacarrara <caiocarrara@gmail.com>\n"
1616 "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/"
4242 msgid "Accounts"
4343 msgstr "Contas"
4444
45 #: account/forms.py:58 account/forms.py:403
45 #: account/forms.py:58 account/forms.py:412
4646 msgid "You must type the same password each time."
4747 msgstr "A mesma senha deve ser escrita em ambos os campos."
4848
49 #: account/forms.py:87 account/forms.py:372 account/forms.py:486
49 #: account/forms.py:91 account/forms.py:380 account/forms.py:497
5050 msgid "Password"
5151 msgstr "Senha"
5252
53 #: account/forms.py:88
53 #: account/forms.py:92
5454 msgid "Remember Me"
5555 msgstr "Lembrar-me"
5656
57 #: account/forms.py:92
57 #: account/forms.py:96
5858 msgid "This account is currently inactive."
5959 msgstr "Esta conta está desativada no momento."
6060
61 #: account/forms.py:94
61 #: account/forms.py:98
6262 msgid "The e-mail address and/or password you specified are not correct."
6363 msgstr "O endereço de e-mail e/ou senha especificados não estão corretos."
6464
65 #: account/forms.py:97
65 #: account/forms.py:101
6666 msgid "The username and/or password you specified are not correct."
6767 msgstr "O nome de usuário e/ou senha especificados não estão corretos."
6868
69 #: account/forms.py:108 account/forms.py:273 account/forms.py:429
70 #: account/forms.py:505
69 #: account/forms.py:112 account/forms.py:278 account/forms.py:438
70 #: account/forms.py:516
7171 msgid "E-mail address"
7272 msgstr "Endereço de e-mail"
7373
74 #: account/forms.py:111 account/forms.py:308 account/forms.py:426
75 #: account/forms.py:500
74 #: account/forms.py:116 account/forms.py:315 account/forms.py:435
75 #: account/forms.py:511
7676 msgid "E-mail"
7777 msgstr "E-mail"
7878
79 #: account/forms.py:113 account/forms.py:115 account/forms.py:263
80 #: account/forms.py:267
79 #: account/forms.py:119 account/forms.py:122 account/forms.py:268
80 #: account/forms.py:271
8181 msgid "Username"
8282 msgstr "Nome de usuário"
8383
84 #: account/forms.py:126
84 #: account/forms.py:132
8585 msgid "Username or e-mail"
8686 msgstr "Nome de usuário ou e-mail"
8787
88 #: account/forms.py:130
88 #: account/forms.py:135
8989 msgctxt "field label"
9090 msgid "Login"
9191 msgstr "Login"
9292
93 #: account/forms.py:299
93 #: account/forms.py:306
9494 #, fuzzy
9595 #| msgid "E-mail (optional)"
9696 msgid "E-mail (again)"
9797 msgstr "E-mail (opcional)"
9898
99 #: account/forms.py:303
99 #: account/forms.py:310
100100 #, fuzzy
101101 #| msgid "email confirmation"
102102 msgid "E-mail address confirmation"
103103 msgstr "confirmação de e-mail"
104104
105 #: account/forms.py:311
105 #: account/forms.py:318
106106 msgid "E-mail (optional)"
107107 msgstr "E-mail (opcional)"
108108
109 #: account/forms.py:351
109 #: account/forms.py:358
110110 #, fuzzy
111111 #| msgid "You must type the same password each time."
112112 msgid "You must type the same email each time."
113113 msgstr "A mesma senha deve ser escrita em ambos os campos."
114114
115 #: account/forms.py:374 account/forms.py:487
115 #: account/forms.py:383 account/forms.py:498
116116 msgid "Password (again)"
117117 msgstr "Senha (novamente)"
118118
119 #: account/forms.py:438
119 #: account/forms.py:447
120120 msgid "This e-mail address is already associated with this account."
121121 msgstr "Este endereço de e-mail já foi associado com esta conta."
122122
123 #: account/forms.py:441
123 #: account/forms.py:450
124124 msgid "This e-mail address is already associated with another account."
125125 msgstr "Este endereço de e-mail já foi associado com outra conta."
126126
127 #: account/forms.py:443
127 #: account/forms.py:452
128128 #, fuzzy, python-format
129129 #| msgid "Your account has no verified e-mail address."
130130 msgid "You cannot add more than %d e-mail addresses."
131131 msgstr "A sua conta não tem um endereço de e-mail verificado."
132132
133 #: account/forms.py:467
133 #: account/forms.py:477
134134 msgid "Current Password"
135135 msgstr "Senha Atual"
136136
137 #: account/forms.py:468 account/forms.py:557
137 #: account/forms.py:479 account/forms.py:569
138138 msgid "New Password"
139139 msgstr "Nova Senha"
140140
141 #: account/forms.py:469 account/forms.py:558
141 #: account/forms.py:480 account/forms.py:570
142142 msgid "New Password (again)"
143143 msgstr "Nova Senha (novamente)"
144144
145 #: account/forms.py:477
145 #: account/forms.py:488
146146 msgid "Please type your current password."
147147 msgstr "Por favor insira a sua senha atual."
148148
149 #: account/forms.py:516
149 #: account/forms.py:528
150150 msgid "The e-mail address is not assigned to any user account"
151151 msgstr "O endereço de e-mail não está associado a nenhuma conta de usuário"
152152
153 #: account/forms.py:579
153 #: account/forms.py:591
154154 msgid "The password reset token was invalid."
155155 msgstr "O token de redefinição de senha era inválido"
156156
211211 msgid "Your account has no password set up."
212212 msgstr "A sua conta não tem senha definida."
213213
214 #: socialaccount/adapter.py:141
214 #: socialaccount/adapter.py:138
215215 msgid "Your account has no verified e-mail address."
216216 msgstr "A sua conta não tem um endereço de e-mail verificado."
217217
66 msgstr ""
77 "Project-Id-Version: django-allauth\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2020-10-11 11:15-0500\n"
9 "POT-Creation-Date: 2021-07-11 07:33-0500\n"
1010 "PO-Revision-Date: 2019-02-26 19:48+0100\n"
1111 "Last-Translator: Jannis Š\n"
1212 "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/"
3838 msgid "Accounts"
3939 msgstr "Contas"
4040
41 #: account/forms.py:58 account/forms.py:403
41 #: account/forms.py:58 account/forms.py:412
4242 msgid "You must type the same password each time."
4343 msgstr "Deve escrever a mesma palavra-passe em ambos os campos."
4444
45 #: account/forms.py:87 account/forms.py:372 account/forms.py:486
45 #: account/forms.py:91 account/forms.py:380 account/forms.py:497
4646 msgid "Password"
4747 msgstr "Palavra-passe"
4848
49 #: account/forms.py:88
49 #: account/forms.py:92
5050 msgid "Remember Me"
5151 msgstr "Lembrar-me"
5252
53 #: account/forms.py:92
53 #: account/forms.py:96
5454 msgid "This account is currently inactive."
5555 msgstr "Esta conta está de momento desactivada"
5656
57 #: account/forms.py:94
57 #: account/forms.py:98
5858 msgid "The e-mail address and/or password you specified are not correct."
5959 msgstr ""
6060 "O endereço de e-mail e/ou palavra-passe que especificou não estão corretos."
6161
62 #: account/forms.py:97
62 #: account/forms.py:101
6363 msgid "The username and/or password you specified are not correct."
6464 msgstr ""
6565 "O nome de utilizador e/ou palavra-passe que especificou não estão corretos."
6666
67 #: account/forms.py:108 account/forms.py:273 account/forms.py:429
68 #: account/forms.py:505
67 #: account/forms.py:112 account/forms.py:278 account/forms.py:438
68 #: account/forms.py:516
6969 msgid "E-mail address"
7070 msgstr "Endereço de e-mail"
7171
72 #: account/forms.py:111 account/forms.py:308 account/forms.py:426
73 #: account/forms.py:500
72 #: account/forms.py:116 account/forms.py:315 account/forms.py:435
73 #: account/forms.py:511
7474 msgid "E-mail"
7575 msgstr "E-mail"
7676
77 #: account/forms.py:113 account/forms.py:115 account/forms.py:263
78 #: account/forms.py:267
77 #: account/forms.py:119 account/forms.py:122 account/forms.py:268
78 #: account/forms.py:271
7979 msgid "Username"
8080 msgstr "Nome de utilizador"
8181
82 #: account/forms.py:126
82 #: account/forms.py:132
8383 msgid "Username or e-mail"
8484 msgstr "Nome de utilizador ou e-mail"
8585
86 #: account/forms.py:130
86 #: account/forms.py:135
8787 msgctxt "field label"
8888 msgid "Login"
8989 msgstr "Entrar"
9090
91 #: account/forms.py:299
91 #: account/forms.py:306
9292 msgid "E-mail (again)"
9393 msgstr "E-mail (novamente)"
9494
95 #: account/forms.py:303
95 #: account/forms.py:310
9696 msgid "E-mail address confirmation"
9797 msgstr "Confirmação de endereço de e-mail"
9898
99 #: account/forms.py:311
99 #: account/forms.py:318
100100 msgid "E-mail (optional)"
101101 msgstr "E-mail (opcional)"
102102
103 #: account/forms.py:351
103 #: account/forms.py:358
104104 msgid "You must type the same email each time."
105105 msgstr "Deve escrever o mesmo e-mail em ambos os campos."
106106
107 #: account/forms.py:374 account/forms.py:487
107 #: account/forms.py:383 account/forms.py:498
108108 msgid "Password (again)"
109109 msgstr "Palavra-passe (novamente)"
110110
111 #: account/forms.py:438
111 #: account/forms.py:447
112112 msgid "This e-mail address is already associated with this account."
113113 msgstr "Este endereço de e-mail já foi associado com esta conta."
114114
115 #: account/forms.py:441
115 #: account/forms.py:450
116116 msgid "This e-mail address is already associated with another account."
117117 msgstr "Este endereço de e-mail já foi associado com outra conta."
118118
119 #: account/forms.py:443
119 #: account/forms.py:452
120120 #, fuzzy, python-format
121121 #| msgid "Your account has no verified e-mail address."
122122 msgid "You cannot add more than %d e-mail addresses."
123123 msgstr "A sua conta não tem um endereço de e-mail verificado."
124124
125 #: account/forms.py:467
125 #: account/forms.py:477
126126 msgid "Current Password"
127127 msgstr "Palavra-passe atual"
128128
129 #: account/forms.py:468 account/forms.py:557
129 #: account/forms.py:479 account/forms.py:569
130130 msgid "New Password"
131131 msgstr "Nova Palavra-passe"
132132
133 #: account/forms.py:469 account/forms.py:558
133 #: account/forms.py:480 account/forms.py:570
134134 msgid "New Password (again)"
135135 msgstr "Nova Palavra-passe (novamente)"
136136
137 #: account/forms.py:477
137 #: account/forms.py:488
138138 msgid "Please type your current password."
139139 msgstr "Por favor insira a sua palavra-passe atual."
140140
141 #: account/forms.py:516
141 #: account/forms.py:528
142142 msgid "The e-mail address is not assigned to any user account"
143143 msgstr "O endereço de e-mail não está associado a nenhuma conta de utilizador"
144144
145 #: account/forms.py:579
145 #: account/forms.py:591
146146 msgid "The password reset token was invalid."
147147 msgstr "O token para redefinir a palavra-passe está inválido."
148148
203203 msgid "Your account has no password set up."
204204 msgstr "A sua conta não tem palavra-passe definida."
205205
206 #: socialaccount/adapter.py:141
206 #: socialaccount/adapter.py:138
207207 msgid "Your account has no verified e-mail address."
208208 msgstr "A sua conta não tem um endereço de e-mail verificado."
209209
66 msgstr ""
77 "Project-Id-Version: \n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2020-10-11 11:15-0500\n"
9 "POT-Creation-Date: 2021-07-11 07:33-0500\n"
1010 "PO-Revision-Date: 2017-04-05 22:48+0300\n"
1111 "Last-Translator: \n"
1212 "Language-Team: \n"
1414 "MIME-Version: 1.0\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
17 "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
18 "%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n"
19 "%100>=11 && n%100<=14)? 2 : 3);\n"
1720 "X-Generator: Poedit 1.8.7.1\n"
1821
1922 #: account/adapter.py:45
3740 msgid "Accounts"
3841 msgstr "Аккаунты"
3942
40 #: account/forms.py:58 account/forms.py:403
43 #: account/forms.py:58 account/forms.py:412
4144 msgid "You must type the same password each time."
4245 msgstr "Вы должны ввести одинаковый пароль дважды."
4346
44 #: account/forms.py:87 account/forms.py:372 account/forms.py:486
47 #: account/forms.py:91 account/forms.py:380 account/forms.py:497
4548 msgid "Password"
4649 msgstr "Пароль"
4750
48 #: account/forms.py:88
51 #: account/forms.py:92
4952 msgid "Remember Me"
5053 msgstr "Запомнить меня"
5154
52 #: account/forms.py:92
55 #: account/forms.py:96
5356 msgid "This account is currently inactive."
5457 msgstr "Учетная запись неактивна."
5558
56 #: account/forms.py:94
59 #: account/forms.py:98
5760 msgid "The e-mail address and/or password you specified are not correct."
5861 msgstr "E-mail адрес и/или пароль не верны."
5962
60 #: account/forms.py:97
63 #: account/forms.py:101
6164 msgid "The username and/or password you specified are not correct."
6265 msgstr "Имя пользователя и/или пароль не верны."
6366
64 #: account/forms.py:108 account/forms.py:273 account/forms.py:429
65 #: account/forms.py:505
67 #: account/forms.py:112 account/forms.py:278 account/forms.py:438
68 #: account/forms.py:516
6669 msgid "E-mail address"
6770 msgstr "E-mail адрес"
6871
69 #: account/forms.py:111 account/forms.py:308 account/forms.py:426
70 #: account/forms.py:500
72 #: account/forms.py:116 account/forms.py:315 account/forms.py:435
73 #: account/forms.py:511
7174 msgid "E-mail"
7275 msgstr "E-mail"
7376
74 #: account/forms.py:113 account/forms.py:115 account/forms.py:263
75 #: account/forms.py:267
77 #: account/forms.py:119 account/forms.py:122 account/forms.py:268
78 #: account/forms.py:271
7679 msgid "Username"
7780 msgstr "Имя пользователя"
7881
79 #: account/forms.py:126
82 #: account/forms.py:132
8083 msgid "Username or e-mail"
8184 msgstr "Имя пользователя или e-mail"
8285
83 #: account/forms.py:130
86 #: account/forms.py:135
8487 msgctxt "field label"
8588 msgid "Login"
8689 msgstr "Войти"
8790
88 #: account/forms.py:299
91 #: account/forms.py:306
8992 msgid "E-mail (again)"
9093 msgstr "E-mail (ещё раз)"
9194
92 #: account/forms.py:303
95 #: account/forms.py:310
9396 msgid "E-mail address confirmation"
9497 msgstr "Подтверждение email адреса"
9598
96 #: account/forms.py:311
99 #: account/forms.py:318
97100 msgid "E-mail (optional)"
98101 msgstr "E-mail (опционально)"
99102
100 #: account/forms.py:351
103 #: account/forms.py:358
101104 msgid "You must type the same email each time."
102105 msgstr "Вы должны ввести одинаковый e-mail дважды."
103106
104 #: account/forms.py:374 account/forms.py:487
107 #: account/forms.py:383 account/forms.py:498
105108 msgid "Password (again)"
106109 msgstr "Пароль (ещё раз)"
107110
108 #: account/forms.py:438
111 #: account/forms.py:447
109112 msgid "This e-mail address is already associated with this account."
110113 msgstr "Указанный e-mail уже прикреплен к этому аккаунту."
111114
112 #: account/forms.py:441
115 #: account/forms.py:450
113116 msgid "This e-mail address is already associated with another account."
114117 msgstr "Указанный e-mail прикреплен к другому пользователю."
115118
116 #: account/forms.py:443
119 #: account/forms.py:452
117120 #, fuzzy, python-format
118121 #| msgid "Your account has no verified e-mail address."
119122 msgid "You cannot add more than %d e-mail addresses."
120123 msgstr "Нет подтвержденных e-mail адресов для вашего аккаунта."
121124
122 #: account/forms.py:467
125 #: account/forms.py:477
123126 msgid "Current Password"
124127 msgstr "Текущий пароль"
125128
126 #: account/forms.py:468 account/forms.py:557
129 #: account/forms.py:479 account/forms.py:569
127130 msgid "New Password"
128131 msgstr "Новый пароль"
129132
130 #: account/forms.py:469 account/forms.py:558
133 #: account/forms.py:480 account/forms.py:570
131134 msgid "New Password (again)"
132135 msgstr "Новый пароль (ещё раз)"
133136
134 #: account/forms.py:477
137 #: account/forms.py:488
135138 msgid "Please type your current password."
136139 msgstr "Пожалуйста, введите свой текущий пароль."
137140
138 #: account/forms.py:516
141 #: account/forms.py:528
139142 msgid "The e-mail address is not assigned to any user account"
140143 msgstr "Нет пользователя с таким e-mail"
141144
142 #: account/forms.py:579
145 #: account/forms.py:591
143146 msgid "The password reset token was invalid."
144147 msgstr "Неправильный код для сброса пароля."
145148
200203 msgid "Your account has no password set up."
201204 msgstr "Для вашего аккаунта не установлен пароль."
202205
203 #: socialaccount/adapter.py:141
206 #: socialaccount/adapter.py:138
204207 msgid "Your account has no verified e-mail address."
205208 msgstr "Нет подтвержденных e-mail адресов для вашего аккаунта."
206209
66 msgstr ""
77 "Project-Id-Version: \n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2020-10-11 11:15-0500\n"
10 "PO-Revision-Date: 2017-04-26 12:48+0200\n"
9 "POT-Creation-Date: 2021-07-11 07:33-0500\n"
10 "PO-Revision-Date: 2021-02-22 20:18+0100\n"
1111 "Last-Translator: Tomas Babej <tomasbabej@gmail.com>\n"
1212 "Language-Team: \n"
1313 "Language: sk\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "X-Generator: Poedit 2.0.1\n"
18 "Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n "
19 ">= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
1820
1921 #: account/adapter.py:45
2022 msgid "Username can not be used. Please use other username."
3739 msgid "Accounts"
3840 msgstr "Účty"
3941
40 #: account/forms.py:58 account/forms.py:403
42 #: account/forms.py:58 account/forms.py:412
4143 msgid "You must type the same password each time."
4244 msgstr "Heslá sa nezhodujú."
4345
44 #: account/forms.py:87 account/forms.py:372 account/forms.py:486
46 #: account/forms.py:91 account/forms.py:380 account/forms.py:497
4547 msgid "Password"
4648 msgstr "Heslo"
4749
48 #: account/forms.py:88
50 #: account/forms.py:92
4951 msgid "Remember Me"
5052 msgstr "Zapamätať si ma"
5153
52 #: account/forms.py:92
54 #: account/forms.py:96
5355 msgid "This account is currently inactive."
5456 msgstr "Tento účet nie je momentálne aktívny."
5557
56 #: account/forms.py:94
58 #: account/forms.py:98
5759 msgid "The e-mail address and/or password you specified are not correct."
5860 msgstr "Uvedený e-mail alebo heslo nie je správne."
5961
60 #: account/forms.py:97
62 #: account/forms.py:101
6163 msgid "The username and/or password you specified are not correct."
6264 msgstr "Uvedené užívateľské meno alebo heslo nie je správne."
6365
64 #: account/forms.py:108 account/forms.py:273 account/forms.py:429
65 #: account/forms.py:505
66 #: account/forms.py:112 account/forms.py:278 account/forms.py:438
67 #: account/forms.py:516
6668 msgid "E-mail address"
6769 msgstr "E-mailová adresa"
6870
69 #: account/forms.py:111 account/forms.py:308 account/forms.py:426
70 #: account/forms.py:500
71 #: account/forms.py:116 account/forms.py:315 account/forms.py:435
72 #: account/forms.py:511
7173 msgid "E-mail"
7274 msgstr "E-mail"
7375
74 #: account/forms.py:113 account/forms.py:115 account/forms.py:263
75 #: account/forms.py:267
76 #: account/forms.py:119 account/forms.py:122 account/forms.py:268
77 #: account/forms.py:271
7678 msgid "Username"
7779 msgstr "Užívateľské meno"
7880
79 #: account/forms.py:126
81 #: account/forms.py:132
8082 msgid "Username or e-mail"
8183 msgstr "Užívateľské meno alebo e-mail"
8284
83 #: account/forms.py:130
85 #: account/forms.py:135
8486 msgctxt "field label"
8587 msgid "Login"
8688 msgstr "Login"
8789
88 #: account/forms.py:299
90 #: account/forms.py:306
8991 msgid "E-mail (again)"
9092 msgstr "E-mail (znova)"
9193
92 #: account/forms.py:303
94 #: account/forms.py:310
9395 msgid "E-mail address confirmation"
9496 msgstr "Potvrdenie e-mailu"
9597
96 #: account/forms.py:311
98 #: account/forms.py:318
9799 msgid "E-mail (optional)"
98100 msgstr "E-mail (nepovinné)"
99101
100 #: account/forms.py:351
102 #: account/forms.py:358
101103 msgid "You must type the same email each time."
102104 msgstr "Heslá sa nezhodujú."
103105
104 #: account/forms.py:374 account/forms.py:487
106 #: account/forms.py:383 account/forms.py:498
105107 msgid "Password (again)"
106108 msgstr "Heslo (znovu)"
107109
108 #: account/forms.py:438
110 #: account/forms.py:447
109111 msgid "This e-mail address is already associated with this account."
110112 msgstr "Táto e-mailová adresa je už spojená s týmto účtom."
111113
112 #: account/forms.py:441
114 #: account/forms.py:450
113115 msgid "This e-mail address is already associated with another account."
114116 msgstr "Táto e-mailová adresa je už spojená s iným účtom."
115117
116 #: account/forms.py:443
118 #: account/forms.py:452
117119 #, fuzzy, python-format
118120 #| msgid "Your account has no verified e-mail address."
119121 msgid "You cannot add more than %d e-mail addresses."
120122 msgstr "Váš účet nemá overenú e-mailovú adresu."
121123
122 #: account/forms.py:467
124 #: account/forms.py:477
123125 msgid "Current Password"
124126 msgstr "Súčasné heslo"
125127
126 #: account/forms.py:468 account/forms.py:557
128 #: account/forms.py:479 account/forms.py:569
127129 msgid "New Password"
128130 msgstr "Nové heslo"
129131
130 #: account/forms.py:469 account/forms.py:558
132 #: account/forms.py:480 account/forms.py:570
131133 msgid "New Password (again)"
132134 msgstr "Nové heslo (znovu)"
133135
134 #: account/forms.py:477
136 #: account/forms.py:488
135137 msgid "Please type your current password."
136138 msgstr "Prosím, napíšte svoje súčasné heslo."
137139
138 #: account/forms.py:516
140 #: account/forms.py:528
139141 msgid "The e-mail address is not assigned to any user account"
140142 msgstr ""
141143 "Táto e-mailová adresa nie je pridelená k žiadnemu používateľskému kontu"
142144
143 #: account/forms.py:579
145 #: account/forms.py:591
144146 msgid "The password reset token was invalid."
145147 msgstr "Token na obnovu hesla bol nesprávny."
146148
201203 msgid "Your account has no password set up."
202204 msgstr "Váš účet nemá nastavené heslo."
203205
204 #: socialaccount/adapter.py:141
206 #: socialaccount/adapter.py:138
205207 msgid "Your account has no verified e-mail address."
206208 msgstr "Váš účet nemá overenú e-mailovú adresu."
207209
625627 "We have sent you an e-mail. Please contact us if you do not receive it "
626628 "within a few minutes."
627629 msgstr ""
628 "Odoslali sme vám e-mail. Prosím kontaktujte nás ak ste ho nedostalido pár "
630 "Odoslali sme vám e-mail. Prosím kontaktujte nás ak ste ho nedostali do pár "
629631 "minút."
630632
631633 #: templates/account/password_reset_from_key.html:7
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2020-10-11 11:15-0500\n"
10 "POT-Creation-Date: 2021-07-11 07:33-0500\n"
1111 "PO-Revision-Date: 2020-06-27 12:21+0122\n"
1212 "Last-Translator: Lev Predan Kowarski <lev@filmoteka.si>\n"
1313 "Language-Team: Bojan Mihelac <bmihelac@mihelac.org>, Lev Predan Kowarski "
4242 msgid "Accounts"
4343 msgstr "Računi"
4444
45 #: account/forms.py:58 account/forms.py:403
45 #: account/forms.py:58 account/forms.py:412
4646 msgid "You must type the same password each time."
4747 msgstr "Vnesti je potrebno isto geslo."
4848
49 #: account/forms.py:87 account/forms.py:372 account/forms.py:486
49 #: account/forms.py:91 account/forms.py:380 account/forms.py:497
5050 msgid "Password"
5151 msgstr "Geslo"
5252
53 #: account/forms.py:88
53 #: account/forms.py:92
5454 msgid "Remember Me"
5555 msgstr "Zapomni si me"
5656
57 #: account/forms.py:92
57 #: account/forms.py:96
5858 msgid "This account is currently inactive."
5959 msgstr "Račun trenutno ni aktiven."
6060
61 #: account/forms.py:94
61 #: account/forms.py:98
6262 msgid "The e-mail address and/or password you specified are not correct."
6363 msgstr "E-poštni naslov in/ali geslo nista pravilna."
6464
65 #: account/forms.py:97
65 #: account/forms.py:101
6666 msgid "The username and/or password you specified are not correct."
6767 msgstr "Uporabniško ime in/ali geslo nista pravilna."
6868
69 #: account/forms.py:108 account/forms.py:273 account/forms.py:429
70 #: account/forms.py:505
69 #: account/forms.py:112 account/forms.py:278 account/forms.py:438
70 #: account/forms.py:516
7171 msgid "E-mail address"
7272 msgstr "E-poštni naslov"
7373
74 #: account/forms.py:111 account/forms.py:308 account/forms.py:426
75 #: account/forms.py:500
74 #: account/forms.py:116 account/forms.py:315 account/forms.py:435
75 #: account/forms.py:511
7676 msgid "E-mail"
7777 msgstr "E-poštni naslov"
7878
79 #: account/forms.py:113 account/forms.py:115 account/forms.py:263
80 #: account/forms.py:267
79 #: account/forms.py:119 account/forms.py:122 account/forms.py:268
80 #: account/forms.py:271
8181 msgid "Username"
8282 msgstr "Uporabniško ime"
8383
84 #: account/forms.py:126
84 #: account/forms.py:132
8585 msgid "Username or e-mail"
8686 msgstr "Uporabniško ime ali e-poštni naslov"
8787
88 #: account/forms.py:130
88 #: account/forms.py:135
8989 msgctxt "field label"
9090 msgid "Login"
9191 msgstr "Prijava"
9292
93 #: account/forms.py:299
93 #: account/forms.py:306
9494 msgid "E-mail (again)"
9595 msgstr "E-pooštni naslov (ponovno)"
9696
97 #: account/forms.py:303
97 #: account/forms.py:310
9898 msgid "E-mail address confirmation"
9999 msgstr "Potrditev e-poštni naslova"
100100
101 #: account/forms.py:311
101 #: account/forms.py:318
102102 msgid "E-mail (optional)"
103103 msgstr "E-poštni naslov (neobvezno)"
104104
105 #: account/forms.py:351
105 #: account/forms.py:358
106106 msgid "You must type the same email each time."
107107 msgstr "Vnesti je potrebno isti e-poštni naslov."
108108
109 #: account/forms.py:374 account/forms.py:487
109 #: account/forms.py:383 account/forms.py:498
110110 msgid "Password (again)"
111111 msgstr "Geslo (ponovno)"
112112
113 #: account/forms.py:438
113 #: account/forms.py:447
114114 msgid "This e-mail address is already associated with this account."
115115 msgstr "E-poštni naslov že pripada vašemu uporabniškemu računu."
116116
117 #: account/forms.py:441
117 #: account/forms.py:450
118118 msgid "This e-mail address is already associated with another account."
119119 msgstr "E-poštni naslov že pripada drugemu uporabniškemu računu."
120120
121 #: account/forms.py:443
121 #: account/forms.py:452
122122 #, fuzzy, python-format
123123 #| msgid "Your account has no verified e-mail address."
124124 msgid "You cannot add more than %d e-mail addresses."
125125 msgstr "Vaš uporabniški račun nima preverjenega e-poštnega naslova."
126126
127 #: account/forms.py:467
127 #: account/forms.py:477
128128 msgid "Current Password"
129129 msgstr "Trenutno geslo"
130130
131 #: account/forms.py:468 account/forms.py:557
131 #: account/forms.py:479 account/forms.py:569
132132 msgid "New Password"
133133 msgstr "Novo geslo"
134134
135 #: account/forms.py:469 account/forms.py:558
135 #: account/forms.py:480 account/forms.py:570
136136 msgid "New Password (again)"
137137 msgstr "Novo geslo (ponovno)"
138138
139 #: account/forms.py:477
139 #: account/forms.py:488
140140 msgid "Please type your current password."
141141 msgstr "Prosimo vpišite trenutno geslo."
142142
143 #: account/forms.py:516
143 #: account/forms.py:528
144144 msgid "The e-mail address is not assigned to any user account"
145145 msgstr "E-poštni naslov ne pripada nobenemu uporabniškemu računu."
146146
147 #: account/forms.py:579
147 #: account/forms.py:591
148148 msgid "The password reset token was invalid."
149149 msgstr "Žeton za ponastavitev gesla je bil neveljaven."
150150
207207 msgid "Your account has no password set up."
208208 msgstr "Vaš uporabniški račun nima nastavljenega gesla."
209209
210 #: socialaccount/adapter.py:141
210 #: socialaccount/adapter.py:138
211211 msgid "Your account has no verified e-mail address."
212212 msgstr "Vaš uporabniški račun nima preverjenega e-poštnega naslova."
213213
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2020-10-11 11:15-0500\n"
10 "POT-Creation-Date: 2021-07-11 07:33-0500\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: Nikola Vulovic <nivukiki@gmail.com>\n"
1313 "Language-Team: NONE\n"
4040 msgid "Accounts"
4141 msgstr "Рачуни"
4242
43 #: account/forms.py:58 account/forms.py:403
43 #: account/forms.py:58 account/forms.py:412
4444 msgid "You must type the same password each time."
4545 msgstr "Морате унијети исту лозинку сваки пут"
4646
47 #: account/forms.py:87 account/forms.py:372 account/forms.py:486
47 #: account/forms.py:91 account/forms.py:380 account/forms.py:497
4848 msgid "Password"
4949 msgstr "Лозинка"
5050
51 #: account/forms.py:88
51 #: account/forms.py:92
5252 msgid "Remember Me"
5353 msgstr "Сети ме се"
5454
55 #: account/forms.py:92
55 #: account/forms.py:96
5656 msgid "This account is currently inactive."
5757 msgstr "Овај налог је тренутно неактиван."
5858
59 #: account/forms.py:94
59 #: account/forms.py:98
6060 msgid "The e-mail address and/or password you specified are not correct."
6161 msgstr "Адреса е-поште и/или лозинка коју сте навели нису тачни."
6262
63 #: account/forms.py:97
63 #: account/forms.py:101
6464 msgid "The username and/or password you specified are not correct."
6565 msgstr "Корисничко име и/или лозинка коју сте навели нису тачни."
6666
67 #: account/forms.py:108 account/forms.py:273 account/forms.py:429
68 #: account/forms.py:505
67 #: account/forms.py:112 account/forms.py:278 account/forms.py:438
68 #: account/forms.py:516
6969 msgid "E-mail address"
7070 msgstr "Адреса е-поште"
7171
72 #: account/forms.py:111 account/forms.py:308 account/forms.py:426
73 #: account/forms.py:500
72 #: account/forms.py:116 account/forms.py:315 account/forms.py:435
73 #: account/forms.py:511
7474 msgid "E-mail"
7575 msgstr "Е-пошта"
7676
77 #: account/forms.py:113 account/forms.py:115 account/forms.py:263
78 #: account/forms.py:267
77 #: account/forms.py:119 account/forms.py:122 account/forms.py:268
78 #: account/forms.py:271
7979 msgid "Username"
8080 msgstr "Корисничко име"
8181
82 #: account/forms.py:126
82 #: account/forms.py:132
8383 msgid "Username or e-mail"
8484 msgstr "Корисничко име или е-пошта"
8585
86 #: account/forms.py:130
86 #: account/forms.py:135
8787 msgctxt "field label"
8888 msgid "Login"
8989 msgstr "Пријавите се"
9090
91 #: account/forms.py:299
91 #: account/forms.py:306
9292 msgid "E-mail (again)"
9393 msgstr "Е-пошта (опет)"
9494
95 #: account/forms.py:303
95 #: account/forms.py:310
9696 msgid "E-mail address confirmation"
9797 msgstr "Потврда адресе е-поште"
9898
99 #: account/forms.py:311
99 #: account/forms.py:318
100100 msgid "E-mail (optional)"
101101 msgstr "Е-пошта (опционо)"
102102
103 #: account/forms.py:351
103 #: account/forms.py:358
104104 msgid "You must type the same email each time."
105105 msgstr "Морате унијети исту адресу е-поште сваки пут."
106106
107 #: account/forms.py:374 account/forms.py:487
107 #: account/forms.py:383 account/forms.py:498
108108 msgid "Password (again)"
109109 msgstr "Лозинка (поново)"
110110
111 #: account/forms.py:438
111 #: account/forms.py:447
112112 msgid "This e-mail address is already associated with this account."
113113 msgstr "Ова адреса е-поште је већ повезана са овим налогом."
114114
115 #: account/forms.py:441
115 #: account/forms.py:450
116116 msgid "This e-mail address is already associated with another account."
117117 msgstr "Ова адреса е-поште је већ повезана са другим налогом."
118118
119 #: account/forms.py:443
119 #: account/forms.py:452
120120 #, fuzzy, python-format
121121 #| msgid "Your account has no verified e-mail address."
122122 msgid "You cannot add more than %d e-mail addresses."
123123 msgstr "Ваш налог нема потврђену е-маил адресу."
124124
125 #: account/forms.py:467
125 #: account/forms.py:477
126126 msgid "Current Password"
127127 msgstr "Тренутна лозинка"
128128
129 #: account/forms.py:468 account/forms.py:557
129 #: account/forms.py:479 account/forms.py:569
130130 msgid "New Password"
131131 msgstr "Нова лозинка"
132132
133 #: account/forms.py:469 account/forms.py:558
133 #: account/forms.py:480 account/forms.py:570
134134 msgid "New Password (again)"
135135 msgstr "Нова лозинка (поново)"
136136
137 #: account/forms.py:477
137 #: account/forms.py:488
138138 msgid "Please type your current password."
139139 msgstr "Молимо унесите тренутну лозинку."
140140
141 #: account/forms.py:516
141 #: account/forms.py:528
142142 msgid "The e-mail address is not assigned to any user account"
143143 msgstr "Адреса е-поште није додељена било ком корисничком налогу"
144144
145 #: account/forms.py:579
145 #: account/forms.py:591
146146 msgid "The password reset token was invalid."
147147 msgstr "Токен ресетовања лозинке је неважећи."
148148
203203 msgid "Your account has no password set up."
204204 msgstr "Ваш налог нема подешену лозинку."
205205
206 #: socialaccount/adapter.py:141
206 #: socialaccount/adapter.py:138
207207 msgid "Your account has no verified e-mail address."
208208 msgstr "Ваш налог нема потврђену е-маил адресу."
209209
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2020-10-11 11:15-0500\n"
10 "POT-Creation-Date: 2021-07-11 07:33-0500\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: Nikola Vulovic <nivukiki@gmail.com>\n"
1313 "Language-Team: NONE\n"
4040 msgid "Accounts"
4141 msgstr "Računi"
4242
43 #: account/forms.py:58 account/forms.py:403
43 #: account/forms.py:58 account/forms.py:412
4444 msgid "You must type the same password each time."
4545 msgstr "Morate unijeti istu lozinku svaki put"
4646
47 #: account/forms.py:87 account/forms.py:372 account/forms.py:486
47 #: account/forms.py:91 account/forms.py:380 account/forms.py:497
4848 msgid "Password"
4949 msgstr "Lozinka"
5050
51 #: account/forms.py:88
51 #: account/forms.py:92
5252 msgid "Remember Me"
5353 msgstr "Seti me se"
5454
55 #: account/forms.py:92
55 #: account/forms.py:96
5656 msgid "This account is currently inactive."
5757 msgstr "Ovaj nalog je trenutno neaktivan."
5858
59 #: account/forms.py:94
59 #: account/forms.py:98
6060 msgid "The e-mail address and/or password you specified are not correct."
6161 msgstr "Adresa e-pošte i/ili lozinka koju ste naveli nisu tačni."
6262
63 #: account/forms.py:97
63 #: account/forms.py:101
6464 msgid "The username and/or password you specified are not correct."
6565 msgstr "Korisničko ime i/ili lozinka koju ste naveli nisu tačni."
6666
67 #: account/forms.py:108 account/forms.py:273 account/forms.py:429
68 #: account/forms.py:505
67 #: account/forms.py:112 account/forms.py:278 account/forms.py:438
68 #: account/forms.py:516
6969 msgid "E-mail address"
7070 msgstr "Adresa e-pošte"
7171
72 #: account/forms.py:111 account/forms.py:308 account/forms.py:426
73 #: account/forms.py:500
72 #: account/forms.py:116 account/forms.py:315 account/forms.py:435
73 #: account/forms.py:511
7474 msgid "E-mail"
7575 msgstr "E-pošta"
7676
77 #: account/forms.py:113 account/forms.py:115 account/forms.py:263
78 #: account/forms.py:267
77 #: account/forms.py:119 account/forms.py:122 account/forms.py:268
78 #: account/forms.py:271
7979 msgid "Username"
8080 msgstr "Korisničko ime"
8181
82 #: account/forms.py:126
82 #: account/forms.py:132
8383 msgid "Username or e-mail"
8484 msgstr "Korisničko ime ili e-pošta"
8585
86 #: account/forms.py:130
86 #: account/forms.py:135
8787 msgctxt "field label"
8888 msgid "Login"
8989 msgstr "Prijavite se"
9090
91 #: account/forms.py:299
91 #: account/forms.py:306
9292 msgid "E-mail (again)"
9393 msgstr "E-pošta (opet)"
9494
95 #: account/forms.py:303
95 #: account/forms.py:310
9696 msgid "E-mail address confirmation"
9797 msgstr "Potvrda adrese e-pošte"
9898
99 #: account/forms.py:311
99 #: account/forms.py:318
100100 msgid "E-mail (optional)"
101101 msgstr "E-pošta (opciono)"
102102
103 #: account/forms.py:351
103 #: account/forms.py:358
104104 msgid "You must type the same email each time."
105105 msgstr "Morate unijeti istu adresu e-pošte svaki put."
106106
107 #: account/forms.py:374 account/forms.py:487
107 #: account/forms.py:383 account/forms.py:498
108108 msgid "Password (again)"
109109 msgstr "Lozinka (ponovo)"
110110
111 #: account/forms.py:438
111 #: account/forms.py:447
112112 msgid "This e-mail address is already associated with this account."
113113 msgstr "Ova adresa e-pošte je već povezana sa ovim nalogom."
114114
115 #: account/forms.py:441
115 #: account/forms.py:450
116116 msgid "This e-mail address is already associated with another account."
117117 msgstr "Ova adresa e-pošte je već povezana sa drugim nalogom."
118118
119 #: account/forms.py:443
119 #: account/forms.py:452
120120 #, fuzzy, python-format
121121 #| msgid "Your account has no verified e-mail address."
122122 msgid "You cannot add more than %d e-mail addresses."
123123 msgstr "Vaš nalog nema potvrđenu e-mail adresu."
124124
125 #: account/forms.py:467
125 #: account/forms.py:477
126126 msgid "Current Password"
127127 msgstr "Trenutna lozinka"
128128
129 #: account/forms.py:468 account/forms.py:557
129 #: account/forms.py:479 account/forms.py:569
130130 msgid "New Password"
131131 msgstr "Nova lozinka"
132132
133 #: account/forms.py:469 account/forms.py:558
133 #: account/forms.py:480 account/forms.py:570
134134 msgid "New Password (again)"
135135 msgstr "Nova lozinka (ponovo)"
136136
137 #: account/forms.py:477
137 #: account/forms.py:488
138138 msgid "Please type your current password."
139139 msgstr "Molimo unesite trenutnu lozinku."
140140
141 #: account/forms.py:516
141 #: account/forms.py:528
142142 msgid "The e-mail address is not assigned to any user account"
143143 msgstr "Adresa e-pošte nije dodeljena bilo kom korisničkom nalogu"
144144
145 #: account/forms.py:579
145 #: account/forms.py:591
146146 msgid "The password reset token was invalid."
147147 msgstr "Token resetovanja lozinke je nevažeći."
148148
203203 msgid "Your account has no password set up."
204204 msgstr "Vaš nalog nema podešenu lozinku."
205205
206 #: socialaccount/adapter.py:141
206 #: socialaccount/adapter.py:138
207207 msgid "Your account has no verified e-mail address."
208208 msgstr "Vaš nalog nema potvrđenu e-mail adresu."
209209
66 msgstr ""
77 "Project-Id-Version: django-allauth\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2020-10-11 11:15-0500\n"
9 "POT-Creation-Date: 2021-07-11 07:33-0500\n"
1010 "PO-Revision-Date: 2014-08-12 00:35+0200\n"
1111 "Last-Translator: Jannis Š\n"
1212 "Language-Team: Swedish (http://www.transifex.com/projects/p/django-allauth/"
3939 msgid "Accounts"
4040 msgstr "Konto"
4141
42 #: account/forms.py:58 account/forms.py:403
42 #: account/forms.py:58 account/forms.py:412
4343 msgid "You must type the same password each time."
4444 msgstr "Du måste ange samma lösenord"
4545
46 #: account/forms.py:87 account/forms.py:372 account/forms.py:486
46 #: account/forms.py:91 account/forms.py:380 account/forms.py:497
4747 msgid "Password"
4848 msgstr "Lösenord"
4949
50 #: account/forms.py:88
50 #: account/forms.py:92
5151 msgid "Remember Me"
5252 msgstr "Kom ihåg mig"
5353
54 #: account/forms.py:92
54 #: account/forms.py:96
5555 msgid "This account is currently inactive."
5656 msgstr "Detta konto är inaktivt."
5757
58 #: account/forms.py:94
58 #: account/forms.py:98
5959 msgid "The e-mail address and/or password you specified are not correct."
6060 msgstr "Epost-adressen och/eller lösenordet är felaktigt."
6161
62 #: account/forms.py:97
62 #: account/forms.py:101
6363 msgid "The username and/or password you specified are not correct."
6464 msgstr "Användarnamnet och/eller lösenordet är felaktigt."
6565
66 #: account/forms.py:108 account/forms.py:273 account/forms.py:429
67 #: account/forms.py:505
66 #: account/forms.py:112 account/forms.py:278 account/forms.py:438
67 #: account/forms.py:516
6868 msgid "E-mail address"
6969 msgstr "Epost-adress"
7070
71 #: account/forms.py:111 account/forms.py:308 account/forms.py:426
72 #: account/forms.py:500
71 #: account/forms.py:116 account/forms.py:315 account/forms.py:435
72 #: account/forms.py:511
7373 msgid "E-mail"
7474 msgstr "Epost"
7575
76 #: account/forms.py:113 account/forms.py:115 account/forms.py:263
77 #: account/forms.py:267
76 #: account/forms.py:119 account/forms.py:122 account/forms.py:268
77 #: account/forms.py:271
7878 msgid "Username"
7979 msgstr "Användarnamn"
8080
81 #: account/forms.py:126
81 #: account/forms.py:132
8282 msgid "Username or e-mail"
8383 msgstr "Användarnamn eller epost-adress"
8484
85 #: account/forms.py:130
85 #: account/forms.py:135
8686 msgctxt "field label"
8787 msgid "Login"
8888 msgstr "Logga in"
8989
90 #: account/forms.py:299
90 #: account/forms.py:306
9191 #, fuzzy
9292 #| msgid "E-mail (optional)"
9393 msgid "E-mail (again)"
9494 msgstr "Epost (valfritt)"
9595
96 #: account/forms.py:303
96 #: account/forms.py:310
9797 #, fuzzy
9898 #| msgid "email confirmation"
9999 msgid "E-mail address confirmation"
100100 msgstr "epost-bekräftelse"
101101
102 #: account/forms.py:311
102 #: account/forms.py:318
103103 msgid "E-mail (optional)"
104104 msgstr "Epost (valfritt)"
105105
106 #: account/forms.py:351
106 #: account/forms.py:358
107107 #, fuzzy
108108 #| msgid "You must type the same password each time."
109109 msgid "You must type the same email each time."
110110 msgstr "Du måste ange samma lösenord"
111111
112 #: account/forms.py:374 account/forms.py:487
112 #: account/forms.py:383 account/forms.py:498
113113 msgid "Password (again)"
114114 msgstr "Lösenord (igen)"
115115
116 #: account/forms.py:438
116 #: account/forms.py:447
117117 msgid "This e-mail address is already associated with this account."
118118 msgstr "Denna epost-adress är redan knuten till detta konto"
119119
120 #: account/forms.py:441
120 #: account/forms.py:450
121121 msgid "This e-mail address is already associated with another account."
122122 msgstr "Denna epost-adress är redan knuten till ett annat konto"
123123
124 #: account/forms.py:443
124 #: account/forms.py:452
125125 #, fuzzy, python-format
126126 #| msgid "Your account has no verified e-mail address."
127127 msgid "You cannot add more than %d e-mail addresses."
128128 msgstr "Ditt konto har ingen verifierad epost-adress."
129129
130 #: account/forms.py:467
130 #: account/forms.py:477
131131 msgid "Current Password"
132132 msgstr "Nuvarande lösenord"
133133
134 #: account/forms.py:468 account/forms.py:557
134 #: account/forms.py:479 account/forms.py:569
135135 msgid "New Password"
136136 msgstr "Nytt lösenord"
137137
138 #: account/forms.py:469 account/forms.py:558
138 #: account/forms.py:480 account/forms.py:570
139139 msgid "New Password (again)"
140140 msgstr "Nytt lösenord (igen)"
141141
142 #: account/forms.py:477
142 #: account/forms.py:488
143143 msgid "Please type your current password."
144144 msgstr "Skriv in ditt nuvarande lösenord."
145145
146 #: account/forms.py:516
146 #: account/forms.py:528
147147 msgid "The e-mail address is not assigned to any user account"
148148 msgstr "Epost-adressen är inte knuten till något konto"
149149
150 #: account/forms.py:579
150 #: account/forms.py:591
151151 msgid "The password reset token was invalid."
152152 msgstr ""
153153
209209 msgid "Your account has no password set up."
210210 msgstr "Ditt konto har inget lösenord."
211211
212 #: socialaccount/adapter.py:141
212 #: socialaccount/adapter.py:138
213213 msgid "Your account has no verified e-mail address."
214214 msgstr "Ditt konto har ingen verifierad epost-adress."
215215
99 msgstr ""
1010 "Project-Id-Version: django-allauth\n"
1111 "Report-Msgid-Bugs-To: \n"
12 "POT-Creation-Date: 2020-10-11 11:15-0500\n"
12 "POT-Creation-Date: 2021-07-11 07:33-0500\n"
1313 "PO-Revision-Date: 2015-06-26 13:09+0700\n"
1414 "Last-Translator: Nattaphoom Chaipreecha <attomos@gmail.com>\n"
1515 "Language-Team: Thai <LL@li.org>\n"
4040 msgid "Accounts"
4141 msgstr "บัญชี"
4242
43 #: account/forms.py:58 account/forms.py:403
43 #: account/forms.py:58 account/forms.py:412
4444 msgid "You must type the same password each time."
4545 msgstr "ต้องพิมพ์รหัสผ่านเดิมซ้ำอีกครั้ง"
4646
47 #: account/forms.py:87 account/forms.py:372 account/forms.py:486
47 #: account/forms.py:91 account/forms.py:380 account/forms.py:497
4848 msgid "Password"
4949 msgstr "รหัสผ่าน"
5050
51 #: account/forms.py:88
51 #: account/forms.py:92
5252 msgid "Remember Me"
5353 msgstr "จดจำการเข้าใช้"
5454
55 #: account/forms.py:92
55 #: account/forms.py:96
5656 msgid "This account is currently inactive."
5757 msgstr "บัญชีนี้อยู่ในสถานะที่ใช้งานไม่ได้่"
5858
59 #: account/forms.py:94
59 #: account/forms.py:98
6060 msgid "The e-mail address and/or password you specified are not correct."
6161 msgstr "อีเมลและ/หรือรหัสผ่านที่ระบุมาไม่ถูกต้อง"
6262
63 #: account/forms.py:97
63 #: account/forms.py:101
6464 msgid "The username and/or password you specified are not correct."
6565 msgstr "ชื่อผู้ใช้และ/หรือรหัสผ่านที่ระบุมาไม่ถูกต้อง"
6666
67 #: account/forms.py:108 account/forms.py:273 account/forms.py:429
68 #: account/forms.py:505
67 #: account/forms.py:112 account/forms.py:278 account/forms.py:438
68 #: account/forms.py:516
6969 msgid "E-mail address"
7070 msgstr "อีเมล"
7171
72 #: account/forms.py:111 account/forms.py:308 account/forms.py:426
73 #: account/forms.py:500
72 #: account/forms.py:116 account/forms.py:315 account/forms.py:435
73 #: account/forms.py:511
7474 msgid "E-mail"
7575 msgstr "อีเมล"
7676
77 #: account/forms.py:113 account/forms.py:115 account/forms.py:263
78 #: account/forms.py:267
77 #: account/forms.py:119 account/forms.py:122 account/forms.py:268
78 #: account/forms.py:271
7979 msgid "Username"
8080 msgstr "ชื่อผู้ใช้"
8181
82 #: account/forms.py:126
82 #: account/forms.py:132
8383 msgid "Username or e-mail"
8484 msgstr "ชื่อผู้ใช้ หรือ อีเมล"
8585
86 #: account/forms.py:130
86 #: account/forms.py:135
8787 msgctxt "field label"
8888 msgid "Login"
8989 msgstr "ลงชื่อเข้าใช้"
9090
91 #: account/forms.py:299
91 #: account/forms.py:306
9292 #, fuzzy
9393 #| msgid "E-mail (optional)"
9494 msgid "E-mail (again)"
9595 msgstr "อีเมล (ไม่จำเป็น)"
9696
97 #: account/forms.py:303
97 #: account/forms.py:310
9898 #, fuzzy
9999 #| msgid "email confirmation"
100100 msgid "E-mail address confirmation"
101101 msgstr "การยืนยันอีเมล"
102102
103 #: account/forms.py:311
103 #: account/forms.py:318
104104 msgid "E-mail (optional)"
105105 msgstr "อีเมล (ไม่จำเป็น)"
106106
107 #: account/forms.py:351
107 #: account/forms.py:358
108108 #, fuzzy
109109 #| msgid "You must type the same password each time."
110110 msgid "You must type the same email each time."
111111 msgstr "ต้องพิมพ์รหัสผ่านเดิมซ้ำอีกครั้ง"
112112
113 #: account/forms.py:374 account/forms.py:487
113 #: account/forms.py:383 account/forms.py:498
114114 msgid "Password (again)"
115115 msgstr "รหัสผ่าน (อีกครั้ง)"
116116
117 #: account/forms.py:438
117 #: account/forms.py:447
118118 msgid "This e-mail address is already associated with this account."
119119 msgstr "อีเมลนี้ได้ถูกเชื่อมกับบัญชีนี้แล้ว"
120120
121 #: account/forms.py:441
121 #: account/forms.py:450
122122 msgid "This e-mail address is already associated with another account."
123123 msgstr "อีเมลนี้ได้ถูกเชื่อมกับบัญชีอื่นแล้ว"
124124
125 #: account/forms.py:443
125 #: account/forms.py:452
126126 #, fuzzy, python-format
127127 #| msgid "Your account has no verified e-mail address."
128128 msgid "You cannot add more than %d e-mail addresses."
129129 msgstr "บัญชีของคุณไม่มีอีเมลที่ยืนยันแล้ว"
130130
131 #: account/forms.py:467
131 #: account/forms.py:477
132132 msgid "Current Password"
133133 msgstr "รหัสผ่านปัจจุบัน"
134134
135 #: account/forms.py:468 account/forms.py:557
135 #: account/forms.py:479 account/forms.py:569
136136 msgid "New Password"
137137 msgstr "รหัสผ่านใหม่"
138138
139 #: account/forms.py:469 account/forms.py:558
139 #: account/forms.py:480 account/forms.py:570
140140 msgid "New Password (again)"
141141 msgstr "รหัสผ่านใหม่ (อีกครั้ง)"
142142
143 #: account/forms.py:477
143 #: account/forms.py:488
144144 msgid "Please type your current password."
145145 msgstr "โปรดใส่รหัสผ่านปัจจุบัน"
146146
147 #: account/forms.py:516
147 #: account/forms.py:528
148148 msgid "The e-mail address is not assigned to any user account"
149149 msgstr "อีเมลนี้ไม่ได้เชื่อมกับบัญชีใดเลย"
150150
151 #: account/forms.py:579
151 #: account/forms.py:591
152152 msgid "The password reset token was invalid."
153153 msgstr "token ที่ใช้รีเซ็ทรหัสผ่านไม่ถูกต้อง"
154154
207207 msgid "Your account has no password set up."
208208 msgstr "บัญชีของคุณไม่ได้ตั้งรหัสผ่านไว้"
209209
210 #: socialaccount/adapter.py:141
210 #: socialaccount/adapter.py:138
211211 msgid "Your account has no verified e-mail address."
212212 msgstr "บัญชีของคุณไม่มีอีเมลที่ยืนยันแล้ว"
213213
77 msgstr ""
88 "Project-Id-Version: django-allauth\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2020-10-11 11:15-0500\n"
10 "POT-Creation-Date: 2021-07-11 07:33-0500\n"
1111 "PO-Revision-Date: 2014-08-12 00:35+0200\n"
1212 "Last-Translator: Jannis Š\n"
1313 "Language-Team: Turkish (http://www.transifex.com/projects/p/django-allauth/"
4040 msgid "Accounts"
4141 msgstr "Hesap"
4242
43 #: account/forms.py:58 account/forms.py:403
43 #: account/forms.py:58 account/forms.py:412
4444 msgid "You must type the same password each time."
4545 msgstr "Her seferinde aynı parolayı girmelisiniz."
4646
47 #: account/forms.py:87 account/forms.py:372 account/forms.py:486
47 #: account/forms.py:91 account/forms.py:380 account/forms.py:497
4848 msgid "Password"
4949 msgstr "Parola"
5050
51 #: account/forms.py:88
51 #: account/forms.py:92
5252 msgid "Remember Me"
5353 msgstr "Beni Hatırla"
5454
55 #: account/forms.py:92
55 #: account/forms.py:96
5656 msgid "This account is currently inactive."
5757 msgstr "Bu hesap şu anda etkin değil."
5858
59 #: account/forms.py:94
59 #: account/forms.py:98
6060 msgid "The e-mail address and/or password you specified are not correct."
6161 msgstr "Girdiğiniz e-posta adresi ve/veya parola doğru değil."
6262
63 #: account/forms.py:97
63 #: account/forms.py:101
6464 msgid "The username and/or password you specified are not correct."
6565 msgstr "Girdiğiniz kullanıcı adı ve/veya parola doğru değil."
6666
67 #: account/forms.py:108 account/forms.py:273 account/forms.py:429
68 #: account/forms.py:505
67 #: account/forms.py:112 account/forms.py:278 account/forms.py:438
68 #: account/forms.py:516
6969 msgid "E-mail address"
7070 msgstr "E-posta adresi"
7171
72 #: account/forms.py:111 account/forms.py:308 account/forms.py:426
73 #: account/forms.py:500
72 #: account/forms.py:116 account/forms.py:315 account/forms.py:435
73 #: account/forms.py:511
7474 msgid "E-mail"
7575 msgstr "E-posta"
7676
77 #: account/forms.py:113 account/forms.py:115 account/forms.py:263
78 #: account/forms.py:267
77 #: account/forms.py:119 account/forms.py:122 account/forms.py:268
78 #: account/forms.py:271
7979 msgid "Username"
8080 msgstr "Kullanıcı adı"
8181
82 #: account/forms.py:126
82 #: account/forms.py:132
8383 msgid "Username or e-mail"
8484 msgstr "Kullanıcı adı ya da e-posta"
8585
86 #: account/forms.py:130
86 #: account/forms.py:135
8787 msgctxt "field label"
8888 msgid "Login"
8989 msgstr "Giriş Yap"
9090
91 #: account/forms.py:299
91 #: account/forms.py:306
9292 #, fuzzy
9393 #| msgid "E-mail (optional)"
9494 msgid "E-mail (again)"
9595 msgstr "E-posta (zorunlu değil)"
9696
97 #: account/forms.py:303
97 #: account/forms.py:310
9898 #, fuzzy
9999 #| msgid "email confirmation"
100100 msgid "E-mail address confirmation"
101101 msgstr "e-posta onayı"
102102
103 #: account/forms.py:311
103 #: account/forms.py:318
104104 msgid "E-mail (optional)"
105105 msgstr "E-posta (zorunlu değil)"
106106
107 #: account/forms.py:351
107 #: account/forms.py:358
108108 #, fuzzy
109109 #| msgid "You must type the same password each time."
110110 msgid "You must type the same email each time."
111111 msgstr "Her seferinde aynı parolayı girmelisiniz."
112112
113 #: account/forms.py:374 account/forms.py:487
113 #: account/forms.py:383 account/forms.py:498
114114 msgid "Password (again)"
115115 msgstr "Parola (tekrar)"
116116
117 #: account/forms.py:438
117 #: account/forms.py:447
118118 msgid "This e-mail address is already associated with this account."
119119 msgstr "Bu e-post adresi zaten bu hesap ile ilişkilendirilmiş."
120120
121 #: account/forms.py:441
121 #: account/forms.py:450
122122 msgid "This e-mail address is already associated with another account."
123123 msgstr "Bu e-post adresi başka bir hesap ile ilişkilendirilmiş."
124124
125 #: account/forms.py:443
125 #: account/forms.py:452
126126 #, fuzzy, python-format
127127 #| msgid "Your account has no verified e-mail address."
128128 msgid "You cannot add more than %d e-mail addresses."
129129 msgstr "Hesabınızın doğrulanmış e-posta adresi yok."
130130
131 #: account/forms.py:467
131 #: account/forms.py:477
132132 msgid "Current Password"
133133 msgstr "Mevcut Parola"
134134
135 #: account/forms.py:468 account/forms.py:557
135 #: account/forms.py:479 account/forms.py:569
136136 msgid "New Password"
137137 msgstr "Yeni Parola"
138138
139 #: account/forms.py:469 account/forms.py:558
139 #: account/forms.py:480 account/forms.py:570
140140 msgid "New Password (again)"
141141 msgstr "Yeni Parola (tekrar)"
142142
143 #: account/forms.py:477
143 #: account/forms.py:488
144144 msgid "Please type your current password."
145145 msgstr "Mevcut parolanızı tekrar yazın."
146146
147 #: account/forms.py:516
147 #: account/forms.py:528
148148 msgid "The e-mail address is not assigned to any user account"
149149 msgstr "Bu e-posta adresi hiçbir kullanıcı hesabıyla ilişkili değil"
150150
151 #: account/forms.py:579
151 #: account/forms.py:591
152152 msgid "The password reset token was invalid."
153153 msgstr "Şifre sıfırlama kodu hatalı."
154154
212212 msgid "Your account has no password set up."
213213 msgstr "Hesabınız için parola belirlemediniz."
214214
215 #: socialaccount/adapter.py:141
215 #: socialaccount/adapter.py:138
216216 msgid "Your account has no verified e-mail address."
217217 msgstr "Hesabınızın doğrulanmış e-posta adresi yok."
218218
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2020-10-11 11:15-0500\n"
9 "POT-Creation-Date: 2021-07-11 07:33-0500\n"
1010 "PO-Revision-Date: 2020-10-15 19:53+0200\n"
1111 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1212 "Language-Team: LANGUAGE <LL@li.org>\n"
1414 "MIME-Version: 1.0\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
17 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
18 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
17 "Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != "
18 "11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % "
19 "100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || "
20 "(n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
1921
2022 #: account/adapter.py:45
2123 msgid "Username can not be used. Please use other username."
4042 msgid "Accounts"
4143 msgstr "Акаунти"
4244
43 #: account/forms.py:58 account/forms.py:403
45 #: account/forms.py:58 account/forms.py:412
4446 msgid "You must type the same password each time."
4547 msgstr "Ви повинні вводити однаковий пароль кожного разу."
4648
47 #: account/forms.py:87 account/forms.py:372 account/forms.py:486
49 #: account/forms.py:91 account/forms.py:380 account/forms.py:497
4850 msgid "Password"
4951 msgstr "Пароль"
5052
51 #: account/forms.py:88
53 #: account/forms.py:92
5254 msgid "Remember Me"
5355 msgstr "Запам'ятати мене"
5456
55 #: account/forms.py:92
57 #: account/forms.py:96
5658 msgid "This account is currently inactive."
5759 msgstr "Даний акаунт є неактивним."
5860
59 #: account/forms.py:94
61 #: account/forms.py:98
6062 msgid "The e-mail address and/or password you specified are not correct."
6163 msgstr "Введена e-mail адреса і/або пароль є некоректними."
6264
63 #: account/forms.py:97
65 #: account/forms.py:101
6466 msgid "The username and/or password you specified are not correct."
6567 msgstr "Введене ім'я користувача і/або пароль є некоректними."
6668
67 #: account/forms.py:108 account/forms.py:273 account/forms.py:429
68 #: account/forms.py:505
69 #: account/forms.py:112 account/forms.py:278 account/forms.py:438
70 #: account/forms.py:516
6971 msgid "E-mail address"
7072 msgstr "E-mail адреса"
7173
72 #: account/forms.py:111 account/forms.py:308 account/forms.py:426
73 #: account/forms.py:500
74 #: account/forms.py:116 account/forms.py:315 account/forms.py:435
75 #: account/forms.py:511
7476 msgid "E-mail"
7577 msgstr "E-mail"
7678
77 #: account/forms.py:113 account/forms.py:115 account/forms.py:263
78 #: account/forms.py:267
79 #: account/forms.py:119 account/forms.py:122 account/forms.py:268
80 #: account/forms.py:271
7981 msgid "Username"
8082 msgstr "Ім'я користувача"
8183
82 #: account/forms.py:126
84 #: account/forms.py:132
8385 msgid "Username or e-mail"
8486 msgstr "Ім'я користувача або e-mail"
8587
86 #: account/forms.py:130
88 #: account/forms.py:135
8789 msgctxt "field label"
8890 msgid "Login"
8991 msgstr "Увійти"
9092
91 #: account/forms.py:299
93 #: account/forms.py:306
9294 msgid "E-mail (again)"
9395 msgstr "E-mail (ще раз)"
9496
95 #: account/forms.py:303
97 #: account/forms.py:310
9698 msgid "E-mail address confirmation"
9799 msgstr "e-mail адреса підтвердження"
98100
99 #: account/forms.py:311
101 #: account/forms.py:318
100102 msgid "E-mail (optional)"
101103 msgstr "E-mail (необов'язковий)"
102104
103 #: account/forms.py:351
105 #: account/forms.py:358
104106 msgid "You must type the same email each time."
105107 msgstr "Ви повинні вводити однакову e-mail адресу кожного разу."
106108
107 #: account/forms.py:374 account/forms.py:487
109 #: account/forms.py:383 account/forms.py:498
108110 msgid "Password (again)"
109111 msgstr "Пароль (ще раз)"
110112
111 #: account/forms.py:438
113 #: account/forms.py:447
112114 msgid "This e-mail address is already associated with this account."
113115 msgstr "Вказаний e-mail уже прикріплений до цього акаунту."
114116
115 #: account/forms.py:441
117 #: account/forms.py:450
116118 msgid "This e-mail address is already associated with another account."
117119 msgstr "Вказаний e-mail уже прикріплений до іншого користувача."
118120
119 #: account/forms.py:443
121 #: account/forms.py:452
120122 #, fuzzy, python-format
121123 #| msgid "Your account has no verified e-mail address."
122124 msgid "You cannot add more than %d e-mail addresses."
123125 msgstr "Немає підтвердження по e-mail для Вашого акаунту."
124126
125 #: account/forms.py:467
127 #: account/forms.py:477
126128 msgid "Current Password"
127129 msgstr "Поточний пароль"
128130
129 #: account/forms.py:468 account/forms.py:557
131 #: account/forms.py:479 account/forms.py:569
130132 msgid "New Password"
131133 msgstr "Новий пароль"
132134
133 #: account/forms.py:469 account/forms.py:558
135 #: account/forms.py:480 account/forms.py:570
134136 msgid "New Password (again)"
135137 msgstr "Новий пароль (ще раз)"
136138
137 #: account/forms.py:477
139 #: account/forms.py:488
138140 msgid "Please type your current password."
139141 msgstr "Будь ласка, вкажіть Ваш поточний пароль."
140142
141 #: account/forms.py:516
143 #: account/forms.py:528
142144 msgid "The e-mail address is not assigned to any user account"
143145 msgstr "Немає користувача з такою e-mail адресою."
144146
145 #: account/forms.py:579
147 #: account/forms.py:591
146148 msgid "The password reset token was invalid."
147149 msgstr "Токен відновлення паролю був невірним."
148150
203205 msgid "Your account has no password set up."
204206 msgstr "Ваш акаунт не має встановленого паролю."
205207
206 #: socialaccount/adapter.py:141
208 #: socialaccount/adapter.py:138
207209 msgid "Your account has no verified e-mail address."
208210 msgstr "Немає підтвердження по e-mail для Вашого акаунту."
209211
416418 "\n"
417419 "To confirm this is correct, go to %(activate_url)s"
418420 msgstr ""
419 "Ви отримали дане повідомлення тому, що користувач %(user_display)s на %(site_domain)s зареєстрував дану e-mail адресу.\n"
421 "Ви отримали дане повідомлення тому, що користувач %(user_display)s на "
422 "%(site_domain)s зареєстрував дану e-mail адресу.\n"
420423 "\n"
421 "Для підтвердження, що все правильно, будь ласка, перейдіть за %(activate_url)s"
424 "Для підтвердження, що все правильно, будь ласка, перейдіть за "
425 "%(activate_url)s"
422426
423427 #: templates/account/email/email_confirmation_subject.txt:3
424428 msgid "Please Confirm Your E-mail Address"
431435 "It can be safely ignored if you did not request a password reset. Click the "
432436 "link below to reset your password."
433437 msgstr ""
434 "Ви отримали дане повідомлення, тому що Ви або хтось інший зробили запит на пароль для Вашого акаунту користувача на сайті %(site_domain)s.\n"
435 "Дане повідомлення можна проігнорувати, якщо Ви не робили такого запиту. Перейдіть за посиланням для відновлення паролю."
438 "Ви отримали дане повідомлення, тому що Ви або хтось інший зробили запит на "
439 "пароль для Вашого акаунту користувача на сайті %(site_domain)s.\n"
440 "Дане повідомлення можна проігнорувати, якщо Ви не робили такого запиту. "
441 "Перейдіть за посиланням для відновлення паролю."
436442
437443 #: templates/account/email/password_reset_key_message.txt:9
438444 #, python-format
66 msgstr ""
77 "Project-Id-Version: django-allauth\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2020-10-11 11:15-0500\n"
9 "POT-Creation-Date: 2021-07-11 07:33-0500\n"
1010 "PO-Revision-Date: 2014-08-12 00:36+0200\n"
1111 "Last-Translator: jresins <jresins@gmail.com>\n"
1212 "Language-Team: LANGUAGE <LL@li.org>\n"
3737 msgid "Accounts"
3838 msgstr "账号"
3939
40 #: account/forms.py:58 account/forms.py:403
40 #: account/forms.py:58 account/forms.py:412
4141 msgid "You must type the same password each time."
4242 msgstr "每次输入的密码必须相同"
4343
44 #: account/forms.py:87 account/forms.py:372 account/forms.py:486
44 #: account/forms.py:91 account/forms.py:380 account/forms.py:497
4545 msgid "Password"
4646 msgstr "密码"
4747
48 #: account/forms.py:88
48 #: account/forms.py:92
4949 msgid "Remember Me"
5050 msgstr "记住我"
5151
52 #: account/forms.py:92
52 #: account/forms.py:96
5353 msgid "This account is currently inactive."
5454 msgstr "此账号当前未激活。"
5555
56 #: account/forms.py:94
56 #: account/forms.py:98
5757 msgid "The e-mail address and/or password you specified are not correct."
5858 msgstr "您提供的e-mail地址或密码不正确。"
5959
60 #: account/forms.py:97
60 #: account/forms.py:101
6161 msgid "The username and/or password you specified are not correct."
6262 msgstr "您提供的用户名或密码不正确。"
6363
64 #: account/forms.py:108 account/forms.py:273 account/forms.py:429
65 #: account/forms.py:505
64 #: account/forms.py:112 account/forms.py:278 account/forms.py:438
65 #: account/forms.py:516
6666 msgid "E-mail address"
6767 msgstr "E-mail地址"
6868
69 #: account/forms.py:111 account/forms.py:308 account/forms.py:426
70 #: account/forms.py:500
69 #: account/forms.py:116 account/forms.py:315 account/forms.py:435
70 #: account/forms.py:511
7171 msgid "E-mail"
7272 msgstr "E-mail"
7373
74 #: account/forms.py:113 account/forms.py:115 account/forms.py:263
75 #: account/forms.py:267
74 #: account/forms.py:119 account/forms.py:122 account/forms.py:268
75 #: account/forms.py:271
7676 msgid "Username"
7777 msgstr "用户名"
7878
79 #: account/forms.py:126
79 #: account/forms.py:132
8080 msgid "Username or e-mail"
8181 msgstr "用户名或e-mail"
8282
83 #: account/forms.py:130
83 #: account/forms.py:135
8484 msgctxt "field label"
8585 msgid "Login"
8686 msgstr "账号"
8787
88 #: account/forms.py:299
88 #: account/forms.py:306
8989 #, fuzzy
9090 #| msgid "E-mail (optional)"
9191 msgid "E-mail (again)"
9292 msgstr "E-mail (选填项)"
9393
94 #: account/forms.py:303
94 #: account/forms.py:310
9595 #, fuzzy
9696 #| msgid "email confirmation"
9797 msgid "E-mail address confirmation"
9898 msgstr "e-mail确认"
9999
100 #: account/forms.py:311
100 #: account/forms.py:318
101101 msgid "E-mail (optional)"
102102 msgstr "E-mail (选填项)"
103103
104 #: account/forms.py:351
104 #: account/forms.py:358
105105 #, fuzzy
106106 #| msgid "You must type the same password each time."
107107 msgid "You must type the same email each time."
108108 msgstr "每次输入的密码必须相同"
109109
110 #: account/forms.py:374 account/forms.py:487
110 #: account/forms.py:383 account/forms.py:498
111111 msgid "Password (again)"
112112 msgstr "密码(重复)"
113113
114 #: account/forms.py:438
114 #: account/forms.py:447
115115 msgid "This e-mail address is already associated with this account."
116116 msgstr "此e-mail地址已关联到这个账号。"
117117
118 #: account/forms.py:441
118 #: account/forms.py:450
119119 msgid "This e-mail address is already associated with another account."
120120 msgstr "此e-mail地址已关联到其他账号。"
121121
122 #: account/forms.py:443
122 #: account/forms.py:452
123123 #, fuzzy, python-format
124124 #| msgid "Your account has no verified e-mail address."
125125 msgid "You cannot add more than %d e-mail addresses."
126126 msgstr "您的账号下无任何验证过的e-mail地址。"
127127
128 #: account/forms.py:467
128 #: account/forms.py:477
129129 msgid "Current Password"
130130 msgstr "当前密码"
131131
132 #: account/forms.py:468 account/forms.py:557
132 #: account/forms.py:479 account/forms.py:569
133133 msgid "New Password"
134134 msgstr "新密码"
135135
136 #: account/forms.py:469 account/forms.py:558
136 #: account/forms.py:480 account/forms.py:570
137137 msgid "New Password (again)"
138138 msgstr "新密码(重复)"
139139
140 #: account/forms.py:477
140 #: account/forms.py:488
141141 msgid "Please type your current password."
142142 msgstr "请输入您的当前密码"
143143
144 #: account/forms.py:516
144 #: account/forms.py:528
145145 msgid "The e-mail address is not assigned to any user account"
146146 msgstr "此e-mail地址未分配给任何用户账号"
147147
148 #: account/forms.py:579
148 #: account/forms.py:591
149149 msgid "The password reset token was invalid."
150150 msgstr "重设密码的token不合法。"
151151
206206 msgid "Your account has no password set up."
207207 msgstr "您的账号未设置密码。"
208208
209 #: socialaccount/adapter.py:141
209 #: socialaccount/adapter.py:138
210210 msgid "Your account has no verified e-mail address."
211211 msgstr "您的账号下无任何验证过的e-mail地址。"
212212
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2020-10-11 11:15-0500\n"
10 "POT-Creation-Date: 2021-07-11 07:33-0500\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
3939 msgid "Accounts"
4040 msgstr "账号"
4141
42 #: account/forms.py:58 account/forms.py:403
42 #: account/forms.py:58 account/forms.py:412
4343 msgid "You must type the same password each time."
4444 msgstr "每次输入的密码必须相同"
4545
46 #: account/forms.py:87 account/forms.py:372 account/forms.py:486
46 #: account/forms.py:91 account/forms.py:380 account/forms.py:497
4747 msgid "Password"
4848 msgstr "密码"
4949
50 #: account/forms.py:88
50 #: account/forms.py:92
5151 msgid "Remember Me"
5252 msgstr "记住我"
5353
54 #: account/forms.py:92
54 #: account/forms.py:96
5555 msgid "This account is currently inactive."
5656 msgstr "此账号当前未激活。"
5757
58 #: account/forms.py:94
58 #: account/forms.py:98
5959 msgid "The e-mail address and/or password you specified are not correct."
6060 msgstr "您提供的e-mail地址或密码不正确。"
6161
62 #: account/forms.py:97
62 #: account/forms.py:101
6363 msgid "The username and/or password you specified are not correct."
6464 msgstr "您提供的用户名或密码不正确。"
6565
66 #: account/forms.py:108 account/forms.py:273 account/forms.py:429
67 #: account/forms.py:505
66 #: account/forms.py:112 account/forms.py:278 account/forms.py:438
67 #: account/forms.py:516
6868 msgid "E-mail address"
6969 msgstr "E-mail地址"
7070
71 #: account/forms.py:111 account/forms.py:308 account/forms.py:426
72 #: account/forms.py:500
71 #: account/forms.py:116 account/forms.py:315 account/forms.py:435
72 #: account/forms.py:511
7373 msgid "E-mail"
7474 msgstr "E-mail"
7575
76 #: account/forms.py:113 account/forms.py:115 account/forms.py:263
77 #: account/forms.py:267
76 #: account/forms.py:119 account/forms.py:122 account/forms.py:268
77 #: account/forms.py:271
7878 msgid "Username"
7979 msgstr "用户名"
8080
81 #: account/forms.py:126
81 #: account/forms.py:132
8282 msgid "Username or e-mail"
8383 msgstr "用户名或e-mail"
8484
85 #: account/forms.py:130
85 #: account/forms.py:135
8686 msgctxt "field label"
8787 msgid "Login"
8888 msgstr "账号"
8989
90 #: account/forms.py:299
90 #: account/forms.py:306
9191 #, fuzzy
9292 #| msgid "E-mail (optional)"
9393 msgid "E-mail (again)"
9494 msgstr "E-mail (选填项)"
9595
96 #: account/forms.py:303
96 #: account/forms.py:310
9797 #, fuzzy
9898 #| msgid "email confirmation"
9999 msgid "E-mail address confirmation"
100100 msgstr "e-mail确认"
101101
102 #: account/forms.py:311
102 #: account/forms.py:318
103103 msgid "E-mail (optional)"
104104 msgstr "E-mail (选填项)"
105105
106 #: account/forms.py:351
106 #: account/forms.py:358
107107 #, fuzzy
108108 #| msgid "You must type the same password each time."
109109 msgid "You must type the same email each time."
110110 msgstr "每次输入的密码必须相同"
111111
112 #: account/forms.py:374 account/forms.py:487
112 #: account/forms.py:383 account/forms.py:498
113113 msgid "Password (again)"
114114 msgstr "密码(重复)"
115115
116 #: account/forms.py:438
116 #: account/forms.py:447
117117 msgid "This e-mail address is already associated with this account."
118118 msgstr "此e-mail地址已关联到这个账号。"
119119
120 #: account/forms.py:441
120 #: account/forms.py:450
121121 msgid "This e-mail address is already associated with another account."
122122 msgstr "此e-mail地址已关联到其他账号。"
123123
124 #: account/forms.py:443
124 #: account/forms.py:452
125125 #, fuzzy, python-format
126126 #| msgid "Your account has no verified e-mail address."
127127 msgid "You cannot add more than %d e-mail addresses."
128128 msgstr "您的账号下无任何验证过的e-mail地址。"
129129
130 #: account/forms.py:467
130 #: account/forms.py:477
131131 msgid "Current Password"
132132 msgstr "当前密码"
133133
134 #: account/forms.py:468 account/forms.py:557
134 #: account/forms.py:479 account/forms.py:569
135135 msgid "New Password"
136136 msgstr "新密码"
137137
138 #: account/forms.py:469 account/forms.py:558
138 #: account/forms.py:480 account/forms.py:570
139139 msgid "New Password (again)"
140140 msgstr "新密码(重复)"
141141
142 #: account/forms.py:477
142 #: account/forms.py:488
143143 msgid "Please type your current password."
144144 msgstr "请输入您的当前密码"
145145
146 #: account/forms.py:516
146 #: account/forms.py:528
147147 msgid "The e-mail address is not assigned to any user account"
148148 msgstr "此e-mail地址未分配给任何用户账号"
149149
150 #: account/forms.py:579
150 #: account/forms.py:591
151151 msgid "The password reset token was invalid."
152152 msgstr ""
153153
208208 msgid "Your account has no password set up."
209209 msgstr "您的账号未设置密码。"
210210
211 #: socialaccount/adapter.py:141
211 #: socialaccount/adapter.py:138
212212 msgid "Your account has no verified e-mail address."
213213 msgstr "您的账号下无任何验证过的e-mail地址。"
214214
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2020-10-11 11:15-0500\n"
10 "POT-Creation-Date: 2021-07-11 07:33-0500\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
3838 msgid "Accounts"
3939 msgstr "帳號"
4040
41 #: account/forms.py:58 account/forms.py:403
41 #: account/forms.py:58 account/forms.py:412
4242 msgid "You must type the same password each time."
4343 msgstr "每次輸入的密碼必須相同"
4444
45 #: account/forms.py:87 account/forms.py:372 account/forms.py:486
45 #: account/forms.py:91 account/forms.py:380 account/forms.py:497
4646 msgid "Password"
4747 msgstr "密碼"
4848
49 #: account/forms.py:88
49 #: account/forms.py:92
5050 msgid "Remember Me"
5151 msgstr "記住我"
5252
53 #: account/forms.py:92
53 #: account/forms.py:96
5454 msgid "This account is currently inactive."
5555 msgstr "此帳號目前沒有啟用。"
5656
57 #: account/forms.py:94
57 #: account/forms.py:98
5858 msgid "The e-mail address and/or password you specified are not correct."
5959 msgstr "您提供的電子郵件地址或密碼不正確。"
6060
61 #: account/forms.py:97
61 #: account/forms.py:101
6262 msgid "The username and/or password you specified are not correct."
6363 msgstr "您提供的使用者名稱或密碼不正確。"
6464
65 #: account/forms.py:108 account/forms.py:273 account/forms.py:429
66 #: account/forms.py:505
65 #: account/forms.py:112 account/forms.py:278 account/forms.py:438
66 #: account/forms.py:516
6767 msgid "E-mail address"
6868 msgstr "電子郵件地址"
6969
70 #: account/forms.py:111 account/forms.py:308 account/forms.py:426
71 #: account/forms.py:500
70 #: account/forms.py:116 account/forms.py:315 account/forms.py:435
71 #: account/forms.py:511
7272 msgid "E-mail"
7373 msgstr "E-mail"
7474
75 #: account/forms.py:113 account/forms.py:115 account/forms.py:263
76 #: account/forms.py:267
75 #: account/forms.py:119 account/forms.py:122 account/forms.py:268
76 #: account/forms.py:271
7777 msgid "Username"
7878 msgstr "使用者名稱"
7979
80 #: account/forms.py:126
80 #: account/forms.py:132
8181 msgid "Username or e-mail"
8282 msgstr "使用者名稱或電子郵件"
8383
84 #: account/forms.py:130
84 #: account/forms.py:135
8585 msgctxt "field label"
8686 msgid "Login"
8787 msgstr "登入"
8888
89 #: account/forms.py:299
89 #: account/forms.py:306
9090 #, fuzzy
9191 #| msgid "E-mail (optional)"
9292 msgid "E-mail (again)"
9393 msgstr "E-mail (可不填)"
9494
95 #: account/forms.py:303
95 #: account/forms.py:310
9696 #, fuzzy
9797 #| msgid "email confirmation"
9898 msgid "E-mail address confirmation"
9999 msgstr "電子郵件確認"
100100
101 #: account/forms.py:311
101 #: account/forms.py:318
102102 msgid "E-mail (optional)"
103103 msgstr "E-mail (可不填)"
104104
105 #: account/forms.py:351
105 #: account/forms.py:358
106106 #, fuzzy
107107 #| msgid "You must type the same password each time."
108108 msgid "You must type the same email each time."
109109 msgstr "每次輸入的密碼必須相同"
110110
111 #: account/forms.py:374 account/forms.py:487
111 #: account/forms.py:383 account/forms.py:498
112112 msgid "Password (again)"
113113 msgstr "密碼 (再一次)"
114114
115 #: account/forms.py:438
115 #: account/forms.py:447
116116 msgid "This e-mail address is already associated with this account."
117117 msgstr "此電子郵件已與這個帳號連結了。"
118118
119 #: account/forms.py:441
119 #: account/forms.py:450
120120 msgid "This e-mail address is already associated with another account."
121121 msgstr "此電子郵件已經與別的帳號連結了。"
122122
123 #: account/forms.py:443
123 #: account/forms.py:452
124124 #, fuzzy, python-format
125125 #| msgid "Your account has no verified e-mail address."
126126 msgid "You cannot add more than %d e-mail addresses."
127127 msgstr "您的帳號下沒有驗證過的電子郵件地址。"
128128
129 #: account/forms.py:467
129 #: account/forms.py:477
130130 msgid "Current Password"
131131 msgstr "目前密碼"
132132
133 #: account/forms.py:468 account/forms.py:557
133 #: account/forms.py:479 account/forms.py:569
134134 msgid "New Password"
135135 msgstr "新密碼"
136136
137 #: account/forms.py:469 account/forms.py:558
137 #: account/forms.py:480 account/forms.py:570
138138 msgid "New Password (again)"
139139 msgstr "新密碼 (再一次)"
140140
141 #: account/forms.py:477
141 #: account/forms.py:488
142142 msgid "Please type your current password."
143143 msgstr "請輸入您目前的密碼"
144144
145 #: account/forms.py:516
145 #: account/forms.py:528
146146 msgid "The e-mail address is not assigned to any user account"
147147 msgstr "還沒有其他帳號使用這個電子郵件地址"
148148
149 #: account/forms.py:579
149 #: account/forms.py:591
150150 msgid "The password reset token was invalid."
151151 msgstr ""
152152
207207 msgid "Your account has no password set up."
208208 msgstr "您的帳號沒有設置密碼。"
209209
210 #: socialaccount/adapter.py:141
210 #: socialaccount/adapter.py:138
211211 msgid "Your account has no verified e-mail address."
212212 msgstr "您的帳號下沒有驗證過的電子郵件地址。"
213213
55 msgstr ""
66 "Project-Id-Version: django-allauth\n"
77 "Report-Msgid-Bugs-To: \n"
8 "POT-Creation-Date: 2020-10-11 11:15-0500\n"
8 "POT-Creation-Date: 2021-07-11 07:33-0500\n"
99 "PO-Revision-Date: 2014-08-12 00:36+0200\n"
1010 "Last-Translator: jresins <jresins@gmail.com>\n"
1111 "Language-Team: Chinese (Traditional)\n"
3535 msgid "Accounts"
3636 msgstr "帳號"
3737
38 #: account/forms.py:58 account/forms.py:403
38 #: account/forms.py:58 account/forms.py:412
3939 msgid "You must type the same password each time."
4040 msgstr "每次輸入的密碼必須相同"
4141
42 #: account/forms.py:87 account/forms.py:372 account/forms.py:486
42 #: account/forms.py:91 account/forms.py:380 account/forms.py:497
4343 msgid "Password"
4444 msgstr "密碼"
4545
46 #: account/forms.py:88
46 #: account/forms.py:92
4747 msgid "Remember Me"
4848 msgstr "記住我"
4949
50 #: account/forms.py:92
50 #: account/forms.py:96
5151 msgid "This account is currently inactive."
5252 msgstr "此帳號目前沒有啟用。"
5353
54 #: account/forms.py:94
54 #: account/forms.py:98
5555 msgid "The e-mail address and/or password you specified are not correct."
5656 msgstr "您提供的電子郵件地址或密碼不正確。"
5757
58 #: account/forms.py:97
58 #: account/forms.py:101
5959 msgid "The username and/or password you specified are not correct."
6060 msgstr "您提供的使用者名稱或密碼不正確。"
6161
62 #: account/forms.py:108 account/forms.py:273 account/forms.py:429
63 #: account/forms.py:505
62 #: account/forms.py:112 account/forms.py:278 account/forms.py:438
63 #: account/forms.py:516
6464 msgid "E-mail address"
6565 msgstr "電子郵件地址"
6666
67 #: account/forms.py:111 account/forms.py:308 account/forms.py:426
68 #: account/forms.py:500
67 #: account/forms.py:116 account/forms.py:315 account/forms.py:435
68 #: account/forms.py:511
6969 msgid "E-mail"
7070 msgstr "E-mail"
7171
72 #: account/forms.py:113 account/forms.py:115 account/forms.py:263
73 #: account/forms.py:267
72 #: account/forms.py:119 account/forms.py:122 account/forms.py:268
73 #: account/forms.py:271
7474 msgid "Username"
7575 msgstr "使用者名稱"
7676
77 #: account/forms.py:126
77 #: account/forms.py:132
7878 msgid "Username or e-mail"
7979 msgstr "使用者名稱或電子郵件"
8080
81 #: account/forms.py:130
81 #: account/forms.py:135
8282 msgctxt "field label"
8383 msgid "Login"
8484 msgstr "登入"
8585
86 #: account/forms.py:299
86 #: account/forms.py:306
8787 #, fuzzy
8888 #| msgid "E-mail (optional)"
8989 msgid "E-mail (again)"
9090 msgstr "E-mail (可不填)"
9191
92 #: account/forms.py:303
92 #: account/forms.py:310
9393 #, fuzzy
9494 #| msgid "email confirmation"
9595 msgid "E-mail address confirmation"
9696 msgstr "電子郵件確認"
9797
98 #: account/forms.py:311
98 #: account/forms.py:318
9999 msgid "E-mail (optional)"
100100 msgstr "E-mail (可不填)"
101101
102 #: account/forms.py:351
102 #: account/forms.py:358
103103 #, fuzzy
104104 #| msgid "You must type the same password each time."
105105 msgid "You must type the same email each time."
106106 msgstr "每次輸入的密碼必須相同"
107107
108 #: account/forms.py:374 account/forms.py:487
108 #: account/forms.py:383 account/forms.py:498
109109 msgid "Password (again)"
110110 msgstr "密碼 (再一次)"
111111
112 #: account/forms.py:438
112 #: account/forms.py:447
113113 msgid "This e-mail address is already associated with this account."
114114 msgstr "此電子郵件已與這個帳號連結了。"
115115
116 #: account/forms.py:441
116 #: account/forms.py:450
117117 msgid "This e-mail address is already associated with another account."
118118 msgstr "此電子郵件已經與別的帳號連結了。"
119119
120 #: account/forms.py:443
120 #: account/forms.py:452
121121 #, fuzzy, python-format
122122 #| msgid "Your account has no verified e-mail address."
123123 msgid "You cannot add more than %d e-mail addresses."
124124 msgstr "您的帳號下沒有驗證過的電子郵件地址。"
125125
126 #: account/forms.py:467
126 #: account/forms.py:477
127127 msgid "Current Password"
128128 msgstr "目前密碼"
129129
130 #: account/forms.py:468 account/forms.py:557
130 #: account/forms.py:479 account/forms.py:569
131131 msgid "New Password"
132132 msgstr "新密碼"
133133
134 #: account/forms.py:469 account/forms.py:558
134 #: account/forms.py:480 account/forms.py:570
135135 msgid "New Password (again)"
136136 msgstr "新密碼 (再一次)"
137137
138 #: account/forms.py:477
138 #: account/forms.py:488
139139 msgid "Please type your current password."
140140 msgstr "請輸入您目前的密碼"
141141
142 #: account/forms.py:516
142 #: account/forms.py:528
143143 msgid "The e-mail address is not assigned to any user account"
144144 msgstr "還沒有其他帳號使用這個電子郵件地址"
145145
146 #: account/forms.py:579
146 #: account/forms.py:591
147147 msgid "The password reset token was invalid."
148148 msgstr ""
149149
204204 msgid "Your account has no password set up."
205205 msgstr "您的帳號沒有設置密碼。"
206206
207 #: socialaccount/adapter.py:141
207 #: socialaccount/adapter.py:138
208208 msgid "Your account has no verified e-mail address."
209209 msgstr "您的帳號下沒有驗證過的電子郵件地址。"
210210
0 default_app_config = "allauth.socialaccount.apps.SocialAccountConfig"
0 import django
1
2
3 if django.VERSION < (3, 2): # pragma: no cover
4 default_app_config = "allauth.socialaccount.apps.SocialAccountConfig"
130130 raise ValidationError(_("Your account has no password set" " up."))
131131 # No email address, no password reset
132132 if app_settings.EMAIL_VERIFICATION == EmailVerificationMethod.MANDATORY:
133 if (
134 EmailAddress.objects.filter(
135 user=account.user, verified=True
136 ).count()
137 == 0
138 ):
133 if not EmailAddress.objects.filter(
134 user=account.user, verified=True
135 ).exists():
139136 raise ValidationError(
140 _("Your account has no verified" " e-mail address.")
137 _("Your account has no verified e-mail address.")
141138 )
142139
143140 def is_auto_signup_allowed(self, request, sociallogin):
5959 def ADAPTER(self):
6060 return self._setting(
6161 "ADAPTER",
62 "allauth.socialaccount.adapter" ".DefaultSocialAccountAdapter",
62 "allauth.socialaccount.adapter.DefaultSocialAccountAdapter",
6363 )
6464
6565 @property
1010 OAuth2Client,
1111 OAuth2Error,
1212 )
13
14
15 def jwt_encode(*args, **kwargs):
16 resp = jwt.encode(*args, **kwargs)
17 if isinstance(resp, bytes):
18 # For PyJWT <2
19 resp = resp.decode("utf-8")
20 return resp
1321
1422
1523 class Scope(object):
4048 "exp": now + timedelta(hours=1),
4149 }
4250 headers = {"kid": self.consumer_secret, "alg": "ES256"}
43 client_secret = jwt.encode(
51 client_secret = jwt_encode(
4452 payload=claims, key=app.certificate_key, algorithm="ES256", headers=headers
45 ).decode("utf-8")
53 )
4654 return client_secret
4755
4856 def get_client_id(self):
49 """ We support multiple client_ids, but use the first one for api calls """
57 """We support multiple client_ids, but use the first one for api calls"""
5058 return self.consumer_key.split(",")[0]
5159
5260 def get_access_token(self, code):
1212 from allauth.tests import MockedResponse, TestCase, mocked_response
1313
1414 from .apple_session import APPLE_SESSION_COOKIE_NAME
15 from .client import jwt_encode
1516 from .provider import AppleProvider
1617
1718
8889 Sign a payload as apple normally would for the id_token.
8990 """
9091 signing_key = jwt.algorithms.RSAAlgorithm.from_jwk(json.dumps(TESTING_JWT_KEYSET))
91 return jwt.encode(
92 return jwt_encode(
9293 payload,
9394 signing_key,
9495 algorithm="RS256",
9596 headers={"kid": TESTING_JWT_KEYSET["kid"]},
96 ).decode("utf8")
97 )
9798
9899
99100 @override_settings(
210211 return resp
211212
212213 def test_authentication_error(self):
213 """ Override base test because apple posts errors """
214 """Override base test because apple posts errors"""
214215 resp = self.client.post(
215216 reverse(self.provider.id + "_callback"),
216217 data={"error": "misc", "state": "testingstate123"},
117117 return {}
118118
119119 def get_access_token_data(self, request, app, client):
120 """ We need to gather the info from the apple specific login """
120 """We need to gather the info from the apple specific login"""
121121 add_apple_session(request)
122122
123123 # Exchange `code`
0 from allauth.account.models import EmailAddress
1 from allauth.socialaccount.app_settings import QUERY_EMAIL
2 from allauth.socialaccount.providers.base import AuthAction, ProviderAccount
3 from allauth.socialaccount.providers.oauth2.provider import OAuth2Provider
4
5
6 class Scope(object):
7 OPENID = "openid"
8 EMAIL = "email"
9 PROFILE = "profile"
10 USERINFO = "org.cilogon.userinfo"
11
12
13 class CILogonAccount(ProviderAccount):
14 def to_str(self):
15 dflt = super(CILogonAccount, self).to_str()
16 return self.account.extra_data.get("name", dflt)
17
18
19 class CILogonProvider(OAuth2Provider):
20 id = "cilogon"
21 name = "CILogon"
22 account_class = CILogonAccount
23
24 def get_default_scope(self):
25 scope = [Scope.PROFILE, Scope.USERINFO, Scope.OPENID]
26 if QUERY_EMAIL:
27 scope.append(Scope.EMAIL)
28 return scope
29
30 def get_auth_params(self, request, action):
31 ret = super(CILogonProvider, self).get_auth_params(request, action)
32 if action == AuthAction.REAUTHENTICATE:
33 ret["prompt"] = "select_account consent"
34 return ret
35
36 def extract_uid(self, data):
37 return str(data.get("sub"))
38
39 def extract_common_fields(self, data):
40 return dict(
41 email=data.get("email"),
42 last_name=data.get("family_name"),
43 first_name=data.get("given_name"),
44 eppn=data.get("eppn"),
45 )
46
47 def extract_email_addresses(self, data):
48 ret = []
49 email = data.get("email")
50 if email and data.get("verified_email"):
51 ret.append(EmailAddress(email=email, verified=True, primary=True))
52 return ret
53
54
55 provider_classes = [CILogonProvider]
0 # -*- coding: utf-8 -*-
1 from __future__ import absolute_import, unicode_literals
2
3 from allauth.socialaccount.tests import OAuth2TestsMixin
4 from allauth.tests import MockedResponse, TestCase
5
6 from .provider import CILogonProvider
7
8
9 class CILogonTests(OAuth2TestsMixin, TestCase):
10 provider_id = CILogonProvider.id
11
12 def get_mocked_response(self):
13 return MockedResponse(
14 200,
15 """
16 {
17 "email": "johndoe@example.edu",
18 "eppn": "u1234567@example.edu",
19 "firstname": "John",
20 "lastname": "Doe",
21 "idp_name": "Example University",
22 "sub": "http://cilogon.org/serverA/users/1234567"
23 }""",
24 )
0 from allauth.socialaccount.providers.oauth2.urls import default_urlpatterns
1
2 from .provider import CILogonProvider
3
4
5 urlpatterns = default_urlpatterns(CILogonProvider)
0 import requests
1
2 from allauth.socialaccount.providers.oauth2.views import (
3 OAuth2Adapter,
4 OAuth2CallbackView,
5 OAuth2LoginView,
6 )
7
8 from .provider import CILogonProvider
9
10
11 class CILogonOAuth2Adapter(OAuth2Adapter):
12 provider_id = CILogonProvider.id
13 access_token_url = "https://cilogon.org/oauth2/token"
14 authorize_url = "https://cilogon.org/authorize"
15 profile_url = "https://cilogon.org/oauth2/userinfo"
16
17 def complete_login(self, request, app, token, **kwargs):
18 resp = requests.get(
19 self.profile_url,
20 params={"access_token": token.token, "alt": "json"},
21 )
22 resp.raise_for_status()
23 extra_data = resp.json()
24 login = self.get_provider().sociallogin_from_response(request, extra_data)
25 return login
26
27
28 oauth2_login = OAuth2LoginView.adapter_view(CILogonOAuth2Adapter)
29 oauth2_callback = OAuth2CallbackView.adapter_view(CILogonOAuth2Adapter)
00 import json
11 import string
2 from urllib.parse import quote
23
34 from django.conf import settings
45 from django.core.exceptions import ImproperlyConfigured
78 from django.urls import reverse
89 from django.utils.crypto import get_random_string
910 from django.utils.html import escapejs, mark_safe
10 from django.utils.http import urlquote
1111
1212 from allauth.account.models import EmailAddress
1313 from allauth.socialaccount.app_settings import QUERY_EMAIL
7777 process,
7878 scope,
7979 )
80 ret = "javascript:%s" % (urlquote(js),)
80 ret = "javascript:%s" % (quote(js),)
8181 elif method == "oauth2":
8282 ret = super(FacebookProvider, self).get_login_url(request, **kwargs)
8383 else:
189189 else:
190190 nonce = request.session.get(NONCE_SESSION_KEY)
191191 if not nonce and or_create:
192 nonce = get_random_string(32)
192 nonce = get_random_string(NONCE_LENGTH)
193193 request.session[NONCE_SESSION_KEY] = nonce
194194 return nonce
195195
0 # -*- coding: utf-8 -*-
1
2 import json
3 import requests
4 from collections import OrderedDict
5
6 from django.utils.http import urlencode
7
8 from allauth.socialaccount.providers.oauth2.client import (
9 OAuth2Client,
10 OAuth2Error,
11 )
12
13
14 class FeishuOAuth2Client(OAuth2Client):
15
16 app_access_token_url = (
17 "https://open.feishu.cn/open-apis/auth/v3/app_access_token/internal/"
18 )
19
20 def get_redirect_url(self, authorization_url, extra_params):
21 params = {
22 "app_id": self.consumer_key,
23 "redirect_uri": self.callback_url,
24 "scope": self.scope,
25 "response_type": "code",
26 }
27 if self.state:
28 params["state"] = self.state
29 params.update(extra_params)
30 sorted_params = OrderedDict()
31 for param in sorted(params):
32 sorted_params[param] = params[param]
33 return "%s?%s" % (authorization_url, urlencode(sorted_params))
34
35 def app_access_token(self):
36 data = {
37 "app_id": self.consumer_key,
38 "app_secret": self.consumer_secret,
39 }
40
41 self._strip_empty_keys(data)
42 url = self.app_access_token_url
43
44 # TODO: Proper exception handling
45 resp = requests.request("POST", url, data=data)
46 resp.raise_for_status()
47 access_token = resp.json()
48 if not access_token or "app_access_token" not in access_token:
49 raise OAuth2Error("Error retrieving app access token: %s" % resp.content)
50 return access_token["app_access_token"]
51
52 def get_access_token(self, code):
53 data = {
54 "grant_type": "authorization_code",
55 "code": code,
56 "app_access_token": self.app_access_token(),
57 }
58 params = None
59 self._strip_empty_keys(data)
60 url = self.access_token_url
61 if self.access_token_method == "GET":
62 params = data
63 data = None
64 # TODO: Proper exception handling
65 resp = requests.request(
66 self.access_token_method,
67 url,
68 params=params,
69 data=json.dumps(data),
70 headers={"Content-Type": "application/json"},
71 )
72 resp.raise_for_status()
73 access_token = resp.json()
74 if (
75 not access_token
76 or "data" not in access_token
77 or "access_token" not in access_token["data"]
78 ):
79 raise OAuth2Error("Error retrieving access token: %s" % resp.content)
80 return access_token["data"]
0 # -*- coding: utf-8 -*-
1
2 from allauth.socialaccount.providers.base import ProviderAccount
3 from allauth.socialaccount.providers.oauth2.provider import OAuth2Provider
4
5
6 class FeishuAccount(ProviderAccount):
7 def get_avatar_url(self):
8 return self.account.extra_data.get("avatar_big")
9
10 def to_str(self):
11 return self.account.extra_data.get("name", super(FeishuAccount, self).to_str())
12
13
14 class FeishuProvider(OAuth2Provider):
15 id = "feishu"
16 name = "feishu"
17 account_class = FeishuAccount
18
19 def extract_uid(self, data):
20 return data["open_id"]
21
22 def extract_common_fields(self, data):
23 return dict(username=data.get("name"), name=data.get("name"))
24
25
26 provider_classes = [FeishuProvider]
0 # -*- coding: utf-8 -*-
1
2 from __future__ import unicode_literals
3
4 from allauth.socialaccount.providers import registry
5 from allauth.socialaccount.tests import create_oauth2_tests
6 from allauth.tests import MockedResponse
7
8 from .provider import FeishuProvider
9
10
11 class FeishuTests(create_oauth2_tests(registry.by_id(FeishuProvider.id))):
12 def get_mocked_response(self):
13 return [
14 MockedResponse(
15 0,
16 """
17 {"data": {"access_token": "testac"}}
18 """,
19 ),
20 MockedResponse(
21 0,
22 """
23 {
24 "code": 0,
25 "data": {
26 "access_token": "u-6U1SbDiM6XIH2DcTCPyeub",
27 "avatar_url": "www.feishu.cn/avatar/icon",
28 "avatar_thumb": "www.feishu.cn/avatar/icon_thumb",
29 "avatar_middle": "www.feishu.cn/avatar/icon_middle",
30 "avatar_big": "www.feishu.cn/avatar/icon_big",
31 "expires_in": 7140,
32 "name": "zhangsan",
33 "en_name": "Three Zhang",
34 "open_id": "ou-caecc734c2e3328a62489fe0648c4b98779515d3",
35 "tenant_key": "736588c92lxf175d",
36 "refresh_expires_in": 2591940,
37 "refresh_token": "ur-t9HHgRCjMqGqIU9v05Zhos",
38 "token_type": "Bearer"
39 }
40 }
41 """,
42 ),
43 ]
44
45 def get_login_response_json(self, with_refresh_token=True):
46 return """{"app_access_token":"testac"}"""
0 # -*- coding: utf-8 -*-
1
2 from allauth.socialaccount.providers.oauth2.urls import default_urlpatterns
3
4 from .provider import FeishuProvider
5
6
7 urlpatterns = default_urlpatterns(FeishuProvider)
0 # -*- coding: utf-8 -*-
1
2 import requests
3
4 from django.urls import reverse
5
6 from allauth.account import app_settings
7 from allauth.socialaccount.providers.oauth2.client import OAuth2Error
8 from allauth.socialaccount.providers.oauth2.views import (
9 OAuth2Adapter,
10 OAuth2CallbackView,
11 OAuth2LoginView,
12 )
13 from allauth.utils import build_absolute_uri
14
15 from .client import FeishuOAuth2Client
16 from .provider import FeishuProvider
17
18
19 class FeishuOAuth2Adapter(OAuth2Adapter):
20 provider_id = FeishuProvider.id
21
22 authorization_url = "https://open.feishu.cn/open-apis/authen/v1/index"
23 access_token_url = "https://open.feishu.cn/open-apis/authen/v1/access_token"
24 app_access_token_url = (
25 "https://open.feishu.cn/open-apis/auth/v3/app_access_token/internal/"
26 )
27 user_info_url = "https://open.feishu.cn/open-apis/authen/v1/user_info"
28
29 @property
30 def authorize_url(self):
31 settings = self.get_provider().get_settings()
32 url = settings.get("AUTHORIZE_URL", self.authorization_url)
33 return url
34
35 def complete_login(self, request, app, token, **kwargs):
36 resp = requests.get(
37 self.user_info_url,
38 headers={
39 "Content-Type": "application/json",
40 "Authorization": "Bearer " + token.token,
41 },
42 )
43 resp.raise_for_status()
44 extra_data = resp.json()
45 if extra_data["code"] != 0:
46 raise OAuth2Error("Error retrieving code: %s" % resp.content)
47 extra_data = extra_data["data"]
48
49 return self.get_provider().sociallogin_from_response(request, extra_data)
50
51
52 class FeishuOAuth2ClientMixin(object):
53 def get_client(self, request, app):
54 callback_url = reverse(self.adapter.provider_id + "_callback")
55 protocol = (
56 self.adapter.redirect_uri_protocol or app_settings.DEFAULT_HTTP_PROTOCOL
57 )
58 callback_url = build_absolute_uri(request, callback_url, protocol=protocol)
59 provider = self.adapter.get_provider()
60 scope = provider.get_scope(request)
61 client = FeishuOAuth2Client(
62 request,
63 app.client_id,
64 app.secret,
65 self.adapter.access_token_method,
66 self.adapter.access_token_url,
67 callback_url,
68 scope,
69 )
70 return client
71
72
73 class FeishuOAuth2LoginView(FeishuOAuth2ClientMixin, OAuth2LoginView):
74 pass
75
76
77 class FeishuOAuth2CallbackView(FeishuOAuth2ClientMixin, OAuth2CallbackView):
78 pass
79
80
81 oauth2_login = FeishuOAuth2LoginView.adapter_view(FeishuOAuth2Adapter)
82 oauth2_callback = FeishuOAuth2CallbackView.adapter_view(FeishuOAuth2Adapter)
0 import hashlib
1 from urllib.parse import urlencode
2
3 from allauth.account.models import EmailAddress
4 from allauth.socialaccount.providers.base import ProviderAccount
5 from allauth.socialaccount.providers.oauth2.provider import OAuth2Provider
6
7
8 class FrontierAccount(ProviderAccount):
9 def get_profile_url(self):
10 return None
11
12 def get_avatar_url(self):
13 return "https://www.gravatar.com/avatar/%s?%s" % (
14 hashlib.md5(
15 self.account.extra_data.get("email").lower().encode("utf-8")
16 ).hexdigest(),
17 urlencode({"d": "mp"}),
18 )
19
20 def to_str(self):
21 dflt = super(FrontierAccount, self).to_str()
22 full_name = "%s %s" % (
23 self.account.extra_data.get("firstname", dflt),
24 self.account.extra_data.get("lastname", dflt),
25 )
26 return full_name
27
28
29 class FrontierProvider(OAuth2Provider):
30 id = "frontier"
31 name = "Frontier"
32 account_class = FrontierAccount
33
34 def get_default_scope(self):
35 scope = ["auth", "capi"]
36 return scope
37
38 def extract_uid(self, data):
39 return str(data["customer_id"])
40
41 def extract_common_fields(self, data):
42 return dict(
43 email=data.get("email"),
44 username=data.get("email"),
45 last_name=data.get("lastname"),
46 first_name=data.get("firstname"),
47 )
48
49 def extract_email_addresses(self, data):
50 ret = []
51 email = data.get("email")
52 if email:
53 ret.append(EmailAddress(email=email, verified=True, primary=True))
54 return ret
55
56
57 provider_classes = [FrontierProvider]
0 from allauth.socialaccount.tests import OAuth2TestsMixin
1 from allauth.tests import MockedResponse, TestCase
2
3 from .provider import FrontierProvider
4
5
6 class FrontierTests(OAuth2TestsMixin, TestCase):
7 provider_id = FrontierProvider.id
8
9 def get_mocked_response(self):
10 return MockedResponse(
11 200,
12 """
13 {
14 "email": "johndoe@example.com",
15 "customer_id": "1234567",
16 "firstname": "John",
17 "developer": false,
18 "lastname": "Doe",
19 "allowedDownloads": ["FORC-FDEV-D-1010", "FORC-FDEV-D-1012", "COMBAT_TUTORIAL_DEMO", "FORC-FDEV-D-1013", "PUBLIC_TEST_SERVER", "FORC_FDEV_V_ADDER_LRPO", "FORC_FDEV_V_CHALLENGER_LRPO", "FORC_FDEV_V_CHIEFTAIN_LRPO", "FORC_FDEV_V_CRUSADER_LRPO", "FORC_FDEV_V_ANACONDA_LRPO", "FORC_FDEV_V_ASP_LRPO", "FORC_FDEV_V_ASP_SCOUT_LRPO", "FORC_FDEV_V_BELUGA_LRPO", "FORC_FDEV_V_COBRA_MKIII_LRPO", "FORC_FDEV_V_DIAMOND_EXPLORER_LRPO", "FORC_FDEV_V_COBRA_MKIV_LRPO", "FORC_FDEV_V_DIAMOND_SCOUT_LRPO", "FORC_FDEV_V_DOLPHIN_LRPO", "FORC_FDEV_V_EAGLE_LRPO", "FORC_FDEV_V_FEDERAL_ASSAULT_LRPO", "FORC_FDEV_V_FEDERAL_CORVETTE_LRPO", "FORC_FDEV_V_FEDDROP_LRPO", "FORC_FDEV_V_FEDERAL_FIGHTER_LRPO", "FORC_FDEV_V_FEDERAL_GUNSHIP_LRPO", "FORC_FDEV_V_FERDELANCE_LRPO", "FORC_FDEV_V_HAULER_LRPO", "FORC_FDEV_V_CLIPPER_LRPO", "FORC_FDEV_V_IMPERIAL_COURIER_LRPO", "FORC_FDEV_V_IMPERIAL_CUTTER_LRPO", "FORC_FDEV_V_IMPERIAL_EAGLE_LRPO", "FORC_FDEV_V_IMPERIAL_FIGHTER_LRPO", "FORC_FDEV_V_KEELBACK_LRPO", "FORC_FDEV_V_KRAIT_LRPO", "FORC_FDEV_V_KRAIT_LITE_LRPO", "FORC_FDEV_V_MAMBA_LRPO", "FORC_FDEV_V_ORCA_LRPO", "FORC_FDEV_V_PYTHON_LRPO", "FORC_FDEV_V_SIDEWINDER_LRPO", "FORC_FDEV_V_TAIPAN_LRPO", "FORC_FDEV_V_MAMMOTH_LRPO", "FORC_FDEV_V_TYPE6_LRPO", "FORC_FDEV_V_TYPE7_LRPO", "FORC_FDEV_V_TYPE9_LRPO", "FORC_FDEV_V_VIPER_MKIII_LRPO", "FORC_FDEV_V_VIPER_MKIV_LRPO", "FORC_FDEV_V_VULTURE_LRPO", "FORC-FDEV-D-1022", "FORC_FDEV_V_DECAL_1091", "FORC_FDEV_V_DECAL_1100", "FORC_FDEV_V_DECAL_1149", "FORC_FDEV_V_DECAL_1150", "FORC_FDEV_V_DECAL_1151", "FORC_FDEV_V_DECAL_1176", "FORC_FDEV_V_DECAL_1177", "FORC-FDEV-DO-1000", "FORC-FDEV-DO-1003", "FORC-FDEV-DO-1006", "PUBLIC_TEST_SERVER_OD"],
20 "platform": "frontier"
21 }""",
22 )
0 from allauth.socialaccount.providers.oauth2.urls import default_urlpatterns
1
2 from .provider import FrontierProvider
3
4
5 urlpatterns = default_urlpatterns(FrontierProvider)
0 import requests
1
2 from allauth.socialaccount.providers.oauth2.views import (
3 OAuth2Adapter,
4 OAuth2CallbackView,
5 OAuth2LoginView,
6 )
7
8 from .provider import FrontierProvider
9
10
11 class FrontierOAuth2Adapter(OAuth2Adapter):
12 provider_id = FrontierProvider.id
13 AUTH_API = "https://auth.frontierstore.net"
14 access_token_url = AUTH_API + "/token"
15 authorize_url = AUTH_API + "/auth"
16 profile_url = AUTH_API + "/me"
17
18 def complete_login(self, request, app, token, **kwargs):
19 resp = requests.get(
20 self.profile_url,
21 headers={"Authorization": "Bearer " + token.token},
22 )
23 resp.raise_for_status()
24 extra_data = resp.json()
25 return self.get_provider().sociallogin_from_response(request, extra_data)
26
27
28 oauth2_login = OAuth2LoginView.adapter_view(FrontierOAuth2Adapter)
29 oauth2_callback = OAuth2CallbackView.adapter_view(FrontierOAuth2Adapter)
1818 settings.get("KEYCLOAK_URL"), settings.get("KEYCLOAK_REALM")
1919 )
2020
21 access_token_url = "{0}/protocol/openid-connect/token".format(provider_base_url)
2221 authorize_url = "{0}/protocol/openid-connect/auth".format(provider_base_url)
23 profile_url = "{0}/protocol/openid-connect/userinfo".format(provider_base_url)
22
23 other_url = settings.get("KEYCLOAK_URL_ALT")
24 if other_url is None:
25 other_url = settings.get("KEYCLOAK_URL")
26
27 server_base_url = "{0}/realms/{1}".format(other_url, settings.get("KEYCLOAK_REALM"))
28 access_token_url = "{0}/protocol/openid-connect/token".format(server_base_url)
29 profile_url = "{0}/protocol/openid-connect/userinfo".format(server_base_url)
2430
2531 def complete_login(self, request, app, token, response):
2632 response = requests.post(
0 import json
1
2 from allauth.socialaccount.providers.oauth2.client import OAuth2Error
03 from allauth.socialaccount.tests import OAuth2TestsMixin
14 from allauth.tests import MockedResponse, TestCase
25
36 from .provider import MicrosoftGraphProvider
7 from .views import _check_errors
48
59
610 class MicrosoftGraphTests(OAuth2TestsMixin, TestCase):
2428 }
2529 """ # noqa
2630 return MockedResponse(200, response_data)
31
32 def test_invalid_data(self):
33 response = MockedResponse(200, json.dumps({}))
34 with self.assertRaises(OAuth2Error):
35 # No id, raises
36 _check_errors(response)
37
38 def test_profile_invalid_response(self):
39 data = {
40 "error": {
41 "code": "InvalidAuthenticationToken",
42 "message": "Access token validation failure. Invalid audience.",
43 }
44 }
45 response = MockedResponse(401, json.dumps(data))
46
47 with self.assertRaises(OAuth2Error):
48 # no id, 4xx code, raises with message
49 _check_errors(response)
50
51 def test_invalid_response(self):
52 response = MockedResponse(200, "invalid json data")
53 with self.assertRaises(OAuth2Error):
54 # bad json, raises
55 _check_errors(response)
00 from __future__ import unicode_literals
11
2 import json
23 import requests
34
5 from allauth.socialaccount.providers.oauth2.client import OAuth2Error
46 from allauth.socialaccount.providers.oauth2.views import (
57 OAuth2Adapter,
68 OAuth2CallbackView,
810 )
911
1012 from .provider import MicrosoftGraphProvider
13
14
15 def _check_errors(response):
16 try:
17 data = response.json()
18 except json.decoder.JSONDecodeError:
19 raise OAuth2Error(
20 "Invalid JSON from Microsoft Graph API: {}".format(response.text)
21 )
22
23 if "id" not in data:
24 error_message = "Error retrieving Microsoft profile"
25 microsoft_error_message = data.get("error", {}).get("message")
26 if microsoft_error_message:
27 error_message = ": ".join((error_message, microsoft_error_message))
28 raise OAuth2Error(error_message)
29
30 return data
1131
1232
1333 class MicrosoftGraphOAuth2Adapter(OAuth2Adapter):
2444
2545 def complete_login(self, request, app, token, **kwargs):
2646 headers = {"Authorization": "Bearer {0}".format(token.token)}
27 resp = requests.get(self.profile_url, headers=headers)
28 extra_data = resp.json()
47 response = requests.get(self.profile_url, headers=headers)
48 extra_data = _check_errors(response)
2949 return self.get_provider().sociallogin_from_response(request, extra_data)
3050
3151
0 # -*- coding: utf-8 -*-
1 from allauth.socialaccount.providers.base import ProviderAccount
2 from allauth.socialaccount.providers.oauth2.provider import OAuth2Provider
3
4
5 class NetIQAccount(ProviderAccount):
6 def to_str(self):
7 dflt = super(NetIQAccount, self).to_str()
8 return self.account.extra_data.get("name", dflt)
9
10
11 class NetIQProvider(OAuth2Provider):
12 id = "netiq"
13 name = "NetIQ"
14 account_class = NetIQAccount
15
16 def get_default_scope(self):
17 return ["openid", "profile", "email"]
18
19 def extract_uid(self, data):
20 return str(data["preferred_username"])
21
22 def extract_extra_data(self, data):
23 return data
24
25 def extract_common_fields(self, data):
26 return dict(
27 email=data["email"],
28 last_name=data["family_name"],
29 first_name=data["given_name"],
30 )
31
32
33 provider_classes = [NetIQProvider]
0 # -*- coding: utf-8 -*-
1 from allauth.socialaccount.providers.netiq.provider import NetIQProvider
2 from allauth.socialaccount.tests import OAuth2TestsMixin
3 from allauth.tests import MockedResponse, TestCase
4
5
6 class NetIQTests(OAuth2TestsMixin, TestCase):
7 provider_id = NetIQProvider.id
8
9 def get_mocked_response(self):
10 return MockedResponse(
11 200,
12 """
13 {
14 "sub": "d4c094dd899ab0408fb9d4c094dd899a",
15 "acr": "secure/name/password/uri",
16 "preferred_username": "Mocktest",
17 "email": "mocktest@your.netiq.server.example.com",
18 "nickname": "Mocktest",
19 "family_name": "test",
20 "given_name": "Mock",
21 "website": "https://www.exanple.com"
22 }
23 """,
24 )
0 # -*- coding: utf-8 -*-
1 from allauth.socialaccount.providers.netiq.provider import NetIQProvider
2 from allauth.socialaccount.providers.oauth2.urls import default_urlpatterns
3
4
5 urlpatterns = default_urlpatterns(NetIQProvider)
0 # -*- coding: utf-8 -*-
1 import requests
2
3 from allauth.socialaccount import app_settings
4 from allauth.socialaccount.providers.netiq.provider import NetIQProvider
5 from allauth.socialaccount.providers.oauth2.views import (
6 OAuth2Adapter,
7 OAuth2CallbackView,
8 OAuth2LoginView,
9 )
10
11
12 class NetIQOAuth2Adapter(OAuth2Adapter):
13 provider_id = NetIQProvider.id
14 supports_state = True
15
16 settings = app_settings.PROVIDERS.get(provider_id, {})
17 provider_base_url = settings.get("NETIQ_URL")
18
19 @property
20 def access_token_url(self):
21 return "{}/nidp/oauth/nam/token".format(self.provider_base_url)
22
23 @property
24 def authorize_url(self):
25 return "{}/nidp/oauth/nam/authz".format(self.provider_base_url)
26
27 @property
28 def userinfo_url(self):
29 return "{}/nidp/oauth/nam/userinfo".format(self.provider_base_url)
30
31 def complete_login(self, request, app, token, **kwargs):
32 """
33 Get the user info from userinfo endpoint and return a
34 A populated instance of the `SocialLogin` model (unsaved)
35 :param request:
36 :param app:
37 :param token:
38 :param kwargs:
39 :return:
40 """
41
42 resp = requests.get(
43 self.userinfo_url,
44 headers={"Authorization": "Bearer {}".format(token.token)},
45 )
46
47 resp.raise_for_status()
48 extra_data = resp.json()
49 login = self.get_provider().sociallogin_from_response(request, extra_data)
50 return login
51
52
53 oauth2_login = OAuth2LoginView.adapter_view(NetIQOAuth2Adapter)
54 oauth2_callback = OAuth2CallbackView.adapter_view(NetIQOAuth2Adapter)
9393
9494 stored_assocs.order_by("-issued")
9595
96 if stored_assocs.count() == 0:
96 if not stored_assocs.exists():
9797 return None
9898
9999 return_val = None
2222
2323 def get_data(self, token):
2424 # Verify the user first
25 resp = requests.get(self.identity_url, params={"token": token})
25 hed = {"Authorization": "Bearer " + token}
26 resp = requests.get(self.identity_url, headers=hed)
2627 resp = resp.json()
2728
2829 if not resp.get("ok"):
6767 ) # noqa
6868
6969 def test_valid_avatar(self):
70 """ test response with Avatar URL """
70 """test response with Avatar URL"""
7171 self.login(self.get_mocked_response_avatar_invalid_id())
7272 user = User.objects.get(email="bill@example.com")
7373 soc_acc = SocialAccount.objects.filter(
1717 return data["id"]
1818
1919 def extract_common_fields(self, data):
20 return {
21 "first_name": data["first_name"],
22 "last_name": data["last_name"],
23 "username": data["username"],
24 }
20 ret = {}
21 if data.get("first_name"):
22 ret["first_name"] = data.get("first_name")
23 if data.get("last_name"):
24 ret["last_name"] = data.get("last_name")
25 if data.get("username"):
26 ret["username"] = data.get("username")
27 return ret
2528
2629
2730 provider_classes = [TelegramProvider]
0 from allauth.socialaccount.providers.base import ProviderAccount
1 from allauth.socialaccount.providers.oauth2.provider import OAuth2Provider
2
3
4 class TrainingPeaksAccount(ProviderAccount):
5 def get_profile_url(self):
6 return "https://app.trainingpeaks.com"
7
8 def get_avatar_url(self):
9 return None
10
11 def to_str(self):
12 name = (
13 self.account.extra_data.get("FirstName")
14 + " "
15 + self.account.extra_data.get("LastName")
16 )
17 if name != " ":
18 return name
19 return super(TrainingPeaksAccount, self).to_str()
20
21
22 class TrainingPeaksProvider(OAuth2Provider):
23 id = "trainingpeaks"
24 name = "TrainingPeaks"
25 account_class = TrainingPeaksAccount
26
27 def extract_uid(self, data):
28 return data.get("Id")
29
30 def extract_common_fields(self, data):
31 extra_common = super(TrainingPeaksProvider, self).extract_common_fields(data)
32 firstname = data.get("FirstName")
33 lastname = data.get("LastName")
34 # fallback username as there is actually no Username in response
35 username = firstname.strip().lower() + "." + lastname.strip().lower()
36 name = " ".join(part for part in (firstname, lastname) if part)
37 extra_common.update(
38 username=data.get("username", username),
39 email=data.get("Email"),
40 first_name=firstname,
41 last_name=lastname,
42 name=name.strip(),
43 )
44 return extra_common
45
46 def get_default_scope(self):
47 return ["athlete:profile"]
48
49
50 provider_classes = [TrainingPeaksProvider]
0 # -*- coding: utf-8 -*-
1 """
2 Run just this suite:
3 python manage.py test allauth.socialaccount.providers.trainingpeaks.tests.TrainingPeaksTests
4 """
5 from __future__ import unicode_literals
6
7 from collections import namedtuple
8
9 from django.test.utils import override_settings
10
11 from allauth.socialaccount.tests import OAuth2TestsMixin
12 from allauth.tests import MockedResponse, TestCase
13
14 from .provider import TrainingPeaksProvider
15 from .views import TrainingPeaksOAuth2Adapter
16
17
18 class TrainingPeaksTests(OAuth2TestsMixin, TestCase):
19 provider_id = TrainingPeaksProvider.id
20
21 def get_mocked_response(self):
22 return MockedResponse(
23 200,
24 """{
25 "Id": 123456,
26 "FirstName": "John",
27 "LastName": "Doe",
28 "Email": "user@example.com",
29 "DateOfBirth": "1986-02-01T00:00:00",
30 "CoachedBy": 987654,
31 "Weight": 87.5223617553711
32 }""",
33 ) # noqa
34
35 def get_login_response_json(self, with_refresh_token=True):
36 rtoken = ""
37 if with_refresh_token:
38 rtoken = ',"refresh_token": "testrf"'
39 return (
40 """{
41 "access_token" : "testac",
42 "token_type" : "bearer",
43 "expires_in" : 600,
44 "scope": "scopes granted"
45 %s }"""
46 % rtoken
47 )
48
49 def test_default_use_sandbox_uri(self):
50 adapter = TrainingPeaksOAuth2Adapter(None)
51 self.assertTrue(".sandbox." in adapter.authorize_url)
52 self.assertTrue(".sandbox." in adapter.access_token_url)
53 self.assertTrue(".sandbox." in adapter.profile_url)
54
55 @override_settings(
56 SOCIALACCOUNT_PROVIDERS={"trainingpeaks": {"USE_PRODUCTION": True}}
57 )
58 def test_use_production_uri(self):
59 adapter = TrainingPeaksOAuth2Adapter(None)
60 self.assertFalse(".sandbox." in adapter.authorize_url)
61 self.assertFalse(".sandbox." in adapter.access_token_url)
62 self.assertFalse(".sandbox." in adapter.profile_url)
63
64 def test_scope_from_default(self):
65 Request = namedtuple("request", ["GET"])
66 mock_request = Request(GET={})
67 scope = self.provider.get_scope(mock_request)
68 self.assertTrue("athlete:profile" in scope)
69
70 @override_settings(
71 SOCIALACCOUNT_PROVIDERS={
72 "trainingpeaks": {"SCOPE": ["athlete:profile", "workouts", "workouts:wod"]}
73 }
74 )
75 def test_scope_from_settings(self):
76 Request = namedtuple("request", ["GET"])
77 mock_request = Request(GET={})
78 scope = self.provider.get_scope(mock_request)
79 for item in ("athlete:profile", "workouts", "workouts:wod"):
80 self.assertTrue(item in scope)
0 from allauth.socialaccount.providers.oauth2.urls import default_urlpatterns
1
2 from .provider import TrainingPeaksProvider
3
4
5 urlpatterns = default_urlpatterns(TrainingPeaksProvider)
0 import requests
1
2 from allauth.socialaccount import app_settings
3 from allauth.socialaccount.providers.oauth2.views import (
4 OAuth2Adapter,
5 OAuth2CallbackView,
6 OAuth2LoginView,
7 )
8
9 from .provider import TrainingPeaksProvider
10
11
12 class TrainingPeaksOAuth2Adapter(OAuth2Adapter):
13 # https://github.com/TrainingPeaks/PartnersAPI/wiki/OAuth
14 provider_id = TrainingPeaksProvider.id
15
16 def get_settings(self):
17 """Provider settings"""
18 return app_settings.PROVIDERS.get(self.provider_id, {})
19
20 def get_hostname(self):
21 """Return hostname depending on sandbox seting"""
22 settings = self.get_settings()
23 if settings.get("USE_PRODUCTION"):
24 return "trainingpeaks.com"
25 return "sandbox.trainingpeaks.com"
26
27 @property
28 def access_token_url(self):
29 return "https://oauth." + self.get_hostname() + "/oauth/token"
30
31 @property
32 def authorize_url(self):
33 return "https://oauth." + self.get_hostname() + "/OAuth/Authorize"
34
35 @property
36 def profile_url(self):
37 return "https://api." + self.get_hostname() + "/v1/athlete/profile"
38
39 @property
40 def api_hostname(self):
41 """Return https://api.hostname.tld"""
42 return "https://api." + self.get_hostname()
43
44 # https://oauth.sandbox.trainingpeaks.com/oauth/deauthorize
45
46 scope_delimiter = " "
47
48 def complete_login(self, request, app, token, **kwargs):
49 headers = {"Authorization": "Bearer {0}".format(token.token)}
50 response = requests.get(self.profile_url, headers=headers)
51 response.raise_for_status()
52 extra_data = response.json()
53 return self.get_provider().sociallogin_from_response(request, extra_data)
54
55
56 oauth2_login = OAuth2LoginView.adapter_view(TrainingPeaksOAuth2Adapter)
57 oauth2_callback = OAuth2CallbackView.adapter_view(TrainingPeaksOAuth2Adapter)
226226 response_json = self.get_login_response_json(
227227 with_refresh_token=with_refresh_token
228228 )
229 if isinstance(resp_mock, list):
230 resp_mocks = resp_mock
231 else:
232 resp_mocks = [resp_mock]
233
229234 with mocked_response(
230235 MockedResponse(200, response_json, {"content-type": "application/json"}),
231 resp_mock,
236 *resp_mocks,
232237 ):
233238 resp = self.client.get(complete_url, self.get_complete_parameters(q))
234239 return resp
278283 factory = RequestFactory()
279284 request = factory.get("/accounts/login/callback/")
280285 request.user = AnonymousUser()
281 SessionMiddleware().process_request(request)
282 MessageMiddleware().process_request(request)
286 SessionMiddleware(lambda request: None).process_request(request)
287 MessageMiddleware(lambda request: None).process_request(request)
283288
284289 User = get_user_model()
285290 user = User()
370375 factory = RequestFactory()
371376 request = factory.get("/accounts/twitter/login/callback/")
372377 request.user = AnonymousUser()
373 SessionMiddleware().process_request(request)
374 MessageMiddleware().process_request(request)
378 SessionMiddleware(lambda request: None).process_request(request)
379 MessageMiddleware(lambda request: None).process_request(request)
375380
376381 User = get_user_model()
377382 user = User()
407412 factory = RequestFactory()
408413 request = factory.get("/accounts/twitter/login/callback/")
409414 request.user = AnonymousUser()
410 SessionMiddleware().process_request(request)
411 MessageMiddleware().process_request(request)
415 SessionMiddleware(lambda request: None).process_request(request)
416 MessageMiddleware(lambda request: None).process_request(request)
412417 resp = complete_social_login(request, sociallogin)
413418 return request, resp
414419
00 Metadata-Version: 1.1
11 Name: django-allauth
2 Version: 0.44.0
2 Version: 0.45.0
33 Summary: Integrated set of Django applications addressing authentication, registration, account management as well as 3rd party (social) account authentication.
44 Home-page: http://github.com/pennersr/django-allauth
55 Author: Raymond Penners
99 Welcome to django-allauth!
1010 ==========================
1111
12 .. image:: https://travis-ci.org/pennersr/django-allauth.svg
13 :target: http://travis-ci.org/pennersr/django-allauth
12 .. image:: https://api.travis-ci.com/pennersr/django-allauth.svg?branch=master
13 :target: http://travis-ci.com/pennersr/django-allauth
1414
1515 .. image:: https://img.shields.io/pypi/v/django-allauth.svg
1616 :target: https://pypi.python.org/pypi/django-allauth
106106 Classifier: Programming Language :: Python :: 3.6
107107 Classifier: Programming Language :: Python :: 3.7
108108 Classifier: Programming Language :: Python :: 3.8
109 Classifier: Programming Language :: Python :: 3.9
109110 Classifier: Framework :: Django
110111 Classifier: Framework :: Django :: 2.0
111112 Classifier: Framework :: Django :: 2.1
3535 allauth/account/migrations/__init__.py
3636 allauth/account/templatetags/__init__.py
3737 allauth/account/templatetags/account.py
38 allauth/locale/ar/LC_MESSAGES/django.mo
3938 allauth/locale/ar/LC_MESSAGES/django.po
40 allauth/locale/cs/LC_MESSAGES/django.mo
4139 allauth/locale/cs/LC_MESSAGES/django.po
42 allauth/locale/da/LC_MESSAGES/django.mo
4340 allauth/locale/da/LC_MESSAGES/django.po
44 allauth/locale/de/LC_MESSAGES/django.mo
4541 allauth/locale/de/LC_MESSAGES/django.po
46 allauth/locale/el/LC_MESSAGES/django.mo
4742 allauth/locale/el/LC_MESSAGES/django.po
48 allauth/locale/en/LC_MESSAGES/django.mo
4943 allauth/locale/en/LC_MESSAGES/django.po
50 allauth/locale/es/LC_MESSAGES/django.mo
5144 allauth/locale/es/LC_MESSAGES/django.po
52 allauth/locale/eu/LC_MESSAGES/django.mo
5345 allauth/locale/eu/LC_MESSAGES/django.po
54 allauth/locale/fa/LC_MESSAGES/django.mo
5546 allauth/locale/fa/LC_MESSAGES/django.po
56 allauth/locale/fi/LC_MESSAGES/django.mo
5747 allauth/locale/fi/LC_MESSAGES/django.po
58 allauth/locale/fr/LC_MESSAGES/django.mo
5948 allauth/locale/fr/LC_MESSAGES/django.po
60 allauth/locale/he/LC_MESSAGES/django.mo
6149 allauth/locale/he/LC_MESSAGES/django.po
62 allauth/locale/hr/LC_MESSAGES/django.mo
6350 allauth/locale/hr/LC_MESSAGES/django.po
64 allauth/locale/hu/LC_MESSAGES/django.mo
6551 allauth/locale/hu/LC_MESSAGES/django.po
66 allauth/locale/it/LC_MESSAGES/django.mo
6752 allauth/locale/it/LC_MESSAGES/django.po
68 allauth/locale/ja/LC_MESSAGES/django.mo
6953 allauth/locale/ja/LC_MESSAGES/django.po
70 allauth/locale/ko/LC_MESSAGES/django.mo
7154 allauth/locale/ko/LC_MESSAGES/django.po
72 allauth/locale/ky/LC_MESSAGES/django.mo
7355 allauth/locale/ky/LC_MESSAGES/django.po
74 allauth/locale/lt/LC_MESSAGES/django.mo
7556 allauth/locale/lt/LC_MESSAGES/django.po
76 allauth/locale/lv/LC_MESSAGES/django.mo
7757 allauth/locale/lv/LC_MESSAGES/django.po
78 allauth/locale/nb/LC_MESSAGES/django.mo
7958 allauth/locale/nb/LC_MESSAGES/django.po
80 allauth/locale/nl/LC_MESSAGES/django.mo
8159 allauth/locale/nl/LC_MESSAGES/django.po
82 allauth/locale/pl/LC_MESSAGES/django.mo
8360 allauth/locale/pl/LC_MESSAGES/django.po
84 allauth/locale/pt_BR/LC_MESSAGES/django.mo
8561 allauth/locale/pt_BR/LC_MESSAGES/django.po
86 allauth/locale/pt_PT/LC_MESSAGES/django.mo
8762 allauth/locale/pt_PT/LC_MESSAGES/django.po
88 allauth/locale/ru/LC_MESSAGES/django.mo
8963 allauth/locale/ru/LC_MESSAGES/django.po
90 allauth/locale/sk/LC_MESSAGES/django.mo
9164 allauth/locale/sk/LC_MESSAGES/django.po
92 allauth/locale/sl/LC_MESSAGES/django.mo
9365 allauth/locale/sl/LC_MESSAGES/django.po
94 allauth/locale/sr/LC_MESSAGES/django.mo
9566 allauth/locale/sr/LC_MESSAGES/django.po
96 allauth/locale/sr_Latn/LC_MESSAGES/django.mo
9767 allauth/locale/sr_Latn/LC_MESSAGES/django.po
98 allauth/locale/sv/LC_MESSAGES/django.mo
9968 allauth/locale/sv/LC_MESSAGES/django.po
100 allauth/locale/th/LC_MESSAGES/django.mo
10169 allauth/locale/th/LC_MESSAGES/django.po
102 allauth/locale/tr/LC_MESSAGES/django.mo
10370 allauth/locale/tr/LC_MESSAGES/django.po
104 allauth/locale/uk/LC_MESSAGES/django.mo
10571 allauth/locale/uk/LC_MESSAGES/django.po
106 allauth/locale/zh_CN/LC_MESSAGES/django.mo
10772 allauth/locale/zh_CN/LC_MESSAGES/django.po
108 allauth/locale/zh_Hans/LC_MESSAGES/django.mo
10973 allauth/locale/zh_Hans/LC_MESSAGES/django.po
110 allauth/locale/zh_Hant/LC_MESSAGES/django.mo
11174 allauth/locale/zh_Hant/LC_MESSAGES/django.po
112 allauth/locale/zh_TW/LC_MESSAGES/django.mo
11375 allauth/locale/zh_TW/LC_MESSAGES/django.po
11476 allauth/socialaccount/__init__.py
11577 allauth/socialaccount/adapter.py
222184 allauth/socialaccount/providers/cern/tests.py
223185 allauth/socialaccount/providers/cern/urls.py
224186 allauth/socialaccount/providers/cern/views.py
187 allauth/socialaccount/providers/cilogon/__init__.py
188 allauth/socialaccount/providers/cilogon/provider.py
189 allauth/socialaccount/providers/cilogon/tests.py
190 allauth/socialaccount/providers/cilogon/urls.py
191 allauth/socialaccount/providers/cilogon/views.py
225192 allauth/socialaccount/providers/coinbase/__init__.py
226193 allauth/socialaccount/providers/coinbase/provider.py
227194 allauth/socialaccount/providers/coinbase/tests.py
325292 allauth/socialaccount/providers/feedly/tests.py
326293 allauth/socialaccount/providers/feedly/urls.py
327294 allauth/socialaccount/providers/feedly/views.py
295 allauth/socialaccount/providers/feishu/__init__.py
296 allauth/socialaccount/providers/feishu/client.py
297 allauth/socialaccount/providers/feishu/provider.py
298 allauth/socialaccount/providers/feishu/tests.py
299 allauth/socialaccount/providers/feishu/urls.py
300 allauth/socialaccount/providers/feishu/views.py
328301 allauth/socialaccount/providers/figma/__init__.py
329302 allauth/socialaccount/providers/figma/provider.py
330303 allauth/socialaccount/providers/figma/tests.py
346319 allauth/socialaccount/providers/foursquare/tests.py
347320 allauth/socialaccount/providers/foursquare/urls.py
348321 allauth/socialaccount/providers/foursquare/views.py
322 allauth/socialaccount/providers/frontier/__init__.py
323 allauth/socialaccount/providers/frontier/provider.py
324 allauth/socialaccount/providers/frontier/tests.py
325 allauth/socialaccount/providers/frontier/urls.py
326 allauth/socialaccount/providers/frontier/views.py
349327 allauth/socialaccount/providers/fxa/__init__.py
350328 allauth/socialaccount/providers/fxa/models.py
351329 allauth/socialaccount/providers/fxa/provider.py
442420 allauth/socialaccount/providers/naver/tests.py
443421 allauth/socialaccount/providers/naver/urls.py
444422 allauth/socialaccount/providers/naver/views.py
423 allauth/socialaccount/providers/netiq/__init__.py
424 allauth/socialaccount/providers/netiq/provider.py
425 allauth/socialaccount/providers/netiq/tests.py
426 allauth/socialaccount/providers/netiq/urls.py
427 allauth/socialaccount/providers/netiq/views.py
445428 allauth/socialaccount/providers/nextcloud/__init__.py
446429 allauth/socialaccount/providers/nextcloud/provider.py
447430 allauth/socialaccount/providers/nextcloud/tests.py
587570 allauth/socialaccount/providers/telegram/provider.py
588571 allauth/socialaccount/providers/telegram/urls.py
589572 allauth/socialaccount/providers/telegram/views.py
573 allauth/socialaccount/providers/trainingpeaks/__init__.py
574 allauth/socialaccount/providers/trainingpeaks/provider.py
575 allauth/socialaccount/providers/trainingpeaks/tests.py
576 allauth/socialaccount/providers/trainingpeaks/urls.py
577 allauth/socialaccount/providers/trainingpeaks/views.py
590578 allauth/socialaccount/providers/trello/__init__.py
591579 allauth/socialaccount/providers/trello/provider.py
592580 allauth/socialaccount/providers/trello/tests.py
00 Django>=2.0
1 pyjwt[crypto]>=1.7
12 python3-openid>=3.0.8
3 requests
24 requests-oauthlib>=0.3.0
3 requests
4 pyjwt[crypto]>=1.7
165165 - ``get_logout_redirect_url(self, request)``
166166
167167 - ``get_email_confirmation_redirect_url(self, request)``
168
169 - ``get_signup_redirect_url(self, request)``
168170
169171 - ``allauth.socialaccount.adapter.DefaultSocialAccountAdapter``:
170172
6464 'allauth.socialaccount.providers.bitly',
6565 'allauth.socialaccount.providers.box',
6666 'allauth.socialaccount.providers.cern',
67 'allauth.socialaccount.providers.cilogon',
6768 'allauth.socialaccount.providers.coinbase',
6869 'allauth.socialaccount.providers.dataporten',
6970 'allauth.socialaccount.providers.daum',
8788 'allauth.socialaccount.providers.fivehundredpx',
8889 'allauth.socialaccount.providers.flickr',
8990 'allauth.socialaccount.providers.foursquare',
91 'allauth.socialaccount.providers.frontier',
9092 'allauth.socialaccount.providers.fxa',
9193 'allauth.socialaccount.providers.github',
9294 'allauth.socialaccount.providers.gitlab',
129131 'allauth.socialaccount.providers.strava',
130132 'allauth.socialaccount.providers.stripe',
131133 'allauth.socialaccount.providers.telegram',
134 'allauth.socialaccount.providers.trainingpeaks',
132135 'allauth.socialaccount.providers.trello',
133136 'allauth.socialaccount.providers.tumblr',
134137 'allauth.socialaccount.providers.twentythreeandme',
148151 'allauth.socialaccount.providers.zoho',
149152 'allauth.socialaccount.providers.zoom',
150153 'allauth.socialaccount.providers.okta',
154 'allauth.socialaccount.providers.feishu',
151155 ...
152156 ]
153157
193197
194198 - Add a ``Site`` for your domain, matching ``settings.SITE_ID`` (``django.contrib.sites`` app).
195199 - For each OAuth based provider, either add a ``SocialApp`` (``socialaccount``
196 app) containing the required client credentials, or, make make sure that these are
200 app) containing the required client credentials, or, make sure that these are
197201 configured via the ``SOCIALACCOUNT_PROVIDERS[<provider>]['APP']`` setting (see example above).
33 Requirements
44 ------------
55
6 - Python 3.5, 3.6, 3.7 or 3.8
6 - Python 3.5, 3.6, 3.7, 3.8 or 3.9
77
88 - Django (2.0+)
99
6868
6969 - CERN (OAuth2)
7070
71 - CILogon (OAuth2)
72
7173 - Coinbase (OAuth2)
7274
7375 - Dataporten (OAuth2)
114116
115117 - FourSquare (OAuth2)
116118
119 - Frontier (OAuth2)
120
117121 - Github (OAuth2)
118122
119123 - GitLab (OAuth2)
146150
147151 - Naver (OAuth2)
148152
153 - NetIQ/Microfocus AccessManager (OAuth2)
154
149155 - NextCloud (OAuth2)
150156
151157 - Odnoklassniki (OAuth2)
196202
197203 - Telegram
198204
205 - TrainingPeaks (OAuth2)
206
199207 - Trello (OAuth)
200208
201209 - Tumblr (OAuth)
227235 - Zoho (Oauth2)
228236
229237 - Zoom (OAuth2)
238
239 - Feishu (OAuth2)
230240
231241
232242 Note: OAuth/OAuth2 support is built using a common code base, making it easy to add support for additional OAuth/OAuth2 providers. More will follow soon...
309309
310310 CERN OAuth2 Documentation
311311 https://espace.cern.ch/authentication/CERN%20Authentication/OAuth.aspx
312
313
314 CILogon
315 ----
316 CILogon is a federated identity provider for hundreds of universities and research institutions around the world.
317
318 App registration (get your key and secret here)
319 https://cilogon.org/oauth2/register
320
321 CILogon OIDC/OAuth2 Documentation
322 https://www.cilogon.org/oidc
312323
313324
314325 Dataporten
751762 https://www.flickr.com/services/api/auth.oauth.html#authorization
752763
753764
765 Frontier
766 --------
767
768 The Frontier provider is OAuth2 based.
769
770 Client registration
771 *******************
772 Frontier Developments switched to OAuth2 based authentication in early 2019.
773 Before a developer can use the authentication and CAPI (Companion API) service
774 from Frontier, they must first apply for access.
775
776 Go to https://user.frontierstore.net/ and apply for access. Once your application
777 is approved for access. Under "Developer Zone", you will see a list of authorized
778 clients granted access. To add access for your client, click on the "Create Client"
779 button and fill out the form and submit the form.
780
781 After creating the client access, click on "View" to reveal your Client ID and
782 Shared Key. You can also regenerate the key in an event tha your shared key is
783 compromised.
784
785 Configuring Django
786 ******************
787 The app credentials are configured for your Django installation via the admin
788 interface. Create a new socialapp through ``/admin/socialaccount/socialapp/``.
789
790 Fill in the form as follows:
791
792 * Provider, "Frontier"
793 * Name, your pick, suggest "Frontier"
794 * Client id, is called "Client ID" by Frontier
795 * Secret key, is called "Shared Key" by Frontier
796 * Key, is not needed, leave blank.
797
798 Optionally, you can specify the scope to use as follows:
799
800 .. code-block:: python
801
802 SOCIALACCOUNT_PROVIDERS = {
803 'frontier': {
804 'SCOPE': ['auth', 'capi'],
805 'VERIFIED_EMAIL': True
806 },
807 }
808
809
754810 GitHub
755811 ------
756812
9721028 KEYCLOAK_URL:
9731029 The url of your hosted keycloak server, it must end with ``/auth``. For
9741030 example, you can use: ``https://your.keycloak.server/auth``
1031
1032 KEYCLOAK_URL_ALT:
1033 An alternate url of your hosted keycloak server, it must end with ``/auth``. For
1034 example, you can use: ``https://your.keycloak.server/auth``
1035
1036 This can be used when working with Docker on localhost, with a frontend and a backend hosted in different containers.
9751037
9761038 KEYCLOAK_REAML:
9771039 The name of the ``realm`` you want to use.
11611223 Development callback URL
11621224 http://localhost:8000/accounts/naver/login/callback/
11631225
1226 NetIQ/Microfocus AccessManager (NAM)
1227 -----------------------------------
1228
1229 The following AccessManager settings are available:
1230
1231 .. code-block:: python
1232
1233 SOCIALACCOUNT_PROVIDERS = {
1234 'netiq': {
1235 'NETIQ_URL': 'https://my.identity.provider.example.org',
1236 }
1237 }
1238
1239
1240 App registration (get your key and secret here) is done by the administrator of your NetIQ/Microfocus AccessManager.
1241
11641242
11651243 NextCloud
11661244 ---------
16961774 https://stripe.com/docs/connect/standalone-accounts
16971775
16981776
1777 TrainingPeaks
1778 -------------
1779
1780 You need to request an API Partnership to get your OAth credentials:
1781
1782 https://api.trainingpeaks.com/request-access
1783
1784 Make sure to request scope `athlete:profile` to be able to use OAuth
1785 for user login (default if setting `SCOPE` is omitted).
1786
1787 In development you should only use the sandbox services, which is the
1788 default unless you set `USE_PRODUCTION` to `True`.
1789
1790 .. code-block:: python
1791
1792 SOCIALACCOUNT_PROVIDERS = {
1793 'trainingpeaks': {
1794 'SCOPE': ['athlete:profile'],
1795 'USE_PRODUCTION': False,
1796 }
1797 }
1798
1799 API documentation:
1800
1801 https://github.com/TrainingPeaks/PartnersAPI/wiki
1802
16991803 Trello
17001804 ------
17011805
20082112 http://127.0.0.1:8000/accounts/zoom/login/callback/
20092113
20102114 Select scope user:read during app registration.
2115
2116
2117 Feishu
2118 ----
2119
2120 App Registration
2121 https://open.feishu.cn/app
2122
2123 Authorized Redirect URI
2124 http://127.0.0.1:8000/accounts/feishu/login/callback/
2125
2126 Into the developer background https://open.feishu.cn/app, click on the create self-built application, obtain app_id and app_secret.
2127 In the configuration of application security domain name added to redirect URL, such as https://open.feishu.cn/document.
2128 Redirect URL is the interface through which the application obtains the user's identity by using the user login pre-authorization code after the user has logged in.
2129 If it is not configured or configured incorrectly, the open platform will prompt the request to be illegal.
147147 "Programming Language :: Python :: 3.6",
148148 "Programming Language :: Python :: 3.7",
149149 "Programming Language :: Python :: 3.8",
150 "Programming Language :: Python :: 3.9",
150151 "Framework :: Django",
151152 "Framework :: Django :: 2.0",
152153 "Framework :: Django :: 2.1",
6666 "allauth.socialaccount.providers.bitly",
6767 "allauth.socialaccount.providers.box",
6868 "allauth.socialaccount.providers.cern",
69 "allauth.socialaccount.providers.cilogon",
6970 "allauth.socialaccount.providers.coinbase",
7071 "allauth.socialaccount.providers.dataporten",
7172 "allauth.socialaccount.providers.daum",
8990 "allauth.socialaccount.providers.fivehundredpx",
9091 "allauth.socialaccount.providers.flickr",
9192 "allauth.socialaccount.providers.foursquare",
93 "allauth.socialaccount.providers.frontier",
9294 "allauth.socialaccount.providers.fxa",
9395 "allauth.socialaccount.providers.github",
9496 "allauth.socialaccount.providers.gitlab",
107109 "allauth.socialaccount.providers.meetup",
108110 "allauth.socialaccount.providers.microsoft",
109111 "allauth.socialaccount.providers.naver",
112 "allauth.socialaccount.providers.netiq",
110113 "allauth.socialaccount.providers.nextcloud",
111114 "allauth.socialaccount.providers.odnoklassniki",
112115 "allauth.socialaccount.providers.openid",
131134 "allauth.socialaccount.providers.strava",
132135 "allauth.socialaccount.providers.stripe",
133136 "allauth.socialaccount.providers.telegram",
137 "allauth.socialaccount.providers.trainingpeaks",
134138 "allauth.socialaccount.providers.trello",
135139 "allauth.socialaccount.providers.tumblr",
136140 "allauth.socialaccount.providers.twentythreeandme",
150154 "allauth.socialaccount.providers.zoho",
151155 "allauth.socialaccount.providers.zoom",
152156 "allauth.socialaccount.providers.okta",
157 "allauth.socialaccount.providers.feishu",
153158 )
154159
155160 AUTHENTICATION_BACKENDS = (