Codebase list django-allauth / 25d1f9e
Update upstream source from tag 'upstream/0.41.0+ds' Update to upstream version '0.41.0+ds' with Debian dir eda35f0be074df68cd71a6bf821114ab979cf42d Pierre-Elliott Bécue 4 years ago
120 changed file(s) with 4621 addition(s) and 3482 deletion(s). Raw diff Collapse all Expand all
2020 Anna Sirota
2121 Antonin Delpeuch
2222 Aron Griffis
23 Bas ten Berge
2324 Basil Shubin
2425 Ben Timby
2526 Benjamin Jorand
3031 Chris Davis
3132 Christian Carter
3233 Christopher Grebs
34 Dani Hodovic
3335 Daniel Eriksson
3436 Daniel Widerin
3537 David Ascher
3739 David Evans
3840 David Friedman
3941 David Hummel
42 Dimitris Tsimpitas
4043 Egor Poderyagin
4144 Eran Rundstein
45 Eric Amador
4246 Eric Delord
4347 Fabio Caritas Barrionuevo da Luz
4448 Facundo Gaich
49 Francis Brito
50 Frantisek Malina
4551 Fred Palmer
4652 Fábio Santos
4753 George Whewell
6470 Jeremy Satterfield
6571 Jerome Leclanche
6672 Jesse Gerard Brands
73 Jihoon Park
6774 Jiyoon Ha
6875 Joe Vanderstelt
6976 John Bazik
121128 Stuart Ross
122129 Terry Jones
123130 Tiago Loureiro
131 Tim Gates
124132 Tomas Babej
125133 Tomas Marcik
134 Trey Corple
126135 Tuk Bredsdorff
127136 Udi Oron
128137 Victor Semionov
0 0.41.0 (2019-12-18)
1 *******************
2
3 Security notice
4 ---------------
5
6 - See `CVE-2019-19844
7 <https://www.djangoproject.com/weblog/2019/dec/18/security-releases/>`_.
8
9
10 Note worthy changes
11 -------------------
12
13 - New providers: Exist.io., YNAB, Amazon Cognito.
14
15 - You can now store OAuth credentials directly in your
16 ``settings.SOCIALACCOUNT_PROVIDERS`` settings instead of storing them in the
17 database using a ``SocialApp`` record.
18
19
20 Backwards incompatible changes
21 ------------------------------
22
23 - Dropped Python 2 and Django 1 compatibility.
24
25
026 0.40.0 (2019-08-29)
127 *******************
228
00 Metadata-Version: 1.1
11 Name: django-allauth
2 Version: 0.40.0
2 Version: 0.41.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
88 Description: ==========================
99 Welcome to django-allauth!
1010 ==========================
11
12 .. image:: https://badge.fury.io/py/django-allauth.svg
13 :target: http://badge.fury.io/py/django-allauth
1411
1512 .. image:: https://travis-ci.org/pennersr/django-allauth.svg
1613 :target: http://travis-ci.org/pennersr/django-allauth
3027
3128 .. image:: https://img.shields.io/badge/code_style-standard-brightgreen.svg
3229 :target: http://standardjs.com
30
31 .. image:: https://pennersr.github.io/img/emacs-badge.svg
32 :target: https://www.gnu.org/software/emacs/
3333
3434 Integrated set of Django applications addressing authentication,
3535 registration, account management as well as 3rd party (social) account
101101 Classifier: License :: OSI Approved :: MIT License
102102 Classifier: Operating System :: OS Independent
103103 Classifier: Programming Language :: Python
104 Classifier: Programming Language :: Python :: 2.7
105 Classifier: Programming Language :: Python :: 3.4
104 Classifier: Programming Language :: Python :: 3
106105 Classifier: Programming Language :: Python :: 3.5
107106 Classifier: Programming Language :: Python :: 3.6
107 Classifier: Programming Language :: Python :: 3.7
108 Classifier: Programming Language :: Python :: 3.8
108109 Classifier: Framework :: Django
109 Classifier: Framework :: Django :: 1.11
110110 Classifier: Framework :: Django :: 2.0
111111 Classifier: Framework :: Django :: 2.1
112112 Classifier: Framework :: Django :: 2.2
113 Classifier: Framework :: Django :: 3.0
00 ==========================
11 Welcome to django-allauth!
22 ==========================
3
4 .. image:: https://badge.fury.io/py/django-allauth.svg
5 :target: http://badge.fury.io/py/django-allauth
63
74 .. image:: https://travis-ci.org/pennersr/django-allauth.svg
85 :target: http://travis-ci.org/pennersr/django-allauth
2219
2320 .. image:: https://img.shields.io/badge/code_style-standard-brightgreen.svg
2421 :target: http://standardjs.com
22
23 .. image:: https://pennersr.github.io/img/emacs-badge.svg
24 :target: https://www.gnu.org/software/emacs/
2525
2626 Integrated set of Django applications addressing authentication,
2727 registration, account management as well as 3rd party (social) account
77
88 """
99
10 VERSION = (0, 40, 0, 'final', 0)
10 VERSION = (0, 41, 0, 'final', 0)
1111
1212 __title__ = 'django-allauth'
1313 __version_info__ = VERSION
2424 from django.template.loader import render_to_string
2525 from django.urls import reverse
2626 from django.utils import timezone
27
28 from allauth.compat import force_str, ugettext_lazy as _
27 from django.utils.encoding import force_str
28 from django.utils.translation import gettext_lazy as _
2929
3030 from ..utils import (
3131 build_absolute_uri,
00 from django.apps import AppConfig
1
2 from allauth.compat import ugettext_lazy as _
1 from django.utils.translation import gettext_lazy as _
32
43
54 class AccountConfig(AppConfig):
77 from django.contrib.sites.shortcuts import get_current_site
88 from django.core import exceptions, validators
99 from django.urls import reverse
10 from django.utils.translation import pgettext
11
12 from allauth.compat import ugettext, ugettext_lazy as _
10 from django.utils.translation import gettext, gettext_lazy as _, pgettext
1311
1412 from ..utils import (
1513 build_absolute_uri,
299297 )
300298 )
301299 if email_required:
302 self.fields['email'].label = ugettext("E-mail")
300 self.fields['email'].label = gettext("E-mail")
303301 self.fields['email'].required = True
304302 else:
305 self.fields['email'].label = ugettext("E-mail (optional)")
303 self.fields['email'].label = gettext("E-mail (optional)")
306304 self.fields['email'].required = False
307305 self.fields['email'].widget.is_required = False
308306 if self.username_required:
500498 def clean_email(self):
501499 email = self.cleaned_data["email"]
502500 email = get_adapter().clean_email(email)
503 self.users = filter_users_by_email(email)
501 self.users = filter_users_by_email(email, is_active=True)
504502 if not self.users:
505503 raise forms.ValidationError(_("The e-mail address is not assigned"
506504 " to any user account"))
55 from django.db import models, transaction
66 from django.utils import timezone
77 from django.utils.crypto import get_random_string
8
9 from allauth.compat import python_2_unicode_compatible, ugettext_lazy as _
8 from django.utils.translation import gettext_lazy as _
109
1110 from .. import app_settings as allauth_app_settings
1211 from . import app_settings, signals
1514 from .utils import user_email
1615
1716
18 @python_2_unicode_compatible
1917 class EmailAddress(models.Model):
2018
2119 user = models.ForeignKey(allauth_app_settings.USER_MODEL,
3634 unique_together = [("user", "email")]
3735
3836 def __str__(self):
39 return "%s (%s)" % (self.email, self.user)
37 return self.email
4038
4139 def set_as_primary(self, conditional=False):
4240 old_primary = EmailAddress.objects.get_primary(self.user)
7371 self.send_confirmation(request)
7472
7573
76 @python_2_unicode_compatible
7774 class EmailConfirmation(models.Model):
7875
7976 email_address = models.ForeignKey(EmailAddress,
1717 from django.urls import reverse
1818 from django.utils.timezone import now
1919
20 from allauth.account.forms import BaseSignupForm, SignupForm
20 from allauth.account.forms import BaseSignupForm, ResetPasswordForm, SignupForm
2121 from allauth.account.models import (
2222 EmailAddress,
2323 EmailConfirmation,
12161216 args=[key]))
12171217
12181218 assert mock_perform_login.called
1219
1220
1221 class TestResetPasswordForm(TestCase):
1222
1223 def test_user_email_not_sent_inactive_user(self):
1224 User = get_user_model()
1225 User.objects.create_user(
1226 'mike123',
1227 'mike@ixample.org',
1228 'test123',
1229 is_active=False)
1230 data = {'email': 'mike@ixample.org'}
1231 form = ResetPasswordForm(data)
1232 self.assertFalse(form.is_valid())
1233
1234
1235 class TestCVE2019_19844(TestCase):
1236
1237 global_request = RequestFactory().get('/')
1238
1239 def test_user_email_unicode_collision(self):
1240 User = get_user_model()
1241 User.objects.create_user('mike123', 'mike@example.org', 'test123')
1242 User.objects.create_user('mike456', 'mıke@example.org', 'test123')
1243 data = {'email': 'mıke@example.org'}
1244 form = ResetPasswordForm(data)
1245 self.assertTrue(form.is_valid())
1246 form.save(self.global_request)
1247 self.assertEqual(len(mail.outbox), 1)
1248 self.assertEqual(mail.outbox[0].to, ['mıke@example.org'])
1249
1250 def test_user_email_domain_unicode_collision(self):
1251 User = get_user_model()
1252 User.objects.create_user('mike123', 'mike@ixample.org', 'test123')
1253 User.objects.create_user('mike456', 'mike@ıxample.org', 'test123')
1254 data = {'email': 'mike@ıxample.org'}
1255 form = ResetPasswordForm(data)
1256 self.assertTrue(form.is_valid())
1257 form.save(self.global_request)
1258 self.assertEqual(len(mail.outbox), 1)
1259 self.assertEqual(mail.outbox[0].to, ['mike@ıxample.org'])
1260
1261 def test_user_email_unicode_collision_nonexistent(self):
1262 User = get_user_model()
1263 User.objects.create_user('mike123', 'mike@example.org', 'test123')
1264 data = {'email': 'mıke@example.org'}
1265 form = ResetPasswordForm(data)
1266 self.assertFalse(form.is_valid())
1267
1268 def test_user_email_domain_unicode_collision_nonexistent(self):
1269 User = get_user_model()
1270 User.objects.create_user('mike123', 'mike@ixample.org', 'test123')
1271 data = {'email': 'mike@ıxample.org'}
1272 form = ResetPasswordForm(data)
1273 self.assertFalse(form.is_valid())
0 from django.conf.urls import url
0 from django.urls import path, re_path
11
22 from . import views
33
44
55 urlpatterns = [
6 url(r"^signup/$", views.signup, name="account_signup"),
7 url(r"^login/$", views.login, name="account_login"),
8 url(r"^logout/$", views.logout, name="account_logout"),
9
10 url(r"^password/change/$", views.password_change,
11 name="account_change_password"),
12 url(r"^password/set/$", views.password_set, name="account_set_password"),
13
14 url(r"^inactive/$", views.account_inactive, name="account_inactive"),
6 path("signup/", views.signup, name="account_signup"),
7 path("login/", views.login, name="account_login"),
8 path("logout/", views.logout, name="account_logout"),
9 path("password/change/", views.password_change,
10 name="account_change_password"),
11 path("password/set/", views.password_set, name="account_set_password"),
12 path("inactive/", views.account_inactive, name="account_inactive"),
1513
1614 # E-mail
17 url(r"^email/$", views.email, name="account_email"),
18 url(r"^confirm-email/$", views.email_verification_sent,
19 name="account_email_verification_sent"),
20 url(r"^confirm-email/(?P<key>[-:\w]+)/$", views.confirm_email,
21 name="account_confirm_email"),
15 path("email/", views.email, name="account_email"),
16 path("confirm-email/", views.email_verification_sent,
17 name="account_email_verification_sent"),
18 re_path(r"^confirm-email/(?P<key>[-:\w]+)/$", views.confirm_email,
19 name="account_confirm_email"),
2220
2321 # password reset
24 url(r"^password/reset/$", views.password_reset,
25 name="account_reset_password"),
26 url(r"^password/reset/done/$", views.password_reset_done,
27 name="account_reset_password_done"),
28 url(r"^password/reset/key/(?P<uidb36>[0-9A-Za-z]+)-(?P<key>.+)/$",
29 views.password_reset_from_key,
30 name="account_reset_password_from_key"),
31 url(r"^password/reset/key/done/$", views.password_reset_from_key_done,
32 name="account_reset_password_from_key_done"),
22 path("password/reset/", views.password_reset,
23 name="account_reset_password"),
24 path("password/reset/done/", views.password_reset_done,
25 name="account_reset_password_done"),
26 re_path(r"^password/reset/key/(?P<uidb36>[0-9A-Za-z]+)-(?P<key>.+)/$",
27 views.password_reset_from_key,
28 name="account_reset_password_from_key"),
29 path("password/reset/key/done/", views.password_reset_from_key_done,
30 name="account_reset_password_from_key_done"),
3331 ]
0 import unicodedata
01 from collections import OrderedDict
12 from datetime import timedelta
23
78 from django.db import models
89 from django.db.models import Q
910 from django.http import HttpResponseRedirect
10 from django.utils.http import urlencode
11 from django.utils.encoding import force_str
12 from django.utils.http import base36_to_int, int_to_base36, urlencode
1113 from django.utils.timezone import now
12
13 from allauth.compat import base36_to_int, force_str, int_to_base36, six
1414
1515 from ..exceptions import ImmediateHttpResponse
1616 from ..utils import (
2222 from . import app_settings, signals
2323 from .adapter import get_adapter
2424 from .app_settings import EmailVerificationMethod
25
26
27 def _unicode_ci_compare(s1, s2):
28 """
29 Perform case-insensitive comparison of two identifiers, using the
30 recommended algorithm from Unicode Technical Report 36, section
31 2.11.2(B)(2).
32 """
33 norm_s1 = unicodedata.normalize('NFKC', s1).casefold()
34 norm_s2 = unicodedata.normalize('NFKC', s2).casefold()
35 return norm_s1 == norm_s2
2536
2637
2738 def get_next_redirect_url(request, redirect_field_name="next"):
369380 return ret
370381
371382
372 def filter_users_by_email(email):
383 def filter_users_by_email(email, is_active=None):
373384 """Return list of users by email address
374385
375386 Typically one, at most just a few in length. First we look through
379390 from .models import EmailAddress
380391 User = get_user_model()
381392 mails = EmailAddress.objects.filter(email__iexact=email)
382 users = [e.user for e in mails.prefetch_related('user')]
393 if is_active is not None:
394 mails = mails.filter(user__is_active=is_active)
395 users = []
396 for e in mails.prefetch_related('user'):
397 if _unicode_ci_compare(e.email, email):
398 users.append(e.user)
383399 if app_settings.USER_MODEL_EMAIL_FIELD:
384400 q_dict = {app_settings.USER_MODEL_EMAIL_FIELD + '__iexact': email}
385 users += list(User.objects.filter(**q_dict))
401 user_qs = User.objects.filter(**q_dict)
402 if is_active is not None:
403 user_qs = user_qs.filter(is_active=is_active)
404 for user in user_qs.iterator():
405 user_email = getattr(user, app_settings.USER_MODEL_EMAIL_FIELD)
406 if _unicode_ci_compare(user_email, email):
407 users.append(user)
386408 return list(set(users))
387409
388410
400422 """
401423 User = get_user_model()
402424 if issubclass(type(User._meta.pk), models.UUIDField):
403 if isinstance(user.pk, six.string_types):
425 if isinstance(user.pk, str):
404426 return user.pk
405427 return user.pk.hex
406428
407429 ret = user.pk
408 if isinstance(ret, six.integer_types):
430 if isinstance(ret, int):
409431 ret = int_to_base36(user.pk)
410432 return str(ret)
411433
4444
4545
4646 sensitive_post_parameters_m = method_decorator(
47 sensitive_post_parameters('password', 'password1', 'password2'))
47 sensitive_post_parameters(
48 'oldpassword', 'password', 'password1', 'password2'))
4849
4950
5051 def _ajax_response(request, response, form=None, data=None):
+0
-79
allauth/compat.py less more
0 try:
1 from django.utils.six.moves.urllib.parse import urlsplit
2 except ImportError:
3 from urllib.parse import urlsplit # noqa
4
5 try:
6 from django.utils import six
7 except ImportError:
8 class six:
9 PY3 = True
10 PY2 = False
11 integer_types = (int,)
12 string_types = (str,)
13
14
15 try:
16 from collections import UserDict
17 except ImportError:
18 from UserDict import UserDict # noqa
19
20 try:
21 from urllib.parse import parse_qsl, parse_qs, urlparse, urlunparse, urljoin
22 except ImportError:
23 from urlparse import parse_qsl, parse_qs, urlparse, urlunparse, urljoin # noqa
24
25 try:
26 from django.utils.encoding import python_2_unicode_compatible
27 except ImportError:
28 def python_2_unicode_compatible(c):
29 return c
30
31 if six.PY2:
32 from django.utils.encoding import force_text as force_str
33 else:
34 try:
35 from django.utils.encoding import force_str
36 except ImportError:
37 from django.utils.encoding import force_text as force_str # noqa
38
39
40 def int_to_base36(i):
41 """
42 Django on py2 raises ValueError on large values.
43 """
44 if six.PY2:
45 char_set = '0123456789abcdefghijklmnopqrstuvwxyz'
46 if i < 0:
47 raise ValueError("Negative base36 conversion input.")
48 if not isinstance(i, six.integer_types):
49 raise TypeError("Non-integer base36 conversion input.")
50 if i < 36:
51 return char_set[i]
52 b36 = ''
53 while i != 0:
54 i, n = divmod(i, 36)
55 b36 = char_set[n] + b36
56 else:
57 from django.utils.http import int_to_base36
58 b36 = int_to_base36(i)
59 return b36
60
61
62 def base36_to_int(s):
63 if six.PY2:
64 if len(s) > 13:
65 raise ValueError("Base36 input too large")
66 value = int(s, 36)
67 else:
68 from django.utils.http import base36_to_int
69 value = base36_to_int(s)
70 return value
71
72
73 if six.PY3:
74 from django.utils.translation import gettext as ugettext # noqa
75 from django.utils.translation import gettext_lazy as ugettext_lazy # noqa
76 else:
77 from django.utils.translation import ugettext # noqa
78 from django.utils.translation import ugettext_lazy # noqa
66 msgstr ""
77 "Project-Id-Version: 0.1\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2019-08-29 16:33-0500\n"
9 "POT-Creation-Date: 2019-12-18 11:53-0600\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"
3535 msgid "Password must be a minimum of {0} characters."
3636 msgstr "كلمة المرور يجب أن لا تقل عن {0} حروف."
3737
38 #: account/apps.py:8
38 #: account/apps.py:7
3939 msgid "Accounts"
4040 msgstr "الحسابات"
4141
42 #: account/forms.py:63 account/forms.py:400
42 #: account/forms.py:61 account/forms.py:398
4343 msgid "You must type the same password each time."
4444 msgstr "يجب عليك كتابة نفس كلمة المرور في كل مرة‪.‬"
4545
46 #: account/forms.py:93 account/forms.py:367 account/forms.py:478
46 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4747 msgid "Password"
4848 msgstr "كلمة السر"
4949
50 #: account/forms.py:94
50 #: account/forms.py:92
5151 msgid "Remember Me"
5252 msgstr "ذكرني"
5353
54 #: account/forms.py:100
54 #: account/forms.py:98
5555 msgid "This account is currently inactive."
5656 msgstr "هذا الحساب غير نشط حاليا."
5757
58 #: account/forms.py:103
58 #: account/forms.py:101
5959 msgid "The e-mail address and/or password you specified are not correct."
6060 msgstr "عنوان البريد الإلكتروني و / أو كلمة المرور الذي حددته غير صحيحة."
6161
62 #: account/forms.py:106
62 #: account/forms.py:104
6363 msgid "The username and/or password you specified are not correct."
6464 msgstr "اسم المستخدم و / أو كلمة المرور الذي حددته غير صحيحة."
6565
66 #: account/forms.py:115 account/forms.py:270 account/forms.py:428
67 #: account/forms.py:497
66 #: account/forms.py:113 account/forms.py:268 account/forms.py:426
67 #: account/forms.py:495
6868 msgid "E-mail address"
6969 msgstr "عنوان البريد الالكتروني"
7070
71 #: account/forms.py:117 account/forms.py:303 account/forms.py:423
72 #: account/forms.py:492
71 #: account/forms.py:115 account/forms.py:301 account/forms.py:421
72 #: account/forms.py:490
7373 msgid "E-mail"
7474 msgstr "البريد الالكتروني"
7575
76 #: account/forms.py:122 account/forms.py:125 account/forms.py:262
77 #: account/forms.py:266
76 #: account/forms.py:120 account/forms.py:123 account/forms.py:260
77 #: account/forms.py:264
7878 msgid "Username"
7979 msgstr "اسم المستخدم"
8080
81 #: account/forms.py:132
81 #: account/forms.py:130
8282 msgid "Username or e-mail"
8383 msgstr "اسم المستخدم أو البريج الالكتروني"
8484
85 #: account/forms.py:135
85 #: account/forms.py:133
8686 msgctxt "field label"
8787 msgid "Login"
8888 msgstr "تسجيل الدخول"
8989
90 #: account/forms.py:294
90 #: account/forms.py:292
9191 #, fuzzy
9292 #| msgid "E-mail (optional)"
9393 msgid "E-mail (again)"
9494 msgstr "البريد الالكتروني ‪)‬اختياري‪(‬"
9595
96 #: account/forms.py:298
96 #: account/forms.py:296
9797 #, fuzzy
9898 #| msgid "email confirmation"
9999 msgid "E-mail address confirmation"
100100 msgstr "تأكيد البريد الإلكتروني"
101101
102 #: account/forms.py:306
102 #: account/forms.py:304
103103 msgid "E-mail (optional)"
104104 msgstr "البريد الالكتروني ‪)‬اختياري‪(‬"
105105
106 #: account/forms.py:347
106 #: account/forms.py:345
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:370 account/forms.py:479
112 #: account/forms.py:368 account/forms.py:477
113113 msgid "Password (again)"
114114 msgstr "كلمة السر ‪)‬مرة أخرى‪(‬"
115115
116 #: account/forms.py:434
116 #: account/forms.py:432
117117 msgid "This e-mail address is already associated with this account."
118118 msgstr "عنوان البريد الإلكتروني هذا بالفعل المقترنة مع هذا الحساب."
119119
120 #: account/forms.py:436
120 #: account/forms.py:434
121121 msgid "This e-mail address is already associated with another account."
122122 msgstr "عنوان البريد الإلكتروني هذا مقترن بالفعل بحساب آخر."
123123
124 #: account/forms.py:458
124 #: account/forms.py:456
125125 msgid "Current Password"
126126 msgstr "كلمة المرور الحالية"
127127
128 #: account/forms.py:459 account/forms.py:548
128 #: account/forms.py:457 account/forms.py:546
129129 msgid "New Password"
130130 msgstr "كلمة المرور الجديدة"
131131
132 #: account/forms.py:460 account/forms.py:549
132 #: account/forms.py:458 account/forms.py:547
133133 msgid "New Password (again)"
134134 msgstr "كلمة المرور الجديدة (مرة أخرى)"
135135
136 #: account/forms.py:468
136 #: account/forms.py:466
137137 msgid "Please type your current password."
138138 msgstr "الرجاء كتابة كلمة المرور الحالية الخاصة بك."
139139
140 #: account/forms.py:506
140 #: account/forms.py:504
141141 msgid "The e-mail address is not assigned to any user account"
142142 msgstr "لم يتم تعيين عنوان البريد الإلكتروني لأي حساب مستخدم"
143143
144 #: account/forms.py:570
144 #: account/forms.py:568
145145 msgid "The password reset token was invalid."
146146 msgstr ""
147147
148 #: account/models.py:23
148 #: account/models.py:21
149149 msgid "user"
150150 msgstr "مستخدم"
151151
152 #: account/models.py:27 account/models.py:81
152 #: account/models.py:25 account/models.py:78
153153 msgid "e-mail address"
154154 msgstr "عنوان بريد إلكتروني"
155155
156 #: account/models.py:28
156 #: account/models.py:26
157157 msgid "verified"
158158 msgstr "تمّ تحقيقه"
159159
160 #: account/models.py:29
160 #: account/models.py:27
161161 msgid "primary"
162162 msgstr "أوّلي"
163163
164 #: account/models.py:34
164 #: account/models.py:32
165165 msgid "email address"
166166 msgstr "عنوان بريد الكتروني"
167167
168 #: account/models.py:35
168 #: account/models.py:33
169169 msgid "email addresses"
170170 msgstr "عناوين البريد الالكتروني"
171171
172 #: account/models.py:83
172 #: account/models.py:80
173173 msgid "created"
174174 msgstr "تمّ إنشاؤه"
175175
176 #: account/models.py:85
176 #: account/models.py:82
177177 msgid "sent"
178178 msgstr "مبعوث"
179179
180 #: account/models.py:86 socialaccount/models.py:58
180 #: account/models.py:83 socialaccount/models.py:55
181181 msgid "key"
182182 msgstr "مفتاح"
183183
184 #: account/models.py:91
184 #: account/models.py:88
185185 msgid "email confirmation"
186186 msgstr "تأكيد البريد الإلكتروني"
187187
188 #: account/models.py:92
188 #: account/models.py:89
189189 msgid "email confirmations"
190190 msgstr "تأكيدات البريد الإلكتروني"
191191
192 #: socialaccount/adapter.py:27
192 #: socialaccount/adapter.py:26
193193 #, python-format
194194 msgid ""
195195 "An account already exists with this e-mail address. Please sign in to that "
198198 "حساب موجود بالفعل مع هذا عنوان البريد الإلكتروني. يرجى تسجيل الدخول إلى هذا "
199199 "الحساب أولا، ثم ربط حساب %s الخاص بك."
200200
201 #: socialaccount/adapter.py:132
201 #: socialaccount/adapter.py:131
202202 msgid "Your account has no password set up."
203203 msgstr "حسابك ليس لديه كلمة مرور اقامة."
204204
205 #: socialaccount/adapter.py:139
205 #: socialaccount/adapter.py:138
206206 msgid "Your account has no verified e-mail address."
207207 msgstr "حسابك ليس لديه عنوان البريد الإلكتروني تحققنا منها."
208208
209 #: socialaccount/apps.py:8
209 #: socialaccount/apps.py:7
210210 msgid "Social Accounts"
211211 msgstr "الحسابات الاجتماعية"
212212
213 #: socialaccount/models.py:46 socialaccount/models.py:80
213 #: socialaccount/models.py:42 socialaccount/models.py:76
214214 msgid "provider"
215215 msgstr "مزود"
216216
217 #: socialaccount/models.py:49
217 #: socialaccount/models.py:45
218218 msgid "name"
219219 msgstr "اسم"
220220
221 #: socialaccount/models.py:51
221 #: socialaccount/models.py:47
222222 msgid "client id"
223223 msgstr ""
224224
225 #: socialaccount/models.py:49
226 msgid "App ID, or consumer key"
227 msgstr ""
228
229 #: socialaccount/models.py:50
230 msgid "secret key"
231 msgstr ""
232
225233 #: socialaccount/models.py:53
226 msgid "App ID, or consumer key"
227 msgstr ""
228
229 #: socialaccount/models.py:54
230 msgid "secret key"
231 msgstr ""
232
233 #: socialaccount/models.py:56
234234 msgid "API secret, client secret, or consumer secret"
235235 msgstr ""
236236
237 #: socialaccount/models.py:61
237 #: socialaccount/models.py:58
238238 msgid "Key"
239239 msgstr ""
240240
241 #: socialaccount/models.py:69
241 #: socialaccount/models.py:66
242242 msgid "social application"
243243 msgstr ""
244244
245 #: socialaccount/models.py:70
245 #: socialaccount/models.py:67
246246 msgid "social applications"
247247 msgstr ""
248248
249 #: socialaccount/models.py:95
250 msgid "uid"
251 msgstr ""
252
253 #: socialaccount/models.py:97
254 msgid "last login"
255 msgstr ""
256
249257 #: socialaccount/models.py:99
250 msgid "uid"
258 msgid "date joined"
251259 msgstr ""
252260
253261 #: socialaccount/models.py:101
254 msgid "last login"
255 msgstr ""
256
257 #: socialaccount/models.py:103
258 msgid "date joined"
262 msgid "extra data"
259263 msgstr ""
260264
261265 #: socialaccount/models.py:105
262 msgid "extra data"
263 msgstr ""
264
265 #: socialaccount/models.py:109
266266 msgid "social account"
267267 msgstr ""
268268
269 #: socialaccount/models.py:110
269 #: socialaccount/models.py:106
270270 msgid "social accounts"
271271 msgstr ""
272272
273 #: socialaccount/models.py:131
274 msgid "token"
275 msgstr ""
276
277 #: socialaccount/models.py:133
278 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
279 msgstr ""
280
273281 #: socialaccount/models.py:136
274 msgid "token"
282 msgid "token secret"
275283 msgstr ""
276284
277285 #: socialaccount/models.py:138
278 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
279 msgstr ""
280
281 #: socialaccount/models.py:141
282 msgid "token secret"
283 msgstr ""
284
285 #: socialaccount/models.py:143
286286 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
287287 msgstr ""
288288
289 #: socialaccount/models.py:140
290 msgid "expires at"
291 msgstr ""
292
293 #: socialaccount/models.py:144
294 msgid "social application token"
295 msgstr ""
296
289297 #: socialaccount/models.py:145
290 msgid "expires at"
291 msgstr ""
292
293 #: socialaccount/models.py:149
294 msgid "social application token"
295 msgstr ""
296
297 #: socialaccount/models.py:150
298298 msgid "social application tokens"
299299 msgstr ""
300300
301 #: socialaccount/providers/douban/views.py:35
301 #: socialaccount/providers/douban/views.py:36
302302 msgid "Invalid profile data"
303303 msgstr ""
304304
77 msgstr ""
88 "Project-Id-Version: 0.35\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-08-29 16:33-0500\n"
10 "POT-Creation-Date: 2019-12-18 11:53-0600\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"
3535 msgid "Password must be a minimum of {0} characters."
3636 msgstr "Heslo musí obsahovat minimálně {0} znaků."
3737
38 #: account/apps.py:8
38 #: account/apps.py:7
3939 msgid "Accounts"
4040 msgstr "Účty"
4141
42 #: account/forms.py:63 account/forms.py:400
42 #: account/forms.py:61 account/forms.py:398
4343 msgid "You must type the same password each time."
4444 msgstr "Hesla se musí shodovat."
4545
46 #: account/forms.py:93 account/forms.py:367 account/forms.py:478
46 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4747 msgid "Password"
4848 msgstr "Heslo"
4949
50 #: account/forms.py:94
50 #: account/forms.py:92
5151 msgid "Remember Me"
5252 msgstr "Zapamatovat"
5353
54 #: account/forms.py:100
54 #: account/forms.py:98
5555 msgid "This account is currently inactive."
5656 msgstr "Účet je v tuto chvíli neaktivní."
5757
58 #: account/forms.py:103
58 #: account/forms.py:101
5959 msgid "The e-mail address and/or password you specified are not correct."
6060 msgstr "Zadaný e-mail nebo heslo není správné."
6161
62 #: account/forms.py:106
62 #: account/forms.py:104
6363 msgid "The username and/or password you specified are not correct."
6464 msgstr "Zadané uživatelské jméno nebo heslo není správné."
6565
66 #: account/forms.py:115 account/forms.py:270 account/forms.py:428
67 #: account/forms.py:497
66 #: account/forms.py:113 account/forms.py:268 account/forms.py:426
67 #: account/forms.py:495
6868 msgid "E-mail address"
6969 msgstr "E-mailová adresa"
7070
71 #: account/forms.py:117 account/forms.py:303 account/forms.py:423
72 #: account/forms.py:492
71 #: account/forms.py:115 account/forms.py:301 account/forms.py:421
72 #: account/forms.py:490
7373 msgid "E-mail"
7474 msgstr "E-mail"
7575
76 #: account/forms.py:122 account/forms.py:125 account/forms.py:262
77 #: account/forms.py:266
76 #: account/forms.py:120 account/forms.py:123 account/forms.py:260
77 #: account/forms.py:264
7878 msgid "Username"
7979 msgstr "Uživatelské jméno"
8080
81 #: account/forms.py:132
81 #: account/forms.py:130
8282 msgid "Username or e-mail"
8383 msgstr "Uživatelské jméno nebo e-mail"
8484
85 #: account/forms.py:135
85 #: account/forms.py:133
8686 msgctxt "field label"
8787 msgid "Login"
8888 msgstr "Login"
8989
90 #: account/forms.py:294
90 #: account/forms.py:292
9191 msgid "E-mail (again)"
9292 msgstr "E-mail (znovu)"
9393
94 #: account/forms.py:298
94 #: account/forms.py:296
9595 msgid "E-mail address confirmation"
9696 msgstr "Potrvzení e-mailové adresy"
9797
98 #: account/forms.py:306
98 #: account/forms.py:304
9999 msgid "E-mail (optional)"
100100 msgstr "E-mail (nepovinné)"
101101
102 #: account/forms.py:347
102 #: account/forms.py:345
103103 msgid "You must type the same email each time."
104104 msgstr "Vložené emaily se musí shodovat."
105105
106 #: account/forms.py:370 account/forms.py:479
106 #: account/forms.py:368 account/forms.py:477
107107 msgid "Password (again)"
108108 msgstr "Heslo (znovu)"
109109
110 #: account/forms.py:434
110 #: account/forms.py:432
111111 msgid "This e-mail address is already associated with this account."
112112 msgstr "Tento e-mail je již k tomuto účtu přiřazen."
113113
114 #: account/forms.py:436
114 #: account/forms.py:434
115115 msgid "This e-mail address is already associated with another account."
116116 msgstr "Tento e-mail je již přiřazen k jinému účtu."
117117
118 #: account/forms.py:458
118 #: account/forms.py:456
119119 msgid "Current Password"
120120 msgstr "Současné heslo"
121121
122 #: account/forms.py:459 account/forms.py:548
122 #: account/forms.py:457 account/forms.py:546
123123 msgid "New Password"
124124 msgstr "Nové heslo"
125125
126 #: account/forms.py:460 account/forms.py:549
126 #: account/forms.py:458 account/forms.py:547
127127 msgid "New Password (again)"
128128 msgstr "Nové heslo (znovu)"
129129
130 #: account/forms.py:468
130 #: account/forms.py:466
131131 msgid "Please type your current password."
132132 msgstr "Prosím, zadejte svoje současné heslo."
133133
134 #: account/forms.py:506
134 #: account/forms.py:504
135135 msgid "The e-mail address is not assigned to any user account"
136136 msgstr "E-mail není přiřazen k žádnému účtu"
137137
138 #: account/forms.py:570
138 #: account/forms.py:568
139139 msgid "The password reset token was invalid."
140140 msgstr "Token pro reset hesla není platný."
141141
142 #: account/models.py:23
142 #: account/models.py:21
143143 msgid "user"
144144 msgstr "uživatel"
145145
146 #: account/models.py:27 account/models.py:81
146 #: account/models.py:25 account/models.py:78
147147 msgid "e-mail address"
148148 msgstr "e-mailová adresa"
149149
150 #: account/models.py:28
150 #: account/models.py:26
151151 msgid "verified"
152152 msgstr "ověřeno"
153153
154 #: account/models.py:29
154 #: account/models.py:27
155155 msgid "primary"
156156 msgstr "primární"
157157
158 #: account/models.py:34
158 #: account/models.py:32
159159 msgid "email address"
160160 msgstr "e-mailová adresa"
161161
162 #: account/models.py:35
162 #: account/models.py:33
163163 msgid "email addresses"
164164 msgstr "e-mailové adresy"
165165
166 #: account/models.py:83
166 #: account/models.py:80
167167 msgid "created"
168168 msgstr "vytvořit"
169169
170 #: account/models.py:85
170 #: account/models.py:82
171171 msgid "sent"
172172 msgstr "odeslaný"
173173
174 #: account/models.py:86 socialaccount/models.py:58
174 #: account/models.py:83 socialaccount/models.py:55
175175 msgid "key"
176176 msgstr "klíč"
177177
178 #: account/models.py:91
178 #: account/models.py:88
179179 msgid "email confirmation"
180180 msgstr "Potvrzovací e-mail"
181181
182 #: account/models.py:92
182 #: account/models.py:89
183183 msgid "email confirmations"
184184 msgstr "Ověřovací e-maily"
185185
186 #: socialaccount/adapter.py:27
186 #: socialaccount/adapter.py:26
187187 #, python-format
188188 msgid ""
189189 "An account already exists with this e-mail address. Please sign in to that "
192192 "Účet s touto e-mailovou adresou již existuje. Prosím přihlaste se nejdříve "
193193 "pod tímto účtem a potom připojte svůj %s účet."
194194
195 #: socialaccount/adapter.py:132
195 #: socialaccount/adapter.py:131
196196 msgid "Your account has no password set up."
197197 msgstr "Váš účet nemá nastavené heslo."
198198
199 #: socialaccount/adapter.py:139
199 #: socialaccount/adapter.py:138
200200 msgid "Your account has no verified e-mail address."
201201 msgstr "Váš účet nemá žádný ověřený e-mail."
202202
203 #: socialaccount/apps.py:8
203 #: socialaccount/apps.py:7
204204 msgid "Social Accounts"
205205 msgstr "Účty sociálních sítí"
206206
207 #: socialaccount/models.py:46 socialaccount/models.py:80
207 #: socialaccount/models.py:42 socialaccount/models.py:76
208208 msgid "provider"
209209 msgstr "poskytovatel"
210210
211 #: socialaccount/models.py:49
211 #: socialaccount/models.py:45
212212 msgid "name"
213213 msgstr "jméno"
214214
215 #: socialaccount/models.py:51
215 #: socialaccount/models.py:47
216216 msgid "client id"
217217 msgstr "id klienta"
218218
219 #: socialaccount/models.py:53
219 #: socialaccount/models.py:49
220220 msgid "App ID, or consumer key"
221221 msgstr "App ID nebo uživatelský klíč"
222222
223 #: socialaccount/models.py:54
223 #: socialaccount/models.py:50
224224 msgid "secret key"
225225 msgstr "tajný klíč"
226226
227 #: socialaccount/models.py:56
227 #: socialaccount/models.py:53
228228 msgid "API secret, client secret, or consumer secret"
229229 msgstr "tajný API klíč, tajný klientský klíč nebo uživatelský tajný klíč"
230230
231 #: socialaccount/models.py:61
231 #: socialaccount/models.py:58
232232 msgid "Key"
233233 msgstr "Klíč"
234234
235 #: socialaccount/models.py:69
235 #: socialaccount/models.py:66
236236 msgid "social application"
237237 msgstr "sociální aplikace"
238238
239 #: socialaccount/models.py:70
239 #: socialaccount/models.py:67
240240 msgid "social applications"
241241 msgstr "sociální aplikace"
242242
243 #: socialaccount/models.py:99
243 #: socialaccount/models.py:95
244244 msgid "uid"
245245 msgstr "uid"
246246
247 #: socialaccount/models.py:101
247 #: socialaccount/models.py:97
248248 msgid "last login"
249249 msgstr "poslední přihlášení"
250250
251 #: socialaccount/models.py:103
251 #: socialaccount/models.py:99
252252 msgid "date joined"
253253 msgstr "datum registrace"
254254
255 #: socialaccount/models.py:105
255 #: socialaccount/models.py:101
256256 msgid "extra data"
257257 msgstr "extra data"
258258
259 #: socialaccount/models.py:109
259 #: socialaccount/models.py:105
260260 msgid "social account"
261261 msgstr "účet sociální sítě"
262262
263 #: socialaccount/models.py:110
263 #: socialaccount/models.py:106
264264 msgid "social accounts"
265265 msgstr "účty sociálních sítí"
266266
267 #: socialaccount/models.py:136
267 #: socialaccount/models.py:131
268268 msgid "token"
269269 msgstr "token"
270270
271 #: socialaccount/models.py:138
271 #: socialaccount/models.py:133
272272 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
273273 msgstr "\"oauth_token\" (OAuth1) nebo přístupový token (OAuth2)"
274274
275 #: socialaccount/models.py:141
275 #: socialaccount/models.py:136
276276 msgid "token secret"
277277 msgstr "tajný token"
278278
279 #: socialaccount/models.py:143
279 #: socialaccount/models.py:138
280280 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
281281 msgstr "\"oauth_token_secret\" (OAuth1) nebo token pro obnovu (OAuth2)"
282282
283 #: socialaccount/models.py:145
283 #: socialaccount/models.py:140
284284 msgid "expires at"
285285 msgstr "vyprší"
286286
287 #: socialaccount/models.py:149
287 #: socialaccount/models.py:144
288288 msgid "social application token"
289289 msgstr "token sociální aplikace"
290290
291 #: socialaccount/models.py:150
291 #: socialaccount/models.py:145
292292 msgid "social application tokens"
293293 msgstr "tokeny sociálních aplikací"
294294
295 #: socialaccount/providers/douban/views.py:35
295 #: socialaccount/providers/douban/views.py:36
296296 msgid "Invalid profile data"
297297 msgstr "Neplatná data profilu"
298298
66 msgstr ""
77 "Project-Id-Version: \n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2019-08-29 16:33-0500\n"
9 "POT-Creation-Date: 2019-12-18 11:53-0600\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"
3434 msgid "Password must be a minimum of {0} characters."
3535 msgstr "Adgangskoden skal være på mindst {0} tegn."
3636
37 #: account/apps.py:8
37 #: account/apps.py:7
3838 msgid "Accounts"
3939 msgstr "Konti"
4040
41 #: account/forms.py:63 account/forms.py:400
41 #: account/forms.py:61 account/forms.py:398
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:93 account/forms.py:367 account/forms.py:478
45 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4646 msgid "Password"
4747 msgstr "Adgangskode"
4848
49 #: account/forms.py:94
49 #: account/forms.py:92
5050 msgid "Remember Me"
5151 msgstr "Husk mig"
5252
53 #: account/forms.py:100
53 #: account/forms.py:98
5454 msgid "This account is currently inactive."
5555 msgstr "Denne konto er i øjeblikket inaktiv."
5656
57 #: account/forms.py:103
57 #: account/forms.py:101
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:106
61 #: account/forms.py:104
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:115 account/forms.py:270 account/forms.py:428
66 #: account/forms.py:497
65 #: account/forms.py:113 account/forms.py:268 account/forms.py:426
66 #: account/forms.py:495
6767 msgid "E-mail address"
6868 msgstr "E-mail adresse"
6969
70 #: account/forms.py:117 account/forms.py:303 account/forms.py:423
71 #: account/forms.py:492
70 #: account/forms.py:115 account/forms.py:301 account/forms.py:421
71 #: account/forms.py:490
7272 msgid "E-mail"
7373 msgstr "E-mail"
7474
75 #: account/forms.py:122 account/forms.py:125 account/forms.py:262
76 #: account/forms.py:266
75 #: account/forms.py:120 account/forms.py:123 account/forms.py:260
76 #: account/forms.py:264
7777 msgid "Username"
7878 msgstr "Brugernavn"
7979
80 #: account/forms.py:132
80 #: account/forms.py:130
8181 msgid "Username or e-mail"
8282 msgstr "Brugernavn eller e-mail"
8383
84 #: account/forms.py:135
84 #: account/forms.py:133
8585 msgctxt "field label"
8686 msgid "Login"
8787 msgstr "Bruger"
8888
89 #: account/forms.py:294
89 #: account/forms.py:292
9090 msgid "E-mail (again)"
9191 msgstr "E-mail (igen)"
9292
93 #: account/forms.py:298
93 #: account/forms.py:296
9494 msgid "E-mail address confirmation"
9595 msgstr "Bekræftelse af e-mail-adresse"
9696
97 #: account/forms.py:306
97 #: account/forms.py:304
9898 msgid "E-mail (optional)"
9999 msgstr "E-mail (valgfri)"
100100
101 #: account/forms.py:347
101 #: account/forms.py:345
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:370 account/forms.py:479
105 #: account/forms.py:368 account/forms.py:477
106106 msgid "Password (again)"
107107 msgstr "Adgangskode (igen)"
108108
109 #: account/forms.py:434
109 #: account/forms.py:432
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:436
113 #: account/forms.py:434
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:458
117 #: account/forms.py:456
118118 msgid "Current Password"
119119 msgstr "Nuværende adgangskode"
120120
121 #: account/forms.py:459 account/forms.py:548
121 #: account/forms.py:457 account/forms.py:546
122122 msgid "New Password"
123123 msgstr "Ny adgangskode"
124124
125 #: account/forms.py:460 account/forms.py:549
125 #: account/forms.py:458 account/forms.py:547
126126 msgid "New Password (again)"
127127 msgstr "Ny adgangskode (igen)"
128128
129 #: account/forms.py:468
129 #: account/forms.py:466
130130 msgid "Please type your current password."
131131 msgstr "Indtast din nuværende adgangskode."
132132
133 #: account/forms.py:506
133 #: account/forms.py:504
134134 msgid "The e-mail address is not assigned to any user account"
135135 msgstr "E-mail-adressen er ikke tildelt til nogen brugerkonto"
136136
137 #: account/forms.py:570
137 #: account/forms.py:568
138138 msgid "The password reset token was invalid."
139139 msgstr "Token for nulstilling af adgangskode var ugyldig."
140140
141 #: account/models.py:23
141 #: account/models.py:21
142142 msgid "user"
143143 msgstr "bruger"
144144
145 #: account/models.py:27 account/models.py:81
145 #: account/models.py:25 account/models.py:78
146146 msgid "e-mail address"
147147 msgstr "e-mail adresse"
148148
149 #: account/models.py:28
149 #: account/models.py:26
150150 msgid "verified"
151151 msgstr "bekræftet"
152152
153 #: account/models.py:29
153 #: account/models.py:27
154154 msgid "primary"
155155 msgstr "primær"
156156
157 #: account/models.py:34
157 #: account/models.py:32
158158 msgid "email address"
159159 msgstr "e-mail adresse"
160160
161 #: account/models.py:35
161 #: account/models.py:33
162162 msgid "email addresses"
163163 msgstr "e-mail adresser"
164164
165 #: account/models.py:83
165 #: account/models.py:80
166166 msgid "created"
167167 msgstr "oprettet"
168168
169 #: account/models.py:85
169 #: account/models.py:82
170170 msgid "sent"
171171 msgstr "sendt"
172172
173 #: account/models.py:86 socialaccount/models.py:58
173 #: account/models.py:83 socialaccount/models.py:55
174174 msgid "key"
175175 msgstr "nøgle"
176176
177 #: account/models.py:91
177 #: account/models.py:88
178178 msgid "email confirmation"
179179 msgstr "e-mail bekræftigelse"
180180
181 #: account/models.py:92
181 #: account/models.py:89
182182 msgid "email confirmations"
183183 msgstr "e-mail bekræftigelser"
184184
185 #: socialaccount/adapter.py:27
185 #: socialaccount/adapter.py:26
186186 #, python-format
187187 msgid ""
188188 "An account already exists with this e-mail address. Please sign in to that "
191191 "En konto med denne e-mail adresse eksisterer allerede. Log venligst ind med "
192192 "den konto først og tilknyt din %s konto derefter."
193193
194 #: socialaccount/adapter.py:132
194 #: socialaccount/adapter.py:131
195195 msgid "Your account has no password set up."
196196 msgstr "Der er ikke oprettet noget password til din konto."
197197
198 #: socialaccount/adapter.py:139
198 #: socialaccount/adapter.py:138
199199 msgid "Your account has no verified e-mail address."
200200 msgstr "Din konto har ikke noget bekræftiget e-mail adresse."
201201
202 #: socialaccount/apps.py:8
202 #: socialaccount/apps.py:7
203203 msgid "Social Accounts"
204204 msgstr "Sociale konti"
205205
206 #: socialaccount/models.py:46 socialaccount/models.py:80
206 #: socialaccount/models.py:42 socialaccount/models.py:76
207207 msgid "provider"
208208 msgstr "udbyder"
209209
210 #: socialaccount/models.py:49
210 #: socialaccount/models.py:45
211211 msgid "name"
212212 msgstr "navn"
213213
214 #: socialaccount/models.py:51
214 #: socialaccount/models.py:47
215215 msgid "client id"
216216 msgstr "klient id"
217217
218 #: socialaccount/models.py:53
218 #: socialaccount/models.py:49
219219 msgid "App ID, or consumer key"
220220 msgstr "App ID, eller konsumer nøgle"
221221
222 #: socialaccount/models.py:54
222 #: socialaccount/models.py:50
223223 msgid "secret key"
224224 msgstr "hemmelig nøgle"
225225
226 #: socialaccount/models.py:56
226 #: socialaccount/models.py:53
227227 msgid "API secret, client secret, or consumer secret"
228228 msgstr "API hemmelighed, klient hemmelighed eller konsumet hemmelighed"
229229
230 #: socialaccount/models.py:61
230 #: socialaccount/models.py:58
231231 msgid "Key"
232232 msgstr "Nøgle"
233233
234 #: socialaccount/models.py:69
234 #: socialaccount/models.py:66
235235 msgid "social application"
236236 msgstr "social applikation"
237237
238 #: socialaccount/models.py:70
238 #: socialaccount/models.py:67
239239 msgid "social applications"
240240 msgstr "sociale applikationer"
241241
242 #: socialaccount/models.py:99
242 #: socialaccount/models.py:95
243243 msgid "uid"
244244 msgstr "uid"
245245
246 #: socialaccount/models.py:101
246 #: socialaccount/models.py:97
247247 msgid "last login"
248248 msgstr "sidste log ind"
249249
250 #: socialaccount/models.py:103
250 #: socialaccount/models.py:99
251251 msgid "date joined"
252252 msgstr "dato oprettet"
253253
254 #: socialaccount/models.py:105
254 #: socialaccount/models.py:101
255255 msgid "extra data"
256256 msgstr "ekstra data"
257257
258 #: socialaccount/models.py:109
258 #: socialaccount/models.py:105
259259 msgid "social account"
260260 msgstr "social konto"
261261
262 #: socialaccount/models.py:110
262 #: socialaccount/models.py:106
263263 msgid "social accounts"
264264 msgstr "sociale konti"
265265
266 #: socialaccount/models.py:136
266 #: socialaccount/models.py:131
267267 msgid "token"
268268 msgstr "token"
269269
270 #: socialaccount/models.py:138
270 #: socialaccount/models.py:133
271271 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
272272 msgstr "“oauth_token” (OAuth1) eller adgangstoken (OAuth2)"
273273
274 #: socialaccount/models.py:141
274 #: socialaccount/models.py:136
275275 msgid "token secret"
276276 msgstr "token hemmelighed"
277277
278 #: socialaccount/models.py:143
278 #: socialaccount/models.py:138
279279 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
280280 msgstr "“oauth_token_secret” (OAuth1) eller fornyelsestoken (OAuth2)"
281281
282 #: socialaccount/models.py:145
282 #: socialaccount/models.py:140
283283 msgid "expires at"
284284 msgstr "udløber den"
285285
286 #: socialaccount/models.py:149
286 #: socialaccount/models.py:144
287287 msgid "social application token"
288288 msgstr "socialt applikationstoken"
289289
290 #: socialaccount/models.py:150
290 #: socialaccount/models.py:145
291291 msgid "social application tokens"
292292 msgstr "sociale applikationstokener"
293293
294 #: socialaccount/providers/douban/views.py:35
294 #: socialaccount/providers/douban/views.py:36
295295 msgid "Invalid profile data"
296296 msgstr "Ugyldig profildata"
297297
77 msgstr ""
88 "Project-Id-Version: django-allauth\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-08-29 16:33-0500\n"
10 "POT-Creation-Date: 2019-12-18 11:53-0600\n"
1111 "PO-Revision-Date: 2019-08-07 12:13+0200\n"
1212 "Last-Translator: Jannis Vajen <jvajen@gmail.com>\n"
1313 "Language-Team: German (http://www.transifex.com/projects/p/django-allauth/"
3838 msgid "Password must be a minimum of {0} characters."
3939 msgstr "Das Passwort muss aus mindestens {0} Zeichen bestehen."
4040
41 #: account/apps.py:8
41 #: account/apps.py:7
4242 msgid "Accounts"
4343 msgstr "Konten"
4444
45 #: account/forms.py:63 account/forms.py:400
45 #: account/forms.py:61 account/forms.py:398
4646 msgid "You must type the same password each time."
4747 msgstr "Du musst zweimal das selbe Passwort eingeben."
4848
49 #: account/forms.py:93 account/forms.py:367 account/forms.py:478
49 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
5050 msgid "Password"
5151 msgstr "Passwort"
5252
53 #: account/forms.py:94
53 #: account/forms.py:92
5454 msgid "Remember Me"
5555 msgstr "Angemeldet bleiben"
5656
57 #: account/forms.py:100
57 #: account/forms.py:98
5858 msgid "This account is currently inactive."
5959 msgstr "Dieses Konto ist derzeit inaktiv."
6060
61 #: account/forms.py:103
61 #: account/forms.py:101
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:106
65 #: account/forms.py:104
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:115 account/forms.py:270 account/forms.py:428
70 #: account/forms.py:497
69 #: account/forms.py:113 account/forms.py:268 account/forms.py:426
70 #: account/forms.py:495
7171 msgid "E-mail address"
7272 msgstr "E-Mail-Adresse"
7373
74 #: account/forms.py:117 account/forms.py:303 account/forms.py:423
75 #: account/forms.py:492
74 #: account/forms.py:115 account/forms.py:301 account/forms.py:421
75 #: account/forms.py:490
7676 msgid "E-mail"
7777 msgstr "E-Mail"
7878
79 #: account/forms.py:122 account/forms.py:125 account/forms.py:262
80 #: account/forms.py:266
79 #: account/forms.py:120 account/forms.py:123 account/forms.py:260
80 #: account/forms.py:264
8181 msgid "Username"
8282 msgstr "Anmeldename"
8383
84 #: account/forms.py:132
84 #: account/forms.py:130
8585 msgid "Username or e-mail"
8686 msgstr "Anmeldename oder E-Mail"
8787
88 #: account/forms.py:135
88 #: account/forms.py:133
8989 msgctxt "field label"
9090 msgid "Login"
9191 msgstr "Anmeldung"
9292
93 #: account/forms.py:294
93 #: account/forms.py:292
9494 msgid "E-mail (again)"
9595 msgstr "E-Mail (wiederholen)"
9696
97 #: account/forms.py:298
97 #: account/forms.py:296
9898 msgid "E-mail address confirmation"
9999 msgstr "Bestätigung der E-Mail-Adresse"
100100
101 #: account/forms.py:306
101 #: account/forms.py:304
102102 msgid "E-mail (optional)"
103103 msgstr "E-Mail (optional)"
104104
105 #: account/forms.py:347
105 #: account/forms.py:345
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:370 account/forms.py:479
109 #: account/forms.py:368 account/forms.py:477
110110 msgid "Password (again)"
111111 msgstr "Passwort (Wiederholung)"
112112
113 #: account/forms.py:434
113 #: account/forms.py:432
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:436
117 #: account/forms.py:434
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:458
121 #: account/forms.py:456
122122 msgid "Current Password"
123123 msgstr "Aktuelles Passwort"
124124
125 #: account/forms.py:459 account/forms.py:548
125 #: account/forms.py:457 account/forms.py:546
126126 msgid "New Password"
127127 msgstr "Neues Passwort"
128128
129 #: account/forms.py:460 account/forms.py:549
129 #: account/forms.py:458 account/forms.py:547
130130 msgid "New Password (again)"
131131 msgstr "Neues Passwort (Wiederholung)"
132132
133 #: account/forms.py:468
133 #: account/forms.py:466
134134 msgid "Please type your current password."
135135 msgstr "Bitte gib dein aktuelles Passwort ein."
136136
137 #: account/forms.py:506
137 #: account/forms.py:504
138138 msgid "The e-mail address is not assigned to any user account"
139139 msgstr "Diese E-Mail-Adresse ist keinem Konto zugeordnet"
140140
141 #: account/forms.py:570
141 #: account/forms.py:568
142142 msgid "The password reset token was invalid."
143143 msgstr "Das Sicherheits-Token zum Zurücksetzen des Passwortes war ungültig."
144144
145 #: account/models.py:23
145 #: account/models.py:21
146146 msgid "user"
147147 msgstr "Benutzer"
148148
149 #: account/models.py:27 account/models.py:81
149 #: account/models.py:25 account/models.py:78
150150 msgid "e-mail address"
151151 msgstr "E-Mail-Adresse"
152152
153 #: account/models.py:28
153 #: account/models.py:26
154154 msgid "verified"
155155 msgstr "bestätigt"
156156
157 #: account/models.py:29
157 #: account/models.py:27
158158 msgid "primary"
159159 msgstr "Primär"
160160
161 #: account/models.py:34
161 #: account/models.py:32
162162 msgid "email address"
163163 msgstr "E-Mail-Adresse"
164164
165 #: account/models.py:35
165 #: account/models.py:33
166166 msgid "email addresses"
167167 msgstr "E-Mail-Adressen"
168168
169 #: account/models.py:83
169 #: account/models.py:80
170170 msgid "created"
171171 msgstr "Erstellt"
172172
173 #: account/models.py:85
173 #: account/models.py:82
174174 msgid "sent"
175175 msgstr "Gesendet"
176176
177 #: account/models.py:86 socialaccount/models.py:58
177 #: account/models.py:83 socialaccount/models.py:55
178178 msgid "key"
179179 msgstr "Schlüssel"
180180
181 #: account/models.py:91
181 #: account/models.py:88
182182 msgid "email confirmation"
183183 msgstr "E-Mail-Bestätigung"
184184
185 #: account/models.py:92
185 #: account/models.py:89
186186 msgid "email confirmations"
187187 msgstr "E-Mail-Bestätigungen"
188188
189 #: socialaccount/adapter.py:27
189 #: socialaccount/adapter.py:26
190190 #, python-format
191191 msgid ""
192192 "An account already exists with this e-mail address. Please sign in to that "
195195 "Es existiert bereits ein Konto mit dieser E-Mail-Adresse. Bitte melde dich "
196196 "zuerst mit diesem Konto an, und verknüpfe es dann mit deinem %s-Konto."
197197
198 #: socialaccount/adapter.py:132
198 #: socialaccount/adapter.py:131
199199 msgid "Your account has no password set up."
200200 msgstr "Für dein Konto wurde noch kein Passwort festgelegt."
201201
202 #: socialaccount/adapter.py:139
202 #: socialaccount/adapter.py:138
203203 msgid "Your account has no verified e-mail address."
204204 msgstr "Dein Konto hat keine bestätigte E-Mail-Adresse."
205205
206 #: socialaccount/apps.py:8
206 #: socialaccount/apps.py:7
207207 msgid "Social Accounts"
208208 msgstr "Konto"
209209
210 #: socialaccount/models.py:46 socialaccount/models.py:80
210 #: socialaccount/models.py:42 socialaccount/models.py:76
211211 msgid "provider"
212212 msgstr "Anbieter"
213213
214 #: socialaccount/models.py:49
214 #: socialaccount/models.py:45
215215 msgid "name"
216216 msgstr "Anmeldename"
217217
218 #: socialaccount/models.py:51
218 #: socialaccount/models.py:47
219219 msgid "client id"
220220 msgstr "Client-ID"
221221
222 #: socialaccount/models.py:53
222 #: socialaccount/models.py:49
223223 msgid "App ID, or consumer key"
224224 msgstr "App-ID oder 'Consumer key'"
225225
226 #: socialaccount/models.py:54
226 #: socialaccount/models.py:50
227227 msgid "secret key"
228228 msgstr "Geheimer Schlüssel"
229229
230 #: socialaccount/models.py:56
230 #: socialaccount/models.py:53
231231 msgid "API secret, client secret, or consumer secret"
232232 msgstr "'API secret', 'client secret' oder 'consumer secret'"
233233
234 #: socialaccount/models.py:61
234 #: socialaccount/models.py:58
235235 msgid "Key"
236236 msgstr "Schlüssel"
237237
238 #: socialaccount/models.py:69
238 #: socialaccount/models.py:66
239239 msgid "social application"
240240 msgstr "Soziale Anwendung"
241241
242 #: socialaccount/models.py:70
242 #: socialaccount/models.py:67
243243 msgid "social applications"
244244 msgstr "Soziale Anwendungen"
245245
246 #: socialaccount/models.py:99
246 #: socialaccount/models.py:95
247247 msgid "uid"
248248 msgstr "UID"
249249
250 #: socialaccount/models.py:101
250 #: socialaccount/models.py:97
251251 msgid "last login"
252252 msgstr "Letzte Anmeldung"
253253
254 #: socialaccount/models.py:103
254 #: socialaccount/models.py:99
255255 msgid "date joined"
256256 msgstr "Registrierdatum"
257257
258 #: socialaccount/models.py:105
258 #: socialaccount/models.py:101
259259 msgid "extra data"
260260 msgstr "Weitere Daten"
261261
262 #: socialaccount/models.py:109
262 #: socialaccount/models.py:105
263263 msgid "social account"
264264 msgstr "Soziales Konto"
265265
266 #: socialaccount/models.py:110
266 #: socialaccount/models.py:106
267267 msgid "social accounts"
268268 msgstr "Soziale Konten"
269269
270 #: socialaccount/models.py:136
270 #: socialaccount/models.py:131
271271 msgid "token"
272272 msgstr "Token"
273273
274 #: socialaccount/models.py:138
274 #: socialaccount/models.py:133
275275 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
276276 msgstr "\"oauth_token\" (OAuth1) oder \"access token\" (OAuth2)"
277277
278 #: socialaccount/models.py:141
278 #: socialaccount/models.py:136
279279 msgid "token secret"
280280 msgstr "Geheimes Token"
281281
282 #: socialaccount/models.py:143
282 #: socialaccount/models.py:138
283283 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
284284 msgstr "\"oauth_token_secret\" (OAuth1) oder \"refresh token\" (OAuth2)"
285285
286 #: socialaccount/models.py:145
286 #: socialaccount/models.py:140
287287 msgid "expires at"
288288 msgstr "Läuft ab"
289289
290 #: socialaccount/models.py:149
290 #: socialaccount/models.py:144
291291 msgid "social application token"
292292 msgstr "Token für soziale Anwendung"
293293
294 #: socialaccount/models.py:150
294 #: socialaccount/models.py:145
295295 msgid "social application tokens"
296296 msgstr "Tokens für soziale Anwendungen"
297297
298 #: socialaccount/providers/douban/views.py:35
298 #: socialaccount/providers/douban/views.py:36
299299 msgid "Invalid profile data"
300300 msgstr "Ungültige Profildaten"
301301
22 # This file is distributed under the same license as the PACKAGE package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: \n"
5 #, fuzzy
6 msgid ""
7 msgstr ""
8 "Project-Id-Version: PACKAGE VERSION\n"
89 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2019-08-29 16:33-0500\n"
10 "POT-Creation-Date: 2019-12-18 11:53-0600\n"
1011 "PO-Revision-Date: 2014-08-12 00:29+0200\n"
1112 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1213 "Language-Team: LANGUAGE <LL@li.org>\n"
1516 "Content-Type: text/plain; charset=UTF-8\n"
1617 "Content-Transfer-Encoding: 8bit\n"
1718 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18 "X-Generator: Poedit 1.6.5\n"
1919
2020 #: account/adapter.py:45
2121 msgid "Username can not be used. Please use other username."
22 msgstr ""
23 "Το όνομα χρήστη δε μπορεί να χρησιμοποιηθεί. Παρακαλούμε χρησιμοποιήστε άλλο "
24 "όνομα χρήστη."
22 msgstr "Δεν μπορεί να χρησιμοποιηθεί αυτό το όνομα χρήστη. Δοκιμάστε άλλο."
2523
2624 #: account/adapter.py:49
2725 msgid "Too many failed login attempts. Try again later."
28 msgstr ""
26 msgstr "Πολλές αποτυχημένες προσπάθειες σύνδεσης. Προσπαθήστε ξανά αργότερα."
2927
3028 #: account/adapter.py:51
3129 msgid "A user is already registered with this e-mail address."
32 msgstr "Ένας χρήστης έχει ήδη εγγραφεί με τη συγκεκριμένη διεύθυνση e-mail."
30 msgstr "Υπάρχει ήδη εγγεγραμμένος χρήστης με αυτό το e-mail."
3331
3432 #: account/adapter.py:294
3533 #, python-brace-format
3634 msgid "Password must be a minimum of {0} characters."
37 msgstr "Ο κωδικός πρέπει να είναι κατ' ελάχιστο {0} χαρακτήρες."
38
39 #: account/apps.py:8
35 msgstr "Το συνθηματικό πρέπει να περιέχει τουλάχιστον {0} χαρακτήρες."
36
37 #: account/apps.py:7
4038 msgid "Accounts"
4139 msgstr "Λογαριασμοί"
4240
43 #: account/forms.py:63 account/forms.py:400
41 #: account/forms.py:61 account/forms.py:398
4442 msgid "You must type the same password each time."
45 msgstr "Πρέπει να συμπληρώνετε τον ίδιο κωδικό κάθε φορά."
46
47 #: account/forms.py:93 account/forms.py:367 account/forms.py:478
43 msgstr "Πρέπει να δοθεί το ίδιο συνθηματικό κάθε φορά."
44
45 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4846 msgid "Password"
49 msgstr "Κωδικός"
50
51 #: account/forms.py:94
47 msgstr "Συνθηματικό"
48
49 #: account/forms.py:92
5250 msgid "Remember Me"
53 msgstr "Να με θυμάσαι"
54
55 #: account/forms.py:100
51 msgstr "Αυτόματη Σύνδεση"
52
53 #: account/forms.py:98
5654 msgid "This account is currently inactive."
57 msgstr "Ο λογαριασμός δεν είναι ενεργός"
58
59 #: account/forms.py:103
55 msgstr "Αυτός ο λογαριασμός είναι ανενεργός."
56
57 #: account/forms.py:101
6058 msgid "The e-mail address and/or password you specified are not correct."
61 msgstr "Η διεύθυνση e-mail ή/και ο κωδικός δεν είναι σωστά."
62
63 #: account/forms.py:106
59 msgstr "Η διέυθυνση e-mail ή/και το συνθηματικό που δόθηκαν δεν είναι σωστά."
60
61 #: account/forms.py:104
6462 msgid "The username and/or password you specified are not correct."
65 msgstr "Το όνομα χρήστη ή/και ο κωδικός δεν είναι σωστά."
66
67 #: account/forms.py:115 account/forms.py:270 account/forms.py:428
68 #: account/forms.py:497
63 msgstr "Το όνομα χρήστη ή/και το συνθηματικό που δόθηκαν δεν είναι σωστά."
64
65 #: account/forms.py:113 account/forms.py:268 account/forms.py:426
66 #: account/forms.py:495
6967 msgid "E-mail address"
7068 msgstr "Διεύθυνση e-mail"
7169
72 #: account/forms.py:117 account/forms.py:303 account/forms.py:423
73 #: account/forms.py:492
70 #: account/forms.py:115 account/forms.py:301 account/forms.py:421
71 #: account/forms.py:490
7472 msgid "E-mail"
7573 msgstr "E-mail"
7674
77 #: account/forms.py:122 account/forms.py:125 account/forms.py:262
78 #: account/forms.py:266
75 #: account/forms.py:120 account/forms.py:123 account/forms.py:260
76 #: account/forms.py:264
7977 msgid "Username"
8078 msgstr "Όνομα χρήστη"
8179
82 #: account/forms.py:132
80 #: account/forms.py:130
8381 msgid "Username or e-mail"
8482 msgstr "Όνομα χρήστη ή e-mail"
8583
86 #: account/forms.py:135
84 #: account/forms.py:133
8785 msgctxt "field label"
8886 msgid "Login"
8987 msgstr "Σύνδεση"
9088
91 #: account/forms.py:294
89 #: account/forms.py:292
9290 #, fuzzy
9391 #| msgid "E-mail (optional)"
9492 msgid "E-mail (again)"
95 msgstr "E-mail (προαιρετικό)"
96
97 #: account/forms.py:298
93 msgstr "E-mail (επιβεβαίωση)"
94
95 #: account/forms.py:296
9896 #, fuzzy
9997 #| msgid "email confirmation"
10098 msgid "E-mail address confirmation"
101 msgstr "επιβεβαίωση email"
102
103 #: account/forms.py:306
99 msgstr "Επιβεβαίωση διεύθυνσης e-mail"
100
101 #: account/forms.py:304
104102 msgid "E-mail (optional)"
105103 msgstr "E-mail (προαιρετικό)"
106104
107 #: account/forms.py:347
105 #: account/forms.py:345
108106 #, fuzzy
109107 #| msgid "You must type the same password each time."
110108 msgid "You must type the same email each time."
111 msgstr "Πρέπει να συμπληρώνετε τον ίδιο κωδικό κάθε φορά."
112
113 #: account/forms.py:370 account/forms.py:479
109 msgstr "Πρέπει να δοθεί το ίδιο email κάθε φορά."
110
111 #: account/forms.py:368 account/forms.py:477
114112 msgid "Password (again)"
115 msgstr "Κωδικός (ξανά)"
113 msgstr "Συνθηματικό (επιβεβαίωση)"
114
115 #: account/forms.py:432
116 msgid "This e-mail address is already associated with this account."
117 msgstr "Αυτό το e-mail χρησιμοποιείται ήδη από αυτό το λογαριασμό."
116118
117119 #: account/forms.py:434
118 msgid "This e-mail address is already associated with this account."
119 msgstr "Αυτή η διεύθυνση e-mail έχει ήδη συσχετιστεί με το λογαριασμό."
120
121 #: account/forms.py:436
122120 msgid "This e-mail address is already associated with another account."
123 msgstr "Αυτή η διεύθυνση e-mail έχει ήδη συσχετιστεί με έναν άλλο λογαριασμό."
124
125 #: account/forms.py:458
121 msgstr "Αυτό το e-mail χρησιμοποιείται ήδη από άλλο λογαριασμό."
122
123 #: account/forms.py:456
126124 msgid "Current Password"
127 msgstr "Τρέχον κωδικός"
128
129 #: account/forms.py:459 account/forms.py:548
125 msgstr "Τρέχον συνθηματικό"
126
127 #: account/forms.py:457 account/forms.py:546
130128 msgid "New Password"
131 msgstr "Νέος κωδικός"
132
133 #: account/forms.py:460 account/forms.py:549
129 msgstr "Νέο συνθηματικό"
130
131 #: account/forms.py:458 account/forms.py:547
134132 msgid "New Password (again)"
135 msgstr "Νέος κωδικός (ξανά)"
136
137 #: account/forms.py:468
133 msgstr "Νέο συνθηματικό (επιβεβαίωση)"
134
135 #: account/forms.py:466
138136 msgid "Please type your current password."
139 msgstr "Παρακαλούμε συμπληρώσατε τον κωδικό σας."
140
141 #: account/forms.py:506
137 msgstr "Παρακαλώ γράψτε το τρέχον συνθηματικό σας."
138
139 #: account/forms.py:504
142140 msgid "The e-mail address is not assigned to any user account"
143 msgstr "Η διεύθυνση e-mail δεν έχει συσχετιστεί με κάποιο λογαριασμό"
144
145 #: account/forms.py:570
141 msgstr "Το e-mail δεν χρησιμοποιείται από κανέναν λογαριασμό"
142
143 #: account/forms.py:568
146144 msgid "The password reset token was invalid."
147 msgstr ""
148
149 #: account/models.py:23
145 msgstr "Το κουπόνι επαναφοράς του συνθηματικού δεν ήταν έγκυρο."
146
147 #: account/models.py:21
150148 msgid "user"
151149 msgstr "χρήστης"
152150
153 #: account/models.py:27 account/models.py:81
151 #: account/models.py:25 account/models.py:78
154152 msgid "e-mail address"
155153 msgstr "διεύθυνση e-mail"
156154
157 #: account/models.py:28
155 #: account/models.py:26
158156 msgid "verified"
159 msgstr "επιβεβαιωμένο"
160
161 #: account/models.py:29
157 msgstr "επαληθευμένο"
158
159 #: account/models.py:27
162160 msgid "primary"
163 msgstr "πρωτεύων"
164
165 #: account/models.py:34
161 msgstr "πρωτεύον"
162
163 #: account/models.py:32
166164 msgid "email address"
167 msgstr "διεύθυνση email"
168
169 #: account/models.py:35
165 msgstr "διεύθυνση e-mail"
166
167 #: account/models.py:33
170168 msgid "email addresses"
171 msgstr "διευθύνσεις email"
172
173 #: account/models.py:83
169 msgstr "διευθύνσεις e-mail"
170
171 #: account/models.py:80
174172 msgid "created"
175173 msgstr "δημιουργήθηκε"
176174
177 #: account/models.py:85
175 #: account/models.py:82
178176 msgid "sent"
179 msgstr "στάλθηκε"
180
181 #: account/models.py:86 socialaccount/models.py:58
177 msgstr "απστάλει"
178
179 #: account/models.py:83 socialaccount/models.py:55
182180 msgid "key"
183181 msgstr "κλειδί"
184182
185 #: account/models.py:91
183 #: account/models.py:88
186184 msgid "email confirmation"
187 msgstr "επιβεβαίωση email"
188
189 #: account/models.py:92
185 msgstr "e-mail επιβεβαίωσης"
186
187 #: account/models.py:89
190188 msgid "email confirmations"
191 msgstr "επιβεβαιώσεις email"
192
193 #: socialaccount/adapter.py:27
189 msgstr "e-mail επιβεβαίωσης"
190
191 #: socialaccount/adapter.py:26
194192 #, python-format
195193 msgid ""
196194 "An account already exists with this e-mail address. Please sign in to that "
197195 "account first, then connect your %s account."
198196 msgstr ""
199 "Υπάρχει ήδη΄ενας λογαριασμός με αυτή τη διεύθυνση e-mail. Παρακαλούμε "
200 "συνδεθείτε πρώτα σε αυτό το λογαριασμό και ακολούθως συνδέστε τον %s "
201 "λογαριασμό."
202
203 #: socialaccount/adapter.py:132
197 "Υπάρχει ήδη ένας λογαριασμός με αυτό το e-mail. Συνδεθείτε πρώτα με αυτόνκαι "
198 "μετά συνδέστε τον λογαριασμό %s."
199
200 #: socialaccount/adapter.py:131
204201 msgid "Your account has no password set up."
205 msgstr "Ο λογαριασμός σας δεν έχει κωδικό."
206
207 #: socialaccount/adapter.py:139
202 msgstr "Δεν έχει οριστεί συνθηματικό στον λογαριασμό σας."
203
204 #: socialaccount/adapter.py:138
208205 msgid "Your account has no verified e-mail address."
209 msgstr "Ο λογαριασμός σας δεν έχει επιβεβαιωμένη διεύθυνση e-mail."
210
211 #: socialaccount/apps.py:8
206 msgstr "Δεν έχει επιβεβαιωθεί κανένα e-mail του λογαριασμού σας."
207
208 #: socialaccount/apps.py:7
212209 msgid "Social Accounts"
213 msgstr "Κοινωνικοί λογαριασμοί"
214
215 #: socialaccount/models.py:46 socialaccount/models.py:80
210 msgstr "Λογαριασμοί Κοινωνικών Μέσων"
211
212 #: socialaccount/models.py:42 socialaccount/models.py:76
216213 msgid "provider"
217214 msgstr "πάροχος"
218215
219 #: socialaccount/models.py:49
216 #: socialaccount/models.py:45
220217 msgid "name"
221218 msgstr "όνομα"
222219
223 #: socialaccount/models.py:51
220 #: socialaccount/models.py:47
224221 msgid "client id"
225 msgstr "client id"
222 msgstr "id πελάτη"
223
224 #: socialaccount/models.py:49
225 msgid "App ID, or consumer key"
226 msgstr "App ID ή consumer key(κλειδί καταναλωτή)"
227
228 #: socialaccount/models.py:50
229 msgid "secret key"
230 msgstr "μυστικό κλειδί"
226231
227232 #: socialaccount/models.py:53
228 msgid "App ID, or consumer key"
229 msgstr "App ID ή consumer key"
230
231 #: socialaccount/models.py:54
232 msgid "secret key"
233 msgstr "secret key"
234
235 #: socialaccount/models.py:56
236233 msgid "API secret, client secret, or consumer secret"
237 msgstr "API secret, client secret, or consumer secret"
238
239 #: socialaccount/models.py:61
234 msgstr "API secret, client secret, ή consumer secret"
235
236 #: socialaccount/models.py:58
240237 msgid "Key"
241238 msgstr "Κλειδί"
242239
243 #: socialaccount/models.py:69
240 #: socialaccount/models.py:66
244241 msgid "social application"
245 msgstr "κοινωνική εφαρμογή"
246
247 #: socialaccount/models.py:70
242 msgstr "εφαρμογή κοινωνικών μέσων"
243
244 #: socialaccount/models.py:67
248245 msgid "social applications"
249 msgstr "κοινωνικές εφαρμογές"
250
251 #: socialaccount/models.py:99
246 msgstr "εφαρμογές κοινωνικών μέσων"
247
248 #: socialaccount/models.py:95
252249 msgid "uid"
253250 msgstr "uid"
254251
255 #: socialaccount/models.py:101
252 #: socialaccount/models.py:97
256253 msgid "last login"
257254 msgstr "τελευταία σύνδεση"
258255
259 #: socialaccount/models.py:103
256 #: socialaccount/models.py:99
260257 msgid "date joined"
261258 msgstr "ημερομηνία εγγραφής"
262259
260 #: socialaccount/models.py:101
261 msgid "extra data"
262 msgstr "έξτρα δεδομένα"
263
263264 #: socialaccount/models.py:105
264 msgid "extra data"
265 msgstr "επιπλέον πληροφορίες"
266
267 #: socialaccount/models.py:109
268265 msgid "social account"
269 msgstr "κοινωνικός λογαριασμός"
270
271 #: socialaccount/models.py:110
266 msgstr "λογαριασμός κοινωνικών μέσων"
267
268 #: socialaccount/models.py:106
272269 msgid "social accounts"
273 msgstr "κοινωνικοί λογαριασμοί"
274
275 #: socialaccount/models.py:136
270 msgstr "λογαριασμοί κοινωνικών μέσων"
271
272 #: socialaccount/models.py:131
276273 msgid "token"
277 msgstr ""
278
279 #: socialaccount/models.py:138
274 msgstr "κουπόνι"
275
276 #: socialaccount/models.py:133
280277 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
281278 msgstr "\"oauth_token\" (OAuth1) ή access token (OAuth2)"
282279
283 #: socialaccount/models.py:141
280 #: socialaccount/models.py:136
284281 msgid "token secret"
285282 msgstr "token secret"
286283
287 #: socialaccount/models.py:143
284 #: socialaccount/models.py:138
288285 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
289286 msgstr "\"oauth_token_secret\" (OAuth1) ή refresh token (OAuth2)"
290287
291 #: socialaccount/models.py:145
288 #: socialaccount/models.py:140
292289 msgid "expires at"
293290 msgstr "λήγει στις"
294291
295 #: socialaccount/models.py:149
292 #: socialaccount/models.py:144
296293 msgid "social application token"
297 msgstr "token κοινωνικής εφαρμογής"
298
299 #: socialaccount/models.py:150
294 msgstr "token (κουπόνι) εφαρμογής κοινωνικών μέσων"
295
296 #: socialaccount/models.py:145
300297 msgid "social application tokens"
301 msgstr "token κοινωνικών εφαρμογών"
302
303 #: socialaccount/providers/douban/views.py:35
298 msgstr "tokens (κουπόνια) εφαρμογής κοινωνικών μέσων"
299
300 #: socialaccount/providers/douban/views.py:36
304301 msgid "Invalid profile data"
305 msgstr ""
302 msgstr "Άκυρα δεδομένα προφίλ"
306303
307304 #: socialaccount/providers/oauth/client.py:78
308305 #, python-format
309306 msgid "Invalid response while obtaining request token from \"%s\"."
310 msgstr "Λάθος απάντηση κατά τη λήψη του request token από το \"%s\"."
307 msgstr "Μη-έγκυρη απάντηση κατά την απόκτηση κουπονιού αιτήματος από \"%s\"."
311308
312309 #: socialaccount/providers/oauth/client.py:109
313310 #, python-format
314311 msgid "Invalid response while obtaining access token from \"%s\"."
315 msgstr "Λάθος απάντηση κατά τη λήψη του access token από το \"%s\"."
312 msgstr "Μη-έγκυρη απάντηση κατά την απόκτηση κουπονιού πρόσβασης από \"%s\"."
316313
317314 #: socialaccount/providers/oauth/client.py:128
318315 #, python-format
319316 msgid "No request token saved for \"%s\"."
320 msgstr "Δεν αποθηκεύθηκε request token για το \"%s\"."
317 msgstr "Δεν υπάρχει αποθηκευμένο κουπόνι αιτήματος για \"%s\"."
321318
322319 #: socialaccount/providers/oauth/client.py:177
323320 #, python-format
324321 msgid "No access token saved for \"%s\"."
325 msgstr "Δεν αποθηκεύθηκε access token για το \"%s\"."
322 msgstr "Δεν υπάρχει αποθηκευμένο κουπόνι πρόσβασης για \"%s\"."
326323
327324 #: socialaccount/providers/oauth/client.py:197
328325 #, python-format
329326 msgid "No access to private resources at \"%s\"."
330 msgstr "Δεν υπάρχει πρόσβαση σε ιδιωτικούς πόρους για το \"%s\"."
327 msgstr "Αδύνατη πρόσβαση σε ιδιοτικούς πόρους στο \"%s\"."
331328
332329 #: templates/account/account_inactive.html:5
333330 #: templates/account/account_inactive.html:8
334331 msgid "Account Inactive"
335 msgstr "Μη ενεργός λογαριασμός"
332 msgstr "Λογαριασμός Ανενεργός"
336333
337334 #: templates/account/account_inactive.html:10
338335 msgid "This account is inactive."
339 msgstr "Ο λογαριασμός δεν είναι ενεργός."
336 msgstr "Αυτός ο λογαριασμός είναι ανενεργός."
340337
341338 #: templates/account/email.html:5
342339 msgid "Account"
344341
345342 #: templates/account/email.html:8
346343 msgid "E-mail Addresses"
347 msgstr "Διευθύνσεις e-mail"
344 msgstr "Διεύθυνση e-mail"
348345
349346 #: templates/account/email.html:10
350347 msgid "The following e-mail addresses are associated with your account:"
351 msgstr "Οι επόμενες διευθύνσεις e-mail έχουν συσχετιστεί με το λογαριασμό σας:"
348 msgstr ""
349 "Οι διευθύνσεις e-mail που ακολουθούν είναι συσχετισμένες με τον λογαριασμό "
350 "σας:"
352351
353352 #: templates/account/email.html:24
354353 msgid "Verified"
355 msgstr "Επιβεβαιωμένο"
354 msgstr "Εγκεκριμένος"
356355
357356 #: templates/account/email.html:26
358357 msgid "Unverified"
359 msgstr "Μη επιβεβαιωμένο"
358 msgstr "Μη-επιβεβαιωμένο"
360359
361360 #: templates/account/email.html:28
362361 msgid "Primary"
363 msgstr "Πρωτεύων"
362 msgstr "Πρωτεύον"
364363
365364 #: templates/account/email.html:34
366365 msgid "Make Primary"
367 msgstr "Να γίνει πρωτεύων"
366 msgstr "Ορισμός ως Πρωτεύον"
368367
369368 #: templates/account/email.html:35
370369 msgid "Re-send Verification"
371 msgstr "Επαναποστολή της επιβεβαίωσης"
370 msgstr "Επανάληψη αποστολής Επαλήθευσης"
372371
373372 #: templates/account/email.html:36 templates/socialaccount/connections.html:35
374373 msgid "Remove"
376375
377376 #: templates/account/email.html:43
378377 msgid "Warning:"
379 msgstr "Προσοχή:"
378 msgstr "Προσοχη:"
380379
381380 #: templates/account/email.html:43
382381 msgid ""
383382 "You currently do not have any e-mail address set up. You should really add "
384383 "an e-mail address so you can receive notifications, reset your password, etc."
385384 msgstr ""
386 "Δεν έχετε προσθέσει διευθύνσεις email. Πρέπει να προσθέσετε μια έτσι ώστε να "
387 "μπορείτε να λάβετε ειδοποιήσεις, να επαναφέρετε τον κωδικό σας κλπ."
385 "Δεν έχετε ρυθμίσει καμία διεύθυνση e-mail. Προτείνουμε να προσθέσετε μία "
386 "ώστε να μπορείτε να λάβετε ειδοποιήσεις, να ανακτήσετε το συνθηματικό σας "
387 "κλπ."
388388
389389 #: templates/account/email.html:48
390390 msgid "Add E-mail Address"
391 msgstr "Προσθήκη διεύθυνσης e-mail"
391 msgstr "Προσθήκη διέυθυνσης e-mail"
392392
393393 #: templates/account/email.html:53
394394 msgid "Add E-mail"
396396
397397 #: templates/account/email.html:62
398398 msgid "Do you really want to remove the selected e-mail address?"
399 msgstr "Θέλετε να αφαιρέσετε την επιλεγμένη διεύθυνση e-mail;"
399 msgstr "Θέλετε να αφαιρέσετε την επλεγμένη διεύθυνση e-mail?"
400400
401401 #: templates/account/email/email_confirmation_message.txt:1
402 #, fuzzy, python-format
403 #| msgid ""
404 #| "User %(user_display)s at %(site_name)s has given this as an email "
405 #| "address.\n"
406 #| "\n"
407 #| "To confirm this is correct, go to %(activate_url)s\n"
402 #, python-format
408403 msgid ""
409404 "Hello from %(site_name)s!\n"
410405 "\n"
413408 "\n"
414409 "To confirm this is correct, go to %(activate_url)s\n"
415410 msgstr ""
416 "Ο χρήστης %(user_display)s του %(site_name)s έδωση τη συγκεκριμένη ως "
417 "διεύθυνση e-mail.\n"
411 "Χαιρετίσματα από το %(site_name)s!\n"
418412 "\n"
419 "Για να το επιβεβαιώσετε, παρακαλούμε επισκευθείτε το%(activate_url)s\n"
413 "Λαμβάνετε αυτό το e-mail επειδή ο χρήστης %(user_display)s έκανε αίτηση "
414 "σύνδεσης της διέυθυνσης e-mail σας με τον λογαριασμό του.\n"
415 "\n"
416 "Για να επιβεβαιώσετε αυτή την ενέργεια, πηγαίνετε στο %(activate_url)s\n"
420417
421418 #: templates/account/email/email_confirmation_message.txt:7
422419 #, python-format
424421 "Thank you from %(site_name)s!\n"
425422 "%(site_domain)s"
426423 msgstr ""
424 "Ευχαριστούμε από το %(site_name)s!\n"
425 "%(site_domain)s"
427426
428427 #: templates/account/email/email_confirmation_subject.txt:3
429 #, fuzzy
430 #| msgid "Confirm E-mail Address"
431428 msgid "Please Confirm Your E-mail Address"
432 msgstr "Επιβεβαίωση διεύθυνσης e-mail"
429 msgstr "Παρακαλούμε να επιβεβαιώσετε την διεύθυνση e-mail σας"
433430
434431 #: templates/account/email/password_reset_key_message.txt:1
435 #, fuzzy, python-format
436 #| msgid ""
437 #| "You're receiving this e-mail because you or someone else has requested a "
438 #| "password for your user account at %(site_domain)s.\n"
439 #| "It can be safely ignored if you did not request a password reset. Click "
440 #| "the link below to reset your password."
432 #, python-format
441433 msgid ""
442434 "Hello from %(site_name)s!\n"
443435 "\n"
446438 "It can be safely ignored if you did not request a password reset. Click the "
447439 "link below to reset your password."
448440 msgstr ""
449 "Λαμβάνετε αυτό το e-mail επειδή εσείς ή κάποιος άλλος αιτήθηκε επαναφορά του "
450 "κωδικού σας για το %(site_domain)s.\n"
451 "Μπορείτε να αγνοήσετε το εν λόγω e-mail αν δε ζητήσατε εσείς την επαναφορά "
452 "του κωδικού. Αν θέλετε να αλλάξετε τον κωδικό σας κάντε κλικ στην παρακάτω "
453 "σύνδεση:"
441 "Χαιρετίσματα από το %(site_name)s!\n"
442 "\n"
443 "Λαμβάνετε αυτό το e-mail επειδή εσείς ή κάποιος άλλος έχει κάνει αίτηση "
444 "συνθηματικού για τον λογαριασμό σας.\n"
445 "Αν δεν ζητήσατε επαναφορά συνθηματικού, μπορεί να αγνοηθεί με ασφάλεια. "
446 "Πατήστε στον σύνδεσμο που ακολουθεί για να επαναφέρετε το συνθηματικό σας."
454447
455448 #: templates/account/email/password_reset_key_message.txt:8
456449 #, python-format
457450 msgid "In case you forgot, your username is %(username)s."
458 msgstr "Σε περίπτωση που το ξεχάσατε, το όνομα χρήστη σας είναι %(username)s."
451 msgstr "Σε περίπτωση που ξεχάσατε, το όνομα χρήστη σας είναι %(username)s."
459452
460453 #: templates/account/email/password_reset_key_message.txt:10
461454 #, python-format
463456 "Thank you for using %(site_name)s!\n"
464457 "%(site_domain)s"
465458 msgstr ""
459 "Ευχαριστούμε που χρησιμοποιήσατε το %(site_name)s!\n"
460 "%(site_domain)s"
466461
467462 #: templates/account/email/password_reset_key_subject.txt:3
468463 msgid "Password Reset E-mail"
469 msgstr "E-mail επαναφοράς κωδικού"
464 msgstr "E-mail επαναφοράς συνθηματικού"
470465
471466 #: templates/account/email_confirm.html:6
472467 #: templates/account/email_confirm.html:10
473468 msgid "Confirm E-mail Address"
474 msgstr "Επιβεβαίωση διεύθυνσης e-mail"
469 msgstr "Επιβεβαίωση διεύθυνση e-mail"
475470
476471 #: templates/account/email_confirm.html:16
477472 #, python-format
479474 "Please confirm that <a href=\"mailto:%(email)s\">%(email)s</a> is an e-mail "
480475 "address for user %(user_display)s."
481476 msgstr ""
482 "Παρακαλούμε επιβεβαιώσατε ότι η <a href=\"mailto:%(email)s\">%(email)s</a> "
483 "είναι μια διεύθυνση e-mail για το χρήστη %(user_display)s."
477 "Παρακαλούμε επιβεβαιώστε ότι το <a href=\"mailto:%(email)s\">%(email)s</a> "
478 "αποτελεί διεύθυνση e-mail για τον χρήστη %(user_display)s."
484479
485480 #: templates/account/email_confirm.html:20
486481 msgid "Confirm"
492487 "This e-mail confirmation link expired or is invalid. Please <a href="
493488 "\"%(email_url)s\">issue a new e-mail confirmation request</a>."
494489 msgstr ""
495 "Η σύνδεση επιβεβαίωσης e-mail είναι εσφαλμένη. Παρακαλούμε <a href="
496 "\"%(email_url)s\">δημιουργήστε μια νέα</a>."
490 "Αυτός ο σύνδεσμος επιβεβαίωσης έχει λήξει ή δεν είναι έγκυρος. Παρακαλούμε "
491 "<a href=\"%(email_url)s\">κάντε καινούρια αίτηση επιβεβαίωσης e-mail</a>."
497492
498493 #: templates/account/login.html:6 templates/account/login.html:10
499494 #: templates/account/login.html:43
500495 msgid "Sign In"
501 msgstr "Είσοδος"
496 msgstr "Σύνδεση"
502497
503498 #: templates/account/login.html:15
504499 #, python-format
509504 "for a %(site_name)s account and sign in below:"
510505 msgstr ""
511506 "Παρακαλούμε συνδεθείτε με έναν\n"
512 "από τους λογαριασμούς σας. Ή, <a href=\"%(signup_url)s\">εγγραφείτε</a>\n"
513 "για ένα λογαριασμό στο %(site_name)s παρακάτω:"
507 "από τους ήδη υπάρχοντες εξωτερικούς λογαριασμούς σας. Ή, <a href="
508 "\"%(signup_url)s\">κάντε εγγραφή</a>\n"
509 "για έναν λογαριασμό %(site_name)s και συνδεθείτε παρακάτω:"
514510
515511 #: templates/account/login.html:25
516512 msgid "or"
522518 "If you have not created an account yet, then please\n"
523519 "<a href=\"%(signup_url)s\">sign up</a> first."
524520 msgstr ""
525 "Αν δεν έχετε δημιουργήσει λογαριασμό πρέπει να\n"
526 "<a href=\"%(signup_url)s\">εγγραφείτε</a>."
521 "Αν δεν έχετε δημιουργήσει λογαριασμό, πρώτα κάντε\n"
522 "<a href=\"%(signup_url)s\">εγγραφή</a>"
527523
528524 #: templates/account/login.html:42
529525 msgid "Forgot Password?"
530 msgstr "Ξεχάσατε τον κωδικό σας;"
526 msgstr "Ξέχασα το συνθηματικό μου"
531527
532528 #: templates/account/logout.html:5 templates/account/logout.html:8
533529 #: templates/account/logout.html:17
536532
537533 #: templates/account/logout.html:10
538534 msgid "Are you sure you want to sign out?"
539 msgstr "Είστε σίγουρος ότι θέλετε να αποσυνδεθείτε;"
535 msgstr "Είστε σίγουροι ότι θέλετε να αποσυνδεθείτε;"
540536
541537 #: templates/account/messages/cannot_delete_primary_email.txt:2
542538 #, python-format
543539 msgid "You cannot remove your primary e-mail address (%(email)s)."
544 msgstr "Δε μπορείτε να αφαιρέσετε το πρωτεύων e-mail σας (%(email)s)."
540 msgstr "Δεν μπορείτε να αφαιρέσετε την πρωτεύον διεύθυνση email (%(email)s)."
545541
546542 #: templates/account/messages/email_confirmation_sent.txt:2
547543 #, python-format
548544 msgid "Confirmation e-mail sent to %(email)s."
549 msgstr "Επιβεβαιωτικό e-mail στάλθηκε στο %(email)s."
545 msgstr "E-mail επιβεβαίωσης στάλθηκε στο %(email)s."
550546
551547 #: templates/account/messages/email_confirmed.txt:2
552548 #, python-format
556552 #: templates/account/messages/email_deleted.txt:2
557553 #, python-format
558554 msgid "Removed e-mail address %(email)s."
559 msgstr "Η διεύθυνση %(email)s αφαιρέθηκε."
555 msgstr "Αφαιρέθηκε η διεύθυνση e-mail %(email)s."
560556
561557 #: templates/account/messages/logged_in.txt:4
562558 #, python-format
563559 msgid "Successfully signed in as %(name)s."
564 msgstr "Επιτυχής σύνδεση ως %(name)s."
560 msgstr "Επιτυχημένη σύνδεση ως %(name)s."
565561
566562 #: templates/account/messages/logged_out.txt:2
567563 msgid "You have signed out."
569565
570566 #: templates/account/messages/password_changed.txt:2
571567 msgid "Password successfully changed."
572 msgstr "Επιτυχής αλλαγή κωδικού."
568 msgstr "Αλλαγή συνθηματικού ολοκληρώθηκε επιτυχώς."
573569
574570 #: templates/account/messages/password_set.txt:2
575571 msgid "Password successfully set."
576 msgstr "Επιτυχής δημιουργία κωδικού."
572 msgstr "Συνθηματικό ορίστηκε επιτυχώς."
577573
578574 #: templates/account/messages/primary_email_set.txt:2
579575 msgid "Primary e-mail address set."
580 msgstr "Ενεργοποίηση πρωτεύοντος e-mail."
576 msgstr "Ορίστηκε η πρωτεύον διεύθυνση e-mail."
581577
582578 #: templates/account/messages/unverified_primary_email.txt:2
583579 msgid "Your primary e-mail address must be verified."
584 msgstr "Το πρωτεύων e-mail σας πρέπει να επιβεβαιωθεί."
580 msgstr "Η πρωτεύον διεύθυνση e-mail πρέπει να επιβεβαιωθεί."
585581
586582 #: templates/account/password_change.html:5
587583 #: templates/account/password_change.html:8
591587 #: templates/account/password_reset_from_key_done.html:4
592588 #: templates/account/password_reset_from_key_done.html:7
593589 msgid "Change Password"
594 msgstr "Αλλαγή κωδικού"
590 msgstr "Αλλάξτε Συνθηματικό"
595591
596592 #: templates/account/password_reset.html:6
597593 #: templates/account/password_reset.html:10
598594 #: templates/account/password_reset_done.html:6
599595 #: templates/account/password_reset_done.html:9
600596 msgid "Password Reset"
601 msgstr "Επαναφορά κωδικού"
597 msgstr "Επαναφορά Συνθηματικού"
602598
603599 #: templates/account/password_reset.html:15
604600 msgid ""
605601 "Forgotten your password? Enter your e-mail address below, and we'll send you "
606602 "an e-mail allowing you to reset it."
607603 msgstr ""
608 "Ξεχάσατε τον κωδικό σας; Συμπληρώσατε τη διεύθυνση e-mail σας παρακάτω και "
609 "θα σας στείλουμε ένα e-mail ώστε να τον επαναφέρετε."
604 "Ξεχάσατε το συνθηματικό σας? Γράψτε το e-mail σας παρακάτω, και θα σας "
605 "στείλουμε ενα e-mail για να το επαναφέρετε."
610606
611607 #: templates/account/password_reset.html:20
612608 msgid "Reset My Password"
613 msgstr "Επαναφορά του κωδικού μου"
609 msgstr "Επαναφορά του Συνθηματικού Μου"
614610
615611 #: templates/account/password_reset.html:23
616612 msgid "Please contact us if you have any trouble resetting your password."
617613 msgstr ""
618 "Παρακαλούμε επικοινωνήστε μαζί μας αν έχετε προβλήματα κατά την επαναφορά "
619 "του κωδικού σας."
614 "Παρακαλούμε επικοινωνήστε μαζί μας αν υπάρξει οποιοδήποτε πρόβλημα κατα την "
615 "επαναφορά του συνθηματικού σας."
620616
621617 #: templates/account/password_reset_done.html:15
622618 msgid ""
623619 "We have sent you an e-mail. Please contact us if you do not receive it "
624620 "within a few minutes."
625621 msgstr ""
626 "Σας έχει σταλεί ένα e-mail. Παρακαλούμε επικοινωνήστε μαζί μας αν δε το "
627 "παραλάβατε εντός λίγων λεπτών."
622 "Σας έχουμε στείλει ένα e-mail. Παρακαλούμε επικοινωνήστε μαζί μας αν δεν το "
623 "έχετε παραλάβει μέσα σε λίγα λεπτά."
628624
629625 #: templates/account/password_reset_from_key.html:7
630626 msgid "Bad Token"
631 msgstr "Λάθος token."
627 msgstr "Μη-έγκυρο Κουπόνι"
632628
633629 #: templates/account/password_reset_from_key.html:11
634630 #, python-format
637633 "used. Please request a <a href=\"%(passwd_reset_url)s\">new password reset</"
638634 "a>."
639635 msgstr ""
640 "Η σύνδεση επαναφοράς κωδικού δεν είναι σωστή πιθανότητα επειδή έχει "
641 "χρησιμοποιηθεί ήδη. Παρακαλούμε αιτηθείτε μια <a href=\"%(passwd_reset_url)s"
642 "\">νέα επαναφορά κωδικού</a>."
636 "Ο σύνδεσμος επαναφορά συνθηματικού δεν ήταν έγκυρος, πιθανών να έχει ήδη "
637 "χρησιμοποιηθεί. Παρακαλούμε κάντε εκ νέου <a href=\"%(passwd_reset_url)s"
638 "\">επαναφορά συνθηματικού</a>."
643639
644640 #: templates/account/password_reset_from_key.html:17
645641 msgid "change password"
646 msgstr "αλλαγή κωδικού"
642 msgstr "αλλαγή συνθηματικού"
647643
648644 #: templates/account/password_reset_from_key.html:20
649645 #: templates/account/password_reset_from_key_done.html:8
650646 msgid "Your password is now changed."
651 msgstr "Ο κωδικός σας έχει αλλάξει."
647 msgstr "Το συνθηματικό σας έχει αλλάξει."
652648
653649 #: templates/account/password_set.html:5 templates/account/password_set.html:8
654650 #: templates/account/password_set.html:13
655651 msgid "Set Password"
656 msgstr "Δημιουργία κωδικού"
652 msgstr "Ορισμός Συνθηματικού"
657653
658654 #: templates/account/signup.html:5 templates/socialaccount/signup.html:5
659655 msgid "Signup"
669665 msgid ""
670666 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
671667 msgstr ""
672 "Έχετε ήδη κωδικό; Παρακαλούμε <a href=\"%(login_url)s\">συνδεθείτε</a>."
668 "Έχετε ήδη λογαριασμό; Τότε παρακαλούμε <a href=\"%(login_url)s\">συνδεθείτε</"
669 "a>."
673670
674671 #: templates/account/signup_closed.html:5
675672 #: templates/account/signup_closed.html:8
676673 msgid "Sign Up Closed"
677 msgstr "Οι εγγραφές έχουν κλείσει."
674 msgstr "Φραγή Εγγραφών"
678675
679676 #: templates/account/signup_closed.html:10
680677 msgid "We are sorry, but the sign up is currently closed."
681 msgstr "Λυπούμαστε αλλά οι εγγραφές έχουν κλείσει."
678 msgstr "Ζητούμε συγνώμη, αλλά η δυνατότητα εγγραφής είναι υπό φραγή."
682679
683680 #: templates/account/snippets/already_logged_in.html:5
684681 msgid "Note"
687684 #: templates/account/snippets/already_logged_in.html:5
688685 #, python-format
689686 msgid "you are already logged in as %(user_display)s."
690 msgstr "έχετε ήδη συνδεθεί ως %(user_display)s."
687 msgstr "είστε ήδη συνδεδεμένος ως %(user_display)s."
691688
692689 #: templates/account/verification_sent.html:5
693690 #: templates/account/verification_sent.html:8
694691 #: templates/account/verified_email_required.html:5
695692 #: templates/account/verified_email_required.html:8
696693 msgid "Verify Your E-mail Address"
697 msgstr "Επιβεβαιώσατε τη διεύθυνση e-mail σας."
694 msgstr "Επιβεβαιώστε την διεύθυνση e-mail σας"
698695
699696 #: templates/account/verification_sent.html:10
700697 msgid ""
702699 "finalize the signup process. Please contact us if you do not receive it "
703700 "within a few minutes."
704701 msgstr ""
705 "Σας έχουμε στείλει ένα e-mail για επιβεβαίωση. Παρακαλούμε ακολουθήστε τη "
706 "σύνδεση στο e-mail για να ολοκλήρωσετε τη διαδικασία εγγραφής. Παρακαλούμε "
707 "επικοινωνήστε μαζί μας δε το λάβετε εντός λίγων λεπτών."
702 "Σας στείλαμε ένα e-mail για επαλήθευση. Ακολουθήστε τον σύνδεσμο που λάβατε "
703 "γιατην ολοκλήρωση της διαδικασίας εγγραφής. Παρακαλούμε επικοινωνήστε μαζί "
704 "μας αν δεν το έχετε παραλάβει μέσα σε λίγα λεπτά."
708705
709706 #: templates/account/verified_email_required.html:12
710707 msgid ""
712709 "you are who you claim to be. For this purpose, we require that you\n"
713710 "verify ownership of your e-mail address. "
714711 msgstr ""
715 "Για πρόσβαση στο συγκεκριμένο τμήμα πρέπει\n"
716 "να επιβεβαιώσετε την ταυτότητα σας. Έτσι, θα πρέπει να\n"
717 "επιβεβαιώσετε την ιδιοκτησία της διεύθυνσης e-mail σας. "
712 "Αυτή η λειτουργία της σελίδας απαιτεί την επαλήθευση\n"
713 "της ταυτότηας σας. Γι' αυτό, σας ζητούμε να\n"
714 "επαληθεύσετε την ιδιοκτησία της e-mail διεύθυνσης σας. "
718715
719716 #: templates/account/verified_email_required.html:16
720717 msgid ""
722719 "verification. Please click on the link inside this e-mail. Please\n"
723720 "contact us if you do not receive it within a few minutes."
724721 msgstr ""
725 "Σας στείλαμε ένα e-mail\n"
726 "για επιβεβαίωση. Παρακαλούμε ακολουθήστε τη σύνδεση που περιέχει. \n"
727 "Παρακαλούμε επικοινωνήστε μαζί μας αν δε το λάβετε εντός λίγων λεπτών."
722 "Σας στείλαμε ένα e-mail για επαλήθευση.\n"
723 "Παρακαλούμε ακολουθήστε τον σύνδεσμο που αυτό περιέχει. Παρακαλούμε\n"
724 "επικοινωνήστε μαζί μας αν δεν το έχετε παραλάβει μέσα σε λίγα λεπτά."
728725
729726 #: templates/account/verified_email_required.html:20
730727 #, python-format
732729 "<strong>Note:</strong> you can still <a href=\"%(email_url)s\">change your e-"
733730 "mail address</a>."
734731 msgstr ""
735 "<strong>Σημείωση:</strong> μπορείτε να<a href=\"%(email_url)s\">αλλάξετε το "
736 "e-mail σας</a>."
732 "<strong>Σημείωση:</strong> μπορείτε ακόμα να <a href=\"%(email_url)s"
733 "\">αλλάξετε τηνδιεύθυνση e-mail σας</a>."
737734
738735 #: templates/openid/login.html:9
739736 msgid "OpenID Sign In"
740 msgstr "Σύνδεση με OpenID"
737 msgstr "Σύνδεση OpenID"
741738
742739 #: templates/socialaccount/authentication_error.html:5
743740 #: templates/socialaccount/authentication_error.html:8
744741 msgid "Social Network Login Failure"
745 msgstr "Εσφαλμένη κοινωνική σύνδεση"
742 msgstr "Σύνδεση μέσω Κοινωνικών Μέσων ανεπιτυχής"
746743
747744 #: templates/socialaccount/authentication_error.html:10
748745 msgid ""
749746 "An error occurred while attempting to login via your social network account."
750 msgstr "Υπήρξε σφάλμα κατά τη σύνδεση με το λογαριασμό κοινωνικής δικτύωσης."
747 msgstr ""
748 "Παρουσιάστηκε ένα σφάλμα κατά την σύνδεση μέσω του λογαριασμού κοινωνικών "
749 "μέσων σας."
751750
752751 #: templates/socialaccount/connections.html:5
753752 #: templates/socialaccount/connections.html:8
754753 msgid "Account Connections"
755 msgstr "Συνδέσεις λογαριασμών"
754 msgstr "Συνδέσεις Λογαριασμού"
756755
757756 #: templates/socialaccount/connections.html:11
758757 msgid ""
759758 "You can sign in to your account using any of the following third party "
760759 "accounts:"
761760 msgstr ""
762 "Μπορείτε να συνδεθείτε στο λογαριασμό σας χρησιμοποιώντας οποιονδήποτε από "
763 "τους ακόλουθους λογαρισμούς:"
761 "Μπορείτε να συνδεθείτε στον λογαριασμό σας με οποιοδήποτε από τους παρακάτω "
762 "εξωτερικούς λογαριασμούς:"
764763
765764 #: templates/socialaccount/connections.html:43
766765 msgid ""
767766 "You currently have no social network accounts connected to this account."
768767 msgstr ""
769 "Δεν υπάρχουν κοινωνικοί λογαριασμοί συνδεδεμένοι σε αυτό το λογαριασμό."
768 "Δεν έχετε συνδέσει κανένα λογαριασμό κοινωνικών μέσων με αυτό τον λογαριασμό."
770769
771770 #: templates/socialaccount/connections.html:46
772771 msgid "Add a 3rd Party Account"
773 msgstr "Προσθέστε ένα λογαριασμό 3ου."
772 msgstr "Προσθήκη εξωτερικού λογαριασμού"
774773
775774 #: templates/socialaccount/login_cancelled.html:5
776775 #: templates/socialaccount/login_cancelled.html:9
777776 msgid "Login Cancelled"
778 msgstr "Ακύρωση σύνδεσης"
777 msgstr "Σύνδεση ακυρώθηκε"
779778
780779 #: templates/socialaccount/login_cancelled.html:13
781780 #, python-format
784783 "accounts. If this was a mistake, please proceed to <a href=\"%(login_url)s"
785784 "\">sign in</a>."
786785 msgstr ""
787 "Αποφασίσατε να ακυρώσετε τη σύνδεση στο site μας χρησιμοποιώντας έναν από "
788 "τους λογαριασμούς σας. Αν αυτό ήταν λάθος παρακαλούμε <a href=\"%(login_url)s"
789 "\">συνδεθείτε</a>."
786 "Αποφασίσατε να ακυρώσετε την σύνδεση σας στην ιστοσελίδα με έναν από τους "
787 "υπάρχοντες λογαριασμούς σας. Αν έγινε κατά λάθος, παρακαλώ <a href="
788 "\"%(login_url)s\">συνδεθείτε</a>."
790789
791790 #: templates/socialaccount/messages/account_connected.txt:2
792791 msgid "The social account has been connected."
793 msgstr "Ο κοινωνικός λογαριασμός έχει συνδεθεί."
792 msgstr "Ο λογαριασμός κοινωνικών μέσων έχει συνδεθεί."
794793
795794 #: templates/socialaccount/messages/account_connected_other.txt:2
796795 msgid "The social account is already connected to a different account."
797796 msgstr ""
798 "Ο κοινωνικός λογαριασμός είναι ήδη συνδεδεμένος σε διαφορετικό λογαριασμό."
797 "Ο λογαριασμός κοινωνικών μέσων είναι ήδη συνδεδεμένος με διαφορετικό "
798 "λογαριασμό."
799799
800800 #: templates/socialaccount/messages/account_disconnected.txt:2
801801 msgid "The social account has been disconnected."
802 msgstr "Ο κοινωνικός λογαριασμός έχει αποσυνδεθεί."
802 msgstr "Ο λογαριασμός κοινωνικών μέσων έχει αποσυνδεθεί."
803803
804804 #: templates/socialaccount/signup.html:10
805805 #, python-format
807807 "You are about to use your %(provider_name)s account to login to\n"
808808 "%(site_name)s. As a final step, please complete the following form:"
809809 msgstr ""
810 "Θα χρησιμοποιήσετε το λογαριασμό σας στο %(provider_name)s για να συνδεθείτε "
811 "στο\n"
812 "%(site_name)s. Σαν τελικό βήμα, παρακαλούμε συμπληρώστε τη φόρμα:"
813
814 #~ msgid "The login and/or password you specified are not correct."
815 #~ msgstr "Το όνομα σύνδεσης ή/και ο κωδικός δεν είναι σωστά."
816
817 #~ msgid "Usernames can only contain letters, digits and @/./+/-/_."
818 #~ msgstr ""
819 #~ "Τα ονόματα χρήστη μπορούν να περιέχουν μόνο γράμματα, αριθμούς και τους "
820 #~ "χαρακτήρες @/./+/-/_."
821
822 #~ msgid "This username is already taken. Please choose another."
823 #~ msgstr ""
824 #~ "Το όνομα χρήστη χρησιμοποιείται ήδη. Παρακαλούμε χρησιμοποιήστε άλλο "
825 #~ "όνομα χρήστη."
826
827 #, fuzzy
828 #~| msgid "Sign In"
829 #~ msgid "Shopify Sign In"
830 #~ msgstr "Είσοδος"
831
832 #~ msgid ""
833 #~ "You have confirmed that <a href=\"mailto:%(email)s\">%(email)s</a> is an "
834 #~ "e-mail address for user %(user_display)s."
835 #~ msgstr ""
836 #~ "Έχετε επιβεβαιώσει ότι η <a href=\"mailto:%(email)s\">%(email)s</a> είναι "
837 #~ "μια διεύθυνση e-mail για το χρήστη %(user_display)s."
838
839 #~ msgid "Thanks for using our site!"
840 #~ msgstr "Ευχαριστούμε που χρησιμοποιείτε το site μας!"
810 "Πρόκειται να χρησιμοποιήσετε τον %(provider_name)s λογαριασμό σας για να "
811 "συνδεθείτε στην σελίδα\n"
812 "%(site_name)s. Ως τελικό βήμα, παρακαλούμε συμπληρώστε την παρακάτω φόρμα:"
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-08-29 16:33-0500\n"
10 "POT-Creation-Date: 2019-12-18 11:53-0600\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"
3333 msgid "Password must be a minimum of {0} characters."
3434 msgstr ""
3535
36 #: account/apps.py:8
36 #: account/apps.py:7
3737 msgid "Accounts"
3838 msgstr ""
3939
40 #: account/forms.py:63 account/forms.py:400
40 #: account/forms.py:61 account/forms.py:398
4141 msgid "You must type the same password each time."
4242 msgstr ""
4343
44 #: account/forms.py:93 account/forms.py:367 account/forms.py:478
44 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4545 msgid "Password"
4646 msgstr ""
4747
48 #: account/forms.py:94
48 #: account/forms.py:92
4949 msgid "Remember Me"
5050 msgstr ""
5151
52 #: account/forms.py:100
52 #: account/forms.py:98
5353 msgid "This account is currently inactive."
5454 msgstr ""
5555
56 #: account/forms.py:103
56 #: account/forms.py:101
5757 msgid "The e-mail address and/or password you specified are not correct."
5858 msgstr ""
5959
60 #: account/forms.py:106
60 #: account/forms.py:104
6161 msgid "The username and/or password you specified are not correct."
6262 msgstr ""
6363
64 #: account/forms.py:115 account/forms.py:270 account/forms.py:428
65 #: account/forms.py:497
64 #: account/forms.py:113 account/forms.py:268 account/forms.py:426
65 #: account/forms.py:495
6666 msgid "E-mail address"
6767 msgstr ""
6868
69 #: account/forms.py:117 account/forms.py:303 account/forms.py:423
70 #: account/forms.py:492
69 #: account/forms.py:115 account/forms.py:301 account/forms.py:421
70 #: account/forms.py:490
7171 msgid "E-mail"
7272 msgstr ""
7373
74 #: account/forms.py:122 account/forms.py:125 account/forms.py:262
75 #: account/forms.py:266
74 #: account/forms.py:120 account/forms.py:123 account/forms.py:260
75 #: account/forms.py:264
7676 msgid "Username"
7777 msgstr ""
7878
79 #: account/forms.py:132
79 #: account/forms.py:130
8080 msgid "Username or e-mail"
8181 msgstr ""
8282
83 #: account/forms.py:135
83 #: account/forms.py:133
8484 msgctxt "field label"
8585 msgid "Login"
8686 msgstr ""
8787
88 #: account/forms.py:294
88 #: account/forms.py:292
8989 msgid "E-mail (again)"
9090 msgstr ""
9191
92 #: account/forms.py:298
92 #: account/forms.py:296
9393 msgid "E-mail address confirmation"
9494 msgstr ""
9595
96 #: account/forms.py:306
96 #: account/forms.py:304
9797 msgid "E-mail (optional)"
9898 msgstr ""
9999
100 #: account/forms.py:347
100 #: account/forms.py:345
101101 msgid "You must type the same email each time."
102102 msgstr ""
103103
104 #: account/forms.py:370 account/forms.py:479
104 #: account/forms.py:368 account/forms.py:477
105105 msgid "Password (again)"
106106 msgstr ""
107107
108 #: account/forms.py:432
109 msgid "This e-mail address is already associated with this account."
110 msgstr ""
111
108112 #: account/forms.py:434
109 msgid "This e-mail address is already associated with this account."
110 msgstr ""
111
112 #: account/forms.py:436
113113 msgid "This e-mail address is already associated with another account."
114114 msgstr ""
115115
116 #: account/forms.py:458
116 #: account/forms.py:456
117117 msgid "Current Password"
118118 msgstr ""
119119
120 #: account/forms.py:459 account/forms.py:548
120 #: account/forms.py:457 account/forms.py:546
121121 msgid "New Password"
122122 msgstr ""
123123
124 #: account/forms.py:460 account/forms.py:549
124 #: account/forms.py:458 account/forms.py:547
125125 msgid "New Password (again)"
126126 msgstr ""
127127
128 #: account/forms.py:468
128 #: account/forms.py:466
129129 msgid "Please type your current password."
130130 msgstr ""
131131
132 #: account/forms.py:506
132 #: account/forms.py:504
133133 msgid "The e-mail address is not assigned to any user account"
134134 msgstr ""
135135
136 #: account/forms.py:570
136 #: account/forms.py:568
137137 msgid "The password reset token was invalid."
138138 msgstr ""
139139
140 #: account/models.py:23
140 #: account/models.py:21
141141 msgid "user"
142142 msgstr ""
143143
144 #: account/models.py:27 account/models.py:81
144 #: account/models.py:25 account/models.py:78
145145 msgid "e-mail address"
146146 msgstr ""
147147
148 #: account/models.py:28
148 #: account/models.py:26
149149 msgid "verified"
150150 msgstr ""
151151
152 #: account/models.py:29
152 #: account/models.py:27
153153 msgid "primary"
154154 msgstr ""
155155
156 #: account/models.py:34
156 #: account/models.py:32
157157 msgid "email address"
158158 msgstr ""
159159
160 #: account/models.py:35
160 #: account/models.py:33
161161 msgid "email addresses"
162162 msgstr ""
163163
164 #: account/models.py:83
164 #: account/models.py:80
165165 msgid "created"
166166 msgstr ""
167167
168 #: account/models.py:85
168 #: account/models.py:82
169169 msgid "sent"
170170 msgstr ""
171171
172 #: account/models.py:86 socialaccount/models.py:58
172 #: account/models.py:83 socialaccount/models.py:55
173173 msgid "key"
174174 msgstr ""
175175
176 #: account/models.py:91
176 #: account/models.py:88
177177 msgid "email confirmation"
178178 msgstr ""
179179
180 #: account/models.py:92
180 #: account/models.py:89
181181 msgid "email confirmations"
182182 msgstr ""
183183
184 #: socialaccount/adapter.py:27
184 #: socialaccount/adapter.py:26
185185 #, python-format
186186 msgid ""
187187 "An account already exists with this e-mail address. Please sign in to that "
188188 "account first, then connect your %s account."
189189 msgstr ""
190190
191 #: socialaccount/adapter.py:132
191 #: socialaccount/adapter.py:131
192192 msgid "Your account has no password set up."
193193 msgstr ""
194194
195 #: socialaccount/adapter.py:139
195 #: socialaccount/adapter.py:138
196196 msgid "Your account has no verified e-mail address."
197197 msgstr ""
198198
199 #: socialaccount/apps.py:8
199 #: socialaccount/apps.py:7
200200 msgid "Social Accounts"
201201 msgstr ""
202202
203 #: socialaccount/models.py:46 socialaccount/models.py:80
203 #: socialaccount/models.py:42 socialaccount/models.py:76
204204 msgid "provider"
205205 msgstr ""
206206
207 #: socialaccount/models.py:45
208 msgid "name"
209 msgstr ""
210
211 #: socialaccount/models.py:47
212 msgid "client id"
213 msgstr ""
214
207215 #: socialaccount/models.py:49
208 msgid "name"
209 msgstr ""
210
211 #: socialaccount/models.py:51
212 msgid "client id"
216 msgid "App ID, or consumer key"
217 msgstr ""
218
219 #: socialaccount/models.py:50
220 msgid "secret key"
213221 msgstr ""
214222
215223 #: socialaccount/models.py:53
216 msgid "App ID, or consumer key"
217 msgstr ""
218
219 #: socialaccount/models.py:54
220 msgid "secret key"
221 msgstr ""
222
223 #: socialaccount/models.py:56
224224 msgid "API secret, client secret, or consumer secret"
225225 msgstr ""
226226
227 #: socialaccount/models.py:61
227 #: socialaccount/models.py:58
228228 msgid "Key"
229229 msgstr ""
230230
231 #: socialaccount/models.py:69
231 #: socialaccount/models.py:66
232232 msgid "social application"
233233 msgstr ""
234234
235 #: socialaccount/models.py:70
235 #: socialaccount/models.py:67
236236 msgid "social applications"
237237 msgstr ""
238238
239 #: socialaccount/models.py:95
240 msgid "uid"
241 msgstr ""
242
243 #: socialaccount/models.py:97
244 msgid "last login"
245 msgstr ""
246
239247 #: socialaccount/models.py:99
240 msgid "uid"
248 msgid "date joined"
241249 msgstr ""
242250
243251 #: socialaccount/models.py:101
244 msgid "last login"
245 msgstr ""
246
247 #: socialaccount/models.py:103
248 msgid "date joined"
252 msgid "extra data"
249253 msgstr ""
250254
251255 #: socialaccount/models.py:105
252 msgid "extra data"
253 msgstr ""
254
255 #: socialaccount/models.py:109
256256 msgid "social account"
257257 msgstr ""
258258
259 #: socialaccount/models.py:110
259 #: socialaccount/models.py:106
260260 msgid "social accounts"
261261 msgstr ""
262262
263 #: socialaccount/models.py:131
264 msgid "token"
265 msgstr ""
266
267 #: socialaccount/models.py:133
268 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
269 msgstr ""
270
263271 #: socialaccount/models.py:136
264 msgid "token"
272 msgid "token secret"
265273 msgstr ""
266274
267275 #: socialaccount/models.py:138
268 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
269 msgstr ""
270
271 #: socialaccount/models.py:141
272 msgid "token secret"
273 msgstr ""
274
275 #: socialaccount/models.py:143
276276 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
277277 msgstr ""
278278
279 #: socialaccount/models.py:140
280 msgid "expires at"
281 msgstr ""
282
283 #: socialaccount/models.py:144
284 msgid "social application token"
285 msgstr ""
286
279287 #: socialaccount/models.py:145
280 msgid "expires at"
281 msgstr ""
282
283 #: socialaccount/models.py:149
284 msgid "social application token"
285 msgstr ""
286
287 #: socialaccount/models.py:150
288288 msgid "social application tokens"
289289 msgstr ""
290290
291 #: socialaccount/providers/douban/views.py:35
291 #: socialaccount/providers/douban/views.py:36
292292 msgid "Invalid profile data"
293293 msgstr ""
294294
66 msgstr ""
77 "Project-Id-Version: django-allauth\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2019-08-29 16:33-0500\n"
9 "POT-Creation-Date: 2019-12-18 11:53-0600\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/"
3535 msgid "Password must be a minimum of {0} characters."
3636 msgstr "Una contraseña necesita al menos {0} caracteres."
3737
38 #: account/apps.py:8
38 #: account/apps.py:7
3939 msgid "Accounts"
4040 msgstr "Cuentas"
4141
42 #: account/forms.py:63 account/forms.py:400
42 #: account/forms.py:61 account/forms.py:398
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:93 account/forms.py:367 account/forms.py:478
46 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4747 msgid "Password"
4848 msgstr "Contraseña"
4949
50 #: account/forms.py:94
50 #: account/forms.py:92
5151 msgid "Remember Me"
5252 msgstr "Recordarme"
5353
54 #: account/forms.py:100
54 #: account/forms.py:98
5555 msgid "This account is currently inactive."
5656 msgstr "Esta cuenta está desactivada actualmente."
5757
58 #: account/forms.py:103
58 #: account/forms.py:101
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:106
63 #: account/forms.py:104
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:115 account/forms.py:270 account/forms.py:428
68 #: account/forms.py:497
67 #: account/forms.py:113 account/forms.py:268 account/forms.py:426
68 #: account/forms.py:495
6969 msgid "E-mail address"
7070 msgstr "Correo electrónico"
7171
72 #: account/forms.py:117 account/forms.py:303 account/forms.py:423
73 #: account/forms.py:492
72 #: account/forms.py:115 account/forms.py:301 account/forms.py:421
73 #: account/forms.py:490
7474 msgid "E-mail"
7575 msgstr "Correo electrónico"
7676
77 #: account/forms.py:122 account/forms.py:125 account/forms.py:262
78 #: account/forms.py:266
77 #: account/forms.py:120 account/forms.py:123 account/forms.py:260
78 #: account/forms.py:264
7979 msgid "Username"
8080 msgstr "Usuario"
8181
82 #: account/forms.py:132
82 #: account/forms.py:130
8383 msgid "Username or e-mail"
8484 msgstr "Nombre de usuario o correo electrónico"
8585
86 #: account/forms.py:135
86 #: account/forms.py:133
8787 msgctxt "field label"
8888 msgid "Login"
8989 msgstr "Iniciar sesión"
9090
91 #: account/forms.py:294
91 #: account/forms.py:292
9292 msgid "E-mail (again)"
9393 msgstr "Correo Electrónico (otra vez)"
9494
95 #: account/forms.py:298
95 #: account/forms.py:296
9696 msgid "E-mail address confirmation"
9797 msgstr "Confirmación de la dirección de correo electrónico"
9898
99 #: account/forms.py:306
99 #: account/forms.py:304
100100 msgid "E-mail (optional)"
101101 msgstr "Correo Electrónico (opcional)"
102102
103 #: account/forms.py:347
103 #: account/forms.py:345
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:370 account/forms.py:479
107 #: account/forms.py:368 account/forms.py:477
108108 msgid "Password (again)"
109109 msgstr "Contraseña (de nuevo)"
110110
111 #: account/forms.py:434
111 #: account/forms.py:432
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:436
115 #: account/forms.py:434
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:458
119 #: account/forms.py:456
120120 msgid "Current Password"
121121 msgstr "Contraseña actual"
122122
123 #: account/forms.py:459 account/forms.py:548
123 #: account/forms.py:457 account/forms.py:546
124124 msgid "New Password"
125125 msgstr "Nueva contraseña"
126126
127 #: account/forms.py:460 account/forms.py:549
127 #: account/forms.py:458 account/forms.py:547
128128 msgid "New Password (again)"
129129 msgstr "Nueva contraseña (de nuevo)"
130130
131 #: account/forms.py:468
131 #: account/forms.py:466
132132 msgid "Please type your current password."
133133 msgstr "Por favor, escribe tu contraseña actual."
134134
135 #: account/forms.py:506
135 #: account/forms.py:504
136136 msgid "The e-mail address is not assigned to any user account"
137137 msgstr ""
138138 "La dirección de correo electrónico no está asignada a ninguna cuenta de "
139139 "usuario"
140140
141 #: account/forms.py:570
141 #: account/forms.py:568
142142 msgid "The password reset token was invalid."
143143 msgstr ""
144144
145 #: account/models.py:23
145 #: account/models.py:21
146146 msgid "user"
147147 msgstr "usuario"
148148
149 #: account/models.py:27 account/models.py:81
149 #: account/models.py:25 account/models.py:78
150150 msgid "e-mail address"
151151 msgstr "correo electrónico"
152152
153 #: account/models.py:28
153 #: account/models.py:26
154154 msgid "verified"
155155 msgstr "verificado"
156156
157 #: account/models.py:29
157 #: account/models.py:27
158158 msgid "primary"
159159 msgstr "primero"
160160
161 #: account/models.py:34
161 #: account/models.py:32
162162 msgid "email address"
163163 msgstr "correo electrónico"
164164
165 #: account/models.py:35
165 #: account/models.py:33
166166 msgid "email addresses"
167167 msgstr "correos electrónicos"
168168
169 #: account/models.py:83
169 #: account/models.py:80
170170 msgid "created"
171171 msgstr "creado"
172172
173 #: account/models.py:85
173 #: account/models.py:82
174174 msgid "sent"
175175 msgstr "enviado"
176176
177 #: account/models.py:86 socialaccount/models.py:58
177 #: account/models.py:83 socialaccount/models.py:55
178178 msgid "key"
179179 msgstr ""
180180
181 #: account/models.py:91
181 #: account/models.py:88
182182 msgid "email confirmation"
183183 msgstr "confirmación de correo electrónico"
184184
185 #: account/models.py:92
185 #: account/models.py:89
186186 msgid "email confirmations"
187187 msgstr "confirmación de correos electrónicos"
188188
189 #: socialaccount/adapter.py:27
189 #: socialaccount/adapter.py:26
190190 #, python-format
191191 msgid ""
192192 "An account already exists with this e-mail address. Please sign in to that "
195195 "Ya existe una cuenta asociada a esta dirección de correo electrónico. Por "
196196 "favor, autentícate usando esa cuenta, y luego vincula tu cuenta de %s."
197197
198 #: socialaccount/adapter.py:132
198 #: socialaccount/adapter.py:131
199199 msgid "Your account has no password set up."
200200 msgstr "Tu cuenta no tiene una contraseña definida."
201201
202 #: socialaccount/adapter.py:139
202 #: socialaccount/adapter.py:138
203203 msgid "Your account has no verified e-mail address."
204204 msgstr "Tu cuenta no tiene un correo electrónico verificado."
205205
206 #: socialaccount/apps.py:8
206 #: socialaccount/apps.py:7
207207 msgid "Social Accounts"
208208 msgstr "Cuentas Sociales"
209209
210 #: socialaccount/models.py:46 socialaccount/models.py:80
210 #: socialaccount/models.py:42 socialaccount/models.py:76
211211 msgid "provider"
212212 msgstr "proveedor"
213213
214 #: socialaccount/models.py:49
214 #: socialaccount/models.py:45
215215 msgid "name"
216216 msgstr "nombre"
217217
218 #: socialaccount/models.py:51
218 #: socialaccount/models.py:47
219219 msgid "client id"
220220 msgstr ""
221221
222 #: socialaccount/models.py:49
223 msgid "App ID, or consumer key"
224 msgstr ""
225
226 #: socialaccount/models.py:50
227 msgid "secret key"
228 msgstr ""
229
222230 #: socialaccount/models.py:53
223 msgid "App ID, or consumer key"
224 msgstr ""
225
226 #: socialaccount/models.py:54
227 msgid "secret key"
228 msgstr ""
229
230 #: socialaccount/models.py:56
231231 msgid "API secret, client secret, or consumer secret"
232232 msgstr ""
233233
234 #: socialaccount/models.py:61
234 #: socialaccount/models.py:58
235235 msgid "Key"
236236 msgstr ""
237237
238 #: socialaccount/models.py:69
238 #: socialaccount/models.py:66
239239 msgid "social application"
240240 msgstr ""
241241
242 #: socialaccount/models.py:70
242 #: socialaccount/models.py:67
243243 msgid "social applications"
244244 msgstr ""
245245
246 #: socialaccount/models.py:99
246 #: socialaccount/models.py:95
247247 msgid "uid"
248248 msgstr ""
249249
250 #: socialaccount/models.py:101
250 #: socialaccount/models.py:97
251251 msgid "last login"
252252 msgstr "último inicio de sesión"
253253
254 #: socialaccount/models.py:103
254 #: socialaccount/models.py:99
255255 msgid "date joined"
256256 msgstr ""
257257
258 #: socialaccount/models.py:101
259 msgid "extra data"
260 msgstr ""
261
258262 #: socialaccount/models.py:105
259 msgid "extra data"
260 msgstr ""
261
262 #: socialaccount/models.py:109
263263 msgid "social account"
264264 msgstr ""
265265
266 #: socialaccount/models.py:110
266 #: socialaccount/models.py:106
267267 msgid "social accounts"
268268 msgstr ""
269269
270 #: socialaccount/models.py:131
271 msgid "token"
272 msgstr ""
273
274 #: socialaccount/models.py:133
275 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
276 msgstr ""
277
270278 #: socialaccount/models.py:136
271 msgid "token"
279 msgid "token secret"
272280 msgstr ""
273281
274282 #: socialaccount/models.py:138
275 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
276 msgstr ""
277
278 #: socialaccount/models.py:141
279 msgid "token secret"
280 msgstr ""
281
282 #: socialaccount/models.py:143
283283 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
284284 msgstr ""
285285
286 #: socialaccount/models.py:140
287 msgid "expires at"
288 msgstr ""
289
290 #: socialaccount/models.py:144
291 msgid "social application token"
292 msgstr ""
293
286294 #: socialaccount/models.py:145
287 msgid "expires at"
288 msgstr ""
289
290 #: socialaccount/models.py:149
291 msgid "social application token"
292 msgstr ""
293
294 #: socialaccount/models.py:150
295295 msgid "social application tokens"
296296 msgstr ""
297297
298 #: socialaccount/providers/douban/views.py:35
298 #: socialaccount/providers/douban/views.py:36
299299 msgid "Invalid profile data"
300300 msgstr "Datos de perfil inválidos"
301301
66 msgstr ""
77 "Project-Id-Version: django-allauth\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2019-08-29 16:33-0500\n"
9 "POT-Creation-Date: 2019-12-18 11:53-0600\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"
3636 msgid "Password must be a minimum of {0} characters."
3737 msgstr "Pasahitzak gutxienez {0} karaktere izan behar ditu."
3838
39 #: account/apps.py:8
39 #: account/apps.py:7
4040 msgid "Accounts"
4141 msgstr "Kontuak"
4242
43 #: account/forms.py:63 account/forms.py:400
43 #: account/forms.py:61 account/forms.py:398
4444 msgid "You must type the same password each time."
4545 msgstr "Pasahitz berdina idatzi behar duzu aldi bakoitzean."
4646
47 #: account/forms.py:93 account/forms.py:367 account/forms.py:478
47 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4848 msgid "Password"
4949 msgstr "Pasahitza"
5050
51 #: account/forms.py:94
51 #: account/forms.py:92
5252 msgid "Remember Me"
5353 msgstr "Gogora nazazue"
5454
55 #: account/forms.py:100
55 #: account/forms.py:98
5656 msgid "This account is currently inactive."
5757 msgstr "Kontu hau ez dago aktiboa orain."
5858
59 #: account/forms.py:103
59 #: account/forms.py:101
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:106
63 #: account/forms.py:104
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:115 account/forms.py:270 account/forms.py:428
68 #: account/forms.py:497
67 #: account/forms.py:113 account/forms.py:268 account/forms.py:426
68 #: account/forms.py:495
6969 msgid "E-mail address"
7070 msgstr "Helbide elektronikoa"
7171
72 #: account/forms.py:117 account/forms.py:303 account/forms.py:423
73 #: account/forms.py:492
72 #: account/forms.py:115 account/forms.py:301 account/forms.py:421
73 #: account/forms.py:490
7474 msgid "E-mail"
7575 msgstr "Emaila"
7676
77 #: account/forms.py:122 account/forms.py:125 account/forms.py:262
78 #: account/forms.py:266
77 #: account/forms.py:120 account/forms.py:123 account/forms.py:260
78 #: account/forms.py:264
7979 msgid "Username"
8080 msgstr "Erabiltzailea"
8181
82 #: account/forms.py:132
82 #: account/forms.py:130
8383 msgid "Username or e-mail"
8484 msgstr "Erabiltzailea edo emaila"
8585
86 #: account/forms.py:135
86 #: account/forms.py:133
8787 msgctxt "field label"
8888 msgid "Login"
8989 msgstr "Logina"
9090
91 #: account/forms.py:294
91 #: account/forms.py:292
9292 msgid "E-mail (again)"
9393 msgstr "Emaila (berriro)"
9494
95 #: account/forms.py:298
95 #: account/forms.py:296
9696 msgid "E-mail address confirmation"
9797 msgstr "Helbide elektronikoaren egiaztapena"
9898
99 #: account/forms.py:306
99 #: account/forms.py:304
100100 msgid "E-mail (optional)"
101101 msgstr "Emaila (hautazkoa)"
102102
103 #: account/forms.py:347
103 #: account/forms.py:345
104104 msgid "You must type the same email each time."
105105 msgstr "Email berdina idatzi behar duzu aldi bakoitzean."
106106
107 #: account/forms.py:370 account/forms.py:479
107 #: account/forms.py:368 account/forms.py:477
108108 msgid "Password (again)"
109109 msgstr "Pasahitza (berriro)"
110110
111 #: account/forms.py:434
111 #: account/forms.py:432
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:436
115 #: account/forms.py:434
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:458
119 #: account/forms.py:456
120120 msgid "Current Password"
121121 msgstr "Oraingo pasahitza"
122122
123 #: account/forms.py:459 account/forms.py:548
123 #: account/forms.py:457 account/forms.py:546
124124 msgid "New Password"
125125 msgstr "Pasahitz berria"
126126
127 #: account/forms.py:460 account/forms.py:549
127 #: account/forms.py:458 account/forms.py:547
128128 msgid "New Password (again)"
129129 msgstr "Pasahitz berria (berriro)"
130130
131 #: account/forms.py:468
131 #: account/forms.py:466
132132 msgid "Please type your current password."
133133 msgstr "Mesedez idatzi zure oraingo pasahitza."
134134
135 #: account/forms.py:506
135 #: account/forms.py:504
136136 msgid "The e-mail address is not assigned to any user account"
137137 msgstr "Helbide elektroniko hau ez dago kontu bati lotuta"
138138
139 #: account/forms.py:570
139 #: account/forms.py:568
140140 msgid "The password reset token was invalid."
141141 msgstr "Pasahitza berrezartzeko \"token\"-a baliogabea da."
142142
143 #: account/models.py:23
143 #: account/models.py:21
144144 msgid "user"
145145 msgstr "erabiltzailea"
146146
147 #: account/models.py:27 account/models.py:81
147 #: account/models.py:25 account/models.py:78
148148 msgid "e-mail address"
149149 msgstr "helbide elektronikoa"
150150
151 #: account/models.py:28
151 #: account/models.py:26
152152 msgid "verified"
153153 msgstr "egiaztatuta"
154154
155 #: account/models.py:29
155 #: account/models.py:27
156156 msgid "primary"
157157 msgstr "nagusia"
158158
159 #: account/models.py:34
159 #: account/models.py:32
160160 msgid "email address"
161161 msgstr "helbide elektronikoa"
162162
163 #: account/models.py:35
163 #: account/models.py:33
164164 msgid "email addresses"
165165 msgstr "helbide elektronikoak"
166166
167 #: account/models.py:83
167 #: account/models.py:80
168168 msgid "created"
169169 msgstr "sortuta"
170170
171 #: account/models.py:85
171 #: account/models.py:82
172172 msgid "sent"
173173 msgstr "bidalita"
174174
175 #: account/models.py:86 socialaccount/models.py:58
175 #: account/models.py:83 socialaccount/models.py:55
176176 msgid "key"
177177 msgstr "giltza"
178178
179 #: account/models.py:91
179 #: account/models.py:88
180180 msgid "email confirmation"
181181 msgstr "email egiaztapena"
182182
183 #: account/models.py:92
183 #: account/models.py:89
184184 msgid "email confirmations"
185185 msgstr "email egiaztapenak"
186186
187 #: socialaccount/adapter.py:27
187 #: socialaccount/adapter.py:26
188188 #, python-format
189189 msgid ""
190190 "An account already exists with this e-mail address. Please sign in to that "
193193 "Kontu bat sortu da iada helbide elektroniko honekin. Mesedez hasi saio berri "
194194 "bat kontu honekin eta gero zure %s kontua honi lotu."
195195
196 #: socialaccount/adapter.py:132
196 #: socialaccount/adapter.py:131
197197 msgid "Your account has no password set up."
198198 msgstr "Zure kontuak ez du pasahitzik zehaztuta."
199199
200 #: socialaccount/adapter.py:139
200 #: socialaccount/adapter.py:138
201201 msgid "Your account has no verified e-mail address."
202202 msgstr "Zure kontuak ez du egiaztatutako emailik."
203203
204 #: socialaccount/apps.py:8
204 #: socialaccount/apps.py:7
205205 msgid "Social Accounts"
206206 msgstr "Sare sozial kontuak"
207207
208 #: socialaccount/models.py:46 socialaccount/models.py:80
208 #: socialaccount/models.py:42 socialaccount/models.py:76
209209 msgid "provider"
210210 msgstr "zerbitzua"
211211
212 #: socialaccount/models.py:49
212 #: socialaccount/models.py:45
213213 msgid "name"
214214 msgstr "izena"
215215
216 #: socialaccount/models.py:51
216 #: socialaccount/models.py:47
217217 msgid "client id"
218218 msgstr "client id"
219219
220 #: socialaccount/models.py:53
220 #: socialaccount/models.py:49
221221 msgid "App ID, or consumer key"
222222 msgstr "Aplikazioaren ID-a, edo \"consumer key\"-a"
223223
224 #: socialaccount/models.py:54
224 #: socialaccount/models.py:50
225225 msgid "secret key"
226226 msgstr "\"secret key\"-a"
227227
228 #: socialaccount/models.py:56
228 #: socialaccount/models.py:53
229229 msgid "API secret, client secret, or consumer secret"
230230 msgstr "\"API secret\"-a, \"client secret\"-a edo \"consumer secret\"-a"
231231
232 #: socialaccount/models.py:61
232 #: socialaccount/models.py:58
233233 msgid "Key"
234234 msgstr "Giltza"
235235
236 #: socialaccount/models.py:69
236 #: socialaccount/models.py:66
237237 msgid "social application"
238238 msgstr "aplikazio soziala"
239239
240 #: socialaccount/models.py:70
240 #: socialaccount/models.py:67
241241 msgid "social applications"
242242 msgstr "aplikazio sozialak"
243243
244 #: socialaccount/models.py:99
244 #: socialaccount/models.py:95
245245 msgid "uid"
246246 msgstr "uid"
247247
248 #: socialaccount/models.py:101
248 #: socialaccount/models.py:97
249249 msgid "last login"
250250 msgstr "azken logina"
251251
252 #: socialaccount/models.py:103
252 #: socialaccount/models.py:99
253253 msgid "date joined"
254254 msgstr "erregistro eguna"
255255
256 #: socialaccount/models.py:105
256 #: socialaccount/models.py:101
257257 msgid "extra data"
258258 msgstr "datu gehigarriak"
259259
260 #: socialaccount/models.py:109
260 #: socialaccount/models.py:105
261261 msgid "social account"
262262 msgstr "sare sozial kontua"
263263
264 #: socialaccount/models.py:110
264 #: socialaccount/models.py:106
265265 msgid "social accounts"
266266 msgstr "sare sozial kontuak"
267267
268 #: socialaccount/models.py:136
268 #: socialaccount/models.py:131
269269 msgid "token"
270270 msgstr "\"token\"-a"
271271
272 #: socialaccount/models.py:138
272 #: socialaccount/models.py:133
273273 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
274274 msgstr "\"oauth_token\"-a (OAuth1) edo \"access token\"-a (OAuth2)"
275275
276 #: socialaccount/models.py:141
276 #: socialaccount/models.py:136
277277 msgid "token secret"
278278 msgstr "\"token secret\"-a"
279279
280 #: socialaccount/models.py:143
280 #: socialaccount/models.py:138
281281 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
282282 msgstr "\"oauth_token_secret\"-a (OAuth1) edo \"refresh token\"-a (OAuth2)"
283283
284 #: socialaccount/models.py:145
284 #: socialaccount/models.py:140
285285 msgid "expires at"
286286 msgstr "iraungitze data"
287287
288 #: socialaccount/models.py:149
288 #: socialaccount/models.py:144
289289 msgid "social application token"
290290 msgstr "aplikazio sozial \"token\"-a"
291291
292 #: socialaccount/models.py:150
292 #: socialaccount/models.py:145
293293 msgid "social application tokens"
294294 msgstr "aplikazio sozial \"token\"-ak"
295295
296 #: socialaccount/providers/douban/views.py:35
296 #: socialaccount/providers/douban/views.py:36
297297 msgid "Invalid profile data"
298298 msgstr "Profil datu baliogabeak"
299299
55 msgstr ""
66 "Project-Id-Version: \n"
77 "Report-Msgid-Bugs-To: \n"
8 "POT-Creation-Date: 2019-08-29 16:33-0500\n"
8 "POT-Creation-Date: 2019-12-18 11:53-0600\n"
99 "PO-Revision-Date: 2015-09-14 12:40-0000\n"
1010 "Last-Translator: NARIMAN GHARIB <NARIMAN.GH@GMAIL.COM>\n"
1111 "Language-Team: \n"
3333 msgid "Password must be a minimum of {0} characters."
3434 msgstr "پسورد تنها می‌تواند دارای {0} کاراکتر باشد."
3535
36 #: account/apps.py:8
36 #: account/apps.py:7
3737 #, fuzzy
3838 msgid "Accounts"
3939 msgstr "حساب کاربری"
4040
41 #: account/forms.py:63 account/forms.py:400
41 #: account/forms.py:61 account/forms.py:398
4242 msgid "You must type the same password each time."
4343 msgstr "شما باید رمز عبور یکسانی را انتخاب کنید."
4444
45 #: account/forms.py:93 account/forms.py:367 account/forms.py:478
45 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4646 msgid "Password"
4747 msgstr "رمز عبور"
4848
49 #: account/forms.py:94
49 #: account/forms.py:92
5050 msgid "Remember Me"
5151 msgstr "مرا به خاطر بسپار"
5252
53 #: account/forms.py:100
53 #: account/forms.py:98
5454 msgid "This account is currently inactive."
5555 msgstr "این حساب کاربری درحال حاضر غیرفعال است."
5656
57 #: account/forms.py:103
57 #: account/forms.py:101
5858 msgid "The e-mail address and/or password you specified are not correct."
5959 msgstr "آدرس ایمیل و/یا پسوردی که وارد کرده‌اید صحیح نیست."
6060
61 #: account/forms.py:106
61 #: account/forms.py:104
6262 msgid "The username and/or password you specified are not correct."
6363 msgstr "نام کاربرد و/یا پسوردی که وارد کرده‌اید صحیح نیست."
6464
65 #: account/forms.py:115 account/forms.py:270 account/forms.py:428
66 #: account/forms.py:497
65 #: account/forms.py:113 account/forms.py:268 account/forms.py:426
66 #: account/forms.py:495
6767 msgid "E-mail address"
6868 msgstr "آدرس ایمیل"
6969
70 #: account/forms.py:117 account/forms.py:303 account/forms.py:423
71 #: account/forms.py:492
70 #: account/forms.py:115 account/forms.py:301 account/forms.py:421
71 #: account/forms.py:490
7272 msgid "E-mail"
7373 msgstr "ایمیل"
7474
75 #: account/forms.py:122 account/forms.py:125 account/forms.py:262
76 #: account/forms.py:266
75 #: account/forms.py:120 account/forms.py:123 account/forms.py:260
76 #: account/forms.py:264
7777 msgid "Username"
7878 msgstr "نام کاربری"
7979
80 #: account/forms.py:132
80 #: account/forms.py:130
8181 msgid "Username or e-mail"
8282 msgstr "نام کاربری یا ایمیل"
8383
84 #: account/forms.py:135
84 #: account/forms.py:133
8585 msgctxt "field label"
8686 msgid "Login"
8787 msgstr "ورود"
8888
89 #: account/forms.py:294
89 #: account/forms.py:292
9090 #, fuzzy
9191 #| msgid "E-mail (optional)"
9292 msgid "E-mail (again)"
9393 msgstr "ایمیل (اختیاری)"
9494
95 #: account/forms.py:298
95 #: account/forms.py:296
9696 #, fuzzy
9797 #| msgid "email confirmation"
9898 msgid "E-mail address confirmation"
9999 msgstr "تائید آدرس ایمیل"
100100
101 #: account/forms.py:306
101 #: account/forms.py:304
102102 msgid "E-mail (optional)"
103103 msgstr "ایمیل (اختیاری)"
104104
105 #: account/forms.py:347
105 #: account/forms.py:345
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:370 account/forms.py:479
111 #: account/forms.py:368 account/forms.py:477
112112 msgid "Password (again)"
113113 msgstr "تکرار رمز عبور"
114114
115 #: account/forms.py:434
115 #: account/forms.py:432
116116 msgid "This e-mail address is already associated with this account."
117117 msgstr "ایمیل آدرسی که انتخاب کرده‌اید قبلا به این حساب کاربری وصل شده است."
118118
119 #: account/forms.py:436
119 #: account/forms.py:434
120120 msgid "This e-mail address is already associated with another account."
121121 msgstr "ایمیل آدرسی که انتخاب کرده‌اید قبلا به حساب کاربر دیگری وصل شده است."
122122
123 #: account/forms.py:458
123 #: account/forms.py:456
124124 msgid "Current Password"
125125 msgstr "رمز عبور فعلی"
126126
127 #: account/forms.py:459 account/forms.py:548
127 #: account/forms.py:457 account/forms.py:546
128128 msgid "New Password"
129129 msgstr "رمز عبور جدید"
130130
131 #: account/forms.py:460 account/forms.py:549
131 #: account/forms.py:458 account/forms.py:547
132132 msgid "New Password (again)"
133133 msgstr "تکرار رمز عبور جدید"
134134
135 #: account/forms.py:468
135 #: account/forms.py:466
136136 msgid "Please type your current password."
137137 msgstr "لطفا رمز عبور فعلی خود را وارد کنید."
138138
139 #: account/forms.py:506
139 #: account/forms.py:504
140140 msgid "The e-mail address is not assigned to any user account"
141141 msgstr "این آدرس ایمیل به هیچ حساب کاربری متصل نشده است"
142142
143 #: account/forms.py:570
143 #: account/forms.py:568
144144 msgid "The password reset token was invalid."
145145 msgstr "توکن بازنشانی پسورد غلط است."
146146
147 #: account/models.py:23
147 #: account/models.py:21
148148 msgid "user"
149149 msgstr "کاربر"
150150
151 #: account/models.py:27 account/models.py:81
151 #: account/models.py:25 account/models.py:78
152152 msgid "e-mail address"
153153 msgstr "آدرس ایمیل"
154154
155 #: account/models.py:28
155 #: account/models.py:26
156156 msgid "verified"
157157 msgstr "تایید شده"
158158
159 #: account/models.py:29
159 #: account/models.py:27
160160 msgid "primary"
161161 msgstr "اصلی"
162162
163 #: account/models.py:34
163 #: account/models.py:32
164164 msgid "email address"
165165 msgstr "آدرس ایمیل"
166166
167 #: account/models.py:35
167 #: account/models.py:33
168168 msgid "email addresses"
169169 msgstr "آدرس‌های ایمیل"
170170
171 #: account/models.py:83
171 #: account/models.py:80
172172 msgid "created"
173173 msgstr "ساخته شده"
174174
175 #: account/models.py:85
175 #: account/models.py:82
176176 msgid "sent"
177177 msgstr "ارسال شد"
178178
179 #: account/models.py:86 socialaccount/models.py:58
179 #: account/models.py:83 socialaccount/models.py:55
180180 msgid "key"
181181 msgstr "کلید"
182182
183 #: account/models.py:91
183 #: account/models.py:88
184184 msgid "email confirmation"
185185 msgstr "تائید آدرس ایمیل"
186186
187 #: account/models.py:92
187 #: account/models.py:89
188188 msgid "email confirmations"
189189 msgstr "تاییدیه‌های ایمیل"
190190
191 #: socialaccount/adapter.py:27
191 #: socialaccount/adapter.py:26
192192 #, python-format
193193 msgid ""
194194 "An account already exists with this e-mail address. Please sign in to that "
197197 "یک حساب کاربری دیگری با این ایمیل آدرس موجود است. لطفا ابتدا از طریق آن حساب "
198198 "وارد شوید. اول حساب کاربری و بعد حساب کاربری %s را متصل کنید."
199199
200 #: socialaccount/adapter.py:132
200 #: socialaccount/adapter.py:131
201201 msgid "Your account has no password set up."
202202 msgstr "حساب کاربری شما هنوز هیچ رمز عبوری ندارد."
203203
204 #: socialaccount/adapter.py:139
204 #: socialaccount/adapter.py:138
205205 msgid "Your account has no verified e-mail address."
206206 msgstr "حساب کاربری شما هنوز هیچ ایمیل تاییدشده‌ای ندارد."
207207
208 #: socialaccount/apps.py:8
208 #: socialaccount/apps.py:7
209209 #, fuzzy
210210 msgid "Social Accounts"
211211 msgstr "حساب اجتماعی"
212212
213 #: socialaccount/models.py:46 socialaccount/models.py:80
213 #: socialaccount/models.py:42 socialaccount/models.py:76
214214 msgid "provider"
215215 msgstr "فراهم‌کننده"
216216
217 #: socialaccount/models.py:49
217 #: socialaccount/models.py:45
218218 #, fuzzy
219219 msgid "name"
220220 msgstr "نام کاربری"
221221
222 #: socialaccount/models.py:51
222 #: socialaccount/models.py:47
223223 msgid "client id"
224224 msgstr "شماره کلاینت"
225225
226 #: socialaccount/models.py:53
226 #: socialaccount/models.py:49
227227 msgid "App ID, or consumer key"
228228 msgstr "شماره اپ یا کلید کلاینت"
229229
230 #: socialaccount/models.py:54
230 #: socialaccount/models.py:50
231231 msgid "secret key"
232232 msgstr "کلید مخفی"
233233
234 #: socialaccount/models.py:56
234 #: socialaccount/models.py:53
235235 msgid "API secret, client secret, or consumer secret"
236236 msgstr "رمز ای‌پی‌آی، رمز کلاینت یا رمز مشتری"
237237
238 #: socialaccount/models.py:61
238 #: socialaccount/models.py:58
239239 #, fuzzy
240240 msgid "Key"
241241 msgstr "کلید"
242242
243 #: socialaccount/models.py:69
243 #: socialaccount/models.py:66
244244 msgid "social application"
245245 msgstr "اپلیکیشن اجتماعی"
246246
247 #: socialaccount/models.py:70
247 #: socialaccount/models.py:67
248248 msgid "social applications"
249249 msgstr "اپلیکیشن‌های اجتماعی"
250250
251 #: socialaccount/models.py:99
251 #: socialaccount/models.py:95
252252 msgid "uid"
253253 msgstr ""
254254
255 #: socialaccount/models.py:101
255 #: socialaccount/models.py:97
256256 msgid "last login"
257257 msgstr "آخرین ورود"
258258
259 #: socialaccount/models.py:103
259 #: socialaccount/models.py:99
260260 msgid "date joined"
261261 msgstr "تاریخ پیوستن"
262262
263 #: socialaccount/models.py:105
263 #: socialaccount/models.py:101
264264 msgid "extra data"
265265 msgstr "اطلاعات بیشتر"
266266
267 #: socialaccount/models.py:109
267 #: socialaccount/models.py:105
268268 msgid "social account"
269269 msgstr "حساب شبکهٔ اجتماعی"
270270
271 #: socialaccount/models.py:110
271 #: socialaccount/models.py:106
272272 msgid "social accounts"
273273 msgstr "حساب‌های شبکه‌های اجتماعی"
274274
275 #: socialaccount/models.py:136
275 #: socialaccount/models.py:131
276276 msgid "token"
277277 msgstr "توکن"
278278
279 #: socialaccount/models.py:138
279 #: socialaccount/models.py:133
280280 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
281281 msgstr "\"oauth_token\" (OAuth1) یا توکن دسترسی (OAuth2)"
282282
283 #: socialaccount/models.py:141
283 #: socialaccount/models.py:136
284284 msgid "token secret"
285285 msgstr "رمز توکن"
286286
287 #: socialaccount/models.py:143
287 #: socialaccount/models.py:138
288288 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
289289 msgstr "\"oauth_token_secret\" (OAuth1) یا توکن رفرش (OAuth2)"
290290
291 #: socialaccount/models.py:145
291 #: socialaccount/models.py:140
292292 msgid "expires at"
293293 msgstr "انقضا در"
294294
295 #: socialaccount/models.py:149
295 #: socialaccount/models.py:144
296296 msgid "social application token"
297297 msgstr "توکن اپلیکشن"
298298
299 #: socialaccount/models.py:150
299 #: socialaccount/models.py:145
300300 msgid "social application tokens"
301301 msgstr "توکن اپلیکیشن‌ها"
302302
303 #: socialaccount/providers/douban/views.py:35
303 #: socialaccount/providers/douban/views.py:36
304304 msgid "Invalid profile data"
305305 msgstr "اطلاعات پروفایل اشتباه"
306306
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-08-29 16:33-0500\n"
10 "POT-Creation-Date: 2019-12-18 11:53-0600\n"
1111 "PO-Revision-Date: 2015-08-13 15:17+0300\n"
1212 "Last-Translator: Anonymous User <seppo.erviala@iki.fi>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
3636 msgid "Password must be a minimum of {0} characters."
3737 msgstr "Salasanan tulee olla vähintään {0} merkkiä pitkä."
3838
39 #: account/apps.py:8
39 #: account/apps.py:7
4040 msgid "Accounts"
4141 msgstr "Tili"
4242
43 #: account/forms.py:63 account/forms.py:400
43 #: account/forms.py:61 account/forms.py:398
4444 msgid "You must type the same password each time."
4545 msgstr "Salasanojen tulee olla samat."
4646
47 #: account/forms.py:93 account/forms.py:367 account/forms.py:478
47 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4848 msgid "Password"
4949 msgstr "Salasana"
5050
51 #: account/forms.py:94
51 #: account/forms.py:92
5252 msgid "Remember Me"
5353 msgstr "Muista minut"
5454
55 #: account/forms.py:100
55 #: account/forms.py:98
5656 msgid "This account is currently inactive."
5757 msgstr "Tämä tili on poistettu käytöstä."
5858
59 #: account/forms.py:103
59 #: account/forms.py:101
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:106
63 #: account/forms.py:104
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:115 account/forms.py:270 account/forms.py:428
68 #: account/forms.py:497
67 #: account/forms.py:113 account/forms.py:268 account/forms.py:426
68 #: account/forms.py:495
6969 msgid "E-mail address"
7070 msgstr "Sähköpostiosoite"
7171
72 #: account/forms.py:117 account/forms.py:303 account/forms.py:423
73 #: account/forms.py:492
72 #: account/forms.py:115 account/forms.py:301 account/forms.py:421
73 #: account/forms.py:490
7474 msgid "E-mail"
7575 msgstr "Sähköposti"
7676
77 #: account/forms.py:122 account/forms.py:125 account/forms.py:262
78 #: account/forms.py:266
77 #: account/forms.py:120 account/forms.py:123 account/forms.py:260
78 #: account/forms.py:264
7979 msgid "Username"
8080 msgstr "Käyttäjänimi"
8181
82 #: account/forms.py:132
82 #: account/forms.py:130
8383 msgid "Username or e-mail"
8484 msgstr "Käyttäjänimi tai sähköposti"
8585
86 #: account/forms.py:135
86 #: account/forms.py:133
8787 msgctxt "field label"
8888 msgid "Login"
8989 msgstr "Käyttäjätunnus"
9090
91 #: account/forms.py:294
91 #: account/forms.py:292
9292 #, fuzzy
9393 #| msgid "E-mail (optional)"
9494 msgid "E-mail (again)"
9595 msgstr "Sähköpostiosoite (valinnainen)"
9696
97 #: account/forms.py:298
97 #: account/forms.py:296
9898 #, fuzzy
9999 #| msgid "email confirmation"
100100 msgid "E-mail address confirmation"
101101 msgstr "sähköpostivarmistus"
102102
103 #: account/forms.py:306
103 #: account/forms.py:304
104104 msgid "E-mail (optional)"
105105 msgstr "Sähköpostiosoite (valinnainen)"
106106
107 #: account/forms.py:347
107 #: account/forms.py:345
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:370 account/forms.py:479
113 #: account/forms.py:368 account/forms.py:477
114114 msgid "Password (again)"
115115 msgstr "Salasana (uudestaan)"
116116
117 #: account/forms.py:434
117 #: account/forms.py:432
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:436
121 #: account/forms.py:434
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:458
125 #: account/forms.py:456
126126 msgid "Current Password"
127127 msgstr "Nykyinen salasana"
128128
129 #: account/forms.py:459 account/forms.py:548
129 #: account/forms.py:457 account/forms.py:546
130130 msgid "New Password"
131131 msgstr "Uusi salasana"
132132
133 #: account/forms.py:460 account/forms.py:549
133 #: account/forms.py:458 account/forms.py:547
134134 msgid "New Password (again)"
135135 msgstr "Uusi salasana (uudestaan)"
136136
137 #: account/forms.py:468
137 #: account/forms.py:466
138138 msgid "Please type your current password."
139139 msgstr "Ole hyvä ja anna nykyinen salasanasi."
140140
141 #: account/forms.py:506
141 #: account/forms.py:504
142142 msgid "The e-mail address is not assigned to any user account"
143143 msgstr "Sähköpostiosoite ei vastaa yhtäkään käyttäjätiliä."
144144
145 #: account/forms.py:570
145 #: account/forms.py:568
146146 msgid "The password reset token was invalid."
147147 msgstr "Salasanan uusimistarkiste ei kelpaa."
148148
149 #: account/models.py:23
149 #: account/models.py:21
150150 msgid "user"
151151 msgstr "käyttäjä"
152152
153 #: account/models.py:27 account/models.py:81
153 #: account/models.py:25 account/models.py:78
154154 msgid "e-mail address"
155155 msgstr "sähköpostiosoite"
156156
157 #: account/models.py:28
157 #: account/models.py:26
158158 msgid "verified"
159159 msgstr "vahvistettu"
160160
161 #: account/models.py:29
161 #: account/models.py:27
162162 msgid "primary"
163163 msgstr "ensisijainen"
164164
165 #: account/models.py:34
165 #: account/models.py:32
166166 msgid "email address"
167167 msgstr "sähköpostiosoite"
168168
169 #: account/models.py:35
169 #: account/models.py:33
170170 msgid "email addresses"
171171 msgstr "sähköpostiosoitteet"
172172
173 #: account/models.py:83
173 #: account/models.py:80
174174 msgid "created"
175175 msgstr "luotu"
176176
177 #: account/models.py:85
177 #: account/models.py:82
178178 msgid "sent"
179179 msgstr "lähetetty"
180180
181 #: account/models.py:86 socialaccount/models.py:58
181 #: account/models.py:83 socialaccount/models.py:55
182182 msgid "key"
183183 msgstr "avain"
184184
185 #: account/models.py:91
185 #: account/models.py:88
186186 msgid "email confirmation"
187187 msgstr "sähköpostivarmistus"
188188
189 #: account/models.py:92
189 #: account/models.py:89
190190 msgid "email confirmations"
191191 msgstr "sähköpostivarmistukset"
192192
193 #: socialaccount/adapter.py:27
193 #: socialaccount/adapter.py:26
194194 #, python-format
195195 msgid ""
196196 "An account already exists with this e-mail address. Please sign in to that "
199199 "Sähköpostiosoite on jo liitetty olemassaolevaan tiliin. Kirjaudu ensin "
200200 "kyseiseen tiliin ja liitä %s-tilisi vasta sitten."
201201
202 #: socialaccount/adapter.py:132
202 #: socialaccount/adapter.py:131
203203 msgid "Your account has no password set up."
204204 msgstr "Tilillesi ei ole asetettu salasanaa."
205205
206 #: socialaccount/adapter.py:139
206 #: socialaccount/adapter.py:138
207207 msgid "Your account has no verified e-mail address."
208208 msgstr "Tiliisi ei ole liitetty vahvistettua sähköpostiosoitetta."
209209
210 #: socialaccount/apps.py:8
210 #: socialaccount/apps.py:7
211211 msgid "Social Accounts"
212212 msgstr "Sosiaalisen median tilit"
213213
214 #: socialaccount/models.py:46 socialaccount/models.py:80
214 #: socialaccount/models.py:42 socialaccount/models.py:76
215215 msgid "provider"
216216 msgstr "tarjoaja"
217217
218 #: socialaccount/models.py:49
218 #: socialaccount/models.py:45
219219 msgid "name"
220220 msgstr "nimi"
221221
222 #: socialaccount/models.py:51
222 #: socialaccount/models.py:47
223223 msgid "client id"
224224 msgstr "asiakas id"
225225
226 #: socialaccount/models.py:53
226 #: socialaccount/models.py:49
227227 msgid "App ID, or consumer key"
228228 msgstr "Sovellus ID tai kuluttajan avain"
229229
230 #: socialaccount/models.py:54
230 #: socialaccount/models.py:50
231231 msgid "secret key"
232232 msgstr "salainen avain"
233233
234 #: socialaccount/models.py:56
234 #: socialaccount/models.py:53
235235 msgid "API secret, client secret, or consumer secret"
236236 msgstr "API:n, asiakkaan tai kuluttajan salaisuus"
237237
238 #: socialaccount/models.py:61
238 #: socialaccount/models.py:58
239239 msgid "Key"
240240 msgstr "Avain"
241241
242 #: socialaccount/models.py:69
242 #: socialaccount/models.py:66
243243 msgid "social application"
244244 msgstr "sosiaalinen applikaatio"
245245
246 #: socialaccount/models.py:70
246 #: socialaccount/models.py:67
247247 msgid "social applications"
248248 msgstr "sosiaaliset applikaatiot"
249249
250 #: socialaccount/models.py:99
250 #: socialaccount/models.py:95
251251 msgid "uid"
252252 msgstr "uid"
253253
254 #: socialaccount/models.py:101
254 #: socialaccount/models.py:97
255255 msgid "last login"
256256 msgstr "viimeisin sisäänkirjautuminen"
257257
258 #: socialaccount/models.py:103
258 #: socialaccount/models.py:99
259259 msgid "date joined"
260260 msgstr "liittymispäivämäärä"
261261
262 #: socialaccount/models.py:105
262 #: socialaccount/models.py:101
263263 msgid "extra data"
264264 msgstr "lisätiedot"
265265
266 #: socialaccount/models.py:109
266 #: socialaccount/models.py:105
267267 msgid "social account"
268268 msgstr "sosiaalisen median tili"
269269
270 #: socialaccount/models.py:110
270 #: socialaccount/models.py:106
271271 msgid "social accounts"
272272 msgstr "sosiaalisen median tilit"
273273
274 #: socialaccount/models.py:131
275 msgid "token"
276 msgstr ""
277
278 #: socialaccount/models.py:133
279 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
280 msgstr ""
281
274282 #: socialaccount/models.py:136
275 msgid "token"
283 msgid "token secret"
276284 msgstr ""
277285
278286 #: socialaccount/models.py:138
279 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
280 msgstr ""
281
282 #: socialaccount/models.py:141
283 msgid "token secret"
284 msgstr ""
285
286 #: socialaccount/models.py:143
287287 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
288288 msgstr ""
289289
290 #: socialaccount/models.py:145
290 #: socialaccount/models.py:140
291291 msgid "expires at"
292292 msgstr "vanhenee"
293293
294 #: socialaccount/models.py:149
294 #: socialaccount/models.py:144
295295 msgid "social application token"
296296 msgstr ""
297297
298 #: socialaccount/models.py:150
298 #: socialaccount/models.py:145
299299 msgid "social application tokens"
300300 msgstr ""
301301
302 #: socialaccount/providers/douban/views.py:35
302 #: socialaccount/providers/douban/views.py:36
303303 msgid "Invalid profile data"
304304 msgstr ""
305305
99 msgstr ""
1010 "Project-Id-Version: django-allauth\n"
1111 "Report-Msgid-Bugs-To: \n"
12 "POT-Creation-Date: 2019-08-29 16:33-0500\n"
12 "POT-Creation-Date: 2019-12-18 11:53-0600\n"
1313 "PO-Revision-Date: 2019-08-12 15:14+0200\n"
1414 "Last-Translator: Gilou <contact+dev@gilouweb.com>\n"
1515 "Language-Team: français <>\n"
3838 msgid "Password must be a minimum of {0} characters."
3939 msgstr "Le mot de passe doit contenir au minimum {0} caractères."
4040
41 #: account/apps.py:8
41 #: account/apps.py:7
4242 msgid "Accounts"
4343 msgstr "Comptes"
4444
45 #: account/forms.py:63 account/forms.py:400
45 #: account/forms.py:61 account/forms.py:398
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:93 account/forms.py:367 account/forms.py:478
49 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
5050 msgid "Password"
5151 msgstr "Mot de passe"
5252
53 #: account/forms.py:94
53 #: account/forms.py:92
5454 msgid "Remember Me"
5555 msgstr "Se souvenir de moi"
5656
57 #: account/forms.py:100
57 #: account/forms.py:98
5858 msgid "This account is currently inactive."
5959 msgstr "Ce compte est actuellement désactivé."
6060
61 #: account/forms.py:103
61 #: account/forms.py:101
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:106
65 #: account/forms.py:104
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:115 account/forms.py:270 account/forms.py:428
70 #: account/forms.py:497
69 #: account/forms.py:113 account/forms.py:268 account/forms.py:426
70 #: account/forms.py:495
7171 msgid "E-mail address"
7272 msgstr "Adresse e-mail"
7373
74 #: account/forms.py:117 account/forms.py:303 account/forms.py:423
75 #: account/forms.py:492
74 #: account/forms.py:115 account/forms.py:301 account/forms.py:421
75 #: account/forms.py:490
7676 msgid "E-mail"
7777 msgstr "E-mail"
7878
79 #: account/forms.py:122 account/forms.py:125 account/forms.py:262
80 #: account/forms.py:266
79 #: account/forms.py:120 account/forms.py:123 account/forms.py:260
80 #: account/forms.py:264
8181 msgid "Username"
8282 msgstr "Pseudonyme"
8383
84 #: account/forms.py:132
84 #: account/forms.py:130
8585 msgid "Username or e-mail"
8686 msgstr "Pseudonyme ou e-mail"
8787
88 #: account/forms.py:135
88 #: account/forms.py:133
8989 msgctxt "field label"
9090 msgid "Login"
9191 msgstr "Identifiant"
9292
93 #: account/forms.py:294
93 #: account/forms.py:292
9494 msgid "E-mail (again)"
9595 msgstr "E-mail (confirmation)"
9696
97 #: account/forms.py:298
97 #: account/forms.py:296
9898 msgid "E-mail address confirmation"
9999 msgstr "Confirmation d'adresse e-mail"
100100
101 #: account/forms.py:306
101 #: account/forms.py:304
102102 msgid "E-mail (optional)"
103103 msgstr "E-mail (facultatif)"
104104
105 #: account/forms.py:347
105 #: account/forms.py:345
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:370 account/forms.py:479
109 #: account/forms.py:368 account/forms.py:477
110110 msgid "Password (again)"
111111 msgstr "Mot de passe (confirmation)"
112112
113 #: account/forms.py:434
113 #: account/forms.py:432
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:436
117 #: account/forms.py:434
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:458
121 #: account/forms.py:456
122122 msgid "Current Password"
123123 msgstr "Mot de passe actuel"
124124
125 #: account/forms.py:459 account/forms.py:548
125 #: account/forms.py:457 account/forms.py:546
126126 msgid "New Password"
127127 msgstr "Nouveau mot de passe"
128128
129 #: account/forms.py:460 account/forms.py:549
129 #: account/forms.py:458 account/forms.py:547
130130 msgid "New Password (again)"
131131 msgstr "Nouveau mot de passe (confirmation)"
132132
133 #: account/forms.py:468
133 #: account/forms.py:466
134134 msgid "Please type your current password."
135135 msgstr "Merci d'indiquer votre mot de passe actuel."
136136
137 #: account/forms.py:506
137 #: account/forms.py:504
138138 msgid "The e-mail address is not assigned to any user account"
139139 msgstr "Cette adresse e-mail n'est pas associée à un compte utilisateur"
140140
141 #: account/forms.py:570
141 #: account/forms.py:568
142142 msgid "The password reset token was invalid."
143143 msgstr "Le jeton de réinitialisation de mot de passe est invalide."
144144
145 #: account/models.py:23
145 #: account/models.py:21
146146 msgid "user"
147147 msgstr "utilisateur"
148148
149 #: account/models.py:27 account/models.py:81
149 #: account/models.py:25 account/models.py:78
150150 msgid "e-mail address"
151151 msgstr "adresse e-mail"
152152
153 #: account/models.py:28
153 #: account/models.py:26
154154 msgid "verified"
155155 msgstr "vérifié"
156156
157 #: account/models.py:29
157 #: account/models.py:27
158158 msgid "primary"
159159 msgstr "principale"
160160
161 #: account/models.py:34
161 #: account/models.py:32
162162 msgid "email address"
163163 msgstr "adresse e-mail"
164164
165 #: account/models.py:35
165 #: account/models.py:33
166166 msgid "email addresses"
167167 msgstr "adresses e-mail"
168168
169 #: account/models.py:83
169 #: account/models.py:80
170170 msgid "created"
171171 msgstr "créé"
172172
173 #: account/models.py:85
173 #: account/models.py:82
174174 msgid "sent"
175175 msgstr "envoyé"
176176
177 #: account/models.py:86 socialaccount/models.py:58
177 #: account/models.py:83 socialaccount/models.py:55
178178 msgid "key"
179179 msgstr "clé"
180180
181 #: account/models.py:91
181 #: account/models.py:88
182182 msgid "email confirmation"
183183 msgstr "confirmation par e-mail"
184184
185 #: account/models.py:92
185 #: account/models.py:89
186186 msgid "email confirmations"
187187 msgstr "confirmations par e-mail"
188188
189 #: socialaccount/adapter.py:27
189 #: socialaccount/adapter.py:26
190190 #, python-format
191191 msgid ""
192192 "An account already exists with this e-mail address. Please sign in to that "
195195 "Un compte existe déjà avec cette adresse e-mail. Merci de vous connecter au "
196196 "préalable avec ce compte, et ensuite connecter votre compte %s."
197197
198 #: socialaccount/adapter.py:132
198 #: socialaccount/adapter.py:131
199199 msgid "Your account has no password set up."
200200 msgstr "Vous devez d'abord définir le mot de passe de votre compte."
201201
202 #: socialaccount/adapter.py:139
202 #: socialaccount/adapter.py:138
203203 msgid "Your account has no verified e-mail address."
204204 msgstr "Vous devez d'abord associer une adresse e-mail à votre compte."
205205
206 #: socialaccount/apps.py:8
206 #: socialaccount/apps.py:7
207207 msgid "Social Accounts"
208208 msgstr "Comptes Sociaux"
209209
210 #: socialaccount/models.py:46 socialaccount/models.py:80
210 #: socialaccount/models.py:42 socialaccount/models.py:76
211211 msgid "provider"
212212 msgstr "fournisseur"
213213
214 #: socialaccount/models.py:49
214 #: socialaccount/models.py:45
215215 msgid "name"
216216 msgstr "nom"
217217
218 #: socialaccount/models.py:51
218 #: socialaccount/models.py:47
219219 msgid "client id"
220220 msgstr "id client"
221221
222 #: socialaccount/models.py:53
222 #: socialaccount/models.py:49
223223 msgid "App ID, or consumer key"
224224 msgstr "ID de l'app ou clé de l'utilisateur"
225225
226 #: socialaccount/models.py:54
226 #: socialaccount/models.py:50
227227 msgid "secret key"
228228 msgstr "clé secrète"
229229
230 #: socialaccount/models.py:56
230 #: socialaccount/models.py:53
231231 msgid "API secret, client secret, or consumer secret"
232232 msgstr "Secret de l'API, secret du client, ou secret de l'utilisateur"
233233
234 #: socialaccount/models.py:61
234 #: socialaccount/models.py:58
235235 msgid "Key"
236236 msgstr "Clé"
237237
238 #: socialaccount/models.py:69
238 #: socialaccount/models.py:66
239239 msgid "social application"
240240 msgstr "application sociale"
241241
242 #: socialaccount/models.py:70
242 #: socialaccount/models.py:67
243243 msgid "social applications"
244244 msgstr "applications sociales"
245245
246 #: socialaccount/models.py:99
246 #: socialaccount/models.py:95
247247 msgid "uid"
248248 msgstr "uid"
249249
250 #: socialaccount/models.py:101
250 #: socialaccount/models.py:97
251251 msgid "last login"
252252 msgstr "dernière identification"
253253
254 #: socialaccount/models.py:103
254 #: socialaccount/models.py:99
255255 msgid "date joined"
256256 msgstr "date d'inscription"
257257
258 #: socialaccount/models.py:105
258 #: socialaccount/models.py:101
259259 msgid "extra data"
260260 msgstr "données supplémentaires"
261261
262 #: socialaccount/models.py:109
262 #: socialaccount/models.py:105
263263 msgid "social account"
264264 msgstr "compte social"
265265
266 #: socialaccount/models.py:110
266 #: socialaccount/models.py:106
267267 msgid "social accounts"
268268 msgstr "comptes sociaux"
269269
270 #: socialaccount/models.py:136
270 #: socialaccount/models.py:131
271271 msgid "token"
272272 msgstr "jeton"
273273
274 #: socialaccount/models.py:138
274 #: socialaccount/models.py:133
275275 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
276276 msgstr "\"oauth_token\" (OAuth1) ou jeton d'accès (OAuth2)"
277277
278 #: socialaccount/models.py:141
278 #: socialaccount/models.py:136
279279 msgid "token secret"
280280 msgstr "jeton secret"
281281
282 #: socialaccount/models.py:143
282 #: socialaccount/models.py:138
283283 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
284284 msgstr "\"oauth_token_secret\" (OAuth1) ou jeton d'actualisation (OAuth2)"
285285
286 #: socialaccount/models.py:145
286 #: socialaccount/models.py:140
287287 msgid "expires at"
288288 msgstr "expire le"
289289
290 #: socialaccount/models.py:149
290 #: socialaccount/models.py:144
291291 msgid "social application token"
292292 msgstr "jeton de l'application sociale"
293293
294 #: socialaccount/models.py:150
294 #: socialaccount/models.py:145
295295 msgid "social application tokens"
296296 msgstr "jetons de l'application sociale"
297297
298 #: socialaccount/providers/douban/views.py:35
298 #: socialaccount/providers/douban/views.py:36
299299 msgid "Invalid profile data"
300300 msgstr "Données de profil incorrectes"
301301
66 msgstr ""
77 "Project-Id-Version: 0.1\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2019-08-29 16:33-0500\n"
9 "POT-Creation-Date: 2019-12-18 11:53-0600\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"
3434 msgid "Password must be a minimum of {0} characters."
3535 msgstr "הסיסמה חייבת להיות באורך של לפחות {0} תווים."
3636
37 #: account/apps.py:8
37 #: account/apps.py:7
3838 msgid "Accounts"
3939 msgstr "חשבונות"
4040
41 #: account/forms.py:63 account/forms.py:400
41 #: account/forms.py:61 account/forms.py:398
4242 msgid "You must type the same password each time."
4343 msgstr "יש להזין את אותה הסיסמה פעמיים."
4444
45 #: account/forms.py:93 account/forms.py:367 account/forms.py:478
45 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4646 msgid "Password"
4747 msgstr "סיסמה"
4848
49 #: account/forms.py:94
49 #: account/forms.py:92
5050 msgid "Remember Me"
5151 msgstr "זכור אותי"
5252
53 #: account/forms.py:100
53 #: account/forms.py:98
5454 msgid "This account is currently inactive."
5555 msgstr "חשבון זה אינו פעיל כעת."
5656
57 #: account/forms.py:103
57 #: account/forms.py:101
5858 msgid "The e-mail address and/or password you specified are not correct."
5959 msgstr "כתובת האימייל ו/או הסיסמה אינם נכונים."
6060
61 #: account/forms.py:106
61 #: account/forms.py:104
6262 msgid "The username and/or password you specified are not correct."
6363 msgstr "שם המשתמש ו/או הסיסמה אינם נכונים."
6464
65 #: account/forms.py:115 account/forms.py:270 account/forms.py:428
66 #: account/forms.py:497
65 #: account/forms.py:113 account/forms.py:268 account/forms.py:426
66 #: account/forms.py:495
6767 msgid "E-mail address"
6868 msgstr "כתובת אימייל"
6969
70 #: account/forms.py:117 account/forms.py:303 account/forms.py:423
71 #: account/forms.py:492
70 #: account/forms.py:115 account/forms.py:301 account/forms.py:421
71 #: account/forms.py:490
7272 msgid "E-mail"
7373 msgstr "אימייל"
7474
75 #: account/forms.py:122 account/forms.py:125 account/forms.py:262
76 #: account/forms.py:266
75 #: account/forms.py:120 account/forms.py:123 account/forms.py:260
76 #: account/forms.py:264
7777 msgid "Username"
7878 msgstr "שם משתמש"
7979
80 #: account/forms.py:132
80 #: account/forms.py:130
8181 msgid "Username or e-mail"
8282 msgstr "שם משתמש או אימייל"
8383
84 #: account/forms.py:135
84 #: account/forms.py:133
8585 msgctxt "field label"
8686 msgid "Login"
8787 msgstr "כניסה"
8888
89 #: account/forms.py:294
89 #: account/forms.py:292
9090 msgid "E-mail (again)"
9191 msgstr "אימייל (שוב)"
9292
93 #: account/forms.py:298
93 #: account/forms.py:296
9494 msgid "E-mail address confirmation"
9595 msgstr "אישור כתובת אימייל"
9696
97 #: account/forms.py:306
97 #: account/forms.py:304
9898 msgid "E-mail (optional)"
9999 msgstr "אימייל (לא חובה)"
100100
101 #: account/forms.py:347
101 #: account/forms.py:345
102102 msgid "You must type the same email each time."
103103 msgstr "יש להזין את אותו האימייל פעמיים."
104104
105 #: account/forms.py:370 account/forms.py:479
105 #: account/forms.py:368 account/forms.py:477
106106 msgid "Password (again)"
107107 msgstr "סיסמה (שוב)"
108108
109 #: account/forms.py:434
109 #: account/forms.py:432
110110 msgid "This e-mail address is already associated with this account."
111111 msgstr "כתובת אימייל זו כבר משויכת לחשבון זה."
112112
113 #: account/forms.py:436
113 #: account/forms.py:434
114114 msgid "This e-mail address is already associated with another account."
115115 msgstr "כתובת אימייל זו כבר משויכת לחשבון אחר."
116116
117 #: account/forms.py:458
117 #: account/forms.py:456
118118 msgid "Current Password"
119119 msgstr "סיסמה נוכחית"
120120
121 #: account/forms.py:459 account/forms.py:548
121 #: account/forms.py:457 account/forms.py:546
122122 msgid "New Password"
123123 msgstr "סיסמה חדשה"
124124
125 #: account/forms.py:460 account/forms.py:549
125 #: account/forms.py:458 account/forms.py:547
126126 msgid "New Password (again)"
127127 msgstr "סיסמה חדשה (שוב)"
128128
129 #: account/forms.py:468
129 #: account/forms.py:466
130130 msgid "Please type your current password."
131131 msgstr "אנא הזן את הסיסמה הנוכחית."
132132
133 #: account/forms.py:506
133 #: account/forms.py:504
134134 msgid "The e-mail address is not assigned to any user account"
135135 msgstr "כתובת אימייל זו אינה משויכת לאף חשבון"
136136
137 #: account/forms.py:570
137 #: account/forms.py:568
138138 msgid "The password reset token was invalid."
139139 msgstr "אסימון איפוס הסיסמה אינו תקין."
140140
141 #: account/models.py:23
141 #: account/models.py:21
142142 msgid "user"
143143 msgstr "משתמש"
144144
145 #: account/models.py:27 account/models.py:81
145 #: account/models.py:25 account/models.py:78
146146 msgid "e-mail address"
147147 msgstr "כתובת אימייל"
148148
149 #: account/models.py:28
149 #: account/models.py:26
150150 msgid "verified"
151151 msgstr "מאומת"
152152
153 #: account/models.py:29
153 #: account/models.py:27
154154 msgid "primary"
155155 msgstr "ראשי"
156156
157 #: account/models.py:34
157 #: account/models.py:32
158158 msgid "email address"
159159 msgstr "כתובת אימייל"
160160
161 #: account/models.py:35
161 #: account/models.py:33
162162 msgid "email addresses"
163163 msgstr "כתובות אימייל"
164164
165 #: account/models.py:83
165 #: account/models.py:80
166166 msgid "created"
167167 msgstr "נוצר"
168168
169 #: account/models.py:85
169 #: account/models.py:82
170170 msgid "sent"
171171 msgstr "נשלח"
172172
173 #: account/models.py:86 socialaccount/models.py:58
173 #: account/models.py:83 socialaccount/models.py:55
174174 msgid "key"
175175 msgstr "מפתח"
176176
177 #: account/models.py:91
177 #: account/models.py:88
178178 msgid "email confirmation"
179179 msgstr "אישור באימייל"
180180
181 #: account/models.py:92
181 #: account/models.py:89
182182 msgid "email confirmations"
183183 msgstr "אישורים בדואל"
184184
185 #: socialaccount/adapter.py:27
185 #: socialaccount/adapter.py:26
186186 #, python-format
187187 msgid ""
188188 "An account already exists with this e-mail address. Please sign in to that "
191191 "קיים כבר חשבון עם כתובת אימייל זו. אנא התחבר לחשבון זה, ואז קשר את חשבון %s "
192192 "שלך."
193193
194 #: socialaccount/adapter.py:132
194 #: socialaccount/adapter.py:131
195195 msgid "Your account has no password set up."
196196 msgstr "לא נבחרה סיסמה לחשבונך."
197197
198 #: socialaccount/adapter.py:139
198 #: socialaccount/adapter.py:138
199199 msgid "Your account has no verified e-mail address."
200200 msgstr "לא נמצאו כתובות אימייל מאומתות לחשבונך."
201201
202 #: socialaccount/apps.py:8
202 #: socialaccount/apps.py:7
203203 msgid "Social Accounts"
204204 msgstr "חשבונות חברתיים"
205205
206 #: socialaccount/models.py:46 socialaccount/models.py:80
206 #: socialaccount/models.py:42 socialaccount/models.py:76
207207 msgid "provider"
208208 msgstr ""
209209
210 #: socialaccount/models.py:49
210 #: socialaccount/models.py:45
211211 msgid "name"
212212 msgstr "שם"
213213
214 #: socialaccount/models.py:51
214 #: socialaccount/models.py:47
215215 msgid "client id"
216216 msgstr ""
217217
218 #: socialaccount/models.py:49
219 msgid "App ID, or consumer key"
220 msgstr ""
221
222 #: socialaccount/models.py:50
223 msgid "secret key"
224 msgstr ""
225
218226 #: socialaccount/models.py:53
219 msgid "App ID, or consumer key"
220 msgstr ""
221
222 #: socialaccount/models.py:54
223 msgid "secret key"
224 msgstr ""
225
226 #: socialaccount/models.py:56
227227 msgid "API secret, client secret, or consumer secret"
228228 msgstr ""
229229
230 #: socialaccount/models.py:61
230 #: socialaccount/models.py:58
231231 msgid "Key"
232232 msgstr ""
233233
234 #: socialaccount/models.py:69
234 #: socialaccount/models.py:66
235235 msgid "social application"
236236 msgstr ""
237237
238 #: socialaccount/models.py:70
238 #: socialaccount/models.py:67
239239 msgid "social applications"
240240 msgstr ""
241241
242 #: socialaccount/models.py:99
242 #: socialaccount/models.py:95
243243 msgid "uid"
244244 msgstr ""
245245
246 #: socialaccount/models.py:101
246 #: socialaccount/models.py:97
247247 msgid "last login"
248248 msgstr "התחברות אחרונה"
249249
250 #: socialaccount/models.py:103
250 #: socialaccount/models.py:99
251251 msgid "date joined"
252252 msgstr "תאריך הצטרפות"
253253
254 #: socialaccount/models.py:101
255 msgid "extra data"
256 msgstr ""
257
254258 #: socialaccount/models.py:105
255 msgid "extra data"
256 msgstr ""
257
258 #: socialaccount/models.py:109
259259 msgid "social account"
260260 msgstr "חשבון חברתי"
261261
262 #: socialaccount/models.py:110
262 #: socialaccount/models.py:106
263263 msgid "social accounts"
264264 msgstr "חשבונות חברתיים"
265265
266 #: socialaccount/models.py:131
267 msgid "token"
268 msgstr ""
269
270 #: socialaccount/models.py:133
271 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
272 msgstr ""
273
266274 #: socialaccount/models.py:136
267 msgid "token"
275 msgid "token secret"
268276 msgstr ""
269277
270278 #: socialaccount/models.py:138
271 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
272 msgstr ""
273
274 #: socialaccount/models.py:141
275 msgid "token secret"
276 msgstr ""
277
278 #: socialaccount/models.py:143
279279 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
280280 msgstr ""
281281
282 #: socialaccount/models.py:145
282 #: socialaccount/models.py:140
283283 msgid "expires at"
284284 msgstr "פג תוקף בתאריך"
285285
286 #: socialaccount/models.py:149
286 #: socialaccount/models.py:144
287287 msgid "social application token"
288288 msgstr ""
289289
290 #: socialaccount/models.py:150
290 #: socialaccount/models.py:145
291291 msgid "social application tokens"
292292 msgstr ""
293293
294 #: socialaccount/providers/douban/views.py:35
294 #: socialaccount/providers/douban/views.py:36
295295 msgid "Invalid profile data"
296296 msgstr ""
297297
99 msgstr ""
1010 "Project-Id-Version: PACKAGE VERSION\n"
1111 "Report-Msgid-Bugs-To: \n"
12 "POT-Creation-Date: 2019-08-29 16:33-0500\n"
12 "POT-Creation-Date: 2019-12-18 11:53-0600\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"
3939 msgid "Password must be a minimum of {0} characters."
4040 msgstr "Lozinka treba imati najmanje {0} znakova."
4141
42 #: account/apps.py:8
42 #: account/apps.py:7
4343 msgid "Accounts"
4444 msgstr "Korisnički računi"
4545
46 #: account/forms.py:63 account/forms.py:400
46 #: account/forms.py:61 account/forms.py:398
4747 msgid "You must type the same password each time."
4848 msgstr "Potrebno je upisati istu lozinku svaki put."
4949
50 #: account/forms.py:93 account/forms.py:367 account/forms.py:478
50 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
5151 msgid "Password"
5252 msgstr "Lozinka"
5353
54 #: account/forms.py:94
54 #: account/forms.py:92
5555 msgid "Remember Me"
5656 msgstr "Zapamti me"
5757
58 #: account/forms.py:100
58 #: account/forms.py:98
5959 msgid "This account is currently inactive."
6060 msgstr "Ovaj korisnički račun je privremeno neaktivan."
6161
62 #: account/forms.py:103
62 #: account/forms.py:101
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:106
66 #: account/forms.py:104
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:115 account/forms.py:270 account/forms.py:428
71 #: account/forms.py:497
70 #: account/forms.py:113 account/forms.py:268 account/forms.py:426
71 #: account/forms.py:495
7272 msgid "E-mail address"
7373 msgstr "E-mail adresa"
7474
75 #: account/forms.py:117 account/forms.py:303 account/forms.py:423
76 #: account/forms.py:492
75 #: account/forms.py:115 account/forms.py:301 account/forms.py:421
76 #: account/forms.py:490
7777 msgid "E-mail"
7878 msgstr "E-mail"
7979
80 #: account/forms.py:122 account/forms.py:125 account/forms.py:262
81 #: account/forms.py:266
80 #: account/forms.py:120 account/forms.py:123 account/forms.py:260
81 #: account/forms.py:264
8282 msgid "Username"
8383 msgstr "Korisničko ime"
8484
85 #: account/forms.py:132
85 #: account/forms.py:130
8686 msgid "Username or e-mail"
8787 msgstr "Korisničko ime ili e-mail"
8888
89 #: account/forms.py:135
89 #: account/forms.py:133
9090 msgctxt "field label"
9191 msgid "Login"
9292 msgstr "Prijava"
9393
94 #: account/forms.py:294
94 #: account/forms.py:292
9595 #, fuzzy
9696 #| msgid "E-mail (optional)"
9797 msgid "E-mail (again)"
9898 msgstr "E-mail (neobavezno)"
9999
100 #: account/forms.py:298
100 #: account/forms.py:296
101101 #, fuzzy
102102 #| msgid "email confirmation"
103103 msgid "E-mail address confirmation"
104104 msgstr "E-mail potvrda"
105105
106 #: account/forms.py:306
106 #: account/forms.py:304
107107 msgid "E-mail (optional)"
108108 msgstr "E-mail (neobavezno)"
109109
110 #: account/forms.py:347
110 #: account/forms.py:345
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:370 account/forms.py:479
116 #: account/forms.py:368 account/forms.py:477
117117 msgid "Password (again)"
118118 msgstr "Lozinka (ponovno)"
119119
120 #: account/forms.py:434
120 #: account/forms.py:432
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:436
124 #: account/forms.py:434
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:458
128 #: account/forms.py:456
129129 msgid "Current Password"
130130 msgstr "Trenutna lozinka"
131131
132 #: account/forms.py:459 account/forms.py:548
132 #: account/forms.py:457 account/forms.py:546
133133 msgid "New Password"
134134 msgstr "Nova lozinka"
135135
136 #: account/forms.py:460 account/forms.py:549
136 #: account/forms.py:458 account/forms.py:547
137137 msgid "New Password (again)"
138138 msgstr "Nova lozinka (ponovno)"
139139
140 #: account/forms.py:468
140 #: account/forms.py:466
141141 msgid "Please type your current password."
142142 msgstr "Molimo unesite trenutnu lozinku."
143143
144 #: account/forms.py:506
144 #: account/forms.py:504
145145 msgid "The e-mail address is not assigned to any user account"
146146 msgstr "Upisana e-mail adresa nije dodijeljena niti jednom korisničkom računu"
147147
148 #: account/forms.py:570
148 #: account/forms.py:568
149149 msgid "The password reset token was invalid."
150150 msgstr ""
151151
152 #: account/models.py:23
152 #: account/models.py:21
153153 msgid "user"
154154 msgstr "korisnik"
155155
156 #: account/models.py:27 account/models.py:81
156 #: account/models.py:25 account/models.py:78
157157 msgid "e-mail address"
158158 msgstr "e-mail adresa"
159159
160 #: account/models.py:28
160 #: account/models.py:26
161161 msgid "verified"
162162 msgstr "potvrđena"
163163
164 #: account/models.py:29
164 #: account/models.py:27
165165 msgid "primary"
166166 msgstr "primarna"
167167
168 #: account/models.py:34
168 #: account/models.py:32
169169 msgid "email address"
170170 msgstr "E-mail adresa"
171171
172 #: account/models.py:35
172 #: account/models.py:33
173173 msgid "email addresses"
174174 msgstr "E-mail adrese"
175175
176 #: account/models.py:83
176 #: account/models.py:80
177177 msgid "created"
178178 msgstr ""
179179
180 #: account/models.py:85
180 #: account/models.py:82
181181 msgid "sent"
182182 msgstr ""
183183
184 #: account/models.py:86 socialaccount/models.py:58
184 #: account/models.py:83 socialaccount/models.py:55
185185 msgid "key"
186186 msgstr ""
187187
188 #: account/models.py:91
188 #: account/models.py:88
189189 msgid "email confirmation"
190190 msgstr "E-mail potvrda"
191191
192 #: account/models.py:92
192 #: account/models.py:89
193193 msgid "email confirmations"
194194 msgstr "E-mail potvrde"
195195
196 #: socialaccount/adapter.py:27
196 #: socialaccount/adapter.py:26
197197 #, python-format
198198 msgid ""
199199 "An account already exists with this e-mail address. Please sign in to that "
202202 "Korisnički račun s ovom e-mail adresom već postoji. Molimo da se prvo "
203203 "ulogirate pod tim korisničkim računom i spojite svoj %s račun"
204204
205 #: socialaccount/adapter.py:132
205 #: socialaccount/adapter.py:131
206206 msgid "Your account has no password set up."
207207 msgstr "Vaš korisnički račun nema postavljenu lozinku."
208208
209 #: socialaccount/adapter.py:139
209 #: socialaccount/adapter.py:138
210210 msgid "Your account has no verified e-mail address."
211211 msgstr "Vaš korisnički račun nema potvrđenu e-mail adresu."
212212
213 #: socialaccount/apps.py:8
213 #: socialaccount/apps.py:7
214214 msgid "Social Accounts"
215215 msgstr "Korisnički računi"
216216
217 #: socialaccount/models.py:46 socialaccount/models.py:80
217 #: socialaccount/models.py:42 socialaccount/models.py:76
218218 msgid "provider"
219219 msgstr ""
220220
221 #: socialaccount/models.py:49
221 #: socialaccount/models.py:45
222222 msgid "name"
223223 msgstr "naziv"
224224
225 #: socialaccount/models.py:51
225 #: socialaccount/models.py:47
226226 msgid "client id"
227227 msgstr ""
228228
229 #: socialaccount/models.py:49
230 msgid "App ID, or consumer key"
231 msgstr ""
232
233 #: socialaccount/models.py:50
234 msgid "secret key"
235 msgstr ""
236
229237 #: socialaccount/models.py:53
230 msgid "App ID, or consumer key"
231 msgstr ""
232
233 #: socialaccount/models.py:54
234 msgid "secret key"
235 msgstr ""
236
237 #: socialaccount/models.py:56
238238 msgid "API secret, client secret, or consumer secret"
239239 msgstr ""
240240
241 #: socialaccount/models.py:61
241 #: socialaccount/models.py:58
242242 msgid "Key"
243243 msgstr ""
244244
245 #: socialaccount/models.py:69
245 #: socialaccount/models.py:66
246246 msgid "social application"
247247 msgstr ""
248248
249 #: socialaccount/models.py:70
249 #: socialaccount/models.py:67
250250 msgid "social applications"
251251 msgstr ""
252252
253 #: socialaccount/models.py:95
254 msgid "uid"
255 msgstr ""
256
257 #: socialaccount/models.py:97
258 msgid "last login"
259 msgstr ""
260
253261 #: socialaccount/models.py:99
254 msgid "uid"
262 msgid "date joined"
255263 msgstr ""
256264
257265 #: socialaccount/models.py:101
258 msgid "last login"
259 msgstr ""
260
261 #: socialaccount/models.py:103
262 msgid "date joined"
266 msgid "extra data"
263267 msgstr ""
264268
265269 #: socialaccount/models.py:105
266 msgid "extra data"
267 msgstr ""
268
269 #: socialaccount/models.py:109
270270 msgid "social account"
271271 msgstr ""
272272
273 #: socialaccount/models.py:110
273 #: socialaccount/models.py:106
274274 msgid "social accounts"
275275 msgstr ""
276276
277 #: socialaccount/models.py:131
278 msgid "token"
279 msgstr ""
280
281 #: socialaccount/models.py:133
282 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
283 msgstr ""
284
277285 #: socialaccount/models.py:136
278 msgid "token"
286 msgid "token secret"
279287 msgstr ""
280288
281289 #: socialaccount/models.py:138
282 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
283 msgstr ""
284
285 #: socialaccount/models.py:141
286 msgid "token secret"
287 msgstr ""
288
289 #: socialaccount/models.py:143
290290 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
291291 msgstr ""
292292
293 #: socialaccount/models.py:140
294 msgid "expires at"
295 msgstr ""
296
297 #: socialaccount/models.py:144
298 msgid "social application token"
299 msgstr ""
300
293301 #: socialaccount/models.py:145
294 msgid "expires at"
295 msgstr ""
296
297 #: socialaccount/models.py:149
298 msgid "social application token"
299 msgstr ""
300
301 #: socialaccount/models.py:150
302302 msgid "social application tokens"
303303 msgstr ""
304304
305 #: socialaccount/providers/douban/views.py:35
305 #: socialaccount/providers/douban/views.py:36
306306 msgid "Invalid profile data"
307307 msgstr ""
308308
66 msgstr ""
77 "Project-Id-Version: \n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2019-08-29 16:33-0500\n"
9 "POT-Creation-Date: 2019-12-18 11:53-0600\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"
3333 msgid "Password must be a minimum of {0} characters."
3434 msgstr "A jelszónak minimum {0} hosszúnak kell lennnie."
3535
36 #: account/apps.py:8
36 #: account/apps.py:7
3737 msgid "Accounts"
3838 msgstr "Felhasználók"
3939
40 #: account/forms.py:63 account/forms.py:400
40 #: account/forms.py:61 account/forms.py:398
4141 msgid "You must type the same password each time."
4242 msgstr "Ugyanazt a jelszót kell megadni mindannyiszor."
4343
44 #: account/forms.py:93 account/forms.py:367 account/forms.py:478
44 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4545 msgid "Password"
4646 msgstr "Jelszó"
4747
48 #: account/forms.py:94
48 #: account/forms.py:92
4949 msgid "Remember Me"
5050 msgstr "Emlékezz rám"
5151
52 #: account/forms.py:100
52 #: account/forms.py:98
5353 msgid "This account is currently inactive."
5454 msgstr "A felhasználó jelenleg nem aktív."
5555
56 #: account/forms.py:103
56 #: account/forms.py:101
5757 msgid "The e-mail address and/or password you specified are not correct."
5858 msgstr "A megadott email vagy a jelszó hibás."
5959
60 #: account/forms.py:106
60 #: account/forms.py:104
6161 msgid "The username and/or password you specified are not correct."
6262 msgstr "A megadott felhasználó vagy a jelszó hibás."
6363
64 #: account/forms.py:115 account/forms.py:270 account/forms.py:428
65 #: account/forms.py:497
64 #: account/forms.py:113 account/forms.py:268 account/forms.py:426
65 #: account/forms.py:495
6666 msgid "E-mail address"
6767 msgstr "Email"
6868
69 #: account/forms.py:117 account/forms.py:303 account/forms.py:423
70 #: account/forms.py:492
69 #: account/forms.py:115 account/forms.py:301 account/forms.py:421
70 #: account/forms.py:490
7171 msgid "E-mail"
7272 msgstr "Email"
7373
74 #: account/forms.py:122 account/forms.py:125 account/forms.py:262
75 #: account/forms.py:266
74 #: account/forms.py:120 account/forms.py:123 account/forms.py:260
75 #: account/forms.py:264
7676 msgid "Username"
7777 msgstr "Felhasználó azonosító"
7878
79 #: account/forms.py:132
79 #: account/forms.py:130
8080 msgid "Username or e-mail"
8181 msgstr "Felhasználó azonosító vagy email"
8282
83 #: account/forms.py:135
83 #: account/forms.py:133
8484 msgctxt "field label"
8585 msgid "Login"
8686 msgstr "Bejelentkezés"
8787
88 #: account/forms.py:294
88 #: account/forms.py:292
8989 #, fuzzy
9090 #| msgid "E-mail (optional)"
9191 msgid "E-mail (again)"
9292 msgstr "Email (nem kötelező)"
9393
94 #: account/forms.py:298
94 #: account/forms.py:296
9595 #, fuzzy
9696 #| msgid "E-mail address"
9797 msgid "E-mail address confirmation"
9898 msgstr "Email"
9999
100 #: account/forms.py:306
100 #: account/forms.py:304
101101 msgid "E-mail (optional)"
102102 msgstr "Email (nem kötelező)"
103103
104 #: account/forms.py:347
104 #: account/forms.py:345
105105 #, fuzzy
106106 #| msgid "You must type the same password each time."
107107 msgid "You must type the same email each time."
108108 msgstr "Ugyanazt a jelszót kell megadni mindannyiszor."
109109
110 #: account/forms.py:370 account/forms.py:479
110 #: account/forms.py:368 account/forms.py:477
111111 msgid "Password (again)"
112112 msgstr "Jelszó (ismét)"
113113
114 #: account/forms.py:434
114 #: account/forms.py:432
115115 msgid "This e-mail address is already associated with this account."
116116 msgstr "Ez az email cím már hozzá van rendelve ehhez a felhasználóhoz."
117117
118 #: account/forms.py:436
118 #: account/forms.py:434
119119 msgid "This e-mail address is already associated with another account."
120120 msgstr "Ez az email cím már hozzá van rendelve egy másik felhasználóhoz."
121121
122 #: account/forms.py:458
122 #: account/forms.py:456
123123 msgid "Current Password"
124124 msgstr "Jelenlegi jelszó"
125125
126 #: account/forms.py:459 account/forms.py:548
126 #: account/forms.py:457 account/forms.py:546
127127 msgid "New Password"
128128 msgstr "Új jelszó"
129129
130 #: account/forms.py:460 account/forms.py:549
130 #: account/forms.py:458 account/forms.py:547
131131 msgid "New Password (again)"
132132 msgstr "Új jelszó (ismét)"
133133
134 #: account/forms.py:468
134 #: account/forms.py:466
135135 msgid "Please type your current password."
136136 msgstr "Kérlek add meg az aktuális jelszavadat!"
137137
138 #: account/forms.py:506
138 #: account/forms.py:504
139139 msgid "The e-mail address is not assigned to any user account"
140140 msgstr "Az email cím nincs hozzárendelve egyetlen felhasználóhoz sem"
141141
142 #: account/forms.py:570
142 #: account/forms.py:568
143143 msgid "The password reset token was invalid."
144144 msgstr ""
145145
146 #: account/models.py:23
146 #: account/models.py:21
147147 msgid "user"
148148 msgstr ""
149149
150 #: account/models.py:27 account/models.py:81
150 #: account/models.py:25 account/models.py:78
151151 msgid "e-mail address"
152152 msgstr ""
153153
154 #: account/models.py:28
154 #: account/models.py:26
155155 msgid "verified"
156156 msgstr ""
157157
158 #: account/models.py:29
158 #: account/models.py:27
159159 msgid "primary"
160160 msgstr ""
161161
162 #: account/models.py:34
162 #: account/models.py:32
163163 msgid "email address"
164164 msgstr ""
165165
166 #: account/models.py:35
166 #: account/models.py:33
167167 msgid "email addresses"
168168 msgstr ""
169169
170 #: account/models.py:83
170 #: account/models.py:80
171171 msgid "created"
172172 msgstr ""
173173
174 #: account/models.py:85
174 #: account/models.py:82
175175 msgid "sent"
176176 msgstr ""
177177
178 #: account/models.py:86 socialaccount/models.py:58
178 #: account/models.py:83 socialaccount/models.py:55
179179 msgid "key"
180180 msgstr ""
181181
182 #: account/models.py:91
182 #: account/models.py:88
183183 msgid "email confirmation"
184184 msgstr ""
185185
186 #: account/models.py:92
186 #: account/models.py:89
187187 msgid "email confirmations"
188188 msgstr ""
189189
190 #: socialaccount/adapter.py:27
190 #: socialaccount/adapter.py:26
191191 #, python-format
192192 msgid ""
193193 "An account already exists with this e-mail address. Please sign in to that "
196196 "Ezzel az email címmel már létezik egy felhasználó . Először jelentkezz be, "
197197 "majd kapcsold össze a(z) %s felhasználóval."
198198
199 #: socialaccount/adapter.py:132
199 #: socialaccount/adapter.py:131
200200 msgid "Your account has no password set up."
201201 msgstr "A felhasználódnak nincs beállított jelszava."
202202
203 #: socialaccount/adapter.py:139
203 #: socialaccount/adapter.py:138
204204 msgid "Your account has no verified e-mail address."
205205 msgstr "A felhasználódnak nincs ellenőrzött email címe."
206206
207 #: socialaccount/apps.py:8
207 #: socialaccount/apps.py:7
208208 msgid "Social Accounts"
209209 msgstr "Közösségi Felhasználók"
210210
211 #: socialaccount/models.py:46 socialaccount/models.py:80
211 #: socialaccount/models.py:42 socialaccount/models.py:76
212212 msgid "provider"
213213 msgstr ""
214214
215 #: socialaccount/models.py:45
216 msgid "name"
217 msgstr ""
218
219 #: socialaccount/models.py:47
220 msgid "client id"
221 msgstr ""
222
215223 #: socialaccount/models.py:49
216 msgid "name"
217 msgstr ""
218
219 #: socialaccount/models.py:51
220 msgid "client id"
224 msgid "App ID, or consumer key"
225 msgstr ""
226
227 #: socialaccount/models.py:50
228 msgid "secret key"
221229 msgstr ""
222230
223231 #: socialaccount/models.py:53
224 msgid "App ID, or consumer key"
225 msgstr ""
226
227 #: socialaccount/models.py:54
228 msgid "secret key"
229 msgstr ""
230
231 #: socialaccount/models.py:56
232232 msgid "API secret, client secret, or consumer secret"
233233 msgstr ""
234234
235 #: socialaccount/models.py:61
235 #: socialaccount/models.py:58
236236 msgid "Key"
237237 msgstr ""
238238
239 #: socialaccount/models.py:69
239 #: socialaccount/models.py:66
240240 msgid "social application"
241241 msgstr ""
242242
243 #: socialaccount/models.py:70
243 #: socialaccount/models.py:67
244244 msgid "social applications"
245245 msgstr ""
246246
247 #: socialaccount/models.py:95
248 msgid "uid"
249 msgstr ""
250
251 #: socialaccount/models.py:97
252 msgid "last login"
253 msgstr ""
254
247255 #: socialaccount/models.py:99
248 msgid "uid"
256 msgid "date joined"
249257 msgstr ""
250258
251259 #: socialaccount/models.py:101
252 msgid "last login"
253 msgstr ""
254
255 #: socialaccount/models.py:103
256 msgid "date joined"
260 msgid "extra data"
257261 msgstr ""
258262
259263 #: socialaccount/models.py:105
260 msgid "extra data"
261 msgstr ""
262
263 #: socialaccount/models.py:109
264264 msgid "social account"
265265 msgstr ""
266266
267 #: socialaccount/models.py:110
267 #: socialaccount/models.py:106
268268 msgid "social accounts"
269269 msgstr ""
270270
271 #: socialaccount/models.py:131
272 msgid "token"
273 msgstr ""
274
275 #: socialaccount/models.py:133
276 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
277 msgstr ""
278
271279 #: socialaccount/models.py:136
272 msgid "token"
280 msgid "token secret"
273281 msgstr ""
274282
275283 #: socialaccount/models.py:138
276 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
277 msgstr ""
278
279 #: socialaccount/models.py:141
280 msgid "token secret"
281 msgstr ""
282
283 #: socialaccount/models.py:143
284284 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
285285 msgstr ""
286286
287 #: socialaccount/models.py:140
288 msgid "expires at"
289 msgstr ""
290
291 #: socialaccount/models.py:144
292 msgid "social application token"
293 msgstr ""
294
287295 #: socialaccount/models.py:145
288 msgid "expires at"
289 msgstr ""
290
291 #: socialaccount/models.py:149
292 msgid "social application token"
293 msgstr ""
294
295 #: socialaccount/models.py:150
296296 msgid "social application tokens"
297297 msgstr ""
298298
299 #: socialaccount/providers/douban/views.py:35
299 #: socialaccount/providers/douban/views.py:36
300300 msgid "Invalid profile data"
301301 msgstr ""
302302
00 # SOME DESCRIPTIVE TITLE.
11 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
3 #
43 # Translators:
54 # guglielmo <guglielmo.celata@gmail.com>, 2014
65 # joke2k <joke2k@gmail.com>, 2014
76 # puntosit <lowenberger@gmail.com>, 2014
7 # Sandro <sandro@e-den.it>, 2019.
88 msgid ""
99 msgstr ""
1010 "Project-Id-Version: django-allauth\n"
1111 "Report-Msgid-Bugs-To: \n"
12 "POT-Creation-Date: 2019-08-29 16:33-0500\n"
13 "PO-Revision-Date: 2018-03-08 00:40+0100\n"
14 "Last-Translator: joke2k <joke2k@gmail.com>\n"
15 "Language-Team: Italian (http://www.transifex.com/projects/p/django-allauth/"
16 "language/it/)\n"
12 "POT-Creation-Date: 2019-12-18 11:53-0600\n"
13 "PO-Revision-Date: 2019-09-30 00:03+0200\n"
14 "Last-Translator: Sandro <sandro@e-den.it>\n"
1715 "Language: it\n"
1816 "MIME-Version: 1.0\n"
1917 "Content-Type: text/plain; charset=UTF-8\n"
2018 "Content-Transfer-Encoding: 8bit\n"
2119 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20 "X-Generator: Poedit 1.8.7.1\n"
2221
2322 #: account/adapter.py:45
2423 msgid "Username can not be used. Please use other username."
2625
2726 #: account/adapter.py:49
2827 msgid "Too many failed login attempts. Try again later."
29 msgstr ""
28 msgstr "Troppo tentativi di accesso. Riprova più tardi."
3029
3130 #: account/adapter.py:51
3231 msgid "A user is already registered with this e-mail address."
3736 msgid "Password must be a minimum of {0} characters."
3837 msgstr "La password deve essere lunga almeno {0} caratteri."
3938
40 #: account/apps.py:8
41 #, fuzzy
39 #: account/apps.py:7
4240 msgid "Accounts"
4341 msgstr "Account"
4442
45 #: account/forms.py:63 account/forms.py:400
43 #: account/forms.py:61 account/forms.py:398
4644 msgid "You must type the same password each time."
4745 msgstr "Devi digitare la stessa password."
4846
49 #: account/forms.py:93 account/forms.py:367 account/forms.py:478
47 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
5048 msgid "Password"
5149 msgstr "Password"
5250
53 #: account/forms.py:94
51 #: account/forms.py:92
5452 msgid "Remember Me"
5553 msgstr "Ricordami"
5654
57 #: account/forms.py:100
55 #: account/forms.py:98
5856 msgid "This account is currently inactive."
5957 msgstr "Questo account non è attualmente attivo."
6058
61 #: account/forms.py:103
59 #: account/forms.py:101
6260 msgid "The e-mail address and/or password you specified are not correct."
6361 msgstr "L'indirizzo e-mail e/o la password che hai usato non sono corretti."
6462
65 #: account/forms.py:106
63 #: account/forms.py:104
6664 msgid "The username and/or password you specified are not correct."
6765 msgstr "Lo username e/o la password che hai usato non sono corretti."
6866
69 #: account/forms.py:115 account/forms.py:270 account/forms.py:428
70 #: account/forms.py:497
67 #: account/forms.py:113 account/forms.py:268 account/forms.py:426
68 #: account/forms.py:495
7169 msgid "E-mail address"
7270 msgstr "Indirizzo e-mail"
7371
74 #: account/forms.py:117 account/forms.py:303 account/forms.py:423
75 #: account/forms.py:492
72 #: account/forms.py:115 account/forms.py:301 account/forms.py:421
73 #: account/forms.py:490
7674 msgid "E-mail"
7775 msgstr "E-mail"
7876
79 #: account/forms.py:122 account/forms.py:125 account/forms.py:262
80 #: account/forms.py:266
77 #: account/forms.py:120 account/forms.py:123 account/forms.py:260
78 #: account/forms.py:264
8179 msgid "Username"
8280 msgstr "Username"
8381
84 #: account/forms.py:132
82 #: account/forms.py:130
8583 msgid "Username or e-mail"
8684 msgstr "Username o e-mail"
8785
88 #: account/forms.py:135
86 #: account/forms.py:133
8987 msgctxt "field label"
9088 msgid "Login"
9189 msgstr "Login"
9290
93 #: account/forms.py:294
94 #, fuzzy
95 #| msgid "E-mail (optional)"
91 #: account/forms.py:292
9692 msgid "E-mail (again)"
97 msgstr "E-mail (opzionale)"
98
99 #: account/forms.py:298
100 #, fuzzy
101 #| msgid "email confirmation"
93 msgstr "E-mail (di nuovo)"
94
95 #: account/forms.py:296
10296 msgid "E-mail address confirmation"
103 msgstr "e-mail di conferma"
104
105 #: account/forms.py:306
97 msgstr "Conferma dell'indirizzo emai"
98
99 #: account/forms.py:304
106100 msgid "E-mail (optional)"
107101 msgstr "E-mail (opzionale)"
108102
109 #: account/forms.py:347
110 #, fuzzy
111 #| msgid "You must type the same password each time."
103 #: account/forms.py:345
112104 msgid "You must type the same email each time."
113 msgstr "Devi digitare la stessa password."
114
115 #: account/forms.py:370 account/forms.py:479
105 msgstr "Devi digitare la stessa password ogni volta."
106
107 #: account/forms.py:368 account/forms.py:477
116108 msgid "Password (again)"
117109 msgstr "Password (nuovamente)"
118110
119 #: account/forms.py:434
111 #: account/forms.py:432
120112 msgid "This e-mail address is already associated with this account."
121113 msgstr "Questo indirizzo e-mail è già associato a questo account."
122114
123 #: account/forms.py:436
115 #: account/forms.py:434
124116 msgid "This e-mail address is already associated with another account."
125117 msgstr "Questo indirizzo e-mail è gia associato a un altro account."
126118
127 #: account/forms.py:458
119 #: account/forms.py:456
128120 msgid "Current Password"
129121 msgstr "Password attuale"
130122
131 #: account/forms.py:459 account/forms.py:548
123 #: account/forms.py:457 account/forms.py:546
132124 msgid "New Password"
133125 msgstr "Nuova password"
134126
135 #: account/forms.py:460 account/forms.py:549
127 #: account/forms.py:458 account/forms.py:547
136128 msgid "New Password (again)"
137129 msgstr "Nuova password (nuovamente)"
138130
139 #: account/forms.py:468
131 #: account/forms.py:466
140132 msgid "Please type your current password."
141133 msgstr "Per favore digita la tua password attuale."
142134
143 #: account/forms.py:506
135 #: account/forms.py:504
144136 msgid "The e-mail address is not assigned to any user account"
145137 msgstr "L'indirizzo e-mail non è assegnato a nessun account utente"
146138
147 #: account/forms.py:570
139 #: account/forms.py:568
148140 msgid "The password reset token was invalid."
149141 msgstr "Il codice per il reset della password non è valido."
150142
151 #: account/models.py:23
143 #: account/models.py:21
152144 msgid "user"
153145 msgstr "utente"
154146
155 #: account/models.py:27 account/models.py:81
147 #: account/models.py:25 account/models.py:78
156148 msgid "e-mail address"
157149 msgstr "indirizzo e-mail"
158150
159 #: account/models.py:28
151 #: account/models.py:26
160152 msgid "verified"
161153 msgstr "verificato"
162154
163 #: account/models.py:29
155 #: account/models.py:27
164156 msgid "primary"
165157 msgstr "primario"
166158
167 #: account/models.py:34
159 #: account/models.py:32
168160 msgid "email address"
169161 msgstr "indirizzo email"
170162
171 #: account/models.py:35
163 #: account/models.py:33
172164 msgid "email addresses"
173165 msgstr "indirizzi email"
174166
175 #: account/models.py:83
167 #: account/models.py:80
176168 msgid "created"
177169 msgstr "creato"
178170
179 #: account/models.py:85
171 #: account/models.py:82
180172 msgid "sent"
181173 msgstr "inviato"
182174
183 #: account/models.py:86 socialaccount/models.py:58
175 #: account/models.py:83 socialaccount/models.py:55
184176 msgid "key"
185177 msgstr "chiave"
186178
187 #: account/models.py:91
179 #: account/models.py:88
188180 msgid "email confirmation"
189181 msgstr "email di conferma"
190182
191 #: account/models.py:92
183 #: account/models.py:89
192184 msgid "email confirmations"
193185 msgstr "email di conferma"
194186
195 #: socialaccount/adapter.py:27
187 #: socialaccount/adapter.py:26
196188 #, python-format
197189 msgid ""
198190 "An account already exists with this e-mail address. Please sign in to that "
201193 "Esiste già un account con questo indirizzo e-mail. Per favore entra con "
202194 "quell'account, e successivamente connetti il tuo account %s."
203195
204 #: socialaccount/adapter.py:132
196 #: socialaccount/adapter.py:131
205197 msgid "Your account has no password set up."
206198 msgstr "Il tuo account non ha ancora nessuna password."
207199
208 #: socialaccount/adapter.py:139
200 #: socialaccount/adapter.py:138
209201 msgid "Your account has no verified e-mail address."
210202 msgstr "Non hai ancora verificato il tuo indirizzo e-mail."
211203
212 #: socialaccount/apps.py:8
213 #, fuzzy
204 #: socialaccount/apps.py:7
214205 msgid "Social Accounts"
215206 msgstr "Account"
216207
217 #: socialaccount/models.py:46 socialaccount/models.py:80
208 #: socialaccount/models.py:42 socialaccount/models.py:76
218209 msgid "provider"
219 msgstr ""
210 msgstr "provider"
211
212 #: socialaccount/models.py:45
213 msgid "name"
214 msgstr "nome"
215
216 #: socialaccount/models.py:47
217 msgid "client id"
218 msgstr "Id cliente"
220219
221220 #: socialaccount/models.py:49
222 #, fuzzy
223 msgid "name"
224 msgstr "username"
225
226 #: socialaccount/models.py:51
227 msgid "client id"
228 msgstr ""
221 msgid "App ID, or consumer key"
222 msgstr "App ID, o consumer key"
223
224 #: socialaccount/models.py:50
225 msgid "secret key"
226 msgstr "secret key"
229227
230228 #: socialaccount/models.py:53
231 msgid "App ID, or consumer key"
232 msgstr ""
233
234 #: socialaccount/models.py:54
235 msgid "secret key"
236 msgstr ""
237
238 #: socialaccount/models.py:56
239229 msgid "API secret, client secret, or consumer secret"
240230 msgstr ""
241231
242 #: socialaccount/models.py:61
243 #, fuzzy
232 #: socialaccount/models.py:58
244233 msgid "Key"
245234 msgstr "Chiave"
246235
247 #: socialaccount/models.py:69
236 #: socialaccount/models.py:66
248237 msgid "social application"
249238 msgstr ""
250239
251 #: socialaccount/models.py:70
240 #: socialaccount/models.py:67
252241 msgid "social applications"
253242 msgstr ""
254243
244 #: socialaccount/models.py:95
245 msgid "uid"
246 msgstr ""
247
248 #: socialaccount/models.py:97
249 msgid "last login"
250 msgstr "Ultimo accesso"
251
255252 #: socialaccount/models.py:99
256 msgid "uid"
257 msgstr ""
253 msgid "date joined"
254 msgstr "data iscrizione"
258255
259256 #: socialaccount/models.py:101
260 msgid "last login"
261 msgstr ""
262
263 #: socialaccount/models.py:103
264 msgid "date joined"
265 msgstr ""
257 msgid "extra data"
258 msgstr "dati aggiuntivi"
266259
267260 #: socialaccount/models.py:105
268 msgid "extra data"
269 msgstr ""
270
271 #: socialaccount/models.py:109
272261 msgid "social account"
273262 msgstr ""
274263
275 #: socialaccount/models.py:110
264 #: socialaccount/models.py:106
276265 msgid "social accounts"
277266 msgstr ""
278267
268 #: socialaccount/models.py:131
269 msgid "token"
270 msgstr ""
271
272 #: socialaccount/models.py:133
273 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
274 msgstr ""
275
279276 #: socialaccount/models.py:136
280 msgid "token"
277 msgid "token secret"
281278 msgstr ""
282279
283280 #: socialaccount/models.py:138
284 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
285 msgstr ""
286
287 #: socialaccount/models.py:141
288 msgid "token secret"
289 msgstr ""
290
291 #: socialaccount/models.py:143
292281 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
293282 msgstr ""
294283
284 #: socialaccount/models.py:140
285 msgid "expires at"
286 msgstr "scade il"
287
288 #: socialaccount/models.py:144
289 msgid "social application token"
290 msgstr ""
291
295292 #: socialaccount/models.py:145
296 msgid "expires at"
297 msgstr ""
298
299 #: socialaccount/models.py:149
300 msgid "social application token"
301 msgstr ""
302
303 #: socialaccount/models.py:150
304293 msgid "social application tokens"
305294 msgstr ""
306295
307 #: socialaccount/providers/douban/views.py:35
296 #: socialaccount/providers/douban/views.py:36
308297 msgid "Invalid profile data"
309 msgstr ""
298 msgstr "Dati profilo non validi"
310299
311300 #: socialaccount/providers/oauth/client.py:78
312301 #, python-format
403392 msgstr "Sei sicuro di voler rimuovere l'indirizzo e-mail selezionato?"
404393
405394 #: templates/account/email/email_confirmation_message.txt:1
406 #, fuzzy, python-format
407 #| msgid ""
408 #| "User %(user_display)s at %(site_name)s has given this as an email "
409 #| "address.\n"
410 #| "\n"
411 #| "To confirm this is correct, go to %(activate_url)s\n"
395 #, python-format
412396 msgid ""
413397 "Hello from %(site_name)s!\n"
414398 "\n"
433417 "%(site_domain)s"
434418
435419 #: templates/account/email/email_confirmation_subject.txt:3
436 #, fuzzy
437 #| msgid "Confirm E-mail Address"
438420 msgid "Please Confirm Your E-mail Address"
439421 msgstr "Conferma l'Indirizzo E-Mail"
440422
441423 #: templates/account/email/password_reset_key_message.txt:1
442 #, fuzzy, python-format
443 #| msgid ""
444 #| "You're receiving this e-mail because you or someone else has requested a "
445 #| "password for your user account at %(site_domain)s.\n"
446 #| "It can be safely ignored if you did not request a password reset. Click "
447 #| "the link below to reset your password."
424 #, python-format
448425 msgid ""
449426 "Hello from %(site_name)s!\n"
450427 "\n"
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-08-29 16:33-0500\n"
10 "POT-Creation-Date: 2019-12-18 11:53-0600\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"
3434 msgid "Password must be a minimum of {0} characters."
3535 msgstr "パスワードは {0} 文字以上の長さが必要です。"
3636
37 #: account/apps.py:8
37 #: account/apps.py:7
3838 msgid "Accounts"
3939 msgstr "アカウント"
4040
41 #: account/forms.py:63 account/forms.py:400
41 #: account/forms.py:61 account/forms.py:398
4242 msgid "You must type the same password each time."
4343 msgstr "同じパスワードを入力してください。"
4444
45 #: account/forms.py:93 account/forms.py:367 account/forms.py:478
45 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4646 msgid "Password"
4747 msgstr "パスワード"
4848
49 #: account/forms.py:94
49 #: account/forms.py:92
5050 msgid "Remember Me"
5151 msgstr "ログインしたままにする"
5252
53 #: account/forms.py:100
53 #: account/forms.py:98
5454 msgid "This account is currently inactive."
5555 msgstr "このアカウントは現在無効です。"
5656
57 #: account/forms.py:103
57 #: account/forms.py:101
5858 msgid "The e-mail address and/or password you specified are not correct."
5959 msgstr "入力されたメールアドレスもしくはパスワードが正しくありません。"
6060
61 #: account/forms.py:106
61 #: account/forms.py:104
6262 msgid "The username and/or password you specified are not correct."
6363 msgstr "入力されたユーザー名もしくはパスワードが正しくありません。"
6464
65 #: account/forms.py:115 account/forms.py:270 account/forms.py:428
66 #: account/forms.py:497
65 #: account/forms.py:113 account/forms.py:268 account/forms.py:426
66 #: account/forms.py:495
6767 msgid "E-mail address"
6868 msgstr "メールアドレス"
6969
70 #: account/forms.py:117 account/forms.py:303 account/forms.py:423
71 #: account/forms.py:492
70 #: account/forms.py:115 account/forms.py:301 account/forms.py:421
71 #: account/forms.py:490
7272 msgid "E-mail"
7373 msgstr "メールアドレス"
7474
75 #: account/forms.py:122 account/forms.py:125 account/forms.py:262
76 #: account/forms.py:266
75 #: account/forms.py:120 account/forms.py:123 account/forms.py:260
76 #: account/forms.py:264
7777 msgid "Username"
7878 msgstr "ユーザー名"
7979
80 #: account/forms.py:132
80 #: account/forms.py:130
8181 msgid "Username or e-mail"
8282 msgstr "ユーザー名またはメールアドレス"
8383
84 #: account/forms.py:135
84 #: account/forms.py:133
8585 msgctxt "field label"
8686 msgid "Login"
8787 msgstr "ログイン"
8888
89 #: account/forms.py:294
89 #: account/forms.py:292
9090 #, fuzzy
9191 #| msgid "E-mail (optional)"
9292 msgid "E-mail (again)"
9393 msgstr "メールアドレス(オプション)"
9494
95 #: account/forms.py:298
95 #: account/forms.py:296
9696 #, fuzzy
9797 #| msgid "email confirmation"
9898 msgid "E-mail address confirmation"
9999 msgstr "メールアドレスの確認"
100100
101 #: account/forms.py:306
101 #: account/forms.py:304
102102 msgid "E-mail (optional)"
103103 msgstr "メールアドレス(オプション)"
104104
105 #: account/forms.py:347
105 #: account/forms.py:345
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:370 account/forms.py:479
111 #: account/forms.py:368 account/forms.py:477
112112 msgid "Password (again)"
113113 msgstr "パスワード(再入力)"
114114
115 #: account/forms.py:434
115 #: account/forms.py:432
116116 msgid "This e-mail address is already associated with this account."
117117 msgstr "このメールアドレスはすでに登録されています。"
118118
119 #: account/forms.py:436
119 #: account/forms.py:434
120120 msgid "This e-mail address is already associated with another account."
121121 msgstr "このメールアドレスは別のアカウントで使用されています。"
122122
123 #: account/forms.py:458
123 #: account/forms.py:456
124124 msgid "Current Password"
125125 msgstr "現在のパスワード"
126126
127 #: account/forms.py:459 account/forms.py:548
127 #: account/forms.py:457 account/forms.py:546
128128 msgid "New Password"
129129 msgstr "新しいパスワード"
130130
131 #: account/forms.py:460 account/forms.py:549
131 #: account/forms.py:458 account/forms.py:547
132132 msgid "New Password (again)"
133133 msgstr "新しいパスワード(再入力)"
134134
135 #: account/forms.py:468
135 #: account/forms.py:466
136136 msgid "Please type your current password."
137137 msgstr "現在のパスワードを入力してください。"
138138
139 #: account/forms.py:506
139 #: account/forms.py:504
140140 msgid "The e-mail address is not assigned to any user account"
141141 msgstr "このメールアドレスで登録されたユーザーアカウントがありません。"
142142
143 #: account/forms.py:570
143 #: account/forms.py:568
144144 msgid "The password reset token was invalid."
145145 msgstr ""
146146
147 #: account/models.py:23
147 #: account/models.py:21
148148 msgid "user"
149149 msgstr "ユーザー"
150150
151 #: account/models.py:27 account/models.py:81
151 #: account/models.py:25 account/models.py:78
152152 msgid "e-mail address"
153153 msgstr "メールアドレス"
154154
155 #: account/models.py:28
155 #: account/models.py:26
156156 msgid "verified"
157157 msgstr "確認済み"
158158
159 #: account/models.py:29
159 #: account/models.py:27
160160 msgid "primary"
161161 msgstr "メイン"
162162
163 #: account/models.py:34
163 #: account/models.py:32
164164 msgid "email address"
165165 msgstr "メールアドレス"
166166
167 #: account/models.py:35
167 #: account/models.py:33
168168 msgid "email addresses"
169169 msgstr "メールアドレス"
170170
171 #: account/models.py:83
171 #: account/models.py:80
172172 msgid "created"
173173 msgstr "作成日時"
174174
175 #: account/models.py:85
175 #: account/models.py:82
176176 msgid "sent"
177177 msgstr "送信日時"
178178
179 #: account/models.py:86 socialaccount/models.py:58
179 #: account/models.py:83 socialaccount/models.py:55
180180 msgid "key"
181181 msgstr ""
182182
183 #: account/models.py:91
183 #: account/models.py:88
184184 msgid "email confirmation"
185185 msgstr "メールアドレスの確認"
186186
187 #: account/models.py:92
187 #: account/models.py:89
188188 msgid "email confirmations"
189189 msgstr "メールアドレスの確認"
190190
191 #: socialaccount/adapter.py:27
191 #: socialaccount/adapter.py:26
192192 #, python-format
193193 msgid ""
194194 "An account already exists with this e-mail address. Please sign in to that "
195195 "account first, then connect your %s account."
196196 msgstr ""
197197
198 #: socialaccount/adapter.py:132
198 #: socialaccount/adapter.py:131
199199 msgid "Your account has no password set up."
200200 msgstr "アカウントにパスワードを設定する必要があります。"
201201
202 #: socialaccount/adapter.py:139
202 #: socialaccount/adapter.py:138
203203 msgid "Your account has no verified e-mail address."
204204 msgstr "確認済みのメールアドレスの登録が必要です。"
205205
206 #: socialaccount/apps.py:8
206 #: socialaccount/apps.py:7
207207 msgid "Social Accounts"
208208 msgstr "外部アカウント"
209209
210 #: socialaccount/models.py:46 socialaccount/models.py:80
210 #: socialaccount/models.py:42 socialaccount/models.py:76
211211 msgid "provider"
212212 msgstr "プロバイダー"
213213
214 #: socialaccount/models.py:49
214 #: socialaccount/models.py:45
215215 msgid "name"
216216 msgstr "ユーザー名"
217217
218 #: socialaccount/models.py:51
218 #: socialaccount/models.py:47
219219 msgid "client id"
220220 msgstr ""
221221
222 #: socialaccount/models.py:49
223 msgid "App ID, or consumer key"
224 msgstr ""
225
226 #: socialaccount/models.py:50
227 msgid "secret key"
228 msgstr ""
229
222230 #: socialaccount/models.py:53
223 msgid "App ID, or consumer key"
224 msgstr ""
225
226 #: socialaccount/models.py:54
227 msgid "secret key"
228 msgstr ""
229
230 #: socialaccount/models.py:56
231231 msgid "API secret, client secret, or consumer secret"
232232 msgstr ""
233233
234 #: socialaccount/models.py:61
234 #: socialaccount/models.py:58
235235 msgid "Key"
236236 msgstr ""
237237
238 #: socialaccount/models.py:69
238 #: socialaccount/models.py:66
239239 msgid "social application"
240240 msgstr ""
241241
242 #: socialaccount/models.py:70
242 #: socialaccount/models.py:67
243243 msgid "social applications"
244244 msgstr ""
245245
246 #: socialaccount/models.py:95
247 msgid "uid"
248 msgstr ""
249
250 #: socialaccount/models.py:97
251 msgid "last login"
252 msgstr ""
253
246254 #: socialaccount/models.py:99
247 msgid "uid"
255 msgid "date joined"
248256 msgstr ""
249257
250258 #: socialaccount/models.py:101
251 msgid "last login"
252 msgstr ""
253
254 #: socialaccount/models.py:103
255 msgid "date joined"
259 msgid "extra data"
256260 msgstr ""
257261
258262 #: socialaccount/models.py:105
259 msgid "extra data"
260 msgstr ""
261
262 #: socialaccount/models.py:109
263263 msgid "social account"
264264 msgstr ""
265265
266 #: socialaccount/models.py:110
266 #: socialaccount/models.py:106
267267 msgid "social accounts"
268268 msgstr ""
269269
270 #: socialaccount/models.py:131
271 msgid "token"
272 msgstr ""
273
274 #: socialaccount/models.py:133
275 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
276 msgstr ""
277
270278 #: socialaccount/models.py:136
271 msgid "token"
279 msgid "token secret"
272280 msgstr ""
273281
274282 #: socialaccount/models.py:138
275 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
276 msgstr ""
277
278 #: socialaccount/models.py:141
279 msgid "token secret"
280 msgstr ""
281
282 #: socialaccount/models.py:143
283283 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
284284 msgstr ""
285285
286 #: socialaccount/models.py:140
287 msgid "expires at"
288 msgstr ""
289
290 #: socialaccount/models.py:144
291 msgid "social application token"
292 msgstr ""
293
286294 #: socialaccount/models.py:145
287 msgid "expires at"
288 msgstr ""
289
290 #: socialaccount/models.py:149
291 msgid "social application token"
292 msgstr ""
293
294 #: socialaccount/models.py:150
295295 msgid "social application tokens"
296296 msgstr ""
297297
298 #: socialaccount/providers/douban/views.py:35
298 #: socialaccount/providers/douban/views.py:36
299299 msgid "Invalid profile data"
300300 msgstr ""
301301
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-08-29 16:33-0500\n"
10 "POT-Creation-Date: 2019-12-18 11:53-0600\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"
3434 msgid "Password must be a minimum of {0} characters."
3535 msgstr "비밀번호는 최소 {0}자 이상이어야 합니다."
3636
37 #: account/apps.py:8
37 #: account/apps.py:7
3838 msgid "Accounts"
3939 msgstr "계정"
4040
41 #: account/forms.py:63 account/forms.py:400
41 #: account/forms.py:61 account/forms.py:398
4242 msgid "You must type the same password each time."
4343 msgstr "동일한 비밀번호를 입력해야 합니다."
4444
45 #: account/forms.py:93 account/forms.py:367 account/forms.py:478
45 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4646 msgid "Password"
4747 msgstr "비밀번호"
4848
49 #: account/forms.py:94
49 #: account/forms.py:92
5050 msgid "Remember Me"
5151 msgstr "아이디 저장"
5252
53 #: account/forms.py:100
53 #: account/forms.py:98
5454 msgid "This account is currently inactive."
5555 msgstr "해당 계정은 현재 비활성화 상태입니다."
5656
57 #: account/forms.py:103
57 #: account/forms.py:101
5858 msgid "The e-mail address and/or password you specified are not correct."
5959 msgstr "이메일 또는 비밀번호가 올바르지 않습니다."
6060
61 #: account/forms.py:106
61 #: account/forms.py:104
6262 msgid "The username and/or password you specified are not correct."
6363 msgstr "아이디 또는 비밀번호가 올바르지 않습니다."
6464
65 #: account/forms.py:115 account/forms.py:270 account/forms.py:428
66 #: account/forms.py:497
65 #: account/forms.py:113 account/forms.py:268 account/forms.py:426
66 #: account/forms.py:495
6767 msgid "E-mail address"
6868 msgstr "이메일 주소"
6969
70 #: account/forms.py:117 account/forms.py:303 account/forms.py:423
71 #: account/forms.py:492
70 #: account/forms.py:115 account/forms.py:301 account/forms.py:421
71 #: account/forms.py:490
7272 msgid "E-mail"
7373 msgstr "이메일"
7474
75 #: account/forms.py:122 account/forms.py:125 account/forms.py:262
76 #: account/forms.py:266
75 #: account/forms.py:120 account/forms.py:123 account/forms.py:260
76 #: account/forms.py:264
7777 msgid "Username"
7878 msgstr "아이디"
7979
80 #: account/forms.py:132
80 #: account/forms.py:130
8181 msgid "Username or e-mail"
8282 msgstr "아이디 또는 이메일"
8383
84 #: account/forms.py:135
84 #: account/forms.py:133
8585 msgctxt "field label"
8686 msgid "Login"
8787 msgstr "로그인"
8888
89 #: account/forms.py:294
89 #: account/forms.py:292
9090 msgid "E-mail (again)"
9191 msgstr "이메일 (확인)"
9292
93 #: account/forms.py:298
93 #: account/forms.py:296
9494 msgid "E-mail address confirmation"
9595 msgstr "이메일 주소 확인"
9696
97 #: account/forms.py:306
97 #: account/forms.py:304
9898 msgid "E-mail (optional)"
9999 msgstr "이메일 (선택사항)"
100100
101 #: account/forms.py:347
101 #: account/forms.py:345
102102 msgid "You must type the same email each time."
103103 msgstr "동일한 이메일을 입력해야 합니다."
104104
105 #: account/forms.py:370 account/forms.py:479
105 #: account/forms.py:368 account/forms.py:477
106106 msgid "Password (again)"
107107 msgstr "비밀번호 (확인)"
108108
109 #: account/forms.py:434
109 #: account/forms.py:432
110110 msgid "This e-mail address is already associated with this account."
111111 msgstr "해당 이메일은 이미 이 계정에 등록되어 있습니다."
112112
113 #: account/forms.py:436
113 #: account/forms.py:434
114114 msgid "This e-mail address is already associated with another account."
115115 msgstr "해당 이메일은 다른 계정에 등록되어 있습니다."
116116
117 #: account/forms.py:458
117 #: account/forms.py:456
118118 msgid "Current Password"
119119 msgstr "현재 비밀번호"
120120
121 #: account/forms.py:459 account/forms.py:548
121 #: account/forms.py:457 account/forms.py:546
122122 msgid "New Password"
123123 msgstr "새 비밀번호"
124124
125 #: account/forms.py:460 account/forms.py:549
125 #: account/forms.py:458 account/forms.py:547
126126 msgid "New Password (again)"
127127 msgstr "새 비밀번호 (확인)"
128128
129 #: account/forms.py:468
129 #: account/forms.py:466
130130 msgid "Please type your current password."
131131 msgstr "현재 비밀번호를 입력하세요."
132132
133 #: account/forms.py:506
133 #: account/forms.py:504
134134 msgid "The e-mail address is not assigned to any user account"
135135 msgstr "해당 이메일을 가지고 있는 사용자가 없습니다."
136136
137 #: account/forms.py:570
137 #: account/forms.py:568
138138 msgid "The password reset token was invalid."
139139 msgstr "비밀번호 초기화 토큰이 올바르지 않습니다."
140140
141 #: account/models.py:23
141 #: account/models.py:21
142142 msgid "user"
143143 msgstr "사용자"
144144
145 #: account/models.py:27 account/models.py:81
145 #: account/models.py:25 account/models.py:78
146146 msgid "e-mail address"
147147 msgstr "이메일 주소"
148148
149 #: account/models.py:28
149 #: account/models.py:26
150150 msgid "verified"
151151 msgstr "인증완료"
152152
153 #: account/models.py:29
153 #: account/models.py:27
154154 msgid "primary"
155155 msgstr "주"
156156
157 #: account/models.py:34
157 #: account/models.py:32
158158 msgid "email address"
159159 msgstr "이메일 주소"
160160
161 #: account/models.py:35
161 #: account/models.py:33
162162 msgid "email addresses"
163163 msgstr "이메일 주소"
164164
165 #: account/models.py:83
165 #: account/models.py:80
166166 msgid "created"
167167 msgstr "생성됨"
168168
169 #: account/models.py:85
169 #: account/models.py:82
170170 msgid "sent"
171171 msgstr "전송됨"
172172
173 #: account/models.py:86 socialaccount/models.py:58
173 #: account/models.py:83 socialaccount/models.py:55
174174 msgid "key"
175175 msgstr "키"
176176
177 #: account/models.py:91
177 #: account/models.py:88
178178 msgid "email confirmation"
179179 msgstr "이메일 확인"
180180
181 #: account/models.py:92
181 #: account/models.py:89
182182 msgid "email confirmations"
183183 msgstr "이메일 확인"
184184
185 #: socialaccount/adapter.py:27
185 #: socialaccount/adapter.py:26
186186 #, python-format
187187 msgid ""
188188 "An account already exists with this e-mail address. Please sign in to that "
191191 "해당 이메일을 사용중인 계정이 이미 존재합니다. 해당 계정으로 로그인 후에 %s "
192192 "계정으로 연결하세요."
193193
194 #: socialaccount/adapter.py:132
194 #: socialaccount/adapter.py:131
195195 msgid "Your account has no password set up."
196196 msgstr "당신의 계정에 비밀번호가 설정되어있지 않습니다."
197197
198 #: socialaccount/adapter.py:139
198 #: socialaccount/adapter.py:138
199199 msgid "Your account has no verified e-mail address."
200200 msgstr "당신의 계정에는 인증된 이메일이 없습니다."
201201
202 #: socialaccount/apps.py:8
202 #: socialaccount/apps.py:7
203203 msgid "Social Accounts"
204204 msgstr "소셜 계정"
205205
206 #: socialaccount/models.py:46 socialaccount/models.py:80
206 #: socialaccount/models.py:42 socialaccount/models.py:76
207207 msgid "provider"
208208 msgstr "제공자"
209209
210 #: socialaccount/models.py:49
210 #: socialaccount/models.py:45
211211 msgid "name"
212212 msgstr "이름"
213213
214 #: socialaccount/models.py:51
214 #: socialaccount/models.py:47
215215 msgid "client id"
216216 msgstr "클라이언트 아이디"
217217
218 #: socialaccount/models.py:53
218 #: socialaccount/models.py:49
219219 msgid "App ID, or consumer key"
220220 msgstr "앱 아이디 또는 컨슈머 아이디"
221221
222 #: socialaccount/models.py:54
222 #: socialaccount/models.py:50
223223 msgid "secret key"
224224 msgstr "비밀 키"
225225
226 #: socialaccount/models.py:56
226 #: socialaccount/models.py:53
227227 msgid "API secret, client secret, or consumer secret"
228228 msgstr "API 비밀 키, 클라이언트 비밀 키, 또는 컨슈머 비밀 키"
229229
230 #: socialaccount/models.py:61
230 #: socialaccount/models.py:58
231231 msgid "Key"
232232 msgstr "키"
233233
234 #: socialaccount/models.py:69
234 #: socialaccount/models.py:66
235235 msgid "social application"
236236 msgstr "소셜 어플리케이션"
237237
238 #: socialaccount/models.py:70
238 #: socialaccount/models.py:67
239239 msgid "social applications"
240240 msgstr "소셜 어플리케이션"
241241
242 #: socialaccount/models.py:99
242 #: socialaccount/models.py:95
243243 msgid "uid"
244244 msgstr ""
245245
246 #: socialaccount/models.py:101
246 #: socialaccount/models.py:97
247247 msgid "last login"
248248 msgstr "최종 로그인"
249249
250 #: socialaccount/models.py:103
250 #: socialaccount/models.py:99
251251 msgid "date joined"
252252 msgstr "가입 날짜"
253253
254 #: socialaccount/models.py:105
254 #: socialaccount/models.py:101
255255 msgid "extra data"
256256 msgstr "추가 정보"
257257
258 #: socialaccount/models.py:109
258 #: socialaccount/models.py:105
259259 msgid "social account"
260260 msgstr "소셜 계정"
261261
262 #: socialaccount/models.py:110
262 #: socialaccount/models.py:106
263263 msgid "social accounts"
264264 msgstr "소셜 계정"
265265
266 #: socialaccount/models.py:136
266 #: socialaccount/models.py:131
267267 msgid "token"
268268 msgstr "토큰"
269269
270 #: socialaccount/models.py:138
270 #: socialaccount/models.py:133
271271 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
272272 msgstr "\"oauth_token\" (OAuth1) 또는 access token (OAuth2)"
273273
274 #: socialaccount/models.py:141
274 #: socialaccount/models.py:136
275275 msgid "token secret"
276276 msgstr ""
277277
278 #: socialaccount/models.py:143
278 #: socialaccount/models.py:138
279279 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
280280 msgstr "\"oauth_token_secret\" (OAuth1) 또는 refresh token (OAuth2)"
281281
282 #: socialaccount/models.py:145
282 #: socialaccount/models.py:140
283283 msgid "expires at"
284284 msgstr "만료일"
285285
286 #: socialaccount/models.py:149
286 #: socialaccount/models.py:144
287287 msgid "social application token"
288288 msgstr "소셜 어플리케이션 토큰"
289289
290 #: socialaccount/models.py:150
290 #: socialaccount/models.py:145
291291 msgid "social application tokens"
292292 msgstr "소셜 어플리케이션 토큰"
293293
294 #: socialaccount/providers/douban/views.py:35
294 #: socialaccount/providers/douban/views.py:36
295295 msgid "Invalid profile data"
296296 msgstr ""
297297
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2019-08-29 16:33-0500\n"
9 "POT-Creation-Date: 2019-12-18 11:53-0600\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"
3333 msgid "Password must be a minimum of {0} characters."
3434 msgstr "Купуя жок дегенде {0} белгиден турушу керек."
3535
36 #: account/apps.py:8
36 #: account/apps.py:7
3737 msgid "Accounts"
3838 msgstr "Эсептер"
3939
40 #: account/forms.py:63 account/forms.py:400
40 #: account/forms.py:61 account/forms.py:398
4141 msgid "You must type the same password each time."
4242 msgstr "Сиз ошол эле купуяны кайрадан териңиз."
4343
44 #: account/forms.py:93 account/forms.py:367 account/forms.py:478
44 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4545 msgid "Password"
4646 msgstr "Купуя"
4747
48 #: account/forms.py:94
48 #: account/forms.py:92
4949 msgid "Remember Me"
5050 msgstr "Мени эстеп кал"
5151
52 #: account/forms.py:100
52 #: account/forms.py:98
5353 msgid "This account is currently inactive."
5454 msgstr "Бул эсеп учурда активдүү эмес."
5555
56 #: account/forms.py:103
56 #: account/forms.py:101
5757 msgid "The e-mail address and/or password you specified are not correct."
5858 msgstr "Сиз берген эмейл дарек жана/же купуя туура эмес."
5959
60 #: account/forms.py:106
60 #: account/forms.py:104
6161 msgid "The username and/or password you specified are not correct."
6262 msgstr "Сиз берген колдонуучу аты жана/же купуя туура эмес."
6363
64 #: account/forms.py:115 account/forms.py:270 account/forms.py:428
65 #: account/forms.py:497
64 #: account/forms.py:113 account/forms.py:268 account/forms.py:426
65 #: account/forms.py:495
6666 msgid "E-mail address"
6767 msgstr "Эмейл дарек"
6868
69 #: account/forms.py:117 account/forms.py:303 account/forms.py:423
70 #: account/forms.py:492
69 #: account/forms.py:115 account/forms.py:301 account/forms.py:421
70 #: account/forms.py:490
7171 msgid "E-mail"
7272 msgstr "Эмейл"
7373
74 #: account/forms.py:122 account/forms.py:125 account/forms.py:262
75 #: account/forms.py:266
74 #: account/forms.py:120 account/forms.py:123 account/forms.py:260
75 #: account/forms.py:264
7676 msgid "Username"
7777 msgstr "Колдонуучу аты"
7878
79 #: account/forms.py:132
79 #: account/forms.py:130
8080 msgid "Username or e-mail"
8181 msgstr "Колдонуучу аты же эмейл"
8282
83 #: account/forms.py:135
83 #: account/forms.py:133
8484 msgctxt "field label"
8585 msgid "Login"
8686 msgstr "Логин"
8787
88 #: account/forms.py:294
88 #: account/forms.py:292
8989 #, fuzzy
9090 #| msgid "E-mail (optional)"
9191 msgid "E-mail (again)"
9292 msgstr "Эмейл (милдеттүү эмес)"
9393
94 #: account/forms.py:298
94 #: account/forms.py:296
9595 #, fuzzy
9696 #| msgid "email confirmation"
9797 msgid "E-mail address confirmation"
9898 msgstr "эмейл ырастоо"
9999
100 #: account/forms.py:306
100 #: account/forms.py:304
101101 msgid "E-mail (optional)"
102102 msgstr "Эмейл (милдеттүү эмес)"
103103
104 #: account/forms.py:347
104 #: account/forms.py:345
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:370 account/forms.py:479
110 #: account/forms.py:368 account/forms.py:477
111111 msgid "Password (again)"
112112 msgstr "Купуя (дагы бир жолу)"
113113
114 #: account/forms.py:434
114 #: account/forms.py:432
115115 msgid "This e-mail address is already associated with this account."
116116 msgstr "Бул эмейл дарек ушул эсеп менен буга чейин туташтырылган."
117117
118 #: account/forms.py:436
118 #: account/forms.py:434
119119 msgid "This e-mail address is already associated with another account."
120120 msgstr "Бул эмейл дарек башка бир эсеп менен буга чейин туташтырылган."
121121
122 #: account/forms.py:458
122 #: account/forms.py:456
123123 msgid "Current Password"
124124 msgstr "Азыркы купуя"
125125
126 #: account/forms.py:459 account/forms.py:548
126 #: account/forms.py:457 account/forms.py:546
127127 msgid "New Password"
128128 msgstr "Жаңы купуя"
129129
130 #: account/forms.py:460 account/forms.py:549
130 #: account/forms.py:458 account/forms.py:547
131131 msgid "New Password (again)"
132132 msgstr "Жаңы купуя (кайрадан)"
133133
134 #: account/forms.py:468
134 #: account/forms.py:466
135135 msgid "Please type your current password."
136136 msgstr "Учурдагы купуяңызды жазыңыз."
137137
138 #: account/forms.py:506
138 #: account/forms.py:504
139139 msgid "The e-mail address is not assigned to any user account"
140140 msgstr "Эмейл дарек эч бир колдонуучу эсебине байланган эмес"
141141
142 #: account/forms.py:570
142 #: account/forms.py:568
143143 msgid "The password reset token was invalid."
144144 msgstr "Купуяны жаңыртуу токени туура эмес."
145145
146 #: account/models.py:23
146 #: account/models.py:21
147147 msgid "user"
148148 msgstr "колдонуучу"
149149
150 #: account/models.py:27 account/models.py:81
150 #: account/models.py:25 account/models.py:78
151151 msgid "e-mail address"
152152 msgstr "эмейл дарек"
153153
154 #: account/models.py:28
154 #: account/models.py:26
155155 msgid "verified"
156156 msgstr "дурусталган"
157157
158 #: account/models.py:29
158 #: account/models.py:27
159159 msgid "primary"
160160 msgstr "негизги"
161161
162 #: account/models.py:34
162 #: account/models.py:32
163163 msgid "email address"
164164 msgstr "эмейл дарек"
165165
166 #: account/models.py:35
166 #: account/models.py:33
167167 msgid "email addresses"
168168 msgstr "эмейл даректер"
169169
170 #: account/models.py:83
170 #: account/models.py:80
171171 msgid "created"
172172 msgstr "түзүлгөн"
173173
174 #: account/models.py:85
174 #: account/models.py:82
175175 msgid "sent"
176176 msgstr "жөнөтүлгөн"
177177
178 #: account/models.py:86 socialaccount/models.py:58
178 #: account/models.py:83 socialaccount/models.py:55
179179 msgid "key"
180180 msgstr "ачкыч"
181181
182 #: account/models.py:91
182 #: account/models.py:88
183183 msgid "email confirmation"
184184 msgstr "эмейл ырастоо"
185185
186 #: account/models.py:92
186 #: account/models.py:89
187187 msgid "email confirmations"
188188 msgstr "эмейл ырастоолор"
189189
190 #: socialaccount/adapter.py:27
190 #: socialaccount/adapter.py:26
191191 #, python-format
192192 msgid ""
193193 "An account already exists with this e-mail address. Please sign in to that "
196196 "Бул эмейл менен башка эсеп катталган. Ошол эсеп аркылуу кирип, %s эсебиңизди "
197197 "туташтырып алыңыз."
198198
199 #: socialaccount/adapter.py:132
199 #: socialaccount/adapter.py:131
200200 msgid "Your account has no password set up."
201201 msgstr "Сиздин эсебиңизде купуя орнотулган эмес."
202202
203 #: socialaccount/adapter.py:139
203 #: socialaccount/adapter.py:138
204204 msgid "Your account has no verified e-mail address."
205205 msgstr "Сиздин эсебиңизде дурусталган эмейл даректер жок."
206206
207 #: socialaccount/apps.py:8
207 #: socialaccount/apps.py:7
208208 msgid "Social Accounts"
209209 msgstr "Социалдык эсептер"
210210
211 #: socialaccount/models.py:46 socialaccount/models.py:80
211 #: socialaccount/models.py:42 socialaccount/models.py:76
212212 msgid "provider"
213213 msgstr "провайдер"
214214
215 #: socialaccount/models.py:49
215 #: socialaccount/models.py:45
216216 msgid "name"
217217 msgstr "аты"
218218
219 #: socialaccount/models.py:51
219 #: socialaccount/models.py:47
220220 msgid "client id"
221221 msgstr "кардар id'си"
222222
223 #: socialaccount/models.py:53
223 #: socialaccount/models.py:49
224224 msgid "App ID, or consumer key"
225225 msgstr "Колдонмо ID'си, же керектөөчү ачкычы"
226226
227 #: socialaccount/models.py:54
227 #: socialaccount/models.py:50
228228 msgid "secret key"
229229 msgstr "жашыруун ачкыч"
230230
231 #: socialaccount/models.py:56
231 #: socialaccount/models.py:53
232232 msgid "API secret, client secret, or consumer secret"
233233 msgstr "API, кардар же керектөөчүнүн жашыруун ачкычы"
234234
235 #: socialaccount/models.py:61
235 #: socialaccount/models.py:58
236236 msgid "Key"
237237 msgstr "Ачкыч"
238238
239 #: socialaccount/models.py:69
239 #: socialaccount/models.py:66
240240 msgid "social application"
241241 msgstr "социалдык колдонмо"
242242
243 #: socialaccount/models.py:70
243 #: socialaccount/models.py:67
244244 msgid "social applications"
245245 msgstr "социалдык колдонмолор"
246246
247 #: socialaccount/models.py:99
247 #: socialaccount/models.py:95
248248 msgid "uid"
249249 msgstr "uid"
250250
251 #: socialaccount/models.py:101
251 #: socialaccount/models.py:97
252252 msgid "last login"
253253 msgstr "акыркы кириши"
254254
255 #: socialaccount/models.py:103
255 #: socialaccount/models.py:99
256256 msgid "date joined"
257257 msgstr "кошулган күнү"
258258
259 #: socialaccount/models.py:105
259 #: socialaccount/models.py:101
260260 msgid "extra data"
261261 msgstr "кошумча маалымат"
262262
263 #: socialaccount/models.py:109
263 #: socialaccount/models.py:105
264264 msgid "social account"
265265 msgstr "социалдык эсеп"
266266
267 #: socialaccount/models.py:110
267 #: socialaccount/models.py:106
268268 msgid "social accounts"
269269 msgstr "социалдык эсептер"
270270
271 #: socialaccount/models.py:136
271 #: socialaccount/models.py:131
272272 msgid "token"
273273 msgstr "токен"
274274
275 #: socialaccount/models.py:138
275 #: socialaccount/models.py:133
276276 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
277277 msgstr "\"oauth_token\" (OAuth1) же жетки токени (OAuth2)"
278278
279 #: socialaccount/models.py:141
279 #: socialaccount/models.py:136
280280 msgid "token secret"
281281 msgstr "токендин жашыруун ачкычы"
282282
283 #: socialaccount/models.py:143
283 #: socialaccount/models.py:138
284284 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
285285 msgstr "\"oauth_token_secret\" (OAuth1) же жаңыртуу токени (OAuth2)"
286286
287 #: socialaccount/models.py:145
287 #: socialaccount/models.py:140
288288 msgid "expires at"
289289 msgstr "мөөнөтү аяктайт"
290290
291 #: socialaccount/models.py:149
291 #: socialaccount/models.py:144
292292 msgid "social application token"
293293 msgstr "социалдык колдонмо токени"
294294
295 #: socialaccount/models.py:150
295 #: socialaccount/models.py:145
296296 msgid "social application tokens"
297297 msgstr "социалдык колдонмо токендери"
298298
299 #: socialaccount/providers/douban/views.py:35
299 #: socialaccount/providers/douban/views.py:36
300300 msgid "Invalid profile data"
301301 msgstr ""
302302
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-08-29 16:33-0500\n"
10 "POT-Creation-Date: 2019-12-18 11:53-0600\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"
3636 msgid "Password must be a minimum of {0} characters."
3737 msgstr "Slaptažodis turi būti sudarytas mažiausiai iš {0} simbolių."
3838
39 #: account/apps.py:8
39 #: account/apps.py:7
4040 msgid "Accounts"
4141 msgstr "Paskyros"
4242
43 #: account/forms.py:63 account/forms.py:400
43 #: account/forms.py:61 account/forms.py:398
4444 msgid "You must type the same password each time."
4545 msgstr "Turite įvesti tą patį slaptažodį kiekvieną kartą."
4646
47 #: account/forms.py:93 account/forms.py:367 account/forms.py:478
47 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4848 msgid "Password"
4949 msgstr "Slaptažodis"
5050
51 #: account/forms.py:94
51 #: account/forms.py:92
5252 msgid "Remember Me"
5353 msgstr "Prisimink mane"
5454
55 #: account/forms.py:100
55 #: account/forms.py:98
5656 msgid "This account is currently inactive."
5757 msgstr "Šiuo metu ši paskyra yra neaktyvi."
5858
59 #: account/forms.py:103
59 #: account/forms.py:101
6060 msgid "The e-mail address and/or password you specified are not correct."
6161 msgstr "Pateiktas el. pašto adresas ir/arba slaptažodis yra neteisingi."
6262
63 #: account/forms.py:106
63 #: account/forms.py:104
6464 msgid "The username and/or password you specified are not correct."
6565 msgstr "Pateiktas naudotojo vardas ir/arba slaptažodis yra neteisingi."
6666
67 #: account/forms.py:115 account/forms.py:270 account/forms.py:428
68 #: account/forms.py:497
67 #: account/forms.py:113 account/forms.py:268 account/forms.py:426
68 #: account/forms.py:495
6969 msgid "E-mail address"
7070 msgstr "El. pašto adresas"
7171
72 #: account/forms.py:117 account/forms.py:303 account/forms.py:423
73 #: account/forms.py:492
72 #: account/forms.py:115 account/forms.py:301 account/forms.py:421
73 #: account/forms.py:490
7474 msgid "E-mail"
7575 msgstr "El. paštas"
7676
77 #: account/forms.py:122 account/forms.py:125 account/forms.py:262
78 #: account/forms.py:266
77 #: account/forms.py:120 account/forms.py:123 account/forms.py:260
78 #: account/forms.py:264
7979 msgid "Username"
8080 msgstr "Naudotojo vardas"
8181
82 #: account/forms.py:132
82 #: account/forms.py:130
8383 msgid "Username or e-mail"
8484 msgstr "Naudotojo vardas arba el. paštas"
8585
86 #: account/forms.py:135
86 #: account/forms.py:133
8787 msgctxt "field label"
8888 msgid "Login"
8989 msgstr "Prisijungimo vardas"
9090
91 #: account/forms.py:294
91 #: account/forms.py:292
9292 #, fuzzy
9393 #| msgid "E-mail (optional)"
9494 msgid "E-mail (again)"
9595 msgstr "El. paštas (neprivalomas)"
9696
97 #: account/forms.py:298
97 #: account/forms.py:296
9898 #, fuzzy
9999 #| msgid "email confirmation"
100100 msgid "E-mail address confirmation"
101101 msgstr "el. pašto patvirtinimas"
102102
103 #: account/forms.py:306
103 #: account/forms.py:304
104104 msgid "E-mail (optional)"
105105 msgstr "El. paštas (neprivalomas)"
106106
107 #: account/forms.py:347
107 #: account/forms.py:345
108108 #, fuzzy
109109 #| msgid "You must type the same password each time."
110110 msgid "You must type the same email each time."
111111 msgstr "Turite įvesti tą patį slaptažodį kiekvieną kartą."
112112
113 #: account/forms.py:370 account/forms.py:479
113 #: account/forms.py:368 account/forms.py:477
114114 msgid "Password (again)"
115115 msgstr "Slaptažodis (pakartoti)"
116116
117 #: account/forms.py:434
117 #: account/forms.py:432
118118 msgid "This e-mail address is already associated with this account."
119119 msgstr "Šis el. pašto adresas jau susietas su šia paskyra."
120120
121 #: account/forms.py:436
121 #: account/forms.py:434
122122 msgid "This e-mail address is already associated with another account."
123123 msgstr "Šis el. pašto adresas jau susietas su kita paskyra."
124124
125 #: account/forms.py:458
125 #: account/forms.py:456
126126 msgid "Current Password"
127127 msgstr "Esamas slaptažodis"
128128
129 #: account/forms.py:459 account/forms.py:548
129 #: account/forms.py:457 account/forms.py:546
130130 msgid "New Password"
131131 msgstr "Naujas slaptažodis"
132132
133 #: account/forms.py:460 account/forms.py:549
133 #: account/forms.py:458 account/forms.py:547
134134 msgid "New Password (again)"
135135 msgstr "Naujas slaptažodis (pakartoti)"
136136
137 #: account/forms.py:468
137 #: account/forms.py:466
138138 msgid "Please type your current password."
139139 msgstr "Prašome įvesti esamą jūsų slaptažodį."
140140
141 #: account/forms.py:506
141 #: account/forms.py:504
142142 msgid "The e-mail address is not assigned to any user account"
143143 msgstr "El. pašto adresas nėra susietas su jokia naudotojo paskyra"
144144
145 #: account/forms.py:570
145 #: account/forms.py:568
146146 msgid "The password reset token was invalid."
147147 msgstr "Neteisingas slaptažodžio atstatymo atpažinimo ženklas."
148148
149 #: account/models.py:23
149 #: account/models.py:21
150150 msgid "user"
151151 msgstr "naudotojas"
152152
153 #: account/models.py:27 account/models.py:81
153 #: account/models.py:25 account/models.py:78
154154 msgid "e-mail address"
155155 msgstr "el. pašto adresas"
156156
157 #: account/models.py:28
157 #: account/models.py:26
158158 msgid "verified"
159159 msgstr "patvirtintas"
160160
161 #: account/models.py:29
161 #: account/models.py:27
162162 msgid "primary"
163163 msgstr "pirminis"
164164
165 #: account/models.py:34
165 #: account/models.py:32
166166 msgid "email address"
167167 msgstr "el. pašto adresas"
168168
169 #: account/models.py:35
169 #: account/models.py:33
170170 msgid "email addresses"
171171 msgstr "el. pašto adresai"
172172
173 #: account/models.py:83
173 #: account/models.py:80
174174 msgid "created"
175175 msgstr "sukurtas"
176176
177 #: account/models.py:85
177 #: account/models.py:82
178178 msgid "sent"
179179 msgstr "išsiųstas"
180180
181 #: account/models.py:86 socialaccount/models.py:58
181 #: account/models.py:83 socialaccount/models.py:55
182182 msgid "key"
183183 msgstr "raktas"
184184
185 #: account/models.py:91
185 #: account/models.py:88
186186 msgid "email confirmation"
187187 msgstr "el. pašto patvirtinimas"
188188
189 #: account/models.py:92
189 #: account/models.py:89
190190 msgid "email confirmations"
191191 msgstr "el. pašto patvirtinimai"
192192
193 #: socialaccount/adapter.py:27
193 #: socialaccount/adapter.py:26
194194 #, python-format
195195 msgid ""
196196 "An account already exists with this e-mail address. Please sign in to that "
199199 "Paskyra su šiuo el. pašto adresu jau egzistuoja. Prašome pirmiausia "
200200 "prisijungti prie tos paskyros ir tada prijunkite %s paskyrą."
201201
202 #: socialaccount/adapter.py:132
202 #: socialaccount/adapter.py:131
203203 msgid "Your account has no password set up."
204204 msgstr "Jūsų paskyra neturi nustatyto slaptažodžio."
205205
206 #: socialaccount/adapter.py:139
206 #: socialaccount/adapter.py:138
207207 msgid "Your account has no verified e-mail address."
208208 msgstr "Jūsų paskyra neturi patvirtinto el. pašto adreso."
209209
210 #: socialaccount/apps.py:8
210 #: socialaccount/apps.py:7
211211 msgid "Social Accounts"
212212 msgstr "Socialinės paskyros"
213213
214 #: socialaccount/models.py:46 socialaccount/models.py:80
214 #: socialaccount/models.py:42 socialaccount/models.py:76
215215 msgid "provider"
216216 msgstr "tiekėjas"
217217
218 #: socialaccount/models.py:49
218 #: socialaccount/models.py:45
219219 msgid "name"
220220 msgstr "pavadinimas"
221221
222 #: socialaccount/models.py:51
222 #: socialaccount/models.py:47
223223 msgid "client id"
224224 msgstr "kliento id"
225225
226 #: socialaccount/models.py:53
226 #: socialaccount/models.py:49
227227 msgid "App ID, or consumer key"
228228 msgstr "App ID arba consumer key"
229229
230 #: socialaccount/models.py:54
230 #: socialaccount/models.py:50
231231 msgid "secret key"
232232 msgstr "secret key"
233233
234 #: socialaccount/models.py:56
234 #: socialaccount/models.py:53
235235 msgid "API secret, client secret, or consumer secret"
236236 msgstr "API secret, client secret, arba consumer secret"
237237
238 #: socialaccount/models.py:61
238 #: socialaccount/models.py:58
239239 msgid "Key"
240240 msgstr "Raktas"
241241
242 #: socialaccount/models.py:69
242 #: socialaccount/models.py:66
243243 msgid "social application"
244244 msgstr "socialinė programėlė"
245245
246 #: socialaccount/models.py:70
246 #: socialaccount/models.py:67
247247 msgid "social applications"
248248 msgstr "socialinės programėlės"
249249
250 #: socialaccount/models.py:99
250 #: socialaccount/models.py:95
251251 msgid "uid"
252252 msgstr "uid"
253253
254 #: socialaccount/models.py:101
254 #: socialaccount/models.py:97
255255 msgid "last login"
256256 msgstr "paskutinis prisijungimas"
257257
258 #: socialaccount/models.py:103
258 #: socialaccount/models.py:99
259259 msgid "date joined"
260260 msgstr "registracijos data"
261261
262 #: socialaccount/models.py:105
262 #: socialaccount/models.py:101
263263 msgid "extra data"
264264 msgstr "papildomi duomenys"
265265
266 #: socialaccount/models.py:109
266 #: socialaccount/models.py:105
267267 msgid "social account"
268268 msgstr "socialinė paskyra"
269269
270 #: socialaccount/models.py:110
270 #: socialaccount/models.py:106
271271 msgid "social accounts"
272272 msgstr "socialinės paskyros"
273273
274 #: socialaccount/models.py:136
274 #: socialaccount/models.py:131
275275 msgid "token"
276276 msgstr "atpažinimo ženklas"
277277
278 #: socialaccount/models.py:138
278 #: socialaccount/models.py:133
279279 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
280280 msgstr "\"oauth_token\" (OAuth1) arba prieigos atpažinimo ženklas (OAuth2)"
281281
282 #: socialaccount/models.py:141
282 #: socialaccount/models.py:136
283283 msgid "token secret"
284284 msgstr "token secret"
285285
286 #: socialaccount/models.py:143
286 #: socialaccount/models.py:138
287287 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
288288 msgstr ""
289289 "\"oauth_token_secret\" (OAuth1) arba atnaujintas atpažinimo ženklas (OAuth2)"
290290
291 #: socialaccount/models.py:145
291 #: socialaccount/models.py:140
292292 msgid "expires at"
293293 msgstr "galiojimas"
294294
295 #: socialaccount/models.py:149
295 #: socialaccount/models.py:144
296296 msgid "social application token"
297297 msgstr "socialinės programėlės atpažinimo ženklas"
298298
299 #: socialaccount/models.py:150
299 #: socialaccount/models.py:145
300300 msgid "social application tokens"
301301 msgstr "socialinės programėlės atpažinimo ženklai"
302302
303 #: socialaccount/providers/douban/views.py:35
303 #: socialaccount/providers/douban/views.py:36
304304 msgid "Invalid profile data"
305305 msgstr ""
306306
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-08-29 16:33-0500\n"
10 "POT-Creation-Date: 2019-12-18 11:53-0600\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"
3737 msgid "Password must be a minimum of {0} characters."
3838 msgstr "Parolei jābūt vismaz {0} simbolus garai."
3939
40 #: account/apps.py:8
40 #: account/apps.py:7
4141 msgid "Accounts"
4242 msgstr "Konti"
4343
44 #: account/forms.py:63 account/forms.py:400
44 #: account/forms.py:61 account/forms.py:398
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:93 account/forms.py:367 account/forms.py:478
48 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4949 msgid "Password"
5050 msgstr "Parole"
5151
52 #: account/forms.py:94
52 #: account/forms.py:92
5353 msgid "Remember Me"
5454 msgstr "Atcerēties mani"
5555
56 #: account/forms.py:100
56 #: account/forms.py:98
5757 msgid "This account is currently inactive."
5858 msgstr "Šis konts šobrīd ir neaktīvs."
5959
60 #: account/forms.py:103
60 #: account/forms.py:101
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:106
64 #: account/forms.py:104
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:115 account/forms.py:270 account/forms.py:428
69 #: account/forms.py:497
68 #: account/forms.py:113 account/forms.py:268 account/forms.py:426
69 #: account/forms.py:495
7070 msgid "E-mail address"
7171 msgstr "E-pasta adrese"
7272
73 #: account/forms.py:117 account/forms.py:303 account/forms.py:423
74 #: account/forms.py:492
73 #: account/forms.py:115 account/forms.py:301 account/forms.py:421
74 #: account/forms.py:490
7575 msgid "E-mail"
7676 msgstr "E-pasts"
7777
78 #: account/forms.py:122 account/forms.py:125 account/forms.py:262
79 #: account/forms.py:266
78 #: account/forms.py:120 account/forms.py:123 account/forms.py:260
79 #: account/forms.py:264
8080 msgid "Username"
8181 msgstr "Lietotājvārds"
8282
83 #: account/forms.py:132
83 #: account/forms.py:130
8484 msgid "Username or e-mail"
8585 msgstr "Lietotājvārds vai e-pasts"
8686
87 #: account/forms.py:135
87 #: account/forms.py:133
8888 msgctxt "field label"
8989 msgid "Login"
9090 msgstr "Ieiet"
9191
92 #: account/forms.py:294
92 #: account/forms.py:292
9393 #, fuzzy
9494 #| msgid "E-mail (optional)"
9595 msgid "E-mail (again)"
9696 msgstr "E-pasts (izvēles)"
9797
98 #: account/forms.py:298
98 #: account/forms.py:296
9999 #, fuzzy
100100 #| msgid "email confirmation"
101101 msgid "E-mail address confirmation"
102102 msgstr "e-pasta apstiprinājums"
103103
104 #: account/forms.py:306
104 #: account/forms.py:304
105105 msgid "E-mail (optional)"
106106 msgstr "E-pasts (izvēles)"
107107
108 #: account/forms.py:347
108 #: account/forms.py:345
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:370 account/forms.py:479
114 #: account/forms.py:368 account/forms.py:477
115115 msgid "Password (again)"
116116 msgstr "Parole (vēlreiz)"
117117
118 #: account/forms.py:434
118 #: account/forms.py:432
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:436
122 #: account/forms.py:434
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:458
126 #: account/forms.py:456
127127 msgid "Current Password"
128128 msgstr "Šobrīdējā parole"
129129
130 #: account/forms.py:459 account/forms.py:548
130 #: account/forms.py:457 account/forms.py:546
131131 msgid "New Password"
132132 msgstr "Jaunā parole"
133133
134 #: account/forms.py:460 account/forms.py:549
134 #: account/forms.py:458 account/forms.py:547
135135 msgid "New Password (again)"
136136 msgstr "Jaunā parole (vēlreiz)"
137137
138 #: account/forms.py:468
138 #: account/forms.py:466
139139 msgid "Please type your current password."
140140 msgstr "Lūdzu ievadiet jūsu šobrīdējo paroli."
141141
142 #: account/forms.py:506
142 #: account/forms.py:504
143143 msgid "The e-mail address is not assigned to any user account"
144144 msgstr "E-pasta adrese nav piesaistīta nevienam lietotāja kontam"
145145
146 #: account/forms.py:570
146 #: account/forms.py:568
147147 msgid "The password reset token was invalid."
148148 msgstr "Paroles atjaunošanas marķieris bija nederīgs."
149149
150 #: account/models.py:23
150 #: account/models.py:21
151151 msgid "user"
152152 msgstr "lietotājs"
153153
154 #: account/models.py:27 account/models.py:81
154 #: account/models.py:25 account/models.py:78
155155 msgid "e-mail address"
156156 msgstr "e-pasta adrese"
157157
158 #: account/models.py:28
158 #: account/models.py:26
159159 msgid "verified"
160160 msgstr "apstiprināts"
161161
162 #: account/models.py:29
162 #: account/models.py:27
163163 msgid "primary"
164164 msgstr "primārā"
165165
166 #: account/models.py:34
166 #: account/models.py:32
167167 msgid "email address"
168168 msgstr "e-pasta adrese"
169169
170 #: account/models.py:35
170 #: account/models.py:33
171171 msgid "email addresses"
172172 msgstr "e-pasta adreses"
173173
174 #: account/models.py:83
174 #: account/models.py:80
175175 msgid "created"
176176 msgstr "izveidots"
177177
178 #: account/models.py:85
178 #: account/models.py:82
179179 msgid "sent"
180180 msgstr "nosūtīts"
181181
182 #: account/models.py:86 socialaccount/models.py:58
182 #: account/models.py:83 socialaccount/models.py:55
183183 msgid "key"
184184 msgstr "atslēga"
185185
186 #: account/models.py:91
186 #: account/models.py:88
187187 msgid "email confirmation"
188188 msgstr "e-pasta apstiprinājums"
189189
190 #: account/models.py:92
190 #: account/models.py:89
191191 msgid "email confirmations"
192192 msgstr "e-pasta apstiprinājumi"
193193
194 #: socialaccount/adapter.py:27
194 #: socialaccount/adapter.py:26
195195 #, python-format
196196 msgid ""
197197 "An account already exists with this e-mail address. Please sign in to that "
200200 "Jau eksistē konts ar šo e-pasta adresi. Lūdzu sākumā ieejiet tajā kontā, tad "
201201 "pievienojiet %s kontu."
202202
203 #: socialaccount/adapter.py:132
203 #: socialaccount/adapter.py:131
204204 msgid "Your account has no password set up."
205205 msgstr "Jūsu kontam nav uzstādīta parole."
206206
207 #: socialaccount/adapter.py:139
207 #: socialaccount/adapter.py:138
208208 msgid "Your account has no verified e-mail address."
209209 msgstr "Jūsu kontam nav apstiprinātas e-pasta adreses."
210210
211 #: socialaccount/apps.py:8
211 #: socialaccount/apps.py:7
212212 msgid "Social Accounts"
213213 msgstr "Sociālie konti"
214214
215 #: socialaccount/models.py:46 socialaccount/models.py:80
215 #: socialaccount/models.py:42 socialaccount/models.py:76
216216 msgid "provider"
217217 msgstr "sniedzējs"
218218
219 #: socialaccount/models.py:49
219 #: socialaccount/models.py:45
220220 msgid "name"
221221 msgstr "vārds"
222222
223 #: socialaccount/models.py:51
223 #: socialaccount/models.py:47
224224 msgid "client id"
225225 msgstr "klienta id"
226226
227 #: socialaccount/models.py:53
227 #: socialaccount/models.py:49
228228 msgid "App ID, or consumer key"
229229 msgstr "App ID, vai consumer key"
230230
231 #: socialaccount/models.py:54
231 #: socialaccount/models.py:50
232232 msgid "secret key"
233233 msgstr "secret key"
234234
235 #: socialaccount/models.py:56
235 #: socialaccount/models.py:53
236236 msgid "API secret, client secret, or consumer secret"
237237 msgstr "API secret, client secret, vai consumer secret"
238238
239 #: socialaccount/models.py:61
239 #: socialaccount/models.py:58
240240 msgid "Key"
241241 msgstr "Key"
242242
243 #: socialaccount/models.py:69
243 #: socialaccount/models.py:66
244244 msgid "social application"
245245 msgstr "sociālā aplikācija"
246246
247 #: socialaccount/models.py:70
247 #: socialaccount/models.py:67
248248 msgid "social applications"
249249 msgstr "sociālās aplikācijas"
250250
251 #: socialaccount/models.py:99
251 #: socialaccount/models.py:95
252252 msgid "uid"
253253 msgstr "uid"
254254
255 #: socialaccount/models.py:101
255 #: socialaccount/models.py:97
256256 msgid "last login"
257257 msgstr "pēdējā pieslēgšanās"
258258
259 #: socialaccount/models.py:103
259 #: socialaccount/models.py:99
260260 msgid "date joined"
261261 msgstr "reģistrācijas datums"
262262
263 #: socialaccount/models.py:105
263 #: socialaccount/models.py:101
264264 msgid "extra data"
265265 msgstr "papildus informācija"
266266
267 #: socialaccount/models.py:109
267 #: socialaccount/models.py:105
268268 msgid "social account"
269269 msgstr "sociālais konts"
270270
271 #: socialaccount/models.py:110
271 #: socialaccount/models.py:106
272272 msgid "social accounts"
273273 msgstr "sociālie konti"
274274
275 #: socialaccount/models.py:136
275 #: socialaccount/models.py:131
276276 msgid "token"
277277 msgstr "token"
278278
279 #: socialaccount/models.py:138
279 #: socialaccount/models.py:133
280280 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
281281 msgstr "\"oauth_token\" (OAuth1) vai piekļūt marķierim (OAuth2)"
282282
283 #: socialaccount/models.py:141
283 #: socialaccount/models.py:136
284284 msgid "token secret"
285285 msgstr "token secret"
286286
287 #: socialaccount/models.py:143
287 #: socialaccount/models.py:138
288288 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
289289 msgstr "\"oauth_token_secret\" (OAuth1) vai atjaunot marķieri (OAuth2)"
290290
291 #: socialaccount/models.py:145
291 #: socialaccount/models.py:140
292292 msgid "expires at"
293293 msgstr "beidzas"
294294
295 #: socialaccount/models.py:149
295 #: socialaccount/models.py:144
296296 msgid "social application token"
297297 msgstr "sociālās aplikācijas marķieris"
298298
299 #: socialaccount/models.py:150
299 #: socialaccount/models.py:145
300300 msgid "social application tokens"
301301 msgstr "sociālās aplikācijas marķieri"
302302
303 #: socialaccount/providers/douban/views.py:35
303 #: socialaccount/providers/douban/views.py:36
304304 msgid "Invalid profile data"
305305 msgstr ""
306306
77 msgstr ""
88 "Project-Id-Version: django-allauth\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-08-29 16:33-0500\n"
10 "POT-Creation-Date: 2019-12-18 11:53-0600\n"
1111 "PO-Revision-Date: 2016-07-25 15:18+0200\n"
1212 "Last-Translator: pennersr <raymond.penners@intenct.nl>\n"
1313 "Language-Team: Dutch (http://www.transifex.com/projects/p/django-allauth/"
2424
2525 #: account/adapter.py:49
2626 msgid "Too many failed login attempts. Try again later."
27 msgstr "Teveel foutieve inlog pogingen. Probeer het later nogmaals."
27 msgstr "Te veel inlogpogingen. Probeer het later nogmaals."
2828
2929 #: account/adapter.py:51
3030 msgid "A user is already registered with this e-mail address."
3535 msgid "Password must be a minimum of {0} characters."
3636 msgstr "Het wachtwoord moet minimaal {0} tekens bevatten."
3737
38 #: account/apps.py:8
38 #: account/apps.py:7
3939 msgid "Accounts"
4040 msgstr "Accounts"
4141
42 #: account/forms.py:63 account/forms.py:400
42 #: account/forms.py:61 account/forms.py:398
4343 msgid "You must type the same password each time."
4444 msgstr "Je moet hetzelfde wachtwoord twee keer intoetsen."
4545
46 #: account/forms.py:93 account/forms.py:367 account/forms.py:478
46 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4747 msgid "Password"
4848 msgstr "Wachtwoord"
4949
50 #: account/forms.py:94
50 #: account/forms.py:92
5151 msgid "Remember Me"
5252 msgstr "Onthouden"
5353
54 #: account/forms.py:100
54 #: account/forms.py:98
5555 msgid "This account is currently inactive."
5656 msgstr "Dit account is niet actief"
5757
58 #: account/forms.py:103
58 #: account/forms.py:101
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:106
62 #: account/forms.py:104
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:115 account/forms.py:270 account/forms.py:428
67 #: account/forms.py:497
66 #: account/forms.py:113 account/forms.py:268 account/forms.py:426
67 #: account/forms.py:495
6868 msgid "E-mail address"
6969 msgstr "E-mailadres"
7070
71 #: account/forms.py:117 account/forms.py:303 account/forms.py:423
72 #: account/forms.py:492
71 #: account/forms.py:115 account/forms.py:301 account/forms.py:421
72 #: account/forms.py:490
7373 msgid "E-mail"
7474 msgstr "E-mail"
7575
76 #: account/forms.py:122 account/forms.py:125 account/forms.py:262
77 #: account/forms.py:266
76 #: account/forms.py:120 account/forms.py:123 account/forms.py:260
77 #: account/forms.py:264
7878 msgid "Username"
7979 msgstr "Gebruikersnaam"
8080
81 #: account/forms.py:132
81 #: account/forms.py:130
8282 msgid "Username or e-mail"
8383 msgstr "Gebruikersnaam of e-mail"
8484
85 #: account/forms.py:135
85 #: account/forms.py:133
8686 msgctxt "field label"
8787 msgid "Login"
8888 msgstr "Login"
8989
90 #: account/forms.py:294
90 #: account/forms.py:292
9191 #, fuzzy
9292 #| msgid "E-mail (optional)"
9393 msgid "E-mail (again)"
9494 msgstr "E-mail (optioneel)"
9595
96 #: account/forms.py:298
96 #: account/forms.py:296
9797 msgid "E-mail address confirmation"
9898 msgstr "Bevestig e-mailadres"
9999
100 #: account/forms.py:306
100 #: account/forms.py:304
101101 msgid "E-mail (optional)"
102102 msgstr "E-mail (optioneel)"
103103
104 #: account/forms.py:347
104 #: account/forms.py:345
105105 msgid "You must type the same email each time."
106106 msgstr "Je moet hetzelfde e-mailadres twee keer intoetsen."
107107
108 #: account/forms.py:370 account/forms.py:479
108 #: account/forms.py:368 account/forms.py:477
109109 msgid "Password (again)"
110110 msgstr "Wachtwoord (bevestigen)"
111111
112 #: account/forms.py:434
112 #: account/forms.py:432
113113 msgid "This e-mail address is already associated with this account."
114114 msgstr "Dit e-mailadres is al geassocieerd met dit account."
115115
116 #: account/forms.py:436
116 #: account/forms.py:434
117117 msgid "This e-mail address is already associated with another account."
118118 msgstr "Dit e-mailadres is al geassocieerd met een ander account."
119119
120 #: account/forms.py:458
120 #: account/forms.py:456
121121 msgid "Current Password"
122122 msgstr "Huidig wachtwoord"
123123
124 #: account/forms.py:459 account/forms.py:548
124 #: account/forms.py:457 account/forms.py:546
125125 msgid "New Password"
126126 msgstr "Nieuw wachtwoord"
127127
128 #: account/forms.py:460 account/forms.py:549
128 #: account/forms.py:458 account/forms.py:547
129129 msgid "New Password (again)"
130130 msgstr "Nieuw wachtwoord (bevestigen)"
131131
132 #: account/forms.py:468
132 #: account/forms.py:466
133133 msgid "Please type your current password."
134134 msgstr "Geef je huidige wachtwoord op."
135135
136 #: account/forms.py:506
136 #: account/forms.py:504
137137 msgid "The e-mail address is not assigned to any user account"
138138 msgstr "Dit e-mailadres is niet bij ons bekend"
139139
140 #: account/forms.py:570
140 #: account/forms.py:568
141141 msgid "The password reset token was invalid."
142142 msgstr "De wachtwoordherstel-sleutel is niet geldig."
143143
144 #: account/models.py:23
144 #: account/models.py:21
145145 msgid "user"
146146 msgstr "gebruiker"
147147
148 #: account/models.py:27 account/models.py:81
148 #: account/models.py:25 account/models.py:78
149149 msgid "e-mail address"
150150 msgstr "e-mailadres"
151151
152 #: account/models.py:28
152 #: account/models.py:26
153153 msgid "verified"
154154 msgstr "geverifieerd"
155155
156 #: account/models.py:29
156 #: account/models.py:27
157157 msgid "primary"
158158 msgstr "Primair"
159159
160 #: account/models.py:34
160 #: account/models.py:32
161161 msgid "email address"
162162 msgstr "e-mailadres"
163163
164 #: account/models.py:35
164 #: account/models.py:33
165165 msgid "email addresses"
166166 msgstr "e-mailadressen"
167167
168 #: account/models.py:83
168 #: account/models.py:80
169169 msgid "created"
170170 msgstr "aangemaakt"
171171
172 #: account/models.py:85
172 #: account/models.py:82
173173 msgid "sent"
174174 msgstr "verstuurd"
175175
176 #: account/models.py:86 socialaccount/models.py:58
176 #: account/models.py:83 socialaccount/models.py:55
177177 msgid "key"
178178 msgstr "sleutel"
179179
180 #: account/models.py:91
180 #: account/models.py:88
181181 msgid "email confirmation"
182182 msgstr "e-mailadres bevestiging"
183183
184 #: account/models.py:92
184 #: account/models.py:89
185185 msgid "email confirmations"
186186 msgstr "e-mailadres bevestigingen"
187187
188 #: socialaccount/adapter.py:27
188 #: socialaccount/adapter.py:26
189189 #, python-format
190190 msgid ""
191191 "An account already exists with this e-mail address. Please sign in to that "
194194 "Er bestaat al een account met dit e-mailadres. Meld je eerst aan met dit "
195195 "account, verbind daarna je %s account."
196196
197 #: socialaccount/adapter.py:132
197 #: socialaccount/adapter.py:131
198198 msgid "Your account has no password set up."
199199 msgstr "Je account heeft geen wachtwoord ingesteld."
200200
201 #: socialaccount/adapter.py:139
201 #: socialaccount/adapter.py:138
202202 msgid "Your account has no verified e-mail address."
203203 msgstr "Je account heeft geen geverifieerd e-mailadres."
204204
205 #: socialaccount/apps.py:8
205 #: socialaccount/apps.py:7
206206 msgid "Social Accounts"
207207 msgstr "Sociale accounts"
208208
209 #: socialaccount/models.py:46 socialaccount/models.py:80
209 #: socialaccount/models.py:42 socialaccount/models.py:76
210210 msgid "provider"
211211 msgstr ""
212212
213 #: socialaccount/models.py:49
213 #: socialaccount/models.py:45
214214 msgid "name"
215215 msgstr "naam"
216216
217 #: socialaccount/models.py:51
217 #: socialaccount/models.py:47
218218 msgid "client id"
219219 msgstr ""
220220
221 #: socialaccount/models.py:49
222 msgid "App ID, or consumer key"
223 msgstr ""
224
225 #: socialaccount/models.py:50
226 msgid "secret key"
227 msgstr ""
228
221229 #: socialaccount/models.py:53
222 msgid "App ID, or consumer key"
223 msgstr ""
224
225 #: socialaccount/models.py:54
226 msgid "secret key"
227 msgstr ""
228
229 #: socialaccount/models.py:56
230230 msgid "API secret, client secret, or consumer secret"
231231 msgstr ""
232232
233 #: socialaccount/models.py:61
233 #: socialaccount/models.py:58
234234 msgid "Key"
235235 msgstr ""
236236
237 #: socialaccount/models.py:69
237 #: socialaccount/models.py:66
238238 msgid "social application"
239239 msgstr ""
240240
241 #: socialaccount/models.py:70
241 #: socialaccount/models.py:67
242242 msgid "social applications"
243243 msgstr ""
244244
245 #: socialaccount/models.py:95
246 msgid "uid"
247 msgstr ""
248
249 #: socialaccount/models.py:97
250 msgid "last login"
251 msgstr ""
252
245253 #: socialaccount/models.py:99
246 msgid "uid"
254 msgid "date joined"
247255 msgstr ""
248256
249257 #: socialaccount/models.py:101
250 msgid "last login"
251 msgstr ""
252
253 #: socialaccount/models.py:103
254 msgid "date joined"
258 msgid "extra data"
255259 msgstr ""
256260
257261 #: socialaccount/models.py:105
258 msgid "extra data"
259 msgstr ""
260
261 #: socialaccount/models.py:109
262262 msgid "social account"
263263 msgstr ""
264264
265 #: socialaccount/models.py:110
265 #: socialaccount/models.py:106
266266 msgid "social accounts"
267267 msgstr ""
268268
269 #: socialaccount/models.py:131
270 msgid "token"
271 msgstr ""
272
273 #: socialaccount/models.py:133
274 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
275 msgstr ""
276
269277 #: socialaccount/models.py:136
270 msgid "token"
278 msgid "token secret"
271279 msgstr ""
272280
273281 #: socialaccount/models.py:138
274 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
275 msgstr ""
276
277 #: socialaccount/models.py:141
278 msgid "token secret"
279 msgstr ""
280
281 #: socialaccount/models.py:143
282282 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
283283 msgstr ""
284284
285 #: socialaccount/models.py:140
286 msgid "expires at"
287 msgstr ""
288
289 #: socialaccount/models.py:144
290 msgid "social application token"
291 msgstr ""
292
285293 #: socialaccount/models.py:145
286 msgid "expires at"
287 msgstr ""
288
289 #: socialaccount/models.py:149
290 msgid "social application token"
291 msgstr ""
292
293 #: socialaccount/models.py:150
294294 msgid "social application tokens"
295295 msgstr ""
296296
297 #: socialaccount/providers/douban/views.py:35
297 #: socialaccount/providers/douban/views.py:36
298298 msgid "Invalid profile data"
299299 msgstr ""
300300
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-08-29 16:33-0500\n"
11 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10 "POT-Creation-Date: 2019-12-18 11:53-0600\n"
11 "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"
1414 "Language: \n"
1818
1919 #: account/adapter.py:45
2020 msgid "Username can not be used. Please use other username."
21 msgstr "Brukernavnet kan ikke brukes. Vennligst bruk et annet brukernavn."
21 msgstr "Brukernavnet kan ikke benyttes. Vennligst velg et annet brukernavn."
2222
2323 #: account/adapter.py:49
2424 msgid "Too many failed login attempts. Try again later."
2626
2727 #: account/adapter.py:51
2828 msgid "A user is already registered with this e-mail address."
29 msgstr "En bruker med følgende e-postadresse er allerede registrert."
29 msgstr "En bruker med denne e-postadressen er allerede registrert."
3030
3131 #: account/adapter.py:294
3232 #, python-brace-format
3333 msgid "Password must be a minimum of {0} characters."
3434 msgstr "Passordet må være minst {0} tegn."
3535
36 #: account/apps.py:8
36 #: account/apps.py:7
3737 msgid "Accounts"
3838 msgstr "Kontoer"
3939
40 #: account/forms.py:63 account/forms.py:400
40 #: account/forms.py:61 account/forms.py:398
4141 msgid "You must type the same password each time."
4242 msgstr "Du må skrive det samme passordet hver gang."
4343
44 #: account/forms.py:93 account/forms.py:367 account/forms.py:478
44 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4545 msgid "Password"
4646 msgstr "Passord"
4747
48 #: account/forms.py:94
48 #: account/forms.py:92
4949 msgid "Remember Me"
5050 msgstr "Husk meg"
5151
52 #: account/forms.py:100
52 #: account/forms.py:98
5353 msgid "This account is currently inactive."
54 msgstr "Denne kontoen er for tiden inaktiv."
55
56 #: account/forms.py:103
54 msgstr "Denne kontoen er inaktiv."
55
56 #: account/forms.py:101
5757 msgid "The e-mail address and/or password you specified are not correct."
58 msgstr "E-postadressen og/eller passordet du spesifiserte er feil."
59
60 #: account/forms.py:106
58 msgstr "E-postadressen og/eller passordet du oppgav er feil."
59
60 #: account/forms.py:104
6161 msgid "The username and/or password you specified are not correct."
62 msgstr "Brukernavnet og/eller passordet du spesifiserte er feil."
63
64 #: account/forms.py:115 account/forms.py:270 account/forms.py:428
65 #: account/forms.py:497
62 msgstr "Brukernavnet og/eller passordet du oppgav er feil."
63
64 #: account/forms.py:113 account/forms.py:268 account/forms.py:426
65 #: account/forms.py:495
6666 msgid "E-mail address"
6767 msgstr "E-postadresse"
6868
69 #: account/forms.py:117 account/forms.py:303 account/forms.py:423
70 #: account/forms.py:492
69 #: account/forms.py:115 account/forms.py:301 account/forms.py:421
70 #: account/forms.py:490
7171 msgid "E-mail"
7272 msgstr "E-post"
7373
74 #: account/forms.py:122 account/forms.py:125 account/forms.py:262
75 #: account/forms.py:266
74 #: account/forms.py:120 account/forms.py:123 account/forms.py:260
75 #: account/forms.py:264
7676 msgid "Username"
7777 msgstr "Brukernavn"
7878
79 #: account/forms.py:132
79 #: account/forms.py:130
8080 msgid "Username or e-mail"
8181 msgstr "Brukernavn eller e-post"
8282
83 #: account/forms.py:135
83 #: account/forms.py:133
8484 msgctxt "field label"
8585 msgid "Login"
8686 msgstr "Logg inn"
8787
88 #: account/forms.py:294
88 #: account/forms.py:292
8989 msgid "E-mail (again)"
9090 msgstr "E-post (igjen)"
9191
92 #: account/forms.py:298
92 #: account/forms.py:296
9393 msgid "E-mail address confirmation"
94 msgstr "E-postadresse bekreftelse"
95
96 #: account/forms.py:306
94 msgstr "Bekreftelse av e-postadresse"
95
96 #: account/forms.py:304
9797 msgid "E-mail (optional)"
9898 msgstr "E-post (valgfritt)"
9999
100 #: account/forms.py:347
100 #: account/forms.py:345
101101 msgid "You must type the same email each time."
102102 msgstr "Du må skrive inn samme e-post hver gang."
103103
104 #: account/forms.py:370 account/forms.py:479
104 #: account/forms.py:368 account/forms.py:477
105105 msgid "Password (again)"
106106 msgstr "Passord (igjen)"
107107
108 #: account/forms.py:432
109 msgid "This e-mail address is already associated with this account."
110 msgstr "Denne e-postadressen er allerede tilknyttet denne kontoen."
111
108112 #: account/forms.py:434
109 msgid "This e-mail address is already associated with this account."
110 msgstr "Denne e-postadressen er allerede assosiert med denne kontoen."
111
112 #: account/forms.py:436
113113 msgid "This e-mail address is already associated with another account."
114 msgstr "Denne e-postadressen er allerede assosiert med en annen konto."
115
116 #: account/forms.py:458
114 msgstr "Denne e-postadressen er tilknyttet en annen konto."
115
116 #: account/forms.py:456
117117 msgid "Current Password"
118118 msgstr "Nåværende passord"
119119
120 #: account/forms.py:459 account/forms.py:548
120 #: account/forms.py:457 account/forms.py:546
121121 msgid "New Password"
122122 msgstr "Nytt passord"
123123
124 #: account/forms.py:460 account/forms.py:549
124 #: account/forms.py:458 account/forms.py:547
125125 msgid "New Password (again)"
126126 msgstr "Nytt passord (igjen)"
127127
128 #: account/forms.py:468
128 #: account/forms.py:466
129129 msgid "Please type your current password."
130130 msgstr "Vennligst skriv inn ditt passord."
131131
132 #: account/forms.py:506
132 #: account/forms.py:504
133133 msgid "The e-mail address is not assigned to any user account"
134 msgstr "E-postadressen er ikke gitt til en brukerkonto"
135
136 #: account/forms.py:570
134 msgstr "E-postadressen er ikke tilknyttet noen brukerkonto"
135
136 #: account/forms.py:568
137137 msgid "The password reset token was invalid."
138 msgstr "Passord gjennoprettelses token var ugyldig."
139
140 #: account/models.py:23
138 msgstr "Nøkkelen for passordgjenopprettelse var ugyldig."
139
140 #: account/models.py:21
141141 msgid "user"
142142 msgstr "bruker"
143143
144 #: account/models.py:27 account/models.py:81
144 #: account/models.py:25 account/models.py:78
145145 msgid "e-mail address"
146146 msgstr "epostadresse"
147147
148 #: account/models.py:28
148 #: account/models.py:26
149149 msgid "verified"
150150 msgstr "verifisert"
151151
152 #: account/models.py:29
152 #: account/models.py:27
153153 msgid "primary"
154154 msgstr "primær"
155155
156 #: account/models.py:34
156 #: account/models.py:32
157157 msgid "email address"
158158 msgstr "e-postadresse"
159159
160 #: account/models.py:35
160 #: account/models.py:33
161161 msgid "email addresses"
162162 msgstr "e-postadresser"
163163
164 #: account/models.py:83
164 #: account/models.py:80
165165 msgid "created"
166 msgstr "laget"
167
168 #: account/models.py:85
166 msgstr "opprettet"
167
168 #: account/models.py:82
169169 msgid "sent"
170170 msgstr "sendt"
171171
172 #: account/models.py:86 socialaccount/models.py:58
172 #: account/models.py:83 socialaccount/models.py:55
173173 msgid "key"
174174 msgstr "nøkkel"
175175
176 #: account/models.py:91
176 #: account/models.py:88
177177 msgid "email confirmation"
178 msgstr "e-post bekreftelse"
179
180 #: account/models.py:92
178 msgstr "e-postbekreftelse"
179
180 #: account/models.py:89
181181 msgid "email confirmations"
182 msgstr "e-post bekreftelser"
183
184 #: socialaccount/adapter.py:27
182 msgstr "e-postbekreftelser"
183
184 #: socialaccount/adapter.py:26
185185 #, python-format
186186 msgid ""
187187 "An account already exists with this e-mail address. Please sign in to that "
188188 "account first, then connect your %s account."
189189 msgstr ""
190190 "En konto med denne e-postadressen eksisterer fra før. Vennligst logg inn på "
191 "den kontoen først, deretter koble til din %s konto."
192
193 #: socialaccount/adapter.py:132
191 "den kontoen først for så å koble til din %s konto."
192
193 #: socialaccount/adapter.py:131
194194 msgid "Your account has no password set up."
195 msgstr "Kontoen din har ingen passord satt opp."
196
197 #: socialaccount/adapter.py:139
195 msgstr "Kontoen din har ikke noe passord."
196
197 #: socialaccount/adapter.py:138
198198 msgid "Your account has no verified e-mail address."
199199 msgstr "Din konto har ingen verifisert e-postadresse."
200200
201 #: socialaccount/apps.py:8
201 #: socialaccount/apps.py:7
202202 msgid "Social Accounts"
203 msgstr "Sosialkontoer"
204
205 #: socialaccount/models.py:46 socialaccount/models.py:80
203 msgstr "Sosiale kontoer"
204
205 #: socialaccount/models.py:42 socialaccount/models.py:76
206206 msgid "provider"
207207 msgstr "tilbyder"
208208
209 #: socialaccount/models.py:49
209 #: socialaccount/models.py:45
210210 msgid "name"
211211 msgstr "navn"
212212
213 #: socialaccount/models.py:51
213 #: socialaccount/models.py:47
214214 msgid "client id"
215 msgstr "klient id"
216
217 #: socialaccount/models.py:53
215 msgstr "klient-ID"
216
217 #: socialaccount/models.py:49
218218 msgid "App ID, or consumer key"
219 msgstr "App ID, eller konsumer nøkkel"
220
221 #: socialaccount/models.py:54
219 msgstr "App-ID eller konsumentnøkkel"
220
221 #: socialaccount/models.py:50
222222 msgid "secret key"
223223 msgstr "hemmelig nøkkel"
224224
225 #: socialaccount/models.py:56
225 #: socialaccount/models.py:53
226226 msgid "API secret, client secret, or consumer secret"
227 msgstr "API hemmelighet, klient hemmelighet eller konsumer hemmelighet"
228
229 #: socialaccount/models.py:61
227 msgstr "API-nøkkel, klient-nøkkel eller konsumentnøkkel"
228
229 #: socialaccount/models.py:58
230230 msgid "Key"
231231 msgstr "Nøkkel"
232232
233 #: socialaccount/models.py:69
233 #: socialaccount/models.py:66
234234 msgid "social application"
235235 msgstr "sosial applikasjon"
236236
237 #: socialaccount/models.py:70
237 #: socialaccount/models.py:67
238238 msgid "social applications"
239 msgstr "sosial applikasjoner"
240
241 #: socialaccount/models.py:99
239 msgstr "sosiale applikasjoner"
240
241 #: socialaccount/models.py:95
242242 msgid "uid"
243243 msgstr "uid"
244244
245 #: socialaccount/models.py:101
245 #: socialaccount/models.py:97
246246 msgid "last login"
247247 msgstr "siste innlogging"
248248
249 #: socialaccount/models.py:103
249 #: socialaccount/models.py:99
250250 msgid "date joined"
251251 msgstr "ble med dato"
252252
253 #: socialaccount/models.py:105
253 #: socialaccount/models.py:101
254254 msgid "extra data"
255255 msgstr "ekstra data"
256256
257 #: socialaccount/models.py:109
257 #: socialaccount/models.py:105
258258 msgid "social account"
259259 msgstr "sosialkonto"
260260
261 #: socialaccount/models.py:110
261 #: socialaccount/models.py:106
262262 msgid "social accounts"
263263 msgstr "sosialkontoer"
264264
265 #: socialaccount/models.py:136
265 #: socialaccount/models.py:131
266266 msgid "token"
267 msgstr "token"
268
269 #: socialaccount/models.py:138
267 msgstr "nøkkel"
268
269 #: socialaccount/models.py:133
270270 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
271271 msgstr "\"oauth_token\" (OAuth1) eller aksess token (OAuth2)"
272272
273 #: socialaccount/models.py:141
273 #: socialaccount/models.py:136
274274 msgid "token secret"
275 msgstr "token hemmelighet"
276
277 #: socialaccount/models.py:143
275 msgstr "hemmelig nøkkel"
276
277 #: socialaccount/models.py:138
278278 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
279 msgstr "\"oauth_token_secret\" (OAuth1) eller forfrisknings token (OAuth2)"
280
281 #: socialaccount/models.py:145
279 msgstr "\"oauth_token_secret\" (OAuth1) eller oppdateringsnøkkel (OAuth2)"
280
281 #: socialaccount/models.py:140
282282 msgid "expires at"
283283 msgstr "utgår den"
284284
285 #: socialaccount/models.py:149
285 #: socialaccount/models.py:144
286286 msgid "social application token"
287 msgstr "sosial applikasjon token"
288
289 #: socialaccount/models.py:150
287 msgstr "sosial applikasjonsnøkkel"
288
289 #: socialaccount/models.py:145
290290 msgid "social application tokens"
291 msgstr "sosial applikasjon tokener"
292
293 #: socialaccount/providers/douban/views.py:35
291 msgstr "sosial applikasjonsnøkler"
292
293 #: socialaccount/providers/douban/views.py:36
294294 msgid "Invalid profile data"
295 msgstr "Ugyldig profil data"
295 msgstr "Ugyldig profildata"
296296
297297 #: socialaccount/providers/oauth/client.py:78
298298 #, python-format
299299 msgid "Invalid response while obtaining request token from \"%s\"."
300 msgstr "Ugyldig respons under henting av etterspørseltoken fra \"%s\"."
300 msgstr "Ugyldig respons ved henting av forespørselsnøkkel fra \"%s\"."
301301
302302 #: socialaccount/providers/oauth/client.py:109
303303 #, python-format
304304 msgid "Invalid response while obtaining access token from \"%s\"."
305 msgstr "Ugyldig respons under henting av tilgangstoken fra \"%s\"."
305 msgstr "Ugyldig respons ved henting av tilgangsnøkkel fra \"%s\"."
306306
307307 #: socialaccount/providers/oauth/client.py:128
308308 #, python-format
309309 msgid "No request token saved for \"%s\"."
310 msgstr "Ingen etterspørselstoken lagret for \"%s\"."
310 msgstr "Ingen etterspørselsnøkler lagret for \"%s\"."
311311
312312 #: socialaccount/providers/oauth/client.py:177
313313 #, python-format
314314 msgid "No access token saved for \"%s\"."
315 msgstr "Ingen tilgangstoken lagret for \"%s\"."
315 msgstr "Ingen tilgangsnøkler lagret for \"%s\"."
316316
317317 #: socialaccount/providers/oauth/client.py:197
318318 #, python-format
346346
347347 #: templates/account/email.html:26
348348 msgid "Unverified"
349 msgstr "Uverifisert"
349 msgstr "Ikke verifisert"
350350
351351 #: templates/account/email.html:28
352352 msgid "Primary"
354354
355355 #: templates/account/email.html:34
356356 msgid "Make Primary"
357 msgstr "Gjør til primær"
357 msgstr "Sett som primær"
358358
359359 #: templates/account/email.html:35
360360 msgid "Re-send Verification"
374374 "an e-mail address so you can receive notifications, reset your password, etc."
375375 msgstr ""
376376 "Du har for tiden ingen e-postadresse satt opp. Du burde legge til en e-"
377 "postadresse slik at du kan motta notifikasjoner, gjennoprette passord ol."
377 "postadresse slik at du kan motta varsler, gjennoprette passord ol."
378378
379379 #: templates/account/email.html:48
380380 msgid "Add E-mail Address"
416416
417417 #: templates/account/email/email_confirmation_subject.txt:3
418418 msgid "Please Confirm Your E-mail Address"
419 msgstr "Vennligst Bekreft Din E-postadresse"
419 msgstr "Vennligst bekreft din e-postadresse"
420420
421421 #: templates/account/email/password_reset_key_message.txt:1
422422 #, python-format
433433 "Du mottar denne e-postadressen fordi du eller noen andre har etterspurt et "
434434 "passord for din brukerkonto.\n"
435435 "Meldingen kan trygt ignoreres om du ikke foretok denne etterspørselen. Klikk "
436 "på linken under for å gjennopprette ditt passord."
436 "på linken nedenfor for å gjennopprette ditt passord."
437437
438438 #: templates/account/email/password_reset_key_message.txt:8
439439 #, python-format
440440 msgid "In case you forgot, your username is %(username)s."
441 msgstr "I tilfelle du glemte, brukernavnet ditt er %(username)s."
441 msgstr "I tilfelle du har glemt det: Brukernavnet ditt er %(username)s."
442442
443443 #: templates/account/email/password_reset_key_message.txt:10
444444 #, python-format
451451
452452 #: templates/account/email/password_reset_key_subject.txt:3
453453 msgid "Password Reset E-mail"
454 msgstr "Passordgjennopprettelse E-post"
454 msgstr "E-post for gjenopprettelse av passord"
455455
456456 #: templates/account/email_confirm.html:6
457457 #: templates/account/email_confirm.html:10
458458 msgid "Confirm E-mail Address"
459 msgstr "Bekreft E-postadresse"
459 msgstr "Bekreft e-postadresse"
460460
461461 #: templates/account/email_confirm.html:16
462462 #, python-format
477477 "This e-mail confirmation link expired or is invalid. Please <a href="
478478 "\"%(email_url)s\">issue a new e-mail confirmation request</a>."
479479 msgstr ""
480 "Denne e-post bekreftelseslinken er utgått eller ugyldig. Vennligst <a href="
481 "\"%(email_url)s\">etterspør en ny e-postbekreftelse link</a>."
480 "Denne e-postbekreftelseslinken er utgått eller ugyldig. Vennligst <a href="
481 "\"%(email_url)s\">etterspør en ny e-postbekreftelseslink</a>."
482482
483483 #: templates/account/login.html:6 templates/account/login.html:10
484484 #: templates/account/login.html:43
494494 "for a %(site_name)s account and sign in below:"
495495 msgstr ""
496496 "Vennligst logg in med en\n"
497 "av dine eksisterende tredjeparts kontoer. Eller, <a href=\"%(signup_url)s"
498 "\">registrer deg</a>\n"
499 "for en %(site_name)s konto og logg inn under:"
497 "av dine eksisterende tredjeparts kontoer på %(site_name)s. Eller, <a href=\"%(signup_url)s\">registrer deg</a>\n"
498 "og logg inn nedenfor:"
500499
501500 #: templates/account/login.html:25
502501 msgid "or"
527526 #: templates/account/messages/cannot_delete_primary_email.txt:2
528527 #, python-format
529528 msgid "You cannot remove your primary e-mail address (%(email)s)."
530 msgstr "Du kan ikke fjerne en primær e-postadresse (%(email)s)."
529 msgstr "Du kan ikke fjerne den primær e-postadressen (%(email)s)."
531530
532531 #: templates/account/messages/email_confirmation_sent.txt:2
533532 #, python-format
534533 msgid "Confirmation e-mail sent to %(email)s."
535 msgstr "Bekreftelses e-post er sendt til %(email)s."
534 msgstr "Bekreftelsese-post er sendt til %(email)s."
536535
537536 #: templates/account/messages/email_confirmed.txt:2
538537 #, python-format
539538 msgid "You have confirmed %(email)s."
540 msgstr "Du har blitt bekreftet %(email)s."
539 msgstr "Du har bekreftet %(email)s."
541540
542541 #: templates/account/messages/email_deleted.txt:2
543542 #, python-format
547546 #: templates/account/messages/logged_in.txt:4
548547 #, python-format
549548 msgid "Successfully signed in as %(name)s."
550 msgstr "Innlogging som %(name)s. suksessfull."
549 msgstr "Logget inn som %(name)s."
551550
552551 #: templates/account/messages/logged_out.txt:2
553552 msgid "You have signed out."
584583 #: templates/account/password_reset_done.html:6
585584 #: templates/account/password_reset_done.html:9
586585 msgid "Password Reset"
587 msgstr "Passord gjennopprettelse"
586 msgstr "Passordgjenopprettelse"
588587
589588 #: templates/account/password_reset.html:15
590589 msgid ""
591590 "Forgotten your password? Enter your e-mail address below, and we'll send you "
592591 "an e-mail allowing you to reset it."
593592 msgstr ""
594 "Glemt ditt passord? Skriv inn din e-postadresse under, og så sender vi deg "
593 "Glemt ditt passord? Skriv inn din e-postadresse nedenfor, så sender vi deg "
595594 "en e-post for å lage et nytt."
596595
597596 #: templates/account/password_reset.html:20
598597 msgid "Reset My Password"
599 msgstr "Gjennoprett mitt passord"
598 msgstr "Gjenopprett mitt passord"
600599
601600 #: templates/account/password_reset.html:23
602601 msgid "Please contact us if you have any trouble resetting your password."
603 msgstr ""
604 "Vennligst kontakt oss om du har problemer med passordgjennopprettelsen."
602 msgstr "Vennligst kontakt oss om du har problemer med passordgjenopprettelsen."
605603
606604 #: templates/account/password_reset_done.html:15
607605 msgid ""
622620 "used. Please request a <a href=\"%(passwd_reset_url)s\">new password reset</"
623621 "a>."
624622 msgstr ""
625 "Passordgjennoppretelseslinken er ugyldig, mulig fordi den allerede er brukt. "
626 "Vennligst etterspør en <a href=\"%(passwd_reset_url)s\">ny passord "
627 "gjennopprettelse</a>."
623 "Passordgjenopprettelseslinken er ugyldig – muligens fordi den allerede er "
624 "brukt. Vennligst etterspør en <a href=\"%(passwd_reset_url)s\">ny "
625 "passordgjennopprettelse</a>."
628626
629627 #: templates/account/password_reset_from_key.html:17
630628 msgid "change password"
672670 #: templates/account/snippets/already_logged_in.html:5
673671 #, python-format
674672 msgid "you are already logged in as %(user_display)s."
675 msgstr "du er allerede logget in som %(user_display)s."
673 msgstr "du er allerede logget inn som %(user_display)s."
676674
677675 #: templates/account/verification_sent.html:5
678676 #: templates/account/verification_sent.html:8
679677 #: templates/account/verified_email_required.html:5
680678 #: templates/account/verified_email_required.html:8
681679 msgid "Verify Your E-mail Address"
682 msgstr "Bekreft Din E-postadresse"
680 msgstr "Bekreft din e-postadresse"
683681
684682 #: templates/account/verification_sent.html:10
685683 msgid ""
707705 "contact us if you do not receive it within a few minutes."
708706 msgstr ""
709707 "Vi har send en e-post til deg for\n"
710 "verifikasjon. Vennligst klikk på linken i e-posten.Vennligst kontakt oss om "
708 "verifikasjon. Vennligst klikk på linken i e-posten. Vennligst kontakt oss om "
711709 "du ikke mottar den innen et par minutter."
712710
713711 #: templates/account/verified_email_required.html:20
716714 "<strong>Note:</strong> you can still <a href=\"%(email_url)s\">change your e-"
717715 "mail address</a>."
718716 msgstr ""
719 "<stron>Notat:</strong> du kan fremdeles <a href=\"%(email_url)s\">endre din "
717 "<stron>Merk:</strong> du kan fremdeles <a href=\"%(email_url)s\">endre din "
720718 "your e-postadresse</a>."
721719
722720 #: templates/openid/login.html:9
723721 msgid "OpenID Sign In"
724 msgstr "OpenID innlogging"
722 msgstr "OpenID-innlogging"
725723
726724 #: templates/socialaccount/authentication_error.html:5
727725 #: templates/socialaccount/authentication_error.html:8
728726 msgid "Social Network Login Failure"
729 msgstr "Sosialenettverk innlogging feilet"
727 msgstr "Innlogging ved hjelp av sosialt nettverk mislyktes"
730728
731729 #: templates/socialaccount/authentication_error.html:10
732730 msgid ""
733731 "An error occurred while attempting to login via your social network account."
734732 msgstr ""
735 "Det skjedde en feil under forsøket på å logge inn via din "
736 "sosialenettverkskonto."
733 "Det skjedde en feil ved forsøket på å logge inn via din nettverkskonto."
737734
738735 #: templates/socialaccount/connections.html:5
739736 #: templates/socialaccount/connections.html:8
750747 #: templates/socialaccount/connections.html:43
751748 msgid ""
752749 "You currently have no social network accounts connected to this account."
753 msgstr "Du har for tiden ingen sosialenettverkskontoer tilkoblet din konto."
750 msgstr "Du har for tiden ingen tredjepartskontoer tilkoblet din konto."
754751
755752 #: templates/socialaccount/connections.html:46
756753 msgid "Add a 3rd Party Account"
757 msgstr "Legg til en tredjeparts konto"
754 msgstr "Legg til en tredjepartskonto"
758755
759756 #: templates/socialaccount/login_cancelled.html:5
760757 #: templates/socialaccount/login_cancelled.html:9
774771
775772 #: templates/socialaccount/messages/account_connected.txt:2
776773 msgid "The social account has been connected."
777 msgstr "Sosialkontoen har blitt tilknytet."
774 msgstr "Tredjepartskontoen har blitt tilknytet."
778775
779776 #: templates/socialaccount/messages/account_connected_other.txt:2
780777 msgid "The social account is already connected to a different account."
781 msgstr "Sosialkontoen er allerede tilknytet til en annen konto."
778 msgstr "Tredjepartskonten er allerede tilknytet til en annen konto."
782779
783780 #: templates/socialaccount/messages/account_disconnected.txt:2
784781 msgid "The social account has been disconnected."
785 msgstr "Sosialkontoen er blitt frakoblet."
782 msgstr "Tredjepartskontoen er blitt frakoblet."
786783
787784 #: templates/socialaccount/signup.html:10
788785 #, python-format
55 msgstr ""
66 "Project-Id-Version: \n"
77 "Report-Msgid-Bugs-To: \n"
8 "POT-Creation-Date: 2019-08-29 16:33-0500\n"
8 "POT-Creation-Date: 2019-12-18 11:53-0600\n"
99 "PO-Revision-Date: 2018-10-04 02:18+0200\n"
1010 "Last-Translator: Adam Dobrawy <naczelnik@jawnosc.tk>\n"
1111 "Language-Team: \n"
3232 msgid "Password must be a minimum of {0} characters."
3333 msgstr "Hasło musi składać się minimalnie z {0} znaków."
3434
35 #: account/apps.py:8
35 #: account/apps.py:7
3636 msgid "Accounts"
3737 msgstr "Konta"
3838
39 #: account/forms.py:63 account/forms.py:400
39 #: account/forms.py:61 account/forms.py:398
4040 msgid "You must type the same password each time."
4141 msgstr "Musisz wpisać za każdym razem to samo hasło"
4242
43 #: account/forms.py:93 account/forms.py:367 account/forms.py:478
43 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4444 msgid "Password"
4545 msgstr "Hasło"
4646
47 #: account/forms.py:94
47 #: account/forms.py:92
4848 msgid "Remember Me"
4949 msgstr "Pamiętaj mnie"
5050
51 #: account/forms.py:100
51 #: account/forms.py:98
5252 msgid "This account is currently inactive."
5353 msgstr "Konto jest obecnie nieaktywne."
5454
55 #: account/forms.py:103
55 #: account/forms.py:101
5656 msgid "The e-mail address and/or password you specified are not correct."
5757 msgstr "Adres e-mail i/lub hasło, które podałeś, są niepoprawne."
5858
59 #: account/forms.py:106
59 #: account/forms.py:104
6060 msgid "The username and/or password you specified are not correct."
6161 msgstr "Użytkownik i/lub hasło które podałeś są niepoprawne."
6262
63 #: account/forms.py:115 account/forms.py:270 account/forms.py:428
64 #: account/forms.py:497
63 #: account/forms.py:113 account/forms.py:268 account/forms.py:426
64 #: account/forms.py:495
6565 msgid "E-mail address"
6666 msgstr "Adres e-mail"
6767
68 #: account/forms.py:117 account/forms.py:303 account/forms.py:423
69 #: account/forms.py:492
68 #: account/forms.py:115 account/forms.py:301 account/forms.py:421
69 #: account/forms.py:490
7070 msgid "E-mail"
7171 msgstr "E-mail"
7272
73 #: account/forms.py:122 account/forms.py:125 account/forms.py:262
74 #: account/forms.py:266
73 #: account/forms.py:120 account/forms.py:123 account/forms.py:260
74 #: account/forms.py:264
7575 msgid "Username"
7676 msgstr "Nazwa użytkownika"
7777
78 #: account/forms.py:132
78 #: account/forms.py:130
7979 msgid "Username or e-mail"
8080 msgstr "Nazwa użytkownika lub e-mail"
8181
82 #: account/forms.py:135
82 #: account/forms.py:133
8383 msgctxt "field label"
8484 msgid "Login"
8585 msgstr "Login"
8686
87 #: account/forms.py:294
87 #: account/forms.py:292
8888 msgid "E-mail (again)"
8989 msgstr "E-mail (ponownie)"
9090
91 #: account/forms.py:298
91 #: account/forms.py:296
9292 msgid "E-mail address confirmation"
9393 msgstr "Powierdzenie adresu email"
9494
95 #: account/forms.py:306
95 #: account/forms.py:304
9696 msgid "E-mail (optional)"
9797 msgstr "E-mail (opcjonalnie)"
9898
99 #: account/forms.py:347
99 #: account/forms.py:345
100100 msgid "You must type the same email each time."
101101 msgstr "Musisz wpisać za każdym razem ten sam e-mail."
102102
103 #: account/forms.py:370 account/forms.py:479
103 #: account/forms.py:368 account/forms.py:477
104104 msgid "Password (again)"
105105 msgstr "Hasło (ponownie)"
106106
107 #: account/forms.py:434
107 #: account/forms.py:432
108108 msgid "This e-mail address is already associated with this account."
109109 msgstr "Ten adres e-mail jest już powiązany z tym kontem."
110110
111 #: account/forms.py:436
111 #: account/forms.py:434
112112 msgid "This e-mail address is already associated with another account."
113113 msgstr "Ten adres e-mail jest już powiązany z innym kontem."
114114
115 #: account/forms.py:458
115 #: account/forms.py:456
116116 msgid "Current Password"
117117 msgstr "Obecne hasło"
118118
119 #: account/forms.py:459 account/forms.py:548
119 #: account/forms.py:457 account/forms.py:546
120120 msgid "New Password"
121121 msgstr "Nowe hasło"
122122
123 #: account/forms.py:460 account/forms.py:549
123 #: account/forms.py:458 account/forms.py:547
124124 msgid "New Password (again)"
125125 msgstr "Nowe hasło (ponownie)"
126126
127 #: account/forms.py:468
127 #: account/forms.py:466
128128 msgid "Please type your current password."
129129 msgstr "Proszę wpisz swoje obecne hasło"
130130
131 #: account/forms.py:506
131 #: account/forms.py:504
132132 msgid "The e-mail address is not assigned to any user account"
133133 msgstr "Adres e-mail nie jest powiązany z żadnym kontem użytkownika"
134134
135 #: account/forms.py:570
135 #: account/forms.py:568
136136 msgid "The password reset token was invalid."
137137 msgstr "Token resetowania hasła był nieprawidłowy."
138138
139 #: account/models.py:23
139 #: account/models.py:21
140140 msgid "user"
141141 msgstr "użytkownik"
142142
143 #: account/models.py:27 account/models.py:81
143 #: account/models.py:25 account/models.py:78
144144 msgid "e-mail address"
145145 msgstr "adres e-mail"
146146
147 #: account/models.py:28
147 #: account/models.py:26
148148 msgid "verified"
149149 msgstr "zweryfikowany"
150150
151 #: account/models.py:29
151 #: account/models.py:27
152152 msgid "primary"
153153 msgstr "podstawowy"
154154
155 #: account/models.py:34
155 #: account/models.py:32
156156 msgid "email address"
157157 msgstr "adres email"
158158
159 #: account/models.py:35
159 #: account/models.py:33
160160 msgid "email addresses"
161161 msgstr "adresy e-mail"
162162
163 #: account/models.py:83
163 #: account/models.py:80
164164 msgid "created"
165165 msgstr "utworzono"
166166
167 #: account/models.py:85
167 #: account/models.py:82
168168 msgid "sent"
169169 msgstr "wysłano"
170170
171 #: account/models.py:86 socialaccount/models.py:58
171 #: account/models.py:83 socialaccount/models.py:55
172172 msgid "key"
173173 msgstr "klucz"
174174
175 #: account/models.py:91
175 #: account/models.py:88
176176 msgid "email confirmation"
177177 msgstr "powierdzenie adresu email"
178178
179 #: account/models.py:92
179 #: account/models.py:89
180180 msgid "email confirmations"
181181 msgstr "potwierdzenia adresów email"
182182
183 #: socialaccount/adapter.py:27
183 #: socialaccount/adapter.py:26
184184 #, python-format
185185 msgid ""
186186 "An account already exists with this e-mail address. Please sign in to that "
189189 "Istnieje już konto dla tego adresu e-mail. Zaloguj się wpierw na to konto, a "
190190 "następnie połącz swoje konto %s."
191191
192 #: socialaccount/adapter.py:132
192 #: socialaccount/adapter.py:131
193193 msgid "Your account has no password set up."
194194 msgstr "Twoje konto nie posiada hasła."
195195
196 #: socialaccount/adapter.py:139
196 #: socialaccount/adapter.py:138
197197 msgid "Your account has no verified e-mail address."
198198 msgstr "Twoje konto nie ma zweryfikowanego adresu e-mail"
199199
200 #: socialaccount/apps.py:8
200 #: socialaccount/apps.py:7
201201 msgid "Social Accounts"
202202 msgstr "Konta społecznościowe"
203203
204 #: socialaccount/models.py:46 socialaccount/models.py:80
204 #: socialaccount/models.py:42 socialaccount/models.py:76
205205 msgid "provider"
206206 msgstr "dostawca usług"
207207
208 #: socialaccount/models.py:49
208 #: socialaccount/models.py:45
209209 msgid "name"
210210 msgstr "nazwa"
211211
212 #: socialaccount/models.py:51
212 #: socialaccount/models.py:47
213213 msgid "client id"
214214 msgstr "klient ID"
215215
216 #: socialaccount/models.py:53
216 #: socialaccount/models.py:49
217217 msgid "App ID, or consumer key"
218218 msgstr "ID aplikacji lub klucz odbiorcy"
219219
220 #: socialaccount/models.py:54
220 #: socialaccount/models.py:50
221221 msgid "secret key"
222222 msgstr "Klucz prywatny"
223223
224 #: socialaccount/models.py:56
224 #: socialaccount/models.py:53
225225 msgid "API secret, client secret, or consumer secret"
226226 msgstr "Klucz prywatny API/klienta/dbiorcy"
227227
228 #: socialaccount/models.py:61
228 #: socialaccount/models.py:58
229229 msgid "Key"
230230 msgstr "Klucz"
231231
232 #: socialaccount/models.py:69
232 #: socialaccount/models.py:66
233233 msgid "social application"
234234 msgstr "Aplikacja społecznościowa"
235235
236 #: socialaccount/models.py:70
236 #: socialaccount/models.py:67
237237 msgid "social applications"
238238 msgstr "Aplikacje społecznościowe"
239239
240 #: socialaccount/models.py:99
240 #: socialaccount/models.py:95
241241 msgid "uid"
242242 msgstr "uid"
243243
244 #: socialaccount/models.py:101
244 #: socialaccount/models.py:97
245245 msgid "last login"
246246 msgstr "Data ostatniego logowania"
247247
248 #: socialaccount/models.py:103
248 #: socialaccount/models.py:99
249249 msgid "date joined"
250250 msgstr "Data przyłączenia"
251251
252 #: socialaccount/models.py:105
252 #: socialaccount/models.py:101
253253 msgid "extra data"
254254 msgstr "Dodatkowe dane"
255255
256 #: socialaccount/models.py:109
256 #: socialaccount/models.py:105
257257 msgid "social account"
258258 msgstr "Konto społecznościowe"
259259
260 #: socialaccount/models.py:110
260 #: socialaccount/models.py:106
261261 msgid "social accounts"
262262 msgstr "Konta społecznościowe"
263263
264 #: socialaccount/models.py:136
264 #: socialaccount/models.py:131
265265 msgid "token"
266266 msgstr "token"
267267
268 #: socialaccount/models.py:138
268 #: socialaccount/models.py:133
269269 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
270270 msgstr "\"oauth_token\" (OAuth1) lub access token (OAuth2)"
271271
272 #: socialaccount/models.py:141
272 #: socialaccount/models.py:136
273273 msgid "token secret"
274274 msgstr "token secret"
275275
276 #: socialaccount/models.py:143
276 #: socialaccount/models.py:138
277277 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
278278 msgstr "\"oauth_token_secret\" (OAuth1) lub refresh token (OAuth2)"
279279
280 #: socialaccount/models.py:145
280 #: socialaccount/models.py:140
281281 msgid "expires at"
282282 msgstr "wygasa"
283283
284 #: socialaccount/models.py:149
284 #: socialaccount/models.py:144
285285 msgid "social application token"
286286 msgstr "Token aplikacji społecznościowej"
287287
288 #: socialaccount/models.py:150
288 #: socialaccount/models.py:145
289289 msgid "social application tokens"
290290 msgstr "Tokeny aplikacji społecznościowych"
291291
292 #: socialaccount/providers/douban/views.py:35
292 #: socialaccount/providers/douban/views.py:36
293293 msgid "Invalid profile data"
294294 msgstr "Nieprawidłowe dane profilu"
295295
1010 msgstr ""
1111 "Project-Id-Version: django-allauth\n"
1212 "Report-Msgid-Bugs-To: \n"
13 "POT-Creation-Date: 2019-08-29 16:33-0500\n"
13 "POT-Creation-Date: 2019-12-18 11:53-0600\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/"
2727
2828 #: account/adapter.py:49
2929 msgid "Too many failed login attempts. Try again later."
30 msgstr ""
30 msgstr "Muitas tentativas de acesso sem sucesso. Tente novamente mais tarde."
3131
3232 #: account/adapter.py:51
3333 msgid "A user is already registered with this e-mail address."
3838 msgid "Password must be a minimum of {0} characters."
3939 msgstr "A senha deve ter no mínimo {0} caracteres."
4040
41 #: account/apps.py:8
41 #: account/apps.py:7
4242 msgid "Accounts"
4343 msgstr "Contas"
4444
45 #: account/forms.py:63 account/forms.py:400
45 #: account/forms.py:61 account/forms.py:398
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:93 account/forms.py:367 account/forms.py:478
49 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
5050 msgid "Password"
5151 msgstr "Senha"
5252
53 #: account/forms.py:94
53 #: account/forms.py:92
5454 msgid "Remember Me"
5555 msgstr "Lembrar-me"
5656
57 #: account/forms.py:100
57 #: account/forms.py:98
5858 msgid "This account is currently inactive."
5959 msgstr "Esta conta está desativada no momento."
6060
61 #: account/forms.py:103
61 #: account/forms.py:101
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:106
65 #: account/forms.py:104
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:115 account/forms.py:270 account/forms.py:428
70 #: account/forms.py:497
69 #: account/forms.py:113 account/forms.py:268 account/forms.py:426
70 #: account/forms.py:495
7171 msgid "E-mail address"
7272 msgstr "Endereço de e-mail"
7373
74 #: account/forms.py:117 account/forms.py:303 account/forms.py:423
75 #: account/forms.py:492
74 #: account/forms.py:115 account/forms.py:301 account/forms.py:421
75 #: account/forms.py:490
7676 msgid "E-mail"
7777 msgstr "E-mail"
7878
79 #: account/forms.py:122 account/forms.py:125 account/forms.py:262
80 #: account/forms.py:266
79 #: account/forms.py:120 account/forms.py:123 account/forms.py:260
80 #: account/forms.py:264
8181 msgid "Username"
8282 msgstr "Nome de usuário"
8383
84 #: account/forms.py:132
84 #: account/forms.py:130
8585 msgid "Username or e-mail"
8686 msgstr "Nome de usuário ou e-mail"
8787
88 #: account/forms.py:135
88 #: account/forms.py:133
8989 msgctxt "field label"
9090 msgid "Login"
9191 msgstr "Login"
9292
93 #: account/forms.py:294
93 #: account/forms.py:292
9494 #, fuzzy
9595 #| msgid "E-mail (optional)"
9696 msgid "E-mail (again)"
9797 msgstr "E-mail (opcional)"
9898
99 #: account/forms.py:298
99 #: account/forms.py:296
100100 #, fuzzy
101101 #| msgid "email confirmation"
102102 msgid "E-mail address confirmation"
103103 msgstr "confirmação de e-mail"
104104
105 #: account/forms.py:306
105 #: account/forms.py:304
106106 msgid "E-mail (optional)"
107107 msgstr "E-mail (opcional)"
108108
109 #: account/forms.py:347
109 #: account/forms.py:345
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:370 account/forms.py:479
115 #: account/forms.py:368 account/forms.py:477
116116 msgid "Password (again)"
117117 msgstr "Senha (novamente)"
118118
119 #: account/forms.py:434
119 #: account/forms.py:432
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:436
123 #: account/forms.py:434
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:458
127 #: account/forms.py:456
128128 msgid "Current Password"
129 msgstr "senha atual"
130
131 #: account/forms.py:459 account/forms.py:548
129 msgstr "Senha Atual"
130
131 #: account/forms.py:457 account/forms.py:546
132132 msgid "New Password"
133133 msgstr "Nova Senha"
134134
135 #: account/forms.py:460 account/forms.py:549
135 #: account/forms.py:458 account/forms.py:547
136136 msgid "New Password (again)"
137137 msgstr "Nova Senha (novamente)"
138138
139 #: account/forms.py:468
139 #: account/forms.py:466
140140 msgid "Please type your current password."
141141 msgstr "Por favor insira a sua senha atual."
142142
143 #: account/forms.py:506
143 #: account/forms.py:504
144144 msgid "The e-mail address is not assigned to any user account"
145145 msgstr "O endereço de e-mail não está associado a nenhuma conta de usuário"
146146
147 #: account/forms.py:570
147 #: account/forms.py:568
148148 msgid "The password reset token was invalid."
149 msgstr ""
150
151 #: account/models.py:23
149 msgstr "O token de redefinição de senha era inválido"
150
151 #: account/models.py:21
152152 msgid "user"
153153 msgstr "usuário"
154154
155 #: account/models.py:27 account/models.py:81
155 #: account/models.py:25 account/models.py:78
156156 msgid "e-mail address"
157157 msgstr "endereço de e-mail"
158158
159 #: account/models.py:28
159 #: account/models.py:26
160160 msgid "verified"
161161 msgstr "verificado"
162162
163 #: account/models.py:29
163 #: account/models.py:27
164164 msgid "primary"
165165 msgstr "primário"
166166
167 #: account/models.py:34
167 #: account/models.py:32
168168 msgid "email address"
169169 msgstr "endereço de e-mail"
170170
171 #: account/models.py:35
171 #: account/models.py:33
172172 msgid "email addresses"
173173 msgstr "endereços de e-mail"
174174
175 #: account/models.py:83
175 #: account/models.py:80
176176 msgid "created"
177177 msgstr "criado"
178178
179 #: account/models.py:85
179 #: account/models.py:82
180180 msgid "sent"
181181 msgstr "enviado"
182182
183 #: account/models.py:86 socialaccount/models.py:58
183 #: account/models.py:83 socialaccount/models.py:55
184184 msgid "key"
185185 msgstr "chave"
186186
187 #: account/models.py:91
187 #: account/models.py:88
188188 msgid "email confirmation"
189189 msgstr "confirmação de e-mail"
190190
191 #: account/models.py:92
191 #: account/models.py:89
192192 msgid "email confirmations"
193193 msgstr "confirmações de e-mail"
194194
195 #: socialaccount/adapter.py:27
195 #: socialaccount/adapter.py:26
196196 #, python-format
197197 msgid ""
198198 "An account already exists with this e-mail address. Please sign in to that "
201201 "Já existe uma conta com esse endereço de e-mail. Por favor, faça login na "
202202 "conta existente e, em seguida, conecte com %s."
203203
204 #: socialaccount/adapter.py:132
204 #: socialaccount/adapter.py:131
205205 msgid "Your account has no password set up."
206206 msgstr "A sua conta não tem senha definida."
207207
208 #: socialaccount/adapter.py:139
208 #: socialaccount/adapter.py:138
209209 msgid "Your account has no verified e-mail address."
210210 msgstr "A sua conta não tem um endereço de e-mail verificado."
211211
212 #: socialaccount/apps.py:8
212 #: socialaccount/apps.py:7
213213 msgid "Social Accounts"
214214 msgstr "Contas Sociais"
215215
216 #: socialaccount/models.py:46 socialaccount/models.py:80
216 #: socialaccount/models.py:42 socialaccount/models.py:76
217217 msgid "provider"
218218 msgstr "provedor"
219219
220 #: socialaccount/models.py:49
220 #: socialaccount/models.py:45
221221 msgid "name"
222222 msgstr "nome"
223223
224 #: socialaccount/models.py:51
224 #: socialaccount/models.py:47
225225 msgid "client id"
226226 msgstr "id do cliente"
227227
228 #: socialaccount/models.py:53
228 #: socialaccount/models.py:49
229229 msgid "App ID, or consumer key"
230230 msgstr "App ID ou chave de consumidor"
231231
232 #: socialaccount/models.py:54
232 #: socialaccount/models.py:50
233233 msgid "secret key"
234234 msgstr "Chave secreta"
235235
236 #: socialaccount/models.py:56
236 #: socialaccount/models.py:53
237237 msgid "API secret, client secret, or consumer secret"
238238 msgstr "Segredo de API, segredo de cliente ou segredo de consumidor"
239239
240 #: socialaccount/models.py:61
240 #: socialaccount/models.py:58
241241 msgid "Key"
242242 msgstr "Chave"
243243
244 #: socialaccount/models.py:69
244 #: socialaccount/models.py:66
245245 msgid "social application"
246246 msgstr "aplicativo social"
247247
248 #: socialaccount/models.py:70
248 #: socialaccount/models.py:67
249249 msgid "social applications"
250250 msgstr "aplicativos sociais"
251251
252 #: socialaccount/models.py:99
252 #: socialaccount/models.py:95
253253 msgid "uid"
254254 msgstr "uid"
255255
256 #: socialaccount/models.py:101
256 #: socialaccount/models.py:97
257257 msgid "last login"
258258 msgstr "último acesso"
259259
260 #: socialaccount/models.py:103
260 #: socialaccount/models.py:99
261261 msgid "date joined"
262262 msgstr "data de adesão"
263263
264 #: socialaccount/models.py:105
264 #: socialaccount/models.py:101
265265 msgid "extra data"
266266 msgstr "dados extras"
267267
268 #: socialaccount/models.py:109
268 #: socialaccount/models.py:105
269269 msgid "social account"
270270 msgstr "conta social"
271271
272 #: socialaccount/models.py:110
272 #: socialaccount/models.py:106
273273 msgid "social accounts"
274274 msgstr "contas sociais"
275275
276 #: socialaccount/models.py:136
276 #: socialaccount/models.py:131
277277 msgid "token"
278278 msgstr ""
279279
280 #: socialaccount/models.py:138
280 #: socialaccount/models.py:133
281281 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
282282 msgstr "\"oauth_token\" (OAuth1) ou token de acesso (OAuth2)"
283283
284 #: socialaccount/models.py:141
284 #: socialaccount/models.py:136
285285 msgid "token secret"
286286 msgstr "token secreto"
287287
288 #: socialaccount/models.py:143
288 #: socialaccount/models.py:138
289289 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
290290 msgstr "\"oauth_token_secret\" (OAuth1) ou token de atualização (OAuth2)"
291291
292 #: socialaccount/models.py:145
292 #: socialaccount/models.py:140
293293 msgid "expires at"
294294 msgstr "expira em"
295295
296 #: socialaccount/models.py:149
296 #: socialaccount/models.py:144
297297 msgid "social application token"
298298 msgstr "token de aplicativo social"
299299
300 #: socialaccount/models.py:150
300 #: socialaccount/models.py:145
301301 msgid "social application tokens"
302302 msgstr "tokens de aplicativo social"
303303
304 #: socialaccount/providers/douban/views.py:35
304 #: socialaccount/providers/douban/views.py:36
305305 msgid "Invalid profile data"
306306 msgstr ""
307307
66 msgstr ""
77 "Project-Id-Version: django-allauth\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2019-08-29 16:33-0500\n"
9 "POT-Creation-Date: 2019-12-18 11:53-0600\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/"
3434 msgid "Password must be a minimum of {0} characters."
3535 msgstr "A palavra-passe deve ter no mínimo {0} caracteres."
3636
37 #: account/apps.py:8
37 #: account/apps.py:7
3838 msgid "Accounts"
3939 msgstr "Contas"
4040
41 #: account/forms.py:63 account/forms.py:400
41 #: account/forms.py:61 account/forms.py:398
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:93 account/forms.py:367 account/forms.py:478
45 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4646 msgid "Password"
4747 msgstr "Palavra-passe"
4848
49 #: account/forms.py:94
49 #: account/forms.py:92
5050 msgid "Remember Me"
5151 msgstr "Lembrar-me"
5252
53 #: account/forms.py:100
53 #: account/forms.py:98
5454 msgid "This account is currently inactive."
5555 msgstr "Esta conta está de momento desactivada"
5656
57 #: account/forms.py:103
57 #: account/forms.py:101
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:106
62 #: account/forms.py:104
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:115 account/forms.py:270 account/forms.py:428
68 #: account/forms.py:497
67 #: account/forms.py:113 account/forms.py:268 account/forms.py:426
68 #: account/forms.py:495
6969 msgid "E-mail address"
7070 msgstr "Endereço de e-mail"
7171
72 #: account/forms.py:117 account/forms.py:303 account/forms.py:423
73 #: account/forms.py:492
72 #: account/forms.py:115 account/forms.py:301 account/forms.py:421
73 #: account/forms.py:490
7474 msgid "E-mail"
7575 msgstr "E-mail"
7676
77 #: account/forms.py:122 account/forms.py:125 account/forms.py:262
78 #: account/forms.py:266
77 #: account/forms.py:120 account/forms.py:123 account/forms.py:260
78 #: account/forms.py:264
7979 msgid "Username"
8080 msgstr "Nome de utilizador"
8181
82 #: account/forms.py:132
82 #: account/forms.py:130
8383 msgid "Username or e-mail"
8484 msgstr "Nome de utilizador ou e-mail"
8585
86 #: account/forms.py:135
86 #: account/forms.py:133
8787 msgctxt "field label"
8888 msgid "Login"
8989 msgstr "Entrar"
9090
91 #: account/forms.py:294
91 #: account/forms.py:292
9292 msgid "E-mail (again)"
9393 msgstr "E-mail (novamente)"
9494
95 #: account/forms.py:298
95 #: account/forms.py:296
9696 msgid "E-mail address confirmation"
9797 msgstr "Confirmação de endereço de e-mail"
9898
99 #: account/forms.py:306
99 #: account/forms.py:304
100100 msgid "E-mail (optional)"
101101 msgstr "E-mail (opcional)"
102102
103 #: account/forms.py:347
103 #: account/forms.py:345
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:370 account/forms.py:479
107 #: account/forms.py:368 account/forms.py:477
108108 msgid "Password (again)"
109109 msgstr "Palavra-passe (novamente)"
110110
111 #: account/forms.py:434
111 #: account/forms.py:432
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:436
115 #: account/forms.py:434
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:458
119 #: account/forms.py:456
120120 msgid "Current Password"
121121 msgstr "Palavra-passe atual"
122122
123 #: account/forms.py:459 account/forms.py:548
123 #: account/forms.py:457 account/forms.py:546
124124 msgid "New Password"
125125 msgstr "Nova Palavra-passe"
126126
127 #: account/forms.py:460 account/forms.py:549
127 #: account/forms.py:458 account/forms.py:547
128128 msgid "New Password (again)"
129129 msgstr "Nova Palavra-passe (novamente)"
130130
131 #: account/forms.py:468
131 #: account/forms.py:466
132132 msgid "Please type your current password."
133133 msgstr "Por favor insira a sua palavra-passe atual."
134134
135 #: account/forms.py:506
135 #: account/forms.py:504
136136 msgid "The e-mail address is not assigned to any user account"
137137 msgstr "O endereço de e-mail não está associado a nenhuma conta de utilizador"
138138
139 #: account/forms.py:570
139 #: account/forms.py:568
140140 msgid "The password reset token was invalid."
141141 msgstr "O token para redefinir a palavra-passe está inválido."
142142
143 #: account/models.py:23
143 #: account/models.py:21
144144 msgid "user"
145145 msgstr "utilizador"
146146
147 #: account/models.py:27 account/models.py:81
147 #: account/models.py:25 account/models.py:78
148148 msgid "e-mail address"
149149 msgstr "endereço de e-mail"
150150
151 #: account/models.py:28
151 #: account/models.py:26
152152 msgid "verified"
153153 msgstr "verificado"
154154
155 #: account/models.py:29
155 #: account/models.py:27
156156 msgid "primary"
157157 msgstr "primário"
158158
159 #: account/models.py:34
159 #: account/models.py:32
160160 msgid "email address"
161161 msgstr "endereço de e-mail"
162162
163 #: account/models.py:35
163 #: account/models.py:33
164164 msgid "email addresses"
165165 msgstr "endereços de e-mail"
166166
167 #: account/models.py:83
167 #: account/models.py:80
168168 msgid "created"
169169 msgstr "criado"
170170
171 #: account/models.py:85
171 #: account/models.py:82
172172 msgid "sent"
173173 msgstr "enviado"
174174
175 #: account/models.py:86 socialaccount/models.py:58
175 #: account/models.py:83 socialaccount/models.py:55
176176 msgid "key"
177177 msgstr "chave"
178178
179 #: account/models.py:91
179 #: account/models.py:88
180180 msgid "email confirmation"
181181 msgstr "confirmação de e-mail"
182182
183 #: account/models.py:92
183 #: account/models.py:89
184184 msgid "email confirmations"
185185 msgstr "confirmações de e-mail"
186186
187 #: socialaccount/adapter.py:27
187 #: socialaccount/adapter.py:26
188188 #, python-format
189189 msgid ""
190190 "An account already exists with this e-mail address. Please sign in to that "
193193 "Já existe uma conta com este endereço de e-mail. Por favor entre com essa "
194194 "conta e depois associe a sua conta %s."
195195
196 #: socialaccount/adapter.py:132
196 #: socialaccount/adapter.py:131
197197 msgid "Your account has no password set up."
198198 msgstr "A sua conta não tem palavra-passe definida."
199199
200 #: socialaccount/adapter.py:139
200 #: socialaccount/adapter.py:138
201201 msgid "Your account has no verified e-mail address."
202202 msgstr "A sua conta não tem um endereço de e-mail verificado."
203203
204 #: socialaccount/apps.py:8
204 #: socialaccount/apps.py:7
205205 msgid "Social Accounts"
206206 msgstr "Contas de redes sociais"
207207
208 #: socialaccount/models.py:46 socialaccount/models.py:80
208 #: socialaccount/models.py:42 socialaccount/models.py:76
209209 msgid "provider"
210210 msgstr "fornecedor"
211211
212 #: socialaccount/models.py:49
212 #: socialaccount/models.py:45
213213 msgid "name"
214214 msgstr "nome"
215215
216 #: socialaccount/models.py:51
216 #: socialaccount/models.py:47
217217 msgid "client id"
218218 msgstr ""
219219
220 #: socialaccount/models.py:49
221 msgid "App ID, or consumer key"
222 msgstr ""
223
224 #: socialaccount/models.py:50
225 msgid "secret key"
226 msgstr ""
227
220228 #: socialaccount/models.py:53
221 msgid "App ID, or consumer key"
222 msgstr ""
223
224 #: socialaccount/models.py:54
225 msgid "secret key"
226 msgstr ""
227
228 #: socialaccount/models.py:56
229229 msgid "API secret, client secret, or consumer secret"
230230 msgstr ""
231231
232 #: socialaccount/models.py:61
232 #: socialaccount/models.py:58
233233 msgid "Key"
234234 msgstr "Chave"
235235
236 #: socialaccount/models.py:69
236 #: socialaccount/models.py:66
237237 msgid "social application"
238238 msgstr "aplicação social"
239239
240 #: socialaccount/models.py:70
240 #: socialaccount/models.py:67
241241 msgid "social applications"
242242 msgstr "aplicações sociais"
243243
244 #: socialaccount/models.py:99
244 #: socialaccount/models.py:95
245245 msgid "uid"
246246 msgstr ""
247247
248 #: socialaccount/models.py:101
248 #: socialaccount/models.py:97
249249 msgid "last login"
250250 msgstr "último login"
251251
252 #: socialaccount/models.py:103
252 #: socialaccount/models.py:99
253253 msgid "date joined"
254254 msgstr "data de registo"
255255
256 #: socialaccount/models.py:105
256 #: socialaccount/models.py:101
257257 msgid "extra data"
258258 msgstr "dados extra"
259259
260 #: socialaccount/models.py:109
260 #: socialaccount/models.py:105
261261 msgid "social account"
262262 msgstr "conta social"
263263
264 #: socialaccount/models.py:110
264 #: socialaccount/models.py:106
265265 msgid "social accounts"
266266 msgstr "contas sociais"
267267
268 #: socialaccount/models.py:131
269 msgid "token"
270 msgstr ""
271
272 #: socialaccount/models.py:133
273 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
274 msgstr ""
275
268276 #: socialaccount/models.py:136
269 msgid "token"
277 msgid "token secret"
270278 msgstr ""
271279
272280 #: socialaccount/models.py:138
273 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
274 msgstr ""
275
276 #: socialaccount/models.py:141
277 msgid "token secret"
278 msgstr ""
279
280 #: socialaccount/models.py:143
281281 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
282282 msgstr ""
283283
284 #: socialaccount/models.py:145
284 #: socialaccount/models.py:140
285285 msgid "expires at"
286286 msgstr "expira a"
287287
288 #: socialaccount/models.py:149
288 #: socialaccount/models.py:144
289289 msgid "social application token"
290290 msgstr "token da aplicação social"
291291
292 #: socialaccount/models.py:150
292 #: socialaccount/models.py:145
293293 msgid "social application tokens"
294294 msgstr "tokens das aplicações sociais"
295295
296 #: socialaccount/providers/douban/views.py:35
296 #: socialaccount/providers/douban/views.py:36
297297 msgid "Invalid profile data"
298298 msgstr "Dados de perfil inválidos"
299299
66 msgstr ""
77 "Project-Id-Version: \n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2019-08-29 16:33-0500\n"
9 "POT-Creation-Date: 2019-12-18 11:53-0600\n"
1010 "PO-Revision-Date: 2017-04-05 22:48+0300\n"
1111 "Last-Translator: \n"
1212 "Language-Team: \n"
3333 msgid "Password must be a minimum of {0} characters."
3434 msgstr "Минимальное количество символов в пароле: {0}."
3535
36 #: account/apps.py:8
36 #: account/apps.py:7
3737 msgid "Accounts"
3838 msgstr "Аккаунты"
3939
40 #: account/forms.py:63 account/forms.py:400
40 #: account/forms.py:61 account/forms.py:398
4141 msgid "You must type the same password each time."
4242 msgstr "Вы должны ввести одинаковый пароль дважды."
4343
44 #: account/forms.py:93 account/forms.py:367 account/forms.py:478
44 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4545 msgid "Password"
4646 msgstr "Пароль"
4747
48 #: account/forms.py:94
48 #: account/forms.py:92
4949 msgid "Remember Me"
5050 msgstr "Запомнить меня"
5151
52 #: account/forms.py:100
52 #: account/forms.py:98
5353 msgid "This account is currently inactive."
5454 msgstr "Учетная запись неактивна."
5555
56 #: account/forms.py:103
56 #: account/forms.py:101
5757 msgid "The e-mail address and/or password you specified are not correct."
5858 msgstr "E-mail адрес и/или пароль не верны."
5959
60 #: account/forms.py:106
60 #: account/forms.py:104
6161 msgid "The username and/or password you specified are not correct."
6262 msgstr "Имя пользователя и/или пароль не верны."
6363
64 #: account/forms.py:115 account/forms.py:270 account/forms.py:428
65 #: account/forms.py:497
64 #: account/forms.py:113 account/forms.py:268 account/forms.py:426
65 #: account/forms.py:495
6666 msgid "E-mail address"
6767 msgstr "E-mail адрес"
6868
69 #: account/forms.py:117 account/forms.py:303 account/forms.py:423
70 #: account/forms.py:492
69 #: account/forms.py:115 account/forms.py:301 account/forms.py:421
70 #: account/forms.py:490
7171 msgid "E-mail"
7272 msgstr "E-mail"
7373
74 #: account/forms.py:122 account/forms.py:125 account/forms.py:262
75 #: account/forms.py:266
74 #: account/forms.py:120 account/forms.py:123 account/forms.py:260
75 #: account/forms.py:264
7676 msgid "Username"
7777 msgstr "Имя пользователя"
7878
79 #: account/forms.py:132
79 #: account/forms.py:130
8080 msgid "Username or e-mail"
8181 msgstr "Имя пользователя или e-mail"
8282
83 #: account/forms.py:135
83 #: account/forms.py:133
8484 msgctxt "field label"
8585 msgid "Login"
8686 msgstr "Войти"
8787
88 #: account/forms.py:294
88 #: account/forms.py:292
8989 msgid "E-mail (again)"
9090 msgstr "E-mail (ещё раз)"
9191
92 #: account/forms.py:298
92 #: account/forms.py:296
9393 msgid "E-mail address confirmation"
9494 msgstr "Подтверждение email адреса"
9595
96 #: account/forms.py:306
96 #: account/forms.py:304
9797 msgid "E-mail (optional)"
9898 msgstr "E-mail (опционально)"
9999
100 #: account/forms.py:347
100 #: account/forms.py:345
101101 msgid "You must type the same email each time."
102102 msgstr "Вы должны ввести одинаковый e-mail дважды."
103103
104 #: account/forms.py:370 account/forms.py:479
104 #: account/forms.py:368 account/forms.py:477
105105 msgid "Password (again)"
106106 msgstr "Пароль (ещё раз)"
107107
108 #: account/forms.py:434
108 #: account/forms.py:432
109109 msgid "This e-mail address is already associated with this account."
110110 msgstr "Указанный e-mail уже прикреплен к этому аккаунту."
111111
112 #: account/forms.py:436
112 #: account/forms.py:434
113113 msgid "This e-mail address is already associated with another account."
114114 msgstr "Указанный e-mail прикреплен к другому пользователю."
115115
116 #: account/forms.py:458
116 #: account/forms.py:456
117117 msgid "Current Password"
118118 msgstr "Текущий пароль"
119119
120 #: account/forms.py:459 account/forms.py:548
120 #: account/forms.py:457 account/forms.py:546
121121 msgid "New Password"
122122 msgstr "Новый пароль"
123123
124 #: account/forms.py:460 account/forms.py:549
124 #: account/forms.py:458 account/forms.py:547
125125 msgid "New Password (again)"
126126 msgstr "Новый пароль (ещё раз)"
127127
128 #: account/forms.py:468
128 #: account/forms.py:466
129129 msgid "Please type your current password."
130130 msgstr "Пожалуйста, введите свой текущий пароль."
131131
132 #: account/forms.py:506
132 #: account/forms.py:504
133133 msgid "The e-mail address is not assigned to any user account"
134134 msgstr "Нет пользователя с таким e-mail"
135135
136 #: account/forms.py:570
136 #: account/forms.py:568
137137 msgid "The password reset token was invalid."
138138 msgstr "Неправильный код для сброса пароля."
139139
140 #: account/models.py:23
140 #: account/models.py:21
141141 msgid "user"
142142 msgstr "пользователь"
143143
144 #: account/models.py:27 account/models.py:81
144 #: account/models.py:25 account/models.py:78
145145 msgid "e-mail address"
146146 msgstr "e-mail адрес"
147147
148 #: account/models.py:28
148 #: account/models.py:26
149149 msgid "verified"
150150 msgstr "подтвержден"
151151
152 #: account/models.py:29
152 #: account/models.py:27
153153 msgid "primary"
154154 msgstr "основной"
155155
156 #: account/models.py:34
156 #: account/models.py:32
157157 msgid "email address"
158158 msgstr "email адрес"
159159
160 #: account/models.py:35
160 #: account/models.py:33
161161 msgid "email addresses"
162162 msgstr "email адреса"
163163
164 #: account/models.py:83
164 #: account/models.py:80
165165 msgid "created"
166166 msgstr "создано"
167167
168 #: account/models.py:85
168 #: account/models.py:82
169169 msgid "sent"
170170 msgstr "отправлено"
171171
172 #: account/models.py:86 socialaccount/models.py:58
172 #: account/models.py:83 socialaccount/models.py:55
173173 msgid "key"
174174 msgstr "ключ"
175175
176 #: account/models.py:91
176 #: account/models.py:88
177177 msgid "email confirmation"
178178 msgstr "подтверждение email адреса"
179179
180 #: account/models.py:92
180 #: account/models.py:89
181181 msgid "email confirmations"
182182 msgstr "подтверждения email адресов"
183183
184 #: socialaccount/adapter.py:27
184 #: socialaccount/adapter.py:26
185185 #, python-format
186186 msgid ""
187187 "An account already exists with this e-mail address. Please sign in to that "
190190 "Пользователь с таким e-mail уже зарегистрирован. Чтобы подключить свой %s "
191191 "аккаунт, пожалуйста, авторизуйтесь."
192192
193 #: socialaccount/adapter.py:132
193 #: socialaccount/adapter.py:131
194194 msgid "Your account has no password set up."
195195 msgstr "Для вашего аккаунта не установлен пароль."
196196
197 #: socialaccount/adapter.py:139
197 #: socialaccount/adapter.py:138
198198 msgid "Your account has no verified e-mail address."
199199 msgstr "Нет подтвержденных e-mail адресов для вашего аккаунта."
200200
201 #: socialaccount/apps.py:8
201 #: socialaccount/apps.py:7
202202 msgid "Social Accounts"
203203 msgstr "Социальные аккаунты"
204204
205 #: socialaccount/models.py:46 socialaccount/models.py:80
205 #: socialaccount/models.py:42 socialaccount/models.py:76
206206 msgid "provider"
207207 msgstr "провайдер"
208208
209 #: socialaccount/models.py:49
209 #: socialaccount/models.py:45
210210 msgid "name"
211211 msgstr "имя"
212212
213 #: socialaccount/models.py:51
213 #: socialaccount/models.py:47
214214 msgid "client id"
215215 msgstr "id клиента"
216216
217 #: socialaccount/models.py:53
217 #: socialaccount/models.py:49
218218 msgid "App ID, or consumer key"
219219 msgstr "ID приложения или ключ потребителя"
220220
221 #: socialaccount/models.py:54
221 #: socialaccount/models.py:50
222222 msgid "secret key"
223223 msgstr "секретный ключ"
224224
225 #: socialaccount/models.py:56
225 #: socialaccount/models.py:53
226226 msgid "API secret, client secret, or consumer secret"
227227 msgstr "Секретный ключ API, клиента или потребителя"
228228
229 #: socialaccount/models.py:61
229 #: socialaccount/models.py:58
230230 msgid "Key"
231231 msgstr "Ключ"
232232
233 #: socialaccount/models.py:69
233 #: socialaccount/models.py:66
234234 msgid "social application"
235235 msgstr "социальное приложение"
236236
237 #: socialaccount/models.py:70
237 #: socialaccount/models.py:67
238238 msgid "social applications"
239239 msgstr "социальные приложения"
240240
241 #: socialaccount/models.py:99
241 #: socialaccount/models.py:95
242242 msgid "uid"
243243 msgstr "UID пользователя"
244244
245 #: socialaccount/models.py:101
245 #: socialaccount/models.py:97
246246 msgid "last login"
247247 msgstr "дата последнего входа в систему"
248248
249 #: socialaccount/models.py:103
249 #: socialaccount/models.py:99
250250 msgid "date joined"
251251 msgstr "дата регистрации"
252252
253 #: socialaccount/models.py:105
253 #: socialaccount/models.py:101
254254 msgid "extra data"
255255 msgstr "дополнительные данные"
256256
257 #: socialaccount/models.py:109
257 #: socialaccount/models.py:105
258258 msgid "social account"
259259 msgstr "аккаунт социальной сети"
260260
261 #: socialaccount/models.py:110
261 #: socialaccount/models.py:106
262262 msgid "social accounts"
263263 msgstr "аккаунты социальных сетей"
264264
265 #: socialaccount/models.py:136
265 #: socialaccount/models.py:131
266266 msgid "token"
267267 msgstr "токен"
268268
269 #: socialaccount/models.py:138
269 #: socialaccount/models.py:133
270270 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
271271 msgstr "\"oauth_token\" (OAuth1) или access token (OAuth2)"
272272
273 #: socialaccount/models.py:141
273 #: socialaccount/models.py:136
274274 msgid "token secret"
275275 msgstr "секретный токен"
276276
277 #: socialaccount/models.py:143
277 #: socialaccount/models.py:138
278278 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
279279 msgstr "\"oauth_token_secret\" (OAuth1) или refresh token (OAuth2)"
280280
281 #: socialaccount/models.py:145
281 #: socialaccount/models.py:140
282282 msgid "expires at"
283283 msgstr "истекает"
284284
285 #: socialaccount/models.py:149
285 #: socialaccount/models.py:144
286286 msgid "social application token"
287287 msgstr "токен социального приложения"
288288
289 #: socialaccount/models.py:150
289 #: socialaccount/models.py:145
290290 msgid "social application tokens"
291291 msgstr "токены социальных приложений"
292292
293 #: socialaccount/providers/douban/views.py:35
293 #: socialaccount/providers/douban/views.py:36
294294 msgid "Invalid profile data"
295295 msgstr "Неверные данные профиля"
296296
66 msgstr ""
77 "Project-Id-Version: \n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2019-08-29 16:33-0500\n"
9 "POT-Creation-Date: 2019-12-18 11:53-0600\n"
1010 "PO-Revision-Date: 2017-04-26 12:48+0200\n"
1111 "Last-Translator: Tomas Babej <tomasbabej@gmail.com>\n"
1212 "Language-Team: \n"
3333 msgid "Password must be a minimum of {0} characters."
3434 msgstr "Heslo musí mať aspoň {0} znakov."
3535
36 #: account/apps.py:8
36 #: account/apps.py:7
3737 msgid "Accounts"
3838 msgstr "Účty"
3939
40 #: account/forms.py:63 account/forms.py:400
40 #: account/forms.py:61 account/forms.py:398
4141 msgid "You must type the same password each time."
4242 msgstr "Heslá sa nezhodujú."
4343
44 #: account/forms.py:93 account/forms.py:367 account/forms.py:478
44 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4545 msgid "Password"
4646 msgstr "Heslo"
4747
48 #: account/forms.py:94
48 #: account/forms.py:92
4949 msgid "Remember Me"
5050 msgstr "Zapamätať si ma"
5151
52 #: account/forms.py:100
52 #: account/forms.py:98
5353 msgid "This account is currently inactive."
5454 msgstr "Tento účet nie je momentálne aktívny."
5555
56 #: account/forms.py:103
56 #: account/forms.py:101
5757 msgid "The e-mail address and/or password you specified are not correct."
5858 msgstr "Uvedený e-mail alebo heslo nie je správne."
5959
60 #: account/forms.py:106
60 #: account/forms.py:104
6161 msgid "The username and/or password you specified are not correct."
6262 msgstr "Uvedené užívateľské meno alebo heslo nie je správne."
6363
64 #: account/forms.py:115 account/forms.py:270 account/forms.py:428
65 #: account/forms.py:497
64 #: account/forms.py:113 account/forms.py:268 account/forms.py:426
65 #: account/forms.py:495
6666 msgid "E-mail address"
6767 msgstr "E-mailová adresa"
6868
69 #: account/forms.py:117 account/forms.py:303 account/forms.py:423
70 #: account/forms.py:492
69 #: account/forms.py:115 account/forms.py:301 account/forms.py:421
70 #: account/forms.py:490
7171 msgid "E-mail"
7272 msgstr "E-mail"
7373
74 #: account/forms.py:122 account/forms.py:125 account/forms.py:262
75 #: account/forms.py:266
74 #: account/forms.py:120 account/forms.py:123 account/forms.py:260
75 #: account/forms.py:264
7676 msgid "Username"
7777 msgstr "Užívateľské meno"
7878
79 #: account/forms.py:132
79 #: account/forms.py:130
8080 msgid "Username or e-mail"
8181 msgstr "Užívateľské meno alebo e-mail"
8282
83 #: account/forms.py:135
83 #: account/forms.py:133
8484 msgctxt "field label"
8585 msgid "Login"
8686 msgstr "Login"
8787
88 #: account/forms.py:294
88 #: account/forms.py:292
8989 msgid "E-mail (again)"
9090 msgstr "E-mail (znova)"
9191
92 #: account/forms.py:298
92 #: account/forms.py:296
9393 msgid "E-mail address confirmation"
9494 msgstr "Potvrdenie e-mailu"
9595
96 #: account/forms.py:306
96 #: account/forms.py:304
9797 msgid "E-mail (optional)"
9898 msgstr "E-mail (nepovinné)"
9999
100 #: account/forms.py:347
100 #: account/forms.py:345
101101 msgid "You must type the same email each time."
102102 msgstr "Heslá sa nezhodujú."
103103
104 #: account/forms.py:370 account/forms.py:479
104 #: account/forms.py:368 account/forms.py:477
105105 msgid "Password (again)"
106106 msgstr "Heslo (znovu)"
107107
108 #: account/forms.py:434
108 #: account/forms.py:432
109109 msgid "This e-mail address is already associated with this account."
110110 msgstr "Táto e-mailová adresa je už spojená s týmto účtom."
111111
112 #: account/forms.py:436
112 #: account/forms.py:434
113113 msgid "This e-mail address is already associated with another account."
114114 msgstr "Táto e-mailová adresa je už spojená s iným účtom."
115115
116 #: account/forms.py:458
116 #: account/forms.py:456
117117 msgid "Current Password"
118118 msgstr "Súčasné heslo"
119119
120 #: account/forms.py:459 account/forms.py:548
120 #: account/forms.py:457 account/forms.py:546
121121 msgid "New Password"
122122 msgstr "Nové heslo"
123123
124 #: account/forms.py:460 account/forms.py:549
124 #: account/forms.py:458 account/forms.py:547
125125 msgid "New Password (again)"
126126 msgstr "Nové heslo (znovu)"
127127
128 #: account/forms.py:468
128 #: account/forms.py:466
129129 msgid "Please type your current password."
130130 msgstr "Prosím, napíšte svoje súčasné heslo."
131131
132 #: account/forms.py:506
132 #: account/forms.py:504
133133 msgid "The e-mail address is not assigned to any user account"
134134 msgstr ""
135135 "Táto e-mailová adresa nie je pridelená k žiadnemu používateľskému kontu"
136136
137 #: account/forms.py:570
137 #: account/forms.py:568
138138 msgid "The password reset token was invalid."
139139 msgstr "Token na obnovu hesla bol nesprávny."
140140
141 #: account/models.py:23
141 #: account/models.py:21
142142 msgid "user"
143143 msgstr "používateľ"
144144
145 #: account/models.py:27 account/models.py:81
145 #: account/models.py:25 account/models.py:78
146146 msgid "e-mail address"
147147 msgstr "e-mailová adresa"
148148
149 #: account/models.py:28
149 #: account/models.py:26
150150 msgid "verified"
151151 msgstr "overený"
152152
153 #: account/models.py:29
153 #: account/models.py:27
154154 msgid "primary"
155155 msgstr "primárny"
156156
157 #: account/models.py:34
157 #: account/models.py:32
158158 msgid "email address"
159159 msgstr "e-mailová adresa"
160160
161 #: account/models.py:35
161 #: account/models.py:33
162162 msgid "email addresses"
163163 msgstr "e-mailové adresy"
164164
165 #: account/models.py:83
165 #: account/models.py:80
166166 msgid "created"
167167 msgstr "vytvorený"
168168
169 #: account/models.py:85
169 #: account/models.py:82
170170 msgid "sent"
171171 msgstr "odoslané"
172172
173 #: account/models.py:86 socialaccount/models.py:58
173 #: account/models.py:83 socialaccount/models.py:55
174174 msgid "key"
175175 msgstr "kľúč"
176176
177 #: account/models.py:91
177 #: account/models.py:88
178178 msgid "email confirmation"
179179 msgstr "potvrdenie e-mailu"
180180
181 #: account/models.py:92
181 #: account/models.py:89
182182 msgid "email confirmations"
183183 msgstr "potvrdenia e-mailu"
184184
185 #: socialaccount/adapter.py:27
185 #: socialaccount/adapter.py:26
186186 #, python-format
187187 msgid ""
188188 "An account already exists with this e-mail address. Please sign in to that "
191191 "Účet s touto e-mailovou adresou už existuje. Prosím, prihláste sa najprv na "
192192 "tento účet a potom pripojte svoj %s účet."
193193
194 #: socialaccount/adapter.py:132
194 #: socialaccount/adapter.py:131
195195 msgid "Your account has no password set up."
196196 msgstr "Váš účet nemá nastavené heslo."
197197
198 #: socialaccount/adapter.py:139
198 #: socialaccount/adapter.py:138
199199 msgid "Your account has no verified e-mail address."
200200 msgstr "Váš účet nemá overenú e-mailovú adresu."
201201
202 #: socialaccount/apps.py:8
202 #: socialaccount/apps.py:7
203203 msgid "Social Accounts"
204204 msgstr "Účty na sociálnych sieťach"
205205
206 #: socialaccount/models.py:46 socialaccount/models.py:80
206 #: socialaccount/models.py:42 socialaccount/models.py:76
207207 msgid "provider"
208208 msgstr "poskytovateľ"
209209
210 #: socialaccount/models.py:49
210 #: socialaccount/models.py:45
211211 msgid "name"
212212 msgstr "užívateľské meno"
213213
214 #: socialaccount/models.py:51
214 #: socialaccount/models.py:47
215215 msgid "client id"
216216 msgstr "identifikátor klienta"
217217
218 #: socialaccount/models.py:53
218 #: socialaccount/models.py:49
219219 msgid "App ID, or consumer key"
220220 msgstr "ID aplikácie alebo zákaznícky kľúč"
221221
222 #: socialaccount/models.py:54
222 #: socialaccount/models.py:50
223223 msgid "secret key"
224224 msgstr "tajný kľúč"
225225
226 #: socialaccount/models.py:56
226 #: socialaccount/models.py:53
227227 msgid "API secret, client secret, or consumer secret"
228228 msgstr "Kľúč API, klienta alebo zákazníka"
229229
230 #: socialaccount/models.py:61
230 #: socialaccount/models.py:58
231231 msgid "Key"
232232 msgstr "Kľúč"
233233
234 #: socialaccount/models.py:69
234 #: socialaccount/models.py:66
235235 msgid "social application"
236236 msgstr "sociálna aplikácia"
237237
238 #: socialaccount/models.py:70
238 #: socialaccount/models.py:67
239239 msgid "social applications"
240240 msgstr "sociálne aplikácie"
241241
242 #: socialaccount/models.py:99
242 #: socialaccount/models.py:95
243243 msgid "uid"
244244 msgstr "uid"
245245
246 #: socialaccount/models.py:101
246 #: socialaccount/models.py:97
247247 msgid "last login"
248248 msgstr "posledné prihlásenie"
249249
250 #: socialaccount/models.py:103
250 #: socialaccount/models.py:99
251251 msgid "date joined"
252252 msgstr "dáum pripojenia"
253253
254 #: socialaccount/models.py:105
254 #: socialaccount/models.py:101
255255 msgid "extra data"
256256 msgstr "ďalšie údaje"
257257
258 #: socialaccount/models.py:109
258 #: socialaccount/models.py:105
259259 msgid "social account"
260260 msgstr "sociálny účet"
261261
262 #: socialaccount/models.py:110
262 #: socialaccount/models.py:106
263263 msgid "social accounts"
264264 msgstr "sociálne účty"
265265
266 #: socialaccount/models.py:136
266 #: socialaccount/models.py:131
267267 msgid "token"
268268 msgstr "token"
269269
270 #: socialaccount/models.py:138
270 #: socialaccount/models.py:133
271271 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
272272 msgstr ""
273273 "\"Oauth_token\" (Podpora protokolu OAuth1) alebo prístup tokenu (OAuth2)"
274274
275 #: socialaccount/models.py:141
275 #: socialaccount/models.py:136
276276 msgid "token secret"
277277 msgstr "heslo prístupového tokenu"
278278
279 #: socialaccount/models.py:143
279 #: socialaccount/models.py:138
280280 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
281281 msgstr ""
282282 "\"Oauth_token_secret\" (Podpora protokolu OAuth1) alebo token obnovenie "
283283 "(OAuth2)"
284284
285 #: socialaccount/models.py:145
285 #: socialaccount/models.py:140
286286 msgid "expires at"
287287 msgstr "vyexpiruje"
288288
289 #: socialaccount/models.py:149
289 #: socialaccount/models.py:144
290290 msgid "social application token"
291291 msgstr "token sociálnej aplikácie"
292292
293 #: socialaccount/models.py:150
293 #: socialaccount/models.py:145
294294 msgid "social application tokens"
295295 msgstr "tokeny sociálnej aplikácie"
296296
297 #: socialaccount/providers/douban/views.py:35
297 #: socialaccount/providers/douban/views.py:36
298298 msgid "Invalid profile data"
299299 msgstr "Nesprávne profilové údaje"
300300
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-08-29 16:33-0500\n"
10 "POT-Creation-Date: 2019-12-18 11:53-0600\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"
3636 msgid "Password must be a minimum of {0} characters."
3737 msgstr "Лозинка мора бити најмање {0} знакова."
3838
39 #: account/apps.py:8
39 #: account/apps.py:7
4040 msgid "Accounts"
4141 msgstr "Рачуни"
4242
43 #: account/forms.py:63 account/forms.py:400
43 #: account/forms.py:61 account/forms.py:398
4444 msgid "You must type the same password each time."
4545 msgstr "Морате унијети исту лозинку сваки пут"
4646
47 #: account/forms.py:93 account/forms.py:367 account/forms.py:478
47 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4848 msgid "Password"
4949 msgstr "Лозинка"
5050
51 #: account/forms.py:94
51 #: account/forms.py:92
5252 msgid "Remember Me"
5353 msgstr "Сети ме се"
5454
55 #: account/forms.py:100
55 #: account/forms.py:98
5656 msgid "This account is currently inactive."
5757 msgstr "Овај налог је тренутно неактиван."
5858
59 #: account/forms.py:103
59 #: account/forms.py:101
6060 msgid "The e-mail address and/or password you specified are not correct."
6161 msgstr "Адреса е-поште и/или лозинка коју сте навели нису тачни."
6262
63 #: account/forms.py:106
63 #: account/forms.py:104
6464 msgid "The username and/or password you specified are not correct."
6565 msgstr "Корисничко име и/или лозинка коју сте навели нису тачни."
6666
67 #: account/forms.py:115 account/forms.py:270 account/forms.py:428
68 #: account/forms.py:497
67 #: account/forms.py:113 account/forms.py:268 account/forms.py:426
68 #: account/forms.py:495
6969 msgid "E-mail address"
7070 msgstr "Адреса е-поште"
7171
72 #: account/forms.py:117 account/forms.py:303 account/forms.py:423
73 #: account/forms.py:492
72 #: account/forms.py:115 account/forms.py:301 account/forms.py:421
73 #: account/forms.py:490
7474 msgid "E-mail"
7575 msgstr "Е-пошта"
7676
77 #: account/forms.py:122 account/forms.py:125 account/forms.py:262
78 #: account/forms.py:266
77 #: account/forms.py:120 account/forms.py:123 account/forms.py:260
78 #: account/forms.py:264
7979 msgid "Username"
8080 msgstr "Корисничко име"
8181
82 #: account/forms.py:132
82 #: account/forms.py:130
8383 msgid "Username or e-mail"
8484 msgstr "Корисничко име или е-пошта"
8585
86 #: account/forms.py:135
86 #: account/forms.py:133
8787 msgctxt "field label"
8888 msgid "Login"
8989 msgstr "Пријавите се"
9090
91 #: account/forms.py:294
91 #: account/forms.py:292
9292 msgid "E-mail (again)"
9393 msgstr "Е-пошта (опет)"
9494
95 #: account/forms.py:298
95 #: account/forms.py:296
9696 msgid "E-mail address confirmation"
9797 msgstr "Потврда адресе е-поште"
9898
99 #: account/forms.py:306
99 #: account/forms.py:304
100100 msgid "E-mail (optional)"
101101 msgstr "Е-пошта (опционо)"
102102
103 #: account/forms.py:347
103 #: account/forms.py:345
104104 msgid "You must type the same email each time."
105105 msgstr "Морате унијети исту адресу е-поште сваки пут."
106106
107 #: account/forms.py:370 account/forms.py:479
107 #: account/forms.py:368 account/forms.py:477
108108 msgid "Password (again)"
109109 msgstr "Лозинка (поново)"
110110
111 #: account/forms.py:434
111 #: account/forms.py:432
112112 msgid "This e-mail address is already associated with this account."
113113 msgstr "Ова адреса е-поште је већ повезана са овим налогом."
114114
115 #: account/forms.py:436
115 #: account/forms.py:434
116116 msgid "This e-mail address is already associated with another account."
117117 msgstr "Ова адреса е-поште је већ повезана са другим налогом."
118118
119 #: account/forms.py:458
119 #: account/forms.py:456
120120 msgid "Current Password"
121121 msgstr "Тренутна лозинка"
122122
123 #: account/forms.py:459 account/forms.py:548
123 #: account/forms.py:457 account/forms.py:546
124124 msgid "New Password"
125125 msgstr "Нова лозинка"
126126
127 #: account/forms.py:460 account/forms.py:549
127 #: account/forms.py:458 account/forms.py:547
128128 msgid "New Password (again)"
129129 msgstr "Нова лозинка (поново)"
130130
131 #: account/forms.py:468
131 #: account/forms.py:466
132132 msgid "Please type your current password."
133133 msgstr "Молимо унесите тренутну лозинку."
134134
135 #: account/forms.py:506
135 #: account/forms.py:504
136136 msgid "The e-mail address is not assigned to any user account"
137137 msgstr "Адреса е-поште није додељена било ком корисничком налогу"
138138
139 #: account/forms.py:570
139 #: account/forms.py:568
140140 msgid "The password reset token was invalid."
141141 msgstr "Токен ресетовања лозинке је неважећи."
142142
143 #: account/models.py:23
143 #: account/models.py:21
144144 msgid "user"
145145 msgstr "корисник"
146146
147 #: account/models.py:27 account/models.py:81
147 #: account/models.py:25 account/models.py:78
148148 msgid "e-mail address"
149149 msgstr "адреса е-поште"
150150
151 #: account/models.py:28
151 #: account/models.py:26
152152 msgid "verified"
153153 msgstr "проверено"
154154
155 #: account/models.py:29
155 #: account/models.py:27
156156 msgid "primary"
157157 msgstr "примарна"
158158
159 #: account/models.py:34
159 #: account/models.py:32
160160 msgid "email address"
161161 msgstr "адреса е-поште"
162162
163 #: account/models.py:35
163 #: account/models.py:33
164164 msgid "email addresses"
165165 msgstr "адресе е-поште"
166166
167 #: account/models.py:83
167 #: account/models.py:80
168168 msgid "created"
169169 msgstr "створено"
170170
171 #: account/models.py:85
171 #: account/models.py:82
172172 msgid "sent"
173173 msgstr "послат"
174174
175 #: account/models.py:86 socialaccount/models.py:58
175 #: account/models.py:83 socialaccount/models.py:55
176176 msgid "key"
177177 msgstr "кључ"
178178
179 #: account/models.py:91
179 #: account/models.py:88
180180 msgid "email confirmation"
181181 msgstr "потврда е-поште"
182182
183 #: account/models.py:92
183 #: account/models.py:89
184184 msgid "email confirmations"
185185 msgstr "потврде е-поште"
186186
187 #: socialaccount/adapter.py:27
187 #: socialaccount/adapter.py:26
188188 #, python-format
189189 msgid ""
190190 "An account already exists with this e-mail address. Please sign in to that "
193193 "Рачун постоји већ са овом адресом е-поште. Пријавите се на топрви налог, "
194194 "затим повежите свој %s налог."
195195
196 #: socialaccount/adapter.py:132
196 #: socialaccount/adapter.py:131
197197 msgid "Your account has no password set up."
198198 msgstr "Ваш налог нема подешену лозинку."
199199
200 #: socialaccount/adapter.py:139
200 #: socialaccount/adapter.py:138
201201 msgid "Your account has no verified e-mail address."
202202 msgstr "Ваш налог нема потврђену е-маил адресу."
203203
204 #: socialaccount/apps.py:8
204 #: socialaccount/apps.py:7
205205 msgid "Social Accounts"
206206 msgstr "Друштвени рачуни"
207207
208 #: socialaccount/models.py:46 socialaccount/models.py:80
208 #: socialaccount/models.py:42 socialaccount/models.py:76
209209 msgid "provider"
210210 msgstr "провидер"
211211
212 #: socialaccount/models.py:49
212 #: socialaccount/models.py:45
213213 msgid "name"
214214 msgstr "име"
215215
216 #: socialaccount/models.py:51
216 #: socialaccount/models.py:47
217217 msgid "client id"
218218 msgstr "ИД клијента"
219219
220 #: socialaccount/models.py:53
220 #: socialaccount/models.py:49
221221 msgid "App ID, or consumer key"
222222 msgstr "ИД апликације или потрошачки кључ"
223223
224 #: socialaccount/models.py:54
224 #: socialaccount/models.py:50
225225 msgid "secret key"
226226 msgstr "тајни кључ"
227227
228 #: socialaccount/models.py:56
228 #: socialaccount/models.py:53
229229 msgid "API secret, client secret, or consumer secret"
230230 msgstr "Тајна АПИ-ја, тајна клијента или тајна потрошача"
231231
232 #: socialaccount/models.py:61
232 #: socialaccount/models.py:58
233233 msgid "Key"
234234 msgstr "Кључ"
235235
236 #: socialaccount/models.py:69
236 #: socialaccount/models.py:66
237237 msgid "social application"
238238 msgstr "друштвена апликација"
239239
240 #: socialaccount/models.py:70
240 #: socialaccount/models.py:67
241241 msgid "social applications"
242242 msgstr "друштвена апликације"
243243
244 #: socialaccount/models.py:99
244 #: socialaccount/models.py:95
245245 msgid "uid"
246246 msgstr "уид"
247247
248 #: socialaccount/models.py:101
248 #: socialaccount/models.py:97
249249 msgid "last login"
250250 msgstr "Последње пријављивање"
251251
252 #: socialaccount/models.py:103
252 #: socialaccount/models.py:99
253253 msgid "date joined"
254254 msgstr "Датум придружио"
255255
256 #: socialaccount/models.py:105
256 #: socialaccount/models.py:101
257257 msgid "extra data"
258258 msgstr "додатни подаци"
259259
260 #: socialaccount/models.py:109
260 #: socialaccount/models.py:105
261261 msgid "social account"
262262 msgstr "друштвени рачун"
263263
264 #: socialaccount/models.py:110
264 #: socialaccount/models.py:106
265265 msgid "social accounts"
266266 msgstr "друштвени рачуни"
267267
268 #: socialaccount/models.py:136
268 #: socialaccount/models.py:131
269269 msgid "token"
270270 msgstr "токен"
271271
272 #: socialaccount/models.py:138
272 #: socialaccount/models.py:133
273273 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
274274 msgstr "\"oauth_token\" (OAuth1) или токен приступа (OAuth2)"
275275
276 #: socialaccount/models.py:141
276 #: socialaccount/models.py:136
277277 msgid "token secret"
278278 msgstr "токен тајна"
279279
280 #: socialaccount/models.py:143
280 #: socialaccount/models.py:138
281281 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
282282 msgstr "\"oauth_token_secret\" (OAuth1) или освежени токен (OAuth2)"
283283
284 #: socialaccount/models.py:145
284 #: socialaccount/models.py:140
285285 msgid "expires at"
286286 msgstr "истиче у"
287287
288 #: socialaccount/models.py:149
288 #: socialaccount/models.py:144
289289 msgid "social application token"
290290 msgstr "Токен друштвених апликација"
291291
292 #: socialaccount/models.py:150
292 #: socialaccount/models.py:145
293293 msgid "social application tokens"
294294 msgstr "токени друштвених апликација"
295295
296 #: socialaccount/providers/douban/views.py:35
296 #: socialaccount/providers/douban/views.py:36
297297 msgid "Invalid profile data"
298298 msgstr "Невељавни подаци о профилу"
299299
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-08-29 16:33-0500\n"
10 "POT-Creation-Date: 2019-12-18 11:53-0600\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"
3636 msgid "Password must be a minimum of {0} characters."
3737 msgstr "Lozinka mora biti najmanje {0} znakova."
3838
39 #: account/apps.py:8
39 #: account/apps.py:7
4040 msgid "Accounts"
4141 msgstr "Računi"
4242
43 #: account/forms.py:63 account/forms.py:400
43 #: account/forms.py:61 account/forms.py:398
4444 msgid "You must type the same password each time."
4545 msgstr "Morate unijeti istu lozinku svaki put"
4646
47 #: account/forms.py:93 account/forms.py:367 account/forms.py:478
47 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4848 msgid "Password"
4949 msgstr "Lozinka"
5050
51 #: account/forms.py:94
51 #: account/forms.py:92
5252 msgid "Remember Me"
5353 msgstr "Seti me se"
5454
55 #: account/forms.py:100
55 #: account/forms.py:98
5656 msgid "This account is currently inactive."
5757 msgstr "Ovaj nalog je trenutno neaktivan."
5858
59 #: account/forms.py:103
59 #: account/forms.py:101
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:106
63 #: account/forms.py:104
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:115 account/forms.py:270 account/forms.py:428
68 #: account/forms.py:497
67 #: account/forms.py:113 account/forms.py:268 account/forms.py:426
68 #: account/forms.py:495
6969 msgid "E-mail address"
7070 msgstr "Adresa e-pošte"
7171
72 #: account/forms.py:117 account/forms.py:303 account/forms.py:423
73 #: account/forms.py:492
72 #: account/forms.py:115 account/forms.py:301 account/forms.py:421
73 #: account/forms.py:490
7474 msgid "E-mail"
7575 msgstr "E-pošta"
7676
77 #: account/forms.py:122 account/forms.py:125 account/forms.py:262
78 #: account/forms.py:266
77 #: account/forms.py:120 account/forms.py:123 account/forms.py:260
78 #: account/forms.py:264
7979 msgid "Username"
8080 msgstr "Korisničko ime"
8181
82 #: account/forms.py:132
82 #: account/forms.py:130
8383 msgid "Username or e-mail"
8484 msgstr "Korisničko ime ili e-pošta"
8585
86 #: account/forms.py:135
86 #: account/forms.py:133
8787 msgctxt "field label"
8888 msgid "Login"
8989 msgstr "Prijavite se"
9090
91 #: account/forms.py:294
91 #: account/forms.py:292
9292 msgid "E-mail (again)"
9393 msgstr "E-pošta (opet)"
9494
95 #: account/forms.py:298
95 #: account/forms.py:296
9696 msgid "E-mail address confirmation"
9797 msgstr "Potvrda adrese e-pošte"
9898
99 #: account/forms.py:306
99 #: account/forms.py:304
100100 msgid "E-mail (optional)"
101101 msgstr "E-pošta (opciono)"
102102
103 #: account/forms.py:347
103 #: account/forms.py:345
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:370 account/forms.py:479
107 #: account/forms.py:368 account/forms.py:477
108108 msgid "Password (again)"
109109 msgstr "Lozinka (ponovo)"
110110
111 #: account/forms.py:434
111 #: account/forms.py:432
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:436
115 #: account/forms.py:434
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:458
119 #: account/forms.py:456
120120 msgid "Current Password"
121121 msgstr "Trenutna lozinka"
122122
123 #: account/forms.py:459 account/forms.py:548
123 #: account/forms.py:457 account/forms.py:546
124124 msgid "New Password"
125125 msgstr "Nova lozinka"
126126
127 #: account/forms.py:460 account/forms.py:549
127 #: account/forms.py:458 account/forms.py:547
128128 msgid "New Password (again)"
129129 msgstr "Nova lozinka (ponovo)"
130130
131 #: account/forms.py:468
131 #: account/forms.py:466
132132 msgid "Please type your current password."
133133 msgstr "Molimo unesite trenutnu lozinku."
134134
135 #: account/forms.py:506
135 #: account/forms.py:504
136136 msgid "The e-mail address is not assigned to any user account"
137137 msgstr "Adresa e-pošte nije dodeljena bilo kom korisničkom nalogu"
138138
139 #: account/forms.py:570
139 #: account/forms.py:568
140140 msgid "The password reset token was invalid."
141141 msgstr "Token resetovanja lozinke je nevažeći."
142142
143 #: account/models.py:23
143 #: account/models.py:21
144144 msgid "user"
145145 msgstr "korisnik"
146146
147 #: account/models.py:27 account/models.py:81
147 #: account/models.py:25 account/models.py:78
148148 msgid "e-mail address"
149149 msgstr "adresa e-pošte"
150150
151 #: account/models.py:28
151 #: account/models.py:26
152152 msgid "verified"
153153 msgstr "provereno"
154154
155 #: account/models.py:29
155 #: account/models.py:27
156156 msgid "primary"
157157 msgstr "primarna"
158158
159 #: account/models.py:34
159 #: account/models.py:32
160160 msgid "email address"
161161 msgstr "adresa e-pošte"
162162
163 #: account/models.py:35
163 #: account/models.py:33
164164 msgid "email addresses"
165165 msgstr "adrese e-pošte"
166166
167 #: account/models.py:83
167 #: account/models.py:80
168168 msgid "created"
169169 msgstr "stvoreno"
170170
171 #: account/models.py:85
171 #: account/models.py:82
172172 msgid "sent"
173173 msgstr "poslat"
174174
175 #: account/models.py:86 socialaccount/models.py:58
175 #: account/models.py:83 socialaccount/models.py:55
176176 msgid "key"
177177 msgstr "ključ"
178178
179 #: account/models.py:91
179 #: account/models.py:88
180180 msgid "email confirmation"
181181 msgstr "potvrda e-pošte"
182182
183 #: account/models.py:92
183 #: account/models.py:89
184184 msgid "email confirmations"
185185 msgstr "potvrde e-pošte"
186186
187 #: socialaccount/adapter.py:27
187 #: socialaccount/adapter.py:26
188188 #, python-format
189189 msgid ""
190190 "An account already exists with this e-mail address. Please sign in to that "
193193 "Račun postoji već sa ovom adresom e-pošte. Prijavite se na toprvi nalog, "
194194 "zatim povežite svoj %s nalog."
195195
196 #: socialaccount/adapter.py:132
196 #: socialaccount/adapter.py:131
197197 msgid "Your account has no password set up."
198198 msgstr "Vaš nalog nema podešenu lozinku."
199199
200 #: socialaccount/adapter.py:139
200 #: socialaccount/adapter.py:138
201201 msgid "Your account has no verified e-mail address."
202202 msgstr "Vaš nalog nema potvrđenu e-mail adresu."
203203
204 #: socialaccount/apps.py:8
204 #: socialaccount/apps.py:7
205205 msgid "Social Accounts"
206206 msgstr "Društveni računi"
207207
208 #: socialaccount/models.py:46 socialaccount/models.py:80
208 #: socialaccount/models.py:42 socialaccount/models.py:76
209209 msgid "provider"
210210 msgstr "provider"
211211
212 #: socialaccount/models.py:49
212 #: socialaccount/models.py:45
213213 msgid "name"
214214 msgstr "ime"
215215
216 #: socialaccount/models.py:51
216 #: socialaccount/models.py:47
217217 msgid "client id"
218218 msgstr "ID klijenta"
219219
220 #: socialaccount/models.py:53
220 #: socialaccount/models.py:49
221221 msgid "App ID, or consumer key"
222222 msgstr "ID aplikacije ili potrošački ključ"
223223
224 #: socialaccount/models.py:54
224 #: socialaccount/models.py:50
225225 msgid "secret key"
226226 msgstr "tajni ključ"
227227
228 #: socialaccount/models.py:56
228 #: socialaccount/models.py:53
229229 msgid "API secret, client secret, or consumer secret"
230230 msgstr "Tajna API-ja, tajna klijenta ili tajna potrošača"
231231
232 #: socialaccount/models.py:61
232 #: socialaccount/models.py:58
233233 msgid "Key"
234234 msgstr "Ključ"
235235
236 #: socialaccount/models.py:69
236 #: socialaccount/models.py:66
237237 msgid "social application"
238238 msgstr "društvena aplikacija"
239239
240 #: socialaccount/models.py:70
240 #: socialaccount/models.py:67
241241 msgid "social applications"
242242 msgstr "društvena aplikacije"
243243
244 #: socialaccount/models.py:99
244 #: socialaccount/models.py:95
245245 msgid "uid"
246246 msgstr "uid"
247247
248 #: socialaccount/models.py:101
248 #: socialaccount/models.py:97
249249 msgid "last login"
250250 msgstr "Poslednje prijavljivanje"
251251
252 #: socialaccount/models.py:103
252 #: socialaccount/models.py:99
253253 msgid "date joined"
254254 msgstr "Datum pridružio"
255255
256 #: socialaccount/models.py:105
256 #: socialaccount/models.py:101
257257 msgid "extra data"
258258 msgstr "dodatni podaci"
259259
260 #: socialaccount/models.py:109
260 #: socialaccount/models.py:105
261261 msgid "social account"
262262 msgstr "društveni račun"
263263
264 #: socialaccount/models.py:110
264 #: socialaccount/models.py:106
265265 msgid "social accounts"
266266 msgstr "društveni računi"
267267
268 #: socialaccount/models.py:136
268 #: socialaccount/models.py:131
269269 msgid "token"
270270 msgstr "token"
271271
272 #: socialaccount/models.py:138
272 #: socialaccount/models.py:133
273273 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
274274 msgstr "\"oauth_token\" (OAuth1) ili token pristupa (OAuth2)"
275275
276 #: socialaccount/models.py:141
276 #: socialaccount/models.py:136
277277 msgid "token secret"
278278 msgstr "token tajna"
279279
280 #: socialaccount/models.py:143
280 #: socialaccount/models.py:138
281281 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
282282 msgstr "\"oauth_token_secret\" (OAuth1) ili osveženi token (OAuth2)"
283283
284 #: socialaccount/models.py:145
284 #: socialaccount/models.py:140
285285 msgid "expires at"
286286 msgstr "ističe u"
287287
288 #: socialaccount/models.py:149
288 #: socialaccount/models.py:144
289289 msgid "social application token"
290290 msgstr "Token društvenih aplikacija"
291291
292 #: socialaccount/models.py:150
292 #: socialaccount/models.py:145
293293 msgid "social application tokens"
294294 msgstr "tokeni društvenih aplikacija"
295295
296 #: socialaccount/providers/douban/views.py:35
296 #: socialaccount/providers/douban/views.py:36
297297 msgid "Invalid profile data"
298298 msgstr "Neveljavni podaci o profilu"
299299
66 msgstr ""
77 "Project-Id-Version: django-allauth\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2019-08-29 16:33-0500\n"
9 "POT-Creation-Date: 2019-12-18 11:53-0600\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/"
3434 msgid "Password must be a minimum of {0} characters."
3535 msgstr "Lösenordet måste vara minst {0} tecken långt"
3636
37 #: account/apps.py:8
37 #: account/apps.py:7
3838 #, fuzzy
3939 msgid "Accounts"
4040 msgstr "Konto"
4141
42 #: account/forms.py:63 account/forms.py:400
42 #: account/forms.py:61 account/forms.py:398
4343 msgid "You must type the same password each time."
4444 msgstr "Du måste ange samma lösenord"
4545
46 #: account/forms.py:93 account/forms.py:367 account/forms.py:478
46 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4747 msgid "Password"
4848 msgstr "Lösenord"
4949
50 #: account/forms.py:94
50 #: account/forms.py:92
5151 msgid "Remember Me"
5252 msgstr "Kom ihåg mig"
5353
54 #: account/forms.py:100
54 #: account/forms.py:98
5555 msgid "This account is currently inactive."
5656 msgstr "Detta konto är inaktivt."
5757
58 #: account/forms.py:103
58 #: account/forms.py:101
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:106
62 #: account/forms.py:104
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:115 account/forms.py:270 account/forms.py:428
67 #: account/forms.py:497
66 #: account/forms.py:113 account/forms.py:268 account/forms.py:426
67 #: account/forms.py:495
6868 msgid "E-mail address"
6969 msgstr "Epost-adress"
7070
71 #: account/forms.py:117 account/forms.py:303 account/forms.py:423
72 #: account/forms.py:492
71 #: account/forms.py:115 account/forms.py:301 account/forms.py:421
72 #: account/forms.py:490
7373 msgid "E-mail"
7474 msgstr "Epost"
7575
76 #: account/forms.py:122 account/forms.py:125 account/forms.py:262
77 #: account/forms.py:266
76 #: account/forms.py:120 account/forms.py:123 account/forms.py:260
77 #: account/forms.py:264
7878 msgid "Username"
7979 msgstr "Användarnamn"
8080
81 #: account/forms.py:132
81 #: account/forms.py:130
8282 msgid "Username or e-mail"
8383 msgstr "Användarnamn eller epost-adress"
8484
85 #: account/forms.py:135
85 #: account/forms.py:133
8686 msgctxt "field label"
8787 msgid "Login"
8888 msgstr "Logga in"
8989
90 #: account/forms.py:294
90 #: account/forms.py:292
9191 #, fuzzy
9292 #| msgid "E-mail (optional)"
9393 msgid "E-mail (again)"
9494 msgstr "Epost (valfritt)"
9595
96 #: account/forms.py:298
96 #: account/forms.py:296
9797 #, fuzzy
9898 #| msgid "email confirmation"
9999 msgid "E-mail address confirmation"
100100 msgstr "epost-bekräftelse"
101101
102 #: account/forms.py:306
102 #: account/forms.py:304
103103 msgid "E-mail (optional)"
104104 msgstr "Epost (valfritt)"
105105
106 #: account/forms.py:347
106 #: account/forms.py:345
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:370 account/forms.py:479
112 #: account/forms.py:368 account/forms.py:477
113113 msgid "Password (again)"
114114 msgstr "Lösenord (igen)"
115115
116 #: account/forms.py:434
116 #: account/forms.py:432
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:436
120 #: account/forms.py:434
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:458
124 #: account/forms.py:456
125125 msgid "Current Password"
126126 msgstr "Nuvarande lösenord"
127127
128 #: account/forms.py:459 account/forms.py:548
128 #: account/forms.py:457 account/forms.py:546
129129 msgid "New Password"
130130 msgstr "Nytt lösenord"
131131
132 #: account/forms.py:460 account/forms.py:549
132 #: account/forms.py:458 account/forms.py:547
133133 msgid "New Password (again)"
134134 msgstr "Nytt lösenord (igen)"
135135
136 #: account/forms.py:468
136 #: account/forms.py:466
137137 msgid "Please type your current password."
138138 msgstr "Skriv in ditt nuvarande lösenord."
139139
140 #: account/forms.py:506
140 #: account/forms.py:504
141141 msgid "The e-mail address is not assigned to any user account"
142142 msgstr "Epost-adressen är inte knuten till något konto"
143143
144 #: account/forms.py:570
144 #: account/forms.py:568
145145 msgid "The password reset token was invalid."
146146 msgstr ""
147147
148 #: account/models.py:23
148 #: account/models.py:21
149149 msgid "user"
150150 msgstr ""
151151
152 #: account/models.py:27 account/models.py:81
152 #: account/models.py:25 account/models.py:78
153153 #, fuzzy
154154 msgid "e-mail address"
155155 msgstr "epost-adress"
156156
157 #: account/models.py:28
157 #: account/models.py:26
158158 #, fuzzy
159159 msgid "verified"
160160 msgstr "Ej verifierad"
161161
162 #: account/models.py:29
162 #: account/models.py:27
163163 #, fuzzy
164164 msgid "primary"
165165 msgstr "Primär"
166166
167 #: account/models.py:34
167 #: account/models.py:32
168168 msgid "email address"
169169 msgstr "epost-adress"
170170
171 #: account/models.py:35
171 #: account/models.py:33
172172 msgid "email addresses"
173173 msgstr "epost-adresser"
174174
175 #: account/models.py:83
175 #: account/models.py:80
176176 msgid "created"
177177 msgstr ""
178178
179 #: account/models.py:85
179 #: account/models.py:82
180180 msgid "sent"
181181 msgstr ""
182182
183 #: account/models.py:86 socialaccount/models.py:58
183 #: account/models.py:83 socialaccount/models.py:55
184184 msgid "key"
185185 msgstr ""
186186
187 #: account/models.py:91
187 #: account/models.py:88
188188 msgid "email confirmation"
189189 msgstr "epost-bekräftelse"
190190
191 #: account/models.py:92
191 #: account/models.py:89
192192 msgid "email confirmations"
193193 msgstr "epost-bekräftelser"
194194
195 #: socialaccount/adapter.py:27
195 #: socialaccount/adapter.py:26
196196 #, python-format
197197 msgid ""
198198 "An account already exists with this e-mail address. Please sign in to that "
199199 "account first, then connect your %s account."
200200 msgstr ""
201201
202 #: socialaccount/adapter.py:132
202 #: socialaccount/adapter.py:131
203203 msgid "Your account has no password set up."
204204 msgstr "Ditt konto har inget lösenord."
205205
206 #: socialaccount/adapter.py:139
206 #: socialaccount/adapter.py:138
207207 msgid "Your account has no verified e-mail address."
208208 msgstr "Ditt konto har ingen verifierad epost-adress."
209209
210 #: socialaccount/apps.py:8
210 #: socialaccount/apps.py:7
211211 #, fuzzy
212212 msgid "Social Accounts"
213213 msgstr "Konto"
214214
215 #: socialaccount/models.py:46 socialaccount/models.py:80
215 #: socialaccount/models.py:42 socialaccount/models.py:76
216216 msgid "provider"
217217 msgstr ""
218218
219 #: socialaccount/models.py:49
219 #: socialaccount/models.py:45
220220 #, fuzzy
221221 msgid "name"
222222 msgstr "Användarnamn"
223223
224 #: socialaccount/models.py:51
224 #: socialaccount/models.py:47
225225 msgid "client id"
226226 msgstr ""
227227
228 #: socialaccount/models.py:49
229 msgid "App ID, or consumer key"
230 msgstr ""
231
232 #: socialaccount/models.py:50
233 msgid "secret key"
234 msgstr ""
235
228236 #: socialaccount/models.py:53
229 msgid "App ID, or consumer key"
230 msgstr ""
231
232 #: socialaccount/models.py:54
233 msgid "secret key"
234 msgstr ""
235
236 #: socialaccount/models.py:56
237237 msgid "API secret, client secret, or consumer secret"
238238 msgstr ""
239239
240 #: socialaccount/models.py:61
240 #: socialaccount/models.py:58
241241 msgid "Key"
242242 msgstr ""
243243
244 #: socialaccount/models.py:69
244 #: socialaccount/models.py:66
245245 msgid "social application"
246246 msgstr ""
247247
248 #: socialaccount/models.py:70
248 #: socialaccount/models.py:67
249249 msgid "social applications"
250250 msgstr ""
251251
252 #: socialaccount/models.py:95
253 msgid "uid"
254 msgstr ""
255
256 #: socialaccount/models.py:97
257 msgid "last login"
258 msgstr ""
259
252260 #: socialaccount/models.py:99
253 msgid "uid"
261 msgid "date joined"
254262 msgstr ""
255263
256264 #: socialaccount/models.py:101
257 msgid "last login"
258 msgstr ""
259
260 #: socialaccount/models.py:103
261 msgid "date joined"
265 msgid "extra data"
262266 msgstr ""
263267
264268 #: socialaccount/models.py:105
265 msgid "extra data"
266 msgstr ""
267
268 #: socialaccount/models.py:109
269269 msgid "social account"
270270 msgstr ""
271271
272 #: socialaccount/models.py:110
272 #: socialaccount/models.py:106
273273 msgid "social accounts"
274274 msgstr ""
275275
276 #: socialaccount/models.py:131
277 msgid "token"
278 msgstr ""
279
280 #: socialaccount/models.py:133
281 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
282 msgstr ""
283
276284 #: socialaccount/models.py:136
277 msgid "token"
285 msgid "token secret"
278286 msgstr ""
279287
280288 #: socialaccount/models.py:138
281 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
282 msgstr ""
283
284 #: socialaccount/models.py:141
285 msgid "token secret"
286 msgstr ""
287
288 #: socialaccount/models.py:143
289289 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
290290 msgstr ""
291291
292 #: socialaccount/models.py:140
293 msgid "expires at"
294 msgstr ""
295
296 #: socialaccount/models.py:144
297 msgid "social application token"
298 msgstr ""
299
292300 #: socialaccount/models.py:145
293 msgid "expires at"
294 msgstr ""
295
296 #: socialaccount/models.py:149
297 msgid "social application token"
298 msgstr ""
299
300 #: socialaccount/models.py:150
301301 msgid "social application tokens"
302302 msgstr ""
303303
304 #: socialaccount/providers/douban/views.py:35
304 #: socialaccount/providers/douban/views.py:36
305305 msgid "Invalid profile data"
306306 msgstr ""
307307
99 msgstr ""
1010 "Project-Id-Version: django-allauth\n"
1111 "Report-Msgid-Bugs-To: \n"
12 "POT-Creation-Date: 2019-08-29 16:33-0500\n"
12 "POT-Creation-Date: 2019-12-18 11:53-0600\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"
3636 msgid "Password must be a minimum of {0} characters."
3737 msgstr "รหัสผ่านต้องมีอย่างน้อย {0} ตัวอักษร"
3838
39 #: account/apps.py:8
39 #: account/apps.py:7
4040 msgid "Accounts"
4141 msgstr "บัญชี"
4242
43 #: account/forms.py:63 account/forms.py:400
43 #: account/forms.py:61 account/forms.py:398
4444 msgid "You must type the same password each time."
4545 msgstr "ต้องพิมพ์รหัสผ่านเดิมซ้ำอีกครั้ง"
4646
47 #: account/forms.py:93 account/forms.py:367 account/forms.py:478
47 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4848 msgid "Password"
4949 msgstr "รหัสผ่าน"
5050
51 #: account/forms.py:94
51 #: account/forms.py:92
5252 msgid "Remember Me"
5353 msgstr "จดจำการเข้าใช้"
5454
55 #: account/forms.py:100
55 #: account/forms.py:98
5656 msgid "This account is currently inactive."
5757 msgstr "บัญชีนี้อยู่ในสถานะที่ใช้งานไม่ได้่"
5858
59 #: account/forms.py:103
59 #: account/forms.py:101
6060 msgid "The e-mail address and/or password you specified are not correct."
6161 msgstr "อีเมลและ/หรือรหัสผ่านที่ระบุมาไม่ถูกต้อง"
6262
63 #: account/forms.py:106
63 #: account/forms.py:104
6464 msgid "The username and/or password you specified are not correct."
6565 msgstr "ชื่อผู้ใช้และ/หรือรหัสผ่านที่ระบุมาไม่ถูกต้อง"
6666
67 #: account/forms.py:115 account/forms.py:270 account/forms.py:428
68 #: account/forms.py:497
67 #: account/forms.py:113 account/forms.py:268 account/forms.py:426
68 #: account/forms.py:495
6969 msgid "E-mail address"
7070 msgstr "อีเมล"
7171
72 #: account/forms.py:117 account/forms.py:303 account/forms.py:423
73 #: account/forms.py:492
72 #: account/forms.py:115 account/forms.py:301 account/forms.py:421
73 #: account/forms.py:490
7474 msgid "E-mail"
7575 msgstr "อีเมล"
7676
77 #: account/forms.py:122 account/forms.py:125 account/forms.py:262
78 #: account/forms.py:266
77 #: account/forms.py:120 account/forms.py:123 account/forms.py:260
78 #: account/forms.py:264
7979 msgid "Username"
8080 msgstr "ชื่อผู้ใช้"
8181
82 #: account/forms.py:132
82 #: account/forms.py:130
8383 msgid "Username or e-mail"
8484 msgstr "ชื่อผู้ใช้ หรือ อีเมล"
8585
86 #: account/forms.py:135
86 #: account/forms.py:133
8787 msgctxt "field label"
8888 msgid "Login"
8989 msgstr "ลงชื่อเข้าใช้"
9090
91 #: account/forms.py:294
91 #: account/forms.py:292
9292 #, fuzzy
9393 #| msgid "E-mail (optional)"
9494 msgid "E-mail (again)"
9595 msgstr "อีเมล (ไม่จำเป็น)"
9696
97 #: account/forms.py:298
97 #: account/forms.py:296
9898 #, fuzzy
9999 #| msgid "email confirmation"
100100 msgid "E-mail address confirmation"
101101 msgstr "การยืนยันอีเมล"
102102
103 #: account/forms.py:306
103 #: account/forms.py:304
104104 msgid "E-mail (optional)"
105105 msgstr "อีเมล (ไม่จำเป็น)"
106106
107 #: account/forms.py:347
107 #: account/forms.py:345
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:370 account/forms.py:479
113 #: account/forms.py:368 account/forms.py:477
114114 msgid "Password (again)"
115115 msgstr "รหัสผ่าน (อีกครั้ง)"
116116
117 #: account/forms.py:434
117 #: account/forms.py:432
118118 msgid "This e-mail address is already associated with this account."
119119 msgstr "อีเมลนี้ได้ถูกเชื่อมกับบัญชีนี้แล้ว"
120120
121 #: account/forms.py:436
121 #: account/forms.py:434
122122 msgid "This e-mail address is already associated with another account."
123123 msgstr "อีเมลนี้ได้ถูกเชื่อมกับบัญชีอื่นแล้ว"
124124
125 #: account/forms.py:458
125 #: account/forms.py:456
126126 msgid "Current Password"
127127 msgstr "รหัสผ่านปัจจุบัน"
128128
129 #: account/forms.py:459 account/forms.py:548
129 #: account/forms.py:457 account/forms.py:546
130130 msgid "New Password"
131131 msgstr "รหัสผ่านใหม่"
132132
133 #: account/forms.py:460 account/forms.py:549
133 #: account/forms.py:458 account/forms.py:547
134134 msgid "New Password (again)"
135135 msgstr "รหัสผ่านใหม่ (อีกครั้ง)"
136136
137 #: account/forms.py:468
137 #: account/forms.py:466
138138 msgid "Please type your current password."
139139 msgstr "โปรดใส่รหัสผ่านปัจจุบัน"
140140
141 #: account/forms.py:506
141 #: account/forms.py:504
142142 msgid "The e-mail address is not assigned to any user account"
143143 msgstr "อีเมลนี้ไม่ได้เชื่อมกับบัญชีใดเลย"
144144
145 #: account/forms.py:570
145 #: account/forms.py:568
146146 msgid "The password reset token was invalid."
147147 msgstr "token ที่ใช้รีเซ็ทรหัสผ่านไม่ถูกต้อง"
148148
149 #: account/models.py:23
149 #: account/models.py:21
150150 msgid "user"
151151 msgstr "ผู้ใช้"
152152
153 #: account/models.py:27 account/models.py:81
153 #: account/models.py:25 account/models.py:78
154154 msgid "e-mail address"
155155 msgstr "อีเมล"
156156
157 #: account/models.py:28
157 #: account/models.py:26
158158 msgid "verified"
159159 msgstr "ยืนยันแล้ว"
160160
161 #: account/models.py:29
161 #: account/models.py:27
162162 msgid "primary"
163163 msgstr "หลัก"
164164
165 #: account/models.py:34
165 #: account/models.py:32
166166 msgid "email address"
167167 msgstr "อีเมล"
168168
169 #: account/models.py:35
169 #: account/models.py:33
170170 msgid "email addresses"
171171 msgstr "อีเมล"
172172
173 #: account/models.py:83
173 #: account/models.py:80
174174 msgid "created"
175175 msgstr "สร้างแล้ว"
176176
177 #: account/models.py:85
177 #: account/models.py:82
178178 msgid "sent"
179179 msgstr "ส่งแล้ว"
180180
181 #: account/models.py:86 socialaccount/models.py:58
181 #: account/models.py:83 socialaccount/models.py:55
182182 msgid "key"
183183 msgstr "คีย์"
184184
185 #: account/models.py:91
185 #: account/models.py:88
186186 msgid "email confirmation"
187187 msgstr "การยืนยันอีเมล"
188188
189 #: account/models.py:92
189 #: account/models.py:89
190190 msgid "email confirmations"
191191 msgstr "การยืนยันอีเมล"
192192
193 #: socialaccount/adapter.py:27
193 #: socialaccount/adapter.py:26
194194 #, python-format
195195 msgid ""
196196 "An account already exists with this e-mail address. Please sign in to that "
197197 "account first, then connect your %s account."
198198 msgstr "มีบัญชีที่ใช้อีเมลนี้แล้ว โปรดลงชื่อเข้าใช้ก่อนแล้วค่อยเชื่อมต่อกับบัญชี %s ของคุณ"
199199
200 #: socialaccount/adapter.py:132
200 #: socialaccount/adapter.py:131
201201 msgid "Your account has no password set up."
202202 msgstr "บัญชีของคุณไม่ได้ตั้งรหัสผ่านไว้"
203203
204 #: socialaccount/adapter.py:139
204 #: socialaccount/adapter.py:138
205205 msgid "Your account has no verified e-mail address."
206206 msgstr "บัญชีของคุณไม่มีอีเมลที่ยืนยันแล้ว"
207207
208 #: socialaccount/apps.py:8
208 #: socialaccount/apps.py:7
209209 msgid "Social Accounts"
210210 msgstr "บัญชีโซเชียล"
211211
212 #: socialaccount/models.py:46 socialaccount/models.py:80
212 #: socialaccount/models.py:42 socialaccount/models.py:76
213213 msgid "provider"
214214 msgstr "ผู้ให้บริการ"
215215
216 #: socialaccount/models.py:49
216 #: socialaccount/models.py:45
217217 msgid "name"
218218 msgstr "ชื่อ"
219219
220 #: socialaccount/models.py:51
220 #: socialaccount/models.py:47
221221 msgid "client id"
222222 msgstr ""
223223
224 #: socialaccount/models.py:49
225 msgid "App ID, or consumer key"
226 msgstr ""
227
228 #: socialaccount/models.py:50
229 msgid "secret key"
230 msgstr ""
231
224232 #: socialaccount/models.py:53
225 msgid "App ID, or consumer key"
226 msgstr ""
227
228 #: socialaccount/models.py:54
229 msgid "secret key"
230 msgstr ""
231
232 #: socialaccount/models.py:56
233233 msgid "API secret, client secret, or consumer secret"
234234 msgstr ""
235235
236 #: socialaccount/models.py:61
236 #: socialaccount/models.py:58
237237 msgid "Key"
238238 msgstr "คีย์"
239239
240 #: socialaccount/models.py:69
240 #: socialaccount/models.py:66
241241 msgid "social application"
242242 msgstr ""
243243
244 #: socialaccount/models.py:70
244 #: socialaccount/models.py:67
245245 msgid "social applications"
246246 msgstr ""
247247
248 #: socialaccount/models.py:95
249 msgid "uid"
250 msgstr ""
251
252 #: socialaccount/models.py:97
253 msgid "last login"
254 msgstr ""
255
248256 #: socialaccount/models.py:99
249 msgid "uid"
257 msgid "date joined"
250258 msgstr ""
251259
252260 #: socialaccount/models.py:101
253 msgid "last login"
254 msgstr ""
255
256 #: socialaccount/models.py:103
257 msgid "date joined"
261 msgid "extra data"
258262 msgstr ""
259263
260264 #: socialaccount/models.py:105
261 msgid "extra data"
262 msgstr ""
263
264 #: socialaccount/models.py:109
265265 msgid "social account"
266266 msgstr ""
267267
268 #: socialaccount/models.py:110
268 #: socialaccount/models.py:106
269269 msgid "social accounts"
270270 msgstr ""
271271
272 #: socialaccount/models.py:136
272 #: socialaccount/models.py:131
273273 msgid "token"
274274 msgstr "token"
275275
276 #: socialaccount/models.py:133
277 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
278 msgstr ""
279
280 #: socialaccount/models.py:136
281 msgid "token secret"
282 msgstr ""
283
276284 #: socialaccount/models.py:138
277 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
278 msgstr ""
279
280 #: socialaccount/models.py:141
281 msgid "token secret"
282 msgstr ""
283
284 #: socialaccount/models.py:143
285285 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
286286 msgstr ""
287287
288 #: socialaccount/models.py:140
289 msgid "expires at"
290 msgstr ""
291
292 #: socialaccount/models.py:144
293 msgid "social application token"
294 msgstr ""
295
288296 #: socialaccount/models.py:145
289 msgid "expires at"
290 msgstr ""
291
292 #: socialaccount/models.py:149
293 msgid "social application token"
294 msgstr ""
295
296 #: socialaccount/models.py:150
297297 msgid "social application tokens"
298298 msgstr ""
299299
300 #: socialaccount/providers/douban/views.py:35
300 #: socialaccount/providers/douban/views.py:36
301301 msgid "Invalid profile data"
302302 msgstr ""
303303
77 msgstr ""
88 "Project-Id-Version: django-allauth\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-08-29 16:33-0500\n"
10 "POT-Creation-Date: 2019-12-18 11:53-0600\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/"
3535 msgid "Password must be a minimum of {0} characters."
3636 msgstr "Parola en az {0} karakter olmalıdır."
3737
38 #: account/apps.py:8
38 #: account/apps.py:7
3939 #, fuzzy
4040 msgid "Accounts"
4141 msgstr "Hesap"
4242
43 #: account/forms.py:63 account/forms.py:400
43 #: account/forms.py:61 account/forms.py:398
4444 msgid "You must type the same password each time."
4545 msgstr "Her seferinde aynı parolayı girmelisiniz."
4646
47 #: account/forms.py:93 account/forms.py:367 account/forms.py:478
47 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4848 msgid "Password"
4949 msgstr "Parola"
5050
51 #: account/forms.py:94
51 #: account/forms.py:92
5252 msgid "Remember Me"
5353 msgstr "Beni Hatırla"
5454
55 #: account/forms.py:100
55 #: account/forms.py:98
5656 msgid "This account is currently inactive."
5757 msgstr "Bu hesap şu anda etkin değil."
5858
59 #: account/forms.py:103
59 #: account/forms.py:101
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:106
63 #: account/forms.py:104
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:115 account/forms.py:270 account/forms.py:428
68 #: account/forms.py:497
67 #: account/forms.py:113 account/forms.py:268 account/forms.py:426
68 #: account/forms.py:495
6969 msgid "E-mail address"
7070 msgstr "E-posta adresi"
7171
72 #: account/forms.py:117 account/forms.py:303 account/forms.py:423
73 #: account/forms.py:492
72 #: account/forms.py:115 account/forms.py:301 account/forms.py:421
73 #: account/forms.py:490
7474 msgid "E-mail"
7575 msgstr "E-posta"
7676
77 #: account/forms.py:122 account/forms.py:125 account/forms.py:262
78 #: account/forms.py:266
77 #: account/forms.py:120 account/forms.py:123 account/forms.py:260
78 #: account/forms.py:264
7979 msgid "Username"
8080 msgstr "Kullanıcı adı"
8181
82 #: account/forms.py:132
82 #: account/forms.py:130
8383 msgid "Username or e-mail"
8484 msgstr "Kullanıcı adı ya da e-posta"
8585
86 #: account/forms.py:135
86 #: account/forms.py:133
8787 msgctxt "field label"
8888 msgid "Login"
8989 msgstr "Giriş Yap"
9090
91 #: account/forms.py:294
91 #: account/forms.py:292
9292 #, fuzzy
9393 #| msgid "E-mail (optional)"
9494 msgid "E-mail (again)"
9595 msgstr "E-posta (zorunlu değil)"
9696
97 #: account/forms.py:298
97 #: account/forms.py:296
9898 #, fuzzy
9999 #| msgid "email confirmation"
100100 msgid "E-mail address confirmation"
101101 msgstr "e-posta onayı"
102102
103 #: account/forms.py:306
103 #: account/forms.py:304
104104 msgid "E-mail (optional)"
105105 msgstr "E-posta (zorunlu değil)"
106106
107 #: account/forms.py:347
107 #: account/forms.py:345
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:370 account/forms.py:479
113 #: account/forms.py:368 account/forms.py:477
114114 msgid "Password (again)"
115115 msgstr "Parola (tekrar)"
116116
117 #: account/forms.py:434
117 #: account/forms.py:432
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:436
121 #: account/forms.py:434
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:458
125 #: account/forms.py:456
126126 msgid "Current Password"
127127 msgstr "Mevcut Parola"
128128
129 #: account/forms.py:459 account/forms.py:548
129 #: account/forms.py:457 account/forms.py:546
130130 msgid "New Password"
131131 msgstr "Yeni Parola"
132132
133 #: account/forms.py:460 account/forms.py:549
133 #: account/forms.py:458 account/forms.py:547
134134 msgid "New Password (again)"
135135 msgstr "Yeni Parola (tekrar)"
136136
137 #: account/forms.py:468
137 #: account/forms.py:466
138138 msgid "Please type your current password."
139139 msgstr "Mevcut parolanızı tekrar yazın."
140140
141 #: account/forms.py:506
141 #: account/forms.py:504
142142 msgid "The e-mail address is not assigned to any user account"
143143 msgstr "Bu e-posta adresi hiçbir kullanıcı hesabıyla ilişkili değil"
144144
145 #: account/forms.py:570
145 #: account/forms.py:568
146146 msgid "The password reset token was invalid."
147147 msgstr "Şifre sıfırlama kodu hatalı."
148148
149 #: account/models.py:23
149 #: account/models.py:21
150150 msgid "user"
151151 msgstr "kullanıcı"
152152
153 #: account/models.py:27 account/models.py:81
153 #: account/models.py:25 account/models.py:78
154154 #, fuzzy
155155 msgid "e-mail address"
156156 msgstr "e-posta adresi"
157157
158 #: account/models.py:28
158 #: account/models.py:26
159159 #, fuzzy
160160 msgid "verified"
161161 msgstr "Doğrulanmamış"
162162
163 #: account/models.py:29
163 #: account/models.py:27
164164 #, fuzzy
165165 msgid "primary"
166166 msgstr "Birincil"
167167
168 #: account/models.py:34
168 #: account/models.py:32
169169 msgid "email address"
170170 msgstr "e-posta adresi"
171171
172 #: account/models.py:35
172 #: account/models.py:33
173173 msgid "email addresses"
174174 msgstr "e-posta adresleri"
175175
176 #: account/models.py:83
176 #: account/models.py:80
177177 msgid "created"
178178 msgstr "oluşturuldu"
179179
180 #: account/models.py:85
180 #: account/models.py:82
181181 msgid "sent"
182182 msgstr "gönderildi"
183183
184 #: account/models.py:86 socialaccount/models.py:58
184 #: account/models.py:83 socialaccount/models.py:55
185185 msgid "key"
186186 msgstr ""
187187
188 #: account/models.py:91
188 #: account/models.py:88
189189 msgid "email confirmation"
190190 msgstr "e-posta onayı"
191191
192 #: account/models.py:92
192 #: account/models.py:89
193193 msgid "email confirmations"
194194 msgstr "e-posta onayları"
195195
196 #: socialaccount/adapter.py:27
196 #: socialaccount/adapter.py:26
197197 #, python-format
198198 msgid ""
199199 "An account already exists with this e-mail address. Please sign in to that "
202202 "Bu e-posta ile kayıtlı bir hesap bulunmaktadır. Lütfen önce bu hesaba giriş "
203203 "yapıp daha sonra %s hesabınızı bağlayın."
204204
205 #: socialaccount/adapter.py:132
205 #: socialaccount/adapter.py:131
206206 msgid "Your account has no password set up."
207207 msgstr "Hesabınız için parola belirlemediniz."
208208
209 #: socialaccount/adapter.py:139
209 #: socialaccount/adapter.py:138
210210 msgid "Your account has no verified e-mail address."
211211 msgstr "Hesabınızın doğrulanmış e-posta adresi yok."
212212
213 #: socialaccount/apps.py:8
213 #: socialaccount/apps.py:7
214214 #, fuzzy
215215 msgid "Social Accounts"
216216 msgstr "Hesap"
217217
218 #: socialaccount/models.py:46 socialaccount/models.py:80
218 #: socialaccount/models.py:42 socialaccount/models.py:76
219219 msgid "provider"
220220 msgstr "sağlayıcı"
221221
222 #: socialaccount/models.py:49
222 #: socialaccount/models.py:45
223223 #, fuzzy
224224 msgid "name"
225225 msgstr "Kullanıcı adı"
226226
227 #: socialaccount/models.py:51
227 #: socialaccount/models.py:47
228228 msgid "client id"
229229 msgstr ""
230230
231 #: socialaccount/models.py:49
232 msgid "App ID, or consumer key"
233 msgstr ""
234
235 #: socialaccount/models.py:50
236 msgid "secret key"
237 msgstr ""
238
231239 #: socialaccount/models.py:53
232 msgid "App ID, or consumer key"
233 msgstr ""
234
235 #: socialaccount/models.py:54
236 msgid "secret key"
237 msgstr ""
238
239 #: socialaccount/models.py:56
240240 msgid "API secret, client secret, or consumer secret"
241241 msgstr ""
242242
243 #: socialaccount/models.py:61
243 #: socialaccount/models.py:58
244244 msgid "Key"
245245 msgstr ""
246246
247 #: socialaccount/models.py:69
247 #: socialaccount/models.py:66
248248 msgid "social application"
249249 msgstr ""
250250
251 #: socialaccount/models.py:70
251 #: socialaccount/models.py:67
252252 msgid "social applications"
253253 msgstr ""
254254
255 #: socialaccount/models.py:99
255 #: socialaccount/models.py:95
256256 msgid "uid"
257257 msgstr ""
258258
259 #: socialaccount/models.py:101
259 #: socialaccount/models.py:97
260260 msgid "last login"
261261 msgstr "son giriş"
262262
263 #: socialaccount/models.py:103
263 #: socialaccount/models.py:99
264264 msgid "date joined"
265265 msgstr "katıldığı tarih"
266266
267 #: socialaccount/models.py:101
268 msgid "extra data"
269 msgstr ""
270
267271 #: socialaccount/models.py:105
268 msgid "extra data"
269 msgstr ""
270
271 #: socialaccount/models.py:109
272272 msgid "social account"
273273 msgstr ""
274274
275 #: socialaccount/models.py:110
275 #: socialaccount/models.py:106
276276 msgid "social accounts"
277277 msgstr ""
278278
279 #: socialaccount/models.py:131
280 msgid "token"
281 msgstr ""
282
283 #: socialaccount/models.py:133
284 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
285 msgstr ""
286
279287 #: socialaccount/models.py:136
280 msgid "token"
288 msgid "token secret"
281289 msgstr ""
282290
283291 #: socialaccount/models.py:138
284 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
285 msgstr ""
286
287 #: socialaccount/models.py:141
288 msgid "token secret"
289 msgstr ""
290
291 #: socialaccount/models.py:143
292292 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
293293 msgstr ""
294294
295 #: socialaccount/models.py:140
296 msgid "expires at"
297 msgstr ""
298
299 #: socialaccount/models.py:144
300 msgid "social application token"
301 msgstr ""
302
295303 #: socialaccount/models.py:145
296 msgid "expires at"
297 msgstr ""
298
299 #: socialaccount/models.py:149
300 msgid "social application token"
301 msgstr ""
302
303 #: socialaccount/models.py:150
304304 msgid "social application tokens"
305305 msgstr ""
306306
307 #: socialaccount/providers/douban/views.py:35
307 #: socialaccount/providers/douban/views.py:36
308308 msgid "Invalid profile data"
309309 msgstr "Geçersiz profil bilgisi"
310310
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-08-29 16:33-0500\n"
10 "POT-Creation-Date: 2019-12-18 11:53-0600\n"
1111 "PO-Revision-Date: 2014-08-12 00:36+0200\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
3737 msgid "Password must be a minimum of {0} characters."
3838 msgstr "Пароль повинен містити мінімум {0} символів."
3939
40 #: account/apps.py:8
40 #: account/apps.py:7
4141 msgid "Accounts"
4242 msgstr "Акаунти"
4343
44 #: account/forms.py:63 account/forms.py:400
44 #: account/forms.py:61 account/forms.py:398
4545 msgid "You must type the same password each time."
4646 msgstr "Ви повинні вводити однаковий пароль кожного разу."
4747
48 #: account/forms.py:93 account/forms.py:367 account/forms.py:478
48 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4949 msgid "Password"
5050 msgstr "Пароль"
5151
52 #: account/forms.py:94
52 #: account/forms.py:92
5353 msgid "Remember Me"
5454 msgstr "Запам'ятати мене"
5555
56 #: account/forms.py:100
56 #: account/forms.py:98
5757 msgid "This account is currently inactive."
5858 msgstr "Даний акаунт є неактивним."
5959
60 #: account/forms.py:103
60 #: account/forms.py:101
6161 msgid "The e-mail address and/or password you specified are not correct."
6262 msgstr "Введена e-mail адреса і/або пароль є некоректними."
6363
64 #: account/forms.py:106
64 #: account/forms.py:104
6565 msgid "The username and/or password you specified are not correct."
6666 msgstr "Введене ім'я користувача і/або пароль є некоректними."
6767
68 #: account/forms.py:115 account/forms.py:270 account/forms.py:428
69 #: account/forms.py:497
68 #: account/forms.py:113 account/forms.py:268 account/forms.py:426
69 #: account/forms.py:495
7070 msgid "E-mail address"
7171 msgstr "E-mail адреса"
7272
73 #: account/forms.py:117 account/forms.py:303 account/forms.py:423
74 #: account/forms.py:492
73 #: account/forms.py:115 account/forms.py:301 account/forms.py:421
74 #: account/forms.py:490
7575 msgid "E-mail"
7676 msgstr "E-mail"
7777
78 #: account/forms.py:122 account/forms.py:125 account/forms.py:262
79 #: account/forms.py:266
78 #: account/forms.py:120 account/forms.py:123 account/forms.py:260
79 #: account/forms.py:264
8080 msgid "Username"
8181 msgstr "Ім'я користувача"
8282
83 #: account/forms.py:132
83 #: account/forms.py:130
8484 msgid "Username or e-mail"
8585 msgstr "Ім'я користувача або e-mail"
8686
87 #: account/forms.py:135
87 #: account/forms.py:133
8888 msgctxt "field label"
8989 msgid "Login"
9090 msgstr "Увійти"
9191
92 #: account/forms.py:294
92 #: account/forms.py:292
9393 msgid "E-mail (again)"
9494 msgstr "E-mail (ще раз)"
9595
96 #: account/forms.py:298
96 #: account/forms.py:296
9797 msgid "E-mail address confirmation"
9898 msgstr "e-mail адреса підтвердження"
9999
100 #: account/forms.py:306
100 #: account/forms.py:304
101101 msgid "E-mail (optional)"
102102 msgstr "E-mail (необов'язковий)"
103103
104 #: account/forms.py:347
104 #: account/forms.py:345
105105 msgid "You must type the same email each time."
106106 msgstr "Ви повинні вводити однакову e-mail адресу кожного разу."
107107
108 #: account/forms.py:370 account/forms.py:479
108 #: account/forms.py:368 account/forms.py:477
109109 msgid "Password (again)"
110110 msgstr "Пароль (ще раз)"
111111
112 #: account/forms.py:434
112 #: account/forms.py:432
113113 msgid "This e-mail address is already associated with this account."
114114 msgstr "Вказаний e-mail уже прикріплений до цього акаунту."
115115
116 #: account/forms.py:436
116 #: account/forms.py:434
117117 msgid "This e-mail address is already associated with another account."
118118 msgstr "Вказаний e-mail уже прикріплений до іншого користувача."
119119
120 #: account/forms.py:458
120 #: account/forms.py:456
121121 msgid "Current Password"
122122 msgstr "Поточний пароль"
123123
124 #: account/forms.py:459 account/forms.py:548
124 #: account/forms.py:457 account/forms.py:546
125125 msgid "New Password"
126126 msgstr "Новий пароль"
127127
128 #: account/forms.py:460 account/forms.py:549
128 #: account/forms.py:458 account/forms.py:547
129129 msgid "New Password (again)"
130130 msgstr "Новий пароль (ще раз)"
131131
132 #: account/forms.py:468
132 #: account/forms.py:466
133133 msgid "Please type your current password."
134134 msgstr "Будь ласка, вкажіть Ваш поточний пароль."
135135
136 #: account/forms.py:506
136 #: account/forms.py:504
137137 msgid "The e-mail address is not assigned to any user account"
138138 msgstr "Немає користувача з такою e-mail адресою."
139139
140 #: account/forms.py:570
140 #: account/forms.py:568
141141 msgid "The password reset token was invalid."
142142 msgstr "Токен відновлення паролю був невірним."
143143
144 #: account/models.py:23
144 #: account/models.py:21
145145 msgid "user"
146146 msgstr "користувач"
147147
148 #: account/models.py:27 account/models.py:81
148 #: account/models.py:25 account/models.py:78
149149 msgid "e-mail address"
150150 msgstr "e-mail адреса"
151151
152 #: account/models.py:28
152 #: account/models.py:26
153153 msgid "verified"
154154 msgstr "підтверджено"
155155
156 #: account/models.py:29
156 #: account/models.py:27
157157 msgid "primary"
158158 msgstr "основний"
159159
160 #: account/models.py:34
160 #: account/models.py:32
161161 msgid "email address"
162162 msgstr "e-mail адреса"
163163
164 #: account/models.py:35
164 #: account/models.py:33
165165 msgid "email addresses"
166166 msgstr "e-mail адреса"
167167
168 #: account/models.py:83
168 #: account/models.py:80
169169 msgid "created"
170170 msgstr "створено"
171171
172 #: account/models.py:85
172 #: account/models.py:82
173173 msgid "sent"
174174 msgstr "відправлено"
175175
176 #: account/models.py:86 socialaccount/models.py:58
176 #: account/models.py:83 socialaccount/models.py:55
177177 msgid "key"
178178 msgstr "ключ"
179179
180 #: account/models.py:91
180 #: account/models.py:88
181181 msgid "email confirmation"
182182 msgstr "e-mail підтвердження"
183183
184 #: account/models.py:92
184 #: account/models.py:89
185185 msgid "email confirmations"
186186 msgstr "e-mail підтвердження"
187187
188 #: socialaccount/adapter.py:27
188 #: socialaccount/adapter.py:26
189189 #, python-format
190190 msgid ""
191191 "An account already exists with this e-mail address. Please sign in to that "
194194 "Акаунт з такою e-mail адресою уже існує. Будь ласка, спершу увійдіть у цей "
195195 "акаунт, потім приєднайте Ваш %s акаунт."
196196
197 #: socialaccount/adapter.py:132
197 #: socialaccount/adapter.py:131
198198 msgid "Your account has no password set up."
199199 msgstr "Ваш акаунт не має встановленого паролю."
200200
201 #: socialaccount/adapter.py:139
201 #: socialaccount/adapter.py:138
202202 msgid "Your account has no verified e-mail address."
203203 msgstr "Немає підтвердження по e-mail для Вашого акаунту."
204204
205 #: socialaccount/apps.py:8
205 #: socialaccount/apps.py:7
206206 msgid "Social Accounts"
207207 msgstr "Соціальні акаунти"
208208
209 #: socialaccount/models.py:46 socialaccount/models.py:80
209 #: socialaccount/models.py:42 socialaccount/models.py:76
210210 msgid "provider"
211211 msgstr "постачальник"
212212
213 #: socialaccount/models.py:49
213 #: socialaccount/models.py:45
214214 msgid "name"
215215 msgstr "Ім'я"
216216
217 #: socialaccount/models.py:51
217 #: socialaccount/models.py:47
218218 msgid "client id"
219219 msgstr "ідентифікатор клієнта"
220220
221 #: socialaccount/models.py:53
221 #: socialaccount/models.py:49
222222 msgid "App ID, or consumer key"
223223 msgstr "ідентифікатор додатку або ключ користувача"
224224
225 #: socialaccount/models.py:54
225 #: socialaccount/models.py:50
226226 msgid "secret key"
227227 msgstr "секретний ключ"
228228
229 #: socialaccount/models.py:56
229 #: socialaccount/models.py:53
230230 msgid "API secret, client secret, or consumer secret"
231231 msgstr ""
232232 "секретний ключ додатку, секретний ключ клієнта або секретний ключ користувача"
233233
234 #: socialaccount/models.py:61
234 #: socialaccount/models.py:58
235235 msgid "Key"
236236 msgstr "Ключ"
237237
238 #: socialaccount/models.py:69
238 #: socialaccount/models.py:66
239239 msgid "social application"
240240 msgstr "соціальний додаток"
241241
242 #: socialaccount/models.py:70
242 #: socialaccount/models.py:67
243243 msgid "social applications"
244244 msgstr "соціальні додатки"
245245
246 #: socialaccount/models.py:99
246 #: socialaccount/models.py:95
247247 msgid "uid"
248248 msgstr "ID користувача"
249249
250 #: socialaccount/models.py:101
250 #: socialaccount/models.py:97
251251 msgid "last login"
252252 msgstr "дата останнього входу"
253253
254 #: socialaccount/models.py:103
254 #: socialaccount/models.py:99
255255 msgid "date joined"
256256 msgstr "дата реєстрації"
257257
258 #: socialaccount/models.py:105
258 #: socialaccount/models.py:101
259259 msgid "extra data"
260260 msgstr "додаткові дані"
261261
262 #: socialaccount/models.py:109
262 #: socialaccount/models.py:105
263263 msgid "social account"
264264 msgstr "аккаунт соціальної мережі"
265265
266 #: socialaccount/models.py:110
266 #: socialaccount/models.py:106
267267 msgid "social accounts"
268268 msgstr "акаунти соціальних мереж"
269269
270 #: socialaccount/models.py:136
270 #: socialaccount/models.py:131
271271 msgid "token"
272272 msgstr "токен"
273273
274 #: socialaccount/models.py:138
274 #: socialaccount/models.py:133
275275 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
276276 msgstr "\"oauth_token\" (OAuth1) або access token (OAuth2)"
277277
278 #: socialaccount/models.py:141
278 #: socialaccount/models.py:136
279279 msgid "token secret"
280280 msgstr "секретний токен"
281281
282 #: socialaccount/models.py:143
282 #: socialaccount/models.py:138
283283 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
284284 msgstr "\"oauth_token_secret\" (OAuth1) або refresh token (OAuth2)"
285285
286 #: socialaccount/models.py:145
286 #: socialaccount/models.py:140
287287 msgid "expires at"
288288 msgstr "закінчується"
289289
290 #: socialaccount/models.py:149
290 #: socialaccount/models.py:144
291291 msgid "social application token"
292292 msgstr "токен соціального додатку"
293293
294 #: socialaccount/models.py:150
294 #: socialaccount/models.py:145
295295 msgid "social application tokens"
296296 msgstr "токени соціальних додатків"
297297
298 #: socialaccount/providers/douban/views.py:35
298 #: socialaccount/providers/douban/views.py:36
299299 msgid "Invalid profile data"
300300 msgstr "Невірні дані профілю"
301301
66 msgstr ""
77 "Project-Id-Version: django-allauth\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2019-08-29 16:33-0500\n"
9 "POT-Creation-Date: 2019-12-18 11:53-0600\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"
3232 msgid "Password must be a minimum of {0} characters."
3333 msgstr "密码长度不得少于 {0} 个字符。"
3434
35 #: account/apps.py:8
35 #: account/apps.py:7
3636 #, fuzzy
3737 msgid "Accounts"
3838 msgstr "账号"
3939
40 #: account/forms.py:63 account/forms.py:400
40 #: account/forms.py:61 account/forms.py:398
4141 msgid "You must type the same password each time."
4242 msgstr "每次输入的密码必须相同"
4343
44 #: account/forms.py:93 account/forms.py:367 account/forms.py:478
44 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4545 msgid "Password"
4646 msgstr "密码"
4747
48 #: account/forms.py:94
48 #: account/forms.py:92
4949 msgid "Remember Me"
5050 msgstr "记住我"
5151
52 #: account/forms.py:100
52 #: account/forms.py:98
5353 msgid "This account is currently inactive."
5454 msgstr "此账号当前未激活。"
5555
56 #: account/forms.py:103
56 #: account/forms.py:101
5757 msgid "The e-mail address and/or password you specified are not correct."
5858 msgstr "您提供的e-mail地址或密码不正确。"
5959
60 #: account/forms.py:106
60 #: account/forms.py:104
6161 msgid "The username and/or password you specified are not correct."
6262 msgstr "您提供的用户名或密码不正确。"
6363
64 #: account/forms.py:115 account/forms.py:270 account/forms.py:428
65 #: account/forms.py:497
64 #: account/forms.py:113 account/forms.py:268 account/forms.py:426
65 #: account/forms.py:495
6666 msgid "E-mail address"
6767 msgstr "E-mail地址"
6868
69 #: account/forms.py:117 account/forms.py:303 account/forms.py:423
70 #: account/forms.py:492
69 #: account/forms.py:115 account/forms.py:301 account/forms.py:421
70 #: account/forms.py:490
7171 msgid "E-mail"
7272 msgstr "E-mail"
7373
74 #: account/forms.py:122 account/forms.py:125 account/forms.py:262
75 #: account/forms.py:266
74 #: account/forms.py:120 account/forms.py:123 account/forms.py:260
75 #: account/forms.py:264
7676 msgid "Username"
7777 msgstr "用户名"
7878
79 #: account/forms.py:132
79 #: account/forms.py:130
8080 msgid "Username or e-mail"
8181 msgstr "用户名或e-mail"
8282
83 #: account/forms.py:135
83 #: account/forms.py:133
8484 msgctxt "field label"
8585 msgid "Login"
8686 msgstr "账号"
8787
88 #: account/forms.py:294
88 #: account/forms.py:292
8989 #, fuzzy
9090 #| msgid "E-mail (optional)"
9191 msgid "E-mail (again)"
9292 msgstr "E-mail (选填项)"
9393
94 #: account/forms.py:298
94 #: account/forms.py:296
9595 #, fuzzy
9696 #| msgid "email confirmation"
9797 msgid "E-mail address confirmation"
9898 msgstr "e-mail确认"
9999
100 #: account/forms.py:306
100 #: account/forms.py:304
101101 msgid "E-mail (optional)"
102102 msgstr "E-mail (选填项)"
103103
104 #: account/forms.py:347
104 #: account/forms.py:345
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:370 account/forms.py:479
110 #: account/forms.py:368 account/forms.py:477
111111 msgid "Password (again)"
112112 msgstr "密码(重复)"
113113
114 #: account/forms.py:434
114 #: account/forms.py:432
115115 msgid "This e-mail address is already associated with this account."
116116 msgstr "此e-mail地址已关联到这个账号。"
117117
118 #: account/forms.py:436
118 #: account/forms.py:434
119119 msgid "This e-mail address is already associated with another account."
120120 msgstr "此e-mail地址已关联到其他账号。"
121121
122 #: account/forms.py:458
122 #: account/forms.py:456
123123 msgid "Current Password"
124124 msgstr "当前密码"
125125
126 #: account/forms.py:459 account/forms.py:548
126 #: account/forms.py:457 account/forms.py:546
127127 msgid "New Password"
128128 msgstr "新密码"
129129
130 #: account/forms.py:460 account/forms.py:549
130 #: account/forms.py:458 account/forms.py:547
131131 msgid "New Password (again)"
132132 msgstr "新密码(重复)"
133133
134 #: account/forms.py:468
134 #: account/forms.py:466
135135 msgid "Please type your current password."
136136 msgstr "请输入您的当前密码"
137137
138 #: account/forms.py:506
138 #: account/forms.py:504
139139 msgid "The e-mail address is not assigned to any user account"
140140 msgstr "此e-mail地址未分配给任何用户账号"
141141
142 #: account/forms.py:570
142 #: account/forms.py:568
143143 msgid "The password reset token was invalid."
144144 msgstr "重设密码的token不合法。"
145145
146 #: account/models.py:23
146 #: account/models.py:21
147147 msgid "user"
148148 msgstr "用户"
149149
150 #: account/models.py:27 account/models.py:81
150 #: account/models.py:25 account/models.py:78
151151 #, fuzzy
152152 msgid "e-mail address"
153153 msgstr "e-mail地址"
154154
155 #: account/models.py:28
155 #: account/models.py:26
156156 msgid "verified"
157157 msgstr "已验证"
158158
159 #: account/models.py:29
159 #: account/models.py:27
160160 #, fuzzy
161161 msgid "primary"
162162 msgstr "首选e-mail"
163163
164 #: account/models.py:34
164 #: account/models.py:32
165165 msgid "email address"
166166 msgstr "e-mail地址"
167167
168 #: account/models.py:35
168 #: account/models.py:33
169169 msgid "email addresses"
170170 msgstr "e-mail地址"
171171
172 #: account/models.py:83
172 #: account/models.py:80
173173 msgid "created"
174174 msgstr "已建立"
175175
176 #: account/models.py:85
176 #: account/models.py:82
177177 msgid "sent"
178178 msgstr "已发送"
179179
180 #: account/models.py:86 socialaccount/models.py:58
180 #: account/models.py:83 socialaccount/models.py:55
181181 msgid "key"
182182 msgstr "key"
183183
184 #: account/models.py:91
184 #: account/models.py:88
185185 msgid "email confirmation"
186186 msgstr "e-mail确认"
187187
188 #: account/models.py:92
188 #: account/models.py:89
189189 msgid "email confirmations"
190190 msgstr "e-mail确认"
191191
192 #: socialaccount/adapter.py:27
192 #: socialaccount/adapter.py:26
193193 #, python-format
194194 msgid ""
195195 "An account already exists with this e-mail address. Please sign in to that "
196196 "account first, then connect your %s account."
197197 msgstr "已有一个账号与此e-mail地址关联,请先登录该账号,然后连接你的 %s 账号。"
198198
199 #: socialaccount/adapter.py:132
199 #: socialaccount/adapter.py:131
200200 msgid "Your account has no password set up."
201201 msgstr "您的账号未设置密码。"
202202
203 #: socialaccount/adapter.py:139
203 #: socialaccount/adapter.py:138
204204 msgid "Your account has no verified e-mail address."
205205 msgstr "您的账号下无任何验证过的e-mail地址。"
206206
207 #: socialaccount/apps.py:8
207 #: socialaccount/apps.py:7
208208 #, fuzzy
209209 msgid "Social Accounts"
210210 msgstr "账号"
211211
212 #: socialaccount/models.py:46 socialaccount/models.py:80
212 #: socialaccount/models.py:42 socialaccount/models.py:76
213213 msgid "provider"
214214 msgstr "提供商"
215215
216 #: socialaccount/models.py:49
216 #: socialaccount/models.py:45
217217 #, fuzzy
218218 msgid "name"
219219 msgstr "用户名"
220220
221 #: socialaccount/models.py:51
221 #: socialaccount/models.py:47
222222 msgid "client id"
223223 msgstr "客户端 id"
224224
225 #: socialaccount/models.py:49
226 msgid "App ID, or consumer key"
227 msgstr ""
228
229 #: socialaccount/models.py:50
230 msgid "secret key"
231 msgstr ""
232
225233 #: socialaccount/models.py:53
226 msgid "App ID, or consumer key"
227 msgstr ""
228
229 #: socialaccount/models.py:54
230 msgid "secret key"
231 msgstr ""
232
233 #: socialaccount/models.py:56
234234 msgid "API secret, client secret, or consumer secret"
235235 msgstr ""
236236
237 #: socialaccount/models.py:61
237 #: socialaccount/models.py:58
238238 #, fuzzy
239239 msgid "Key"
240240 msgstr "key"
241241
242 #: socialaccount/models.py:69
242 #: socialaccount/models.py:66
243243 msgid "social application"
244244 msgstr ""
245245
246 #: socialaccount/models.py:70
246 #: socialaccount/models.py:67
247247 msgid "social applications"
248248 msgstr ""
249249
250 #: socialaccount/models.py:99
250 #: socialaccount/models.py:95
251251 msgid "uid"
252252 msgstr ""
253253
254 #: socialaccount/models.py:101
254 #: socialaccount/models.py:97
255255 msgid "last login"
256256 msgstr "最后登录"
257257
258 #: socialaccount/models.py:103
258 #: socialaccount/models.py:99
259259 msgid "date joined"
260260 msgstr "注册日期"
261261
262 #: socialaccount/models.py:101
263 msgid "extra data"
264 msgstr ""
265
262266 #: socialaccount/models.py:105
263 msgid "extra data"
264 msgstr ""
265
266 #: socialaccount/models.py:109
267267 msgid "social account"
268268 msgstr "社交账号"
269269
270 #: socialaccount/models.py:110
270 #: socialaccount/models.py:106
271271 msgid "social accounts"
272272 msgstr "社交账号"
273273
274 #: socialaccount/models.py:131
275 msgid "token"
276 msgstr ""
277
278 #: socialaccount/models.py:133
279 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
280 msgstr ""
281
274282 #: socialaccount/models.py:136
275 msgid "token"
283 msgid "token secret"
276284 msgstr ""
277285
278286 #: socialaccount/models.py:138
279 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
280 msgstr ""
281
282 #: socialaccount/models.py:141
283 msgid "token secret"
284 msgstr ""
285
286 #: socialaccount/models.py:143
287287 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
288288 msgstr ""
289289
290 #: socialaccount/models.py:140
291 msgid "expires at"
292 msgstr ""
293
294 #: socialaccount/models.py:144
295 msgid "social application token"
296 msgstr ""
297
290298 #: socialaccount/models.py:145
291 msgid "expires at"
292 msgstr ""
293
294 #: socialaccount/models.py:149
295 msgid "social application token"
296 msgstr ""
297
298 #: socialaccount/models.py:150
299299 msgid "social application tokens"
300300 msgstr ""
301301
302 #: socialaccount/providers/douban/views.py:35
302 #: socialaccount/providers/douban/views.py:36
303303 msgid "Invalid profile data"
304304 msgstr ""
305305
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-08-29 16:33-0500\n"
10 "POT-Creation-Date: 2019-12-18 11:53-0600\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"
3434 msgid "Password must be a minimum of {0} characters."
3535 msgstr "密码长度不得少于 {0} 个字符。"
3636
37 #: account/apps.py:8
37 #: account/apps.py:7
3838 #, fuzzy
3939 msgid "Accounts"
4040 msgstr "账号"
4141
42 #: account/forms.py:63 account/forms.py:400
42 #: account/forms.py:61 account/forms.py:398
4343 msgid "You must type the same password each time."
4444 msgstr "每次输入的密码必须相同"
4545
46 #: account/forms.py:93 account/forms.py:367 account/forms.py:478
46 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4747 msgid "Password"
4848 msgstr "密码"
4949
50 #: account/forms.py:94
50 #: account/forms.py:92
5151 msgid "Remember Me"
5252 msgstr "记住我"
5353
54 #: account/forms.py:100
54 #: account/forms.py:98
5555 msgid "This account is currently inactive."
5656 msgstr "此账号当前未激活。"
5757
58 #: account/forms.py:103
58 #: account/forms.py:101
5959 msgid "The e-mail address and/or password you specified are not correct."
6060 msgstr "您提供的e-mail地址或密码不正确。"
6161
62 #: account/forms.py:106
62 #: account/forms.py:104
6363 msgid "The username and/or password you specified are not correct."
6464 msgstr "您提供的用户名或密码不正确。"
6565
66 #: account/forms.py:115 account/forms.py:270 account/forms.py:428
67 #: account/forms.py:497
66 #: account/forms.py:113 account/forms.py:268 account/forms.py:426
67 #: account/forms.py:495
6868 msgid "E-mail address"
6969 msgstr "E-mail地址"
7070
71 #: account/forms.py:117 account/forms.py:303 account/forms.py:423
72 #: account/forms.py:492
71 #: account/forms.py:115 account/forms.py:301 account/forms.py:421
72 #: account/forms.py:490
7373 msgid "E-mail"
7474 msgstr "E-mail"
7575
76 #: account/forms.py:122 account/forms.py:125 account/forms.py:262
77 #: account/forms.py:266
76 #: account/forms.py:120 account/forms.py:123 account/forms.py:260
77 #: account/forms.py:264
7878 msgid "Username"
7979 msgstr "用户名"
8080
81 #: account/forms.py:132
81 #: account/forms.py:130
8282 msgid "Username or e-mail"
8383 msgstr "用户名或e-mail"
8484
85 #: account/forms.py:135
85 #: account/forms.py:133
8686 msgctxt "field label"
8787 msgid "Login"
8888 msgstr "账号"
8989
90 #: account/forms.py:294
90 #: account/forms.py:292
9191 #, fuzzy
9292 #| msgid "E-mail (optional)"
9393 msgid "E-mail (again)"
9494 msgstr "E-mail (选填项)"
9595
96 #: account/forms.py:298
96 #: account/forms.py:296
9797 #, fuzzy
9898 #| msgid "email confirmation"
9999 msgid "E-mail address confirmation"
100100 msgstr "e-mail确认"
101101
102 #: account/forms.py:306
102 #: account/forms.py:304
103103 msgid "E-mail (optional)"
104104 msgstr "E-mail (选填项)"
105105
106 #: account/forms.py:347
106 #: account/forms.py:345
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:370 account/forms.py:479
112 #: account/forms.py:368 account/forms.py:477
113113 msgid "Password (again)"
114114 msgstr "密码(重复)"
115115
116 #: account/forms.py:434
116 #: account/forms.py:432
117117 msgid "This e-mail address is already associated with this account."
118118 msgstr "此e-mail地址已关联到这个账号。"
119119
120 #: account/forms.py:436
120 #: account/forms.py:434
121121 msgid "This e-mail address is already associated with another account."
122122 msgstr "此e-mail地址已关联到其他账号。"
123123
124 #: account/forms.py:458
124 #: account/forms.py:456
125125 msgid "Current Password"
126126 msgstr "当前密码"
127127
128 #: account/forms.py:459 account/forms.py:548
128 #: account/forms.py:457 account/forms.py:546
129129 msgid "New Password"
130130 msgstr "新密码"
131131
132 #: account/forms.py:460 account/forms.py:549
132 #: account/forms.py:458 account/forms.py:547
133133 msgid "New Password (again)"
134134 msgstr "新密码(重复)"
135135
136 #: account/forms.py:468
136 #: account/forms.py:466
137137 msgid "Please type your current password."
138138 msgstr "请输入您的当前密码"
139139
140 #: account/forms.py:506
140 #: account/forms.py:504
141141 msgid "The e-mail address is not assigned to any user account"
142142 msgstr "此e-mail地址未分配给任何用户账号"
143143
144 #: account/forms.py:570
144 #: account/forms.py:568
145145 msgid "The password reset token was invalid."
146146 msgstr ""
147147
148 #: account/models.py:23
148 #: account/models.py:21
149149 msgid "user"
150150 msgstr "用户"
151151
152 #: account/models.py:27 account/models.py:81
152 #: account/models.py:25 account/models.py:78
153153 #, fuzzy
154154 msgid "e-mail address"
155155 msgstr "e-mail地址"
156156
157 #: account/models.py:28
157 #: account/models.py:26
158158 msgid "verified"
159159 msgstr "已验证"
160160
161 #: account/models.py:29
161 #: account/models.py:27
162162 #, fuzzy
163163 msgid "primary"
164164 msgstr "首选e-mail"
165165
166 #: account/models.py:34
166 #: account/models.py:32
167167 msgid "email address"
168168 msgstr "e-mail地址"
169169
170 #: account/models.py:35
170 #: account/models.py:33
171171 msgid "email addresses"
172172 msgstr "e-mail地址"
173173
174 #: account/models.py:83
174 #: account/models.py:80
175175 msgid "created"
176176 msgstr "已建立"
177177
178 #: account/models.py:85
178 #: account/models.py:82
179179 msgid "sent"
180180 msgstr "已发送"
181181
182 #: account/models.py:86 socialaccount/models.py:58
182 #: account/models.py:83 socialaccount/models.py:55
183183 msgid "key"
184184 msgstr "key"
185185
186 #: account/models.py:91
186 #: account/models.py:88
187187 msgid "email confirmation"
188188 msgstr "e-mail确认"
189189
190 #: account/models.py:92
190 #: account/models.py:89
191191 msgid "email confirmations"
192192 msgstr "e-mail确认"
193193
194 #: socialaccount/adapter.py:27
194 #: socialaccount/adapter.py:26
195195 #, python-format
196196 msgid ""
197197 "An account already exists with this e-mail address. Please sign in to that "
198198 "account first, then connect your %s account."
199199 msgstr "已有一个账号与此e-mail地址关联,请先登录该账号,然后连接你的 %s 账号。"
200200
201 #: socialaccount/adapter.py:132
201 #: socialaccount/adapter.py:131
202202 msgid "Your account has no password set up."
203203 msgstr "您的账号未设置密码。"
204204
205 #: socialaccount/adapter.py:139
205 #: socialaccount/adapter.py:138
206206 msgid "Your account has no verified e-mail address."
207207 msgstr "您的账号下无任何验证过的e-mail地址。"
208208
209 #: socialaccount/apps.py:8
209 #: socialaccount/apps.py:7
210210 #, fuzzy
211211 msgid "Social Accounts"
212212 msgstr "账号"
213213
214 #: socialaccount/models.py:46 socialaccount/models.py:80
214 #: socialaccount/models.py:42 socialaccount/models.py:76
215215 msgid "provider"
216216 msgstr ""
217217
218 #: socialaccount/models.py:49
218 #: socialaccount/models.py:45
219219 #, fuzzy
220220 msgid "name"
221221 msgstr "用户名"
222222
223 #: socialaccount/models.py:51
223 #: socialaccount/models.py:47
224224 msgid "client id"
225225 msgstr ""
226226
227 #: socialaccount/models.py:49
228 msgid "App ID, or consumer key"
229 msgstr ""
230
231 #: socialaccount/models.py:50
232 msgid "secret key"
233 msgstr ""
234
227235 #: socialaccount/models.py:53
228 msgid "App ID, or consumer key"
229 msgstr ""
230
231 #: socialaccount/models.py:54
232 msgid "secret key"
233 msgstr ""
234
235 #: socialaccount/models.py:56
236236 msgid "API secret, client secret, or consumer secret"
237237 msgstr ""
238238
239 #: socialaccount/models.py:61
239 #: socialaccount/models.py:58
240240 #, fuzzy
241241 msgid "Key"
242242 msgstr "key"
243243
244 #: socialaccount/models.py:69
244 #: socialaccount/models.py:66
245245 msgid "social application"
246246 msgstr ""
247247
248 #: socialaccount/models.py:70
248 #: socialaccount/models.py:67
249249 msgid "social applications"
250250 msgstr ""
251251
252 #: socialaccount/models.py:95
253 msgid "uid"
254 msgstr ""
255
256 #: socialaccount/models.py:97
257 msgid "last login"
258 msgstr ""
259
252260 #: socialaccount/models.py:99
253 msgid "uid"
261 msgid "date joined"
254262 msgstr ""
255263
256264 #: socialaccount/models.py:101
257 msgid "last login"
258 msgstr ""
259
260 #: socialaccount/models.py:103
261 msgid "date joined"
265 msgid "extra data"
262266 msgstr ""
263267
264268 #: socialaccount/models.py:105
265 msgid "extra data"
266 msgstr ""
267
268 #: socialaccount/models.py:109
269269 msgid "social account"
270270 msgstr ""
271271
272 #: socialaccount/models.py:110
272 #: socialaccount/models.py:106
273273 msgid "social accounts"
274274 msgstr ""
275275
276 #: socialaccount/models.py:131
277 msgid "token"
278 msgstr ""
279
280 #: socialaccount/models.py:133
281 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
282 msgstr ""
283
276284 #: socialaccount/models.py:136
277 msgid "token"
285 msgid "token secret"
278286 msgstr ""
279287
280288 #: socialaccount/models.py:138
281 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
282 msgstr ""
283
284 #: socialaccount/models.py:141
285 msgid "token secret"
286 msgstr ""
287
288 #: socialaccount/models.py:143
289289 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
290290 msgstr ""
291291
292 #: socialaccount/models.py:140
293 msgid "expires at"
294 msgstr ""
295
296 #: socialaccount/models.py:144
297 msgid "social application token"
298 msgstr ""
299
292300 #: socialaccount/models.py:145
293 msgid "expires at"
294 msgstr ""
295
296 #: socialaccount/models.py:149
297 msgid "social application token"
298 msgstr ""
299
300 #: socialaccount/models.py:150
301301 msgid "social application tokens"
302302 msgstr ""
303303
304 #: socialaccount/providers/douban/views.py:35
304 #: socialaccount/providers/douban/views.py:36
305305 msgid "Invalid profile data"
306306 msgstr ""
307307
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-08-29 16:33-0500\n"
10 "POT-Creation-Date: 2019-12-18 11:53-0600\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"
3434 msgid "Password must be a minimum of {0} characters."
3535 msgstr "密碼長度至少要有 {0} 個字元。"
3636
37 #: account/apps.py:8
37 #: account/apps.py:7
3838 msgid "Accounts"
3939 msgstr "帳號"
4040
41 #: account/forms.py:63 account/forms.py:400
41 #: account/forms.py:61 account/forms.py:398
4242 msgid "You must type the same password each time."
4343 msgstr "每次輸入的密碼必須相同"
4444
45 #: account/forms.py:93 account/forms.py:367 account/forms.py:478
45 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4646 msgid "Password"
4747 msgstr "密碼"
4848
49 #: account/forms.py:94
49 #: account/forms.py:92
5050 msgid "Remember Me"
5151 msgstr "記住我"
5252
53 #: account/forms.py:100
53 #: account/forms.py:98
5454 msgid "This account is currently inactive."
5555 msgstr "此帳號目前沒有啟用。"
5656
57 #: account/forms.py:103
57 #: account/forms.py:101
5858 msgid "The e-mail address and/or password you specified are not correct."
5959 msgstr "您提供的電子郵件地址或密碼不正確。"
6060
61 #: account/forms.py:106
61 #: account/forms.py:104
6262 msgid "The username and/or password you specified are not correct."
6363 msgstr "您提供的使用者名稱或密碼不正確。"
6464
65 #: account/forms.py:115 account/forms.py:270 account/forms.py:428
66 #: account/forms.py:497
65 #: account/forms.py:113 account/forms.py:268 account/forms.py:426
66 #: account/forms.py:495
6767 msgid "E-mail address"
6868 msgstr "電子郵件地址"
6969
70 #: account/forms.py:117 account/forms.py:303 account/forms.py:423
71 #: account/forms.py:492
70 #: account/forms.py:115 account/forms.py:301 account/forms.py:421
71 #: account/forms.py:490
7272 msgid "E-mail"
7373 msgstr "E-mail"
7474
75 #: account/forms.py:122 account/forms.py:125 account/forms.py:262
76 #: account/forms.py:266
75 #: account/forms.py:120 account/forms.py:123 account/forms.py:260
76 #: account/forms.py:264
7777 msgid "Username"
7878 msgstr "使用者名稱"
7979
80 #: account/forms.py:132
80 #: account/forms.py:130
8181 msgid "Username or e-mail"
8282 msgstr "使用者名稱或電子郵件"
8383
84 #: account/forms.py:135
84 #: account/forms.py:133
8585 msgctxt "field label"
8686 msgid "Login"
8787 msgstr "登入"
8888
89 #: account/forms.py:294
89 #: account/forms.py:292
9090 #, fuzzy
9191 #| msgid "E-mail (optional)"
9292 msgid "E-mail (again)"
9393 msgstr "E-mail (可不填)"
9494
95 #: account/forms.py:298
95 #: account/forms.py:296
9696 #, fuzzy
9797 #| msgid "email confirmation"
9898 msgid "E-mail address confirmation"
9999 msgstr "電子郵件確認"
100100
101 #: account/forms.py:306
101 #: account/forms.py:304
102102 msgid "E-mail (optional)"
103103 msgstr "E-mail (可不填)"
104104
105 #: account/forms.py:347
105 #: account/forms.py:345
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:370 account/forms.py:479
111 #: account/forms.py:368 account/forms.py:477
112112 msgid "Password (again)"
113113 msgstr "密碼 (再一次)"
114114
115 #: account/forms.py:434
115 #: account/forms.py:432
116116 msgid "This e-mail address is already associated with this account."
117117 msgstr "此電子郵件已與這個帳號連結了。"
118118
119 #: account/forms.py:436
119 #: account/forms.py:434
120120 msgid "This e-mail address is already associated with another account."
121121 msgstr "此電子郵件已經與別的帳號連結了。"
122122
123 #: account/forms.py:458
123 #: account/forms.py:456
124124 msgid "Current Password"
125125 msgstr "目前密碼"
126126
127 #: account/forms.py:459 account/forms.py:548
127 #: account/forms.py:457 account/forms.py:546
128128 msgid "New Password"
129129 msgstr "新密碼"
130130
131 #: account/forms.py:460 account/forms.py:549
131 #: account/forms.py:458 account/forms.py:547
132132 msgid "New Password (again)"
133133 msgstr "新密碼 (再一次)"
134134
135 #: account/forms.py:468
135 #: account/forms.py:466
136136 msgid "Please type your current password."
137137 msgstr "請輸入您目前的密碼"
138138
139 #: account/forms.py:506
139 #: account/forms.py:504
140140 msgid "The e-mail address is not assigned to any user account"
141141 msgstr "還沒有其他帳號使用這個電子郵件地址"
142142
143 #: account/forms.py:570
143 #: account/forms.py:568
144144 msgid "The password reset token was invalid."
145145 msgstr ""
146146
147 #: account/models.py:23
147 #: account/models.py:21
148148 msgid "user"
149149 msgstr "使用者"
150150
151 #: account/models.py:27 account/models.py:81
151 #: account/models.py:25 account/models.py:78
152152 #, fuzzy
153153 msgid "e-mail address"
154154 msgstr "電子郵件地址"
155155
156 #: account/models.py:28
156 #: account/models.py:26
157157 msgid "verified"
158158 msgstr "已驗證"
159159
160 #: account/models.py:29
160 #: account/models.py:27
161161 msgid "primary"
162162 msgstr "主要的"
163163
164 #: account/models.py:34
164 #: account/models.py:32
165165 msgid "email address"
166166 msgstr "電子郵件地址"
167167
168 #: account/models.py:35
168 #: account/models.py:33
169169 msgid "email addresses"
170170 msgstr "電子郵件地址"
171171
172 #: account/models.py:83
172 #: account/models.py:80
173173 msgid "created"
174174 msgstr "以建立"
175175
176 #: account/models.py:85
176 #: account/models.py:82
177177 msgid "sent"
178178 msgstr "已送出"
179179
180 #: account/models.py:86 socialaccount/models.py:58
180 #: account/models.py:83 socialaccount/models.py:55
181181 msgid "key"
182182 msgstr "key"
183183
184 #: account/models.py:91
184 #: account/models.py:88
185185 msgid "email confirmation"
186186 msgstr "電子郵件確認"
187187
188 #: account/models.py:92
188 #: account/models.py:89
189189 msgid "email confirmations"
190190 msgstr "電子郵件確認"
191191
192 #: socialaccount/adapter.py:27
192 #: socialaccount/adapter.py:26
193193 #, python-format
194194 msgid ""
195195 "An account already exists with this e-mail address. Please sign in to that "
197197 msgstr ""
198198 "已經有一個帳號與此電子郵件連結了,請先登入該帳號,然後連接你的 %s 帳號。"
199199
200 #: socialaccount/adapter.py:132
200 #: socialaccount/adapter.py:131
201201 msgid "Your account has no password set up."
202202 msgstr "您的帳號沒有設置密碼。"
203203
204 #: socialaccount/adapter.py:139
204 #: socialaccount/adapter.py:138
205205 msgid "Your account has no verified e-mail address."
206206 msgstr "您的帳號下沒有驗證過的電子郵件地址。"
207207
208 #: socialaccount/apps.py:8
208 #: socialaccount/apps.py:7
209209 msgid "Social Accounts"
210210 msgstr "社群帳號"
211211
212 #: socialaccount/models.py:46 socialaccount/models.py:80
212 #: socialaccount/models.py:42 socialaccount/models.py:76
213213 msgid "provider"
214214 msgstr "提供者"
215215
216 #: socialaccount/models.py:49
216 #: socialaccount/models.py:45
217217 msgid "name"
218218 msgstr "名稱"
219219
220 #: socialaccount/models.py:51
220 #: socialaccount/models.py:47
221221 msgid "client id"
222222 msgstr "client id"
223223
224 #: socialaccount/models.py:53
224 #: socialaccount/models.py:49
225225 msgid "App ID, or consumer key"
226226 msgstr "App ID, or consumer key"
227227
228 #: socialaccount/models.py:54
228 #: socialaccount/models.py:50
229229 msgid "secret key"
230230 msgstr "secret key"
231231
232 #: socialaccount/models.py:56
232 #: socialaccount/models.py:53
233233 msgid "API secret, client secret, or consumer secret"
234234 msgstr "API secret, client secret, or consumer secret"
235235
236 #: socialaccount/models.py:61
236 #: socialaccount/models.py:58
237237 msgid "Key"
238238 msgstr "Key"
239239
240 #: socialaccount/models.py:69
240 #: socialaccount/models.py:66
241241 msgid "social application"
242242 msgstr "社群應用程式"
243243
244 #: socialaccount/models.py:70
244 #: socialaccount/models.py:67
245245 msgid "social applications"
246246 msgstr "社群應用程式"
247247
248 #: socialaccount/models.py:99
248 #: socialaccount/models.py:95
249249 msgid "uid"
250250 msgstr "uid"
251251
252 #: socialaccount/models.py:101
252 #: socialaccount/models.py:97
253253 msgid "last login"
254254 msgstr "最後一次登入"
255255
256 #: socialaccount/models.py:103
256 #: socialaccount/models.py:99
257257 msgid "date joined"
258258 msgstr "加入日期"
259259
260 #: socialaccount/models.py:105
260 #: socialaccount/models.py:101
261261 msgid "extra data"
262262 msgstr "額外資料"
263263
264 #: socialaccount/models.py:109
264 #: socialaccount/models.py:105
265265 msgid "social account"
266266 msgstr "社群帳號"
267267
268 #: socialaccount/models.py:110
268 #: socialaccount/models.py:106
269269 msgid "social accounts"
270270 msgstr "社群帳號"
271271
272 #: socialaccount/models.py:131
273 msgid "token"
274 msgstr ""
275
276 #: socialaccount/models.py:133
277 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
278 msgstr ""
279
272280 #: socialaccount/models.py:136
273 msgid "token"
281 msgid "token secret"
274282 msgstr ""
275283
276284 #: socialaccount/models.py:138
277 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
278 msgstr ""
279
280 #: socialaccount/models.py:141
281 msgid "token secret"
282 msgstr ""
283
284 #: socialaccount/models.py:143
285285 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
286286 msgstr ""
287287
288 #: socialaccount/models.py:145
288 #: socialaccount/models.py:140
289289 msgid "expires at"
290290 msgstr "過期日"
291291
292 #: socialaccount/models.py:149
292 #: socialaccount/models.py:144
293293 msgid "social application token"
294294 msgstr "社群應用程式 Token"
295295
296 #: socialaccount/models.py:150
296 #: socialaccount/models.py:145
297297 msgid "social application tokens"
298298 msgstr "社群應用程式 Token"
299299
300 #: socialaccount/providers/douban/views.py:35
300 #: socialaccount/providers/douban/views.py:36
301301 msgid "Invalid profile data"
302302 msgstr ""
303303
55 msgstr ""
66 "Project-Id-Version: django-allauth\n"
77 "Report-Msgid-Bugs-To: \n"
8 "POT-Creation-Date: 2019-08-29 16:33-0500\n"
8 "POT-Creation-Date: 2019-12-18 11:53-0600\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"
3131 msgid "Password must be a minimum of {0} characters."
3232 msgstr "密碼長度至少要有 {0} 個字元。"
3333
34 #: account/apps.py:8
34 #: account/apps.py:7
3535 msgid "Accounts"
3636 msgstr "帳號"
3737
38 #: account/forms.py:63 account/forms.py:400
38 #: account/forms.py:61 account/forms.py:398
3939 msgid "You must type the same password each time."
4040 msgstr "每次輸入的密碼必須相同"
4141
42 #: account/forms.py:93 account/forms.py:367 account/forms.py:478
42 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4343 msgid "Password"
4444 msgstr "密碼"
4545
46 #: account/forms.py:94
46 #: account/forms.py:92
4747 msgid "Remember Me"
4848 msgstr "記住我"
4949
50 #: account/forms.py:100
50 #: account/forms.py:98
5151 msgid "This account is currently inactive."
5252 msgstr "此帳號目前沒有啟用。"
5353
54 #: account/forms.py:103
54 #: account/forms.py:101
5555 msgid "The e-mail address and/or password you specified are not correct."
5656 msgstr "您提供的電子郵件地址或密碼不正確。"
5757
58 #: account/forms.py:106
58 #: account/forms.py:104
5959 msgid "The username and/or password you specified are not correct."
6060 msgstr "您提供的使用者名稱或密碼不正確。"
6161
62 #: account/forms.py:115 account/forms.py:270 account/forms.py:428
63 #: account/forms.py:497
62 #: account/forms.py:113 account/forms.py:268 account/forms.py:426
63 #: account/forms.py:495
6464 msgid "E-mail address"
6565 msgstr "電子郵件地址"
6666
67 #: account/forms.py:117 account/forms.py:303 account/forms.py:423
68 #: account/forms.py:492
67 #: account/forms.py:115 account/forms.py:301 account/forms.py:421
68 #: account/forms.py:490
6969 msgid "E-mail"
7070 msgstr "E-mail"
7171
72 #: account/forms.py:122 account/forms.py:125 account/forms.py:262
73 #: account/forms.py:266
72 #: account/forms.py:120 account/forms.py:123 account/forms.py:260
73 #: account/forms.py:264
7474 msgid "Username"
7575 msgstr "使用者名稱"
7676
77 #: account/forms.py:132
77 #: account/forms.py:130
7878 msgid "Username or e-mail"
7979 msgstr "使用者名稱或電子郵件"
8080
81 #: account/forms.py:135
81 #: account/forms.py:133
8282 msgctxt "field label"
8383 msgid "Login"
8484 msgstr "登入"
8585
86 #: account/forms.py:294
86 #: account/forms.py:292
8787 #, fuzzy
8888 #| msgid "E-mail (optional)"
8989 msgid "E-mail (again)"
9090 msgstr "E-mail (可不填)"
9191
92 #: account/forms.py:298
92 #: account/forms.py:296
9393 #, fuzzy
9494 #| msgid "email confirmation"
9595 msgid "E-mail address confirmation"
9696 msgstr "電子郵件確認"
9797
98 #: account/forms.py:306
98 #: account/forms.py:304
9999 msgid "E-mail (optional)"
100100 msgstr "E-mail (可不填)"
101101
102 #: account/forms.py:347
102 #: account/forms.py:345
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:370 account/forms.py:479
108 #: account/forms.py:368 account/forms.py:477
109109 msgid "Password (again)"
110110 msgstr "密碼 (再一次)"
111111
112 #: account/forms.py:434
112 #: account/forms.py:432
113113 msgid "This e-mail address is already associated with this account."
114114 msgstr "此電子郵件已與這個帳號連結了。"
115115
116 #: account/forms.py:436
116 #: account/forms.py:434
117117 msgid "This e-mail address is already associated with another account."
118118 msgstr "此電子郵件已經與別的帳號連結了。"
119119
120 #: account/forms.py:458
120 #: account/forms.py:456
121121 msgid "Current Password"
122122 msgstr "目前密碼"
123123
124 #: account/forms.py:459 account/forms.py:548
124 #: account/forms.py:457 account/forms.py:546
125125 msgid "New Password"
126126 msgstr "新密碼"
127127
128 #: account/forms.py:460 account/forms.py:549
128 #: account/forms.py:458 account/forms.py:547
129129 msgid "New Password (again)"
130130 msgstr "新密碼 (再一次)"
131131
132 #: account/forms.py:468
132 #: account/forms.py:466
133133 msgid "Please type your current password."
134134 msgstr "請輸入您目前的密碼"
135135
136 #: account/forms.py:506
136 #: account/forms.py:504
137137 msgid "The e-mail address is not assigned to any user account"
138138 msgstr "還沒有其他帳號使用這個電子郵件地址"
139139
140 #: account/forms.py:570
140 #: account/forms.py:568
141141 msgid "The password reset token was invalid."
142142 msgstr ""
143143
144 #: account/models.py:23
144 #: account/models.py:21
145145 msgid "user"
146146 msgstr "使用者"
147147
148 #: account/models.py:27 account/models.py:81
148 #: account/models.py:25 account/models.py:78
149149 #, fuzzy
150150 msgid "e-mail address"
151151 msgstr "電子郵件地址"
152152
153 #: account/models.py:28
153 #: account/models.py:26
154154 msgid "verified"
155155 msgstr "已驗證"
156156
157 #: account/models.py:29
157 #: account/models.py:27
158158 msgid "primary"
159159 msgstr "主要的"
160160
161 #: account/models.py:34
161 #: account/models.py:32
162162 msgid "email address"
163163 msgstr "電子郵件地址"
164164
165 #: account/models.py:35
165 #: account/models.py:33
166166 msgid "email addresses"
167167 msgstr "電子郵件地址"
168168
169 #: account/models.py:83
169 #: account/models.py:80
170170 msgid "created"
171171 msgstr "以建立"
172172
173 #: account/models.py:85
173 #: account/models.py:82
174174 msgid "sent"
175175 msgstr "已送出"
176176
177 #: account/models.py:86 socialaccount/models.py:58
177 #: account/models.py:83 socialaccount/models.py:55
178178 msgid "key"
179179 msgstr "key"
180180
181 #: account/models.py:91
181 #: account/models.py:88
182182 msgid "email confirmation"
183183 msgstr "電子郵件確認"
184184
185 #: account/models.py:92
185 #: account/models.py:89
186186 msgid "email confirmations"
187187 msgstr "電子郵件確認"
188188
189 #: socialaccount/adapter.py:27
189 #: socialaccount/adapter.py:26
190190 #, python-format
191191 msgid ""
192192 "An account already exists with this e-mail address. Please sign in to that "
194194 msgstr ""
195195 "已經有一個帳號與此電子郵件連結了,請先登入該帳號,然後連接你的 %s 帳號。"
196196
197 #: socialaccount/adapter.py:132
197 #: socialaccount/adapter.py:131
198198 msgid "Your account has no password set up."
199199 msgstr "您的帳號沒有設置密碼。"
200200
201 #: socialaccount/adapter.py:139
201 #: socialaccount/adapter.py:138
202202 msgid "Your account has no verified e-mail address."
203203 msgstr "您的帳號下沒有驗證過的電子郵件地址。"
204204
205 #: socialaccount/apps.py:8
205 #: socialaccount/apps.py:7
206206 msgid "Social Accounts"
207207 msgstr "社群帳號"
208208
209 #: socialaccount/models.py:46 socialaccount/models.py:80
209 #: socialaccount/models.py:42 socialaccount/models.py:76
210210 msgid "provider"
211211 msgstr "提供者"
212212
213 #: socialaccount/models.py:49
213 #: socialaccount/models.py:45
214214 msgid "name"
215215 msgstr "名稱"
216216
217 #: socialaccount/models.py:51
217 #: socialaccount/models.py:47
218218 msgid "client id"
219219 msgstr "client id"
220220
221 #: socialaccount/models.py:53
221 #: socialaccount/models.py:49
222222 msgid "App ID, or consumer key"
223223 msgstr "App ID, or consumer key"
224224
225 #: socialaccount/models.py:54
225 #: socialaccount/models.py:50
226226 msgid "secret key"
227227 msgstr "secret key"
228228
229 #: socialaccount/models.py:56
229 #: socialaccount/models.py:53
230230 msgid "API secret, client secret, or consumer secret"
231231 msgstr "API secret, client secret, or consumer secret"
232232
233 #: socialaccount/models.py:61
233 #: socialaccount/models.py:58
234234 msgid "Key"
235235 msgstr "Key"
236236
237 #: socialaccount/models.py:69
237 #: socialaccount/models.py:66
238238 msgid "social application"
239239 msgstr "社群應用程式"
240240
241 #: socialaccount/models.py:70
241 #: socialaccount/models.py:67
242242 msgid "social applications"
243243 msgstr "社群應用程式"
244244
245 #: socialaccount/models.py:99
245 #: socialaccount/models.py:95
246246 msgid "uid"
247247 msgstr "uid"
248248
249 #: socialaccount/models.py:101
249 #: socialaccount/models.py:97
250250 msgid "last login"
251251 msgstr "最後一次登入"
252252
253 #: socialaccount/models.py:103
253 #: socialaccount/models.py:99
254254 msgid "date joined"
255255 msgstr "加入日期"
256256
257 #: socialaccount/models.py:105
257 #: socialaccount/models.py:101
258258 msgid "extra data"
259259 msgstr "額外資料"
260260
261 #: socialaccount/models.py:109
261 #: socialaccount/models.py:105
262262 msgid "social account"
263263 msgstr "社群帳號"
264264
265 #: socialaccount/models.py:110
265 #: socialaccount/models.py:106
266266 msgid "social accounts"
267267 msgstr "社群帳號"
268268
269 #: socialaccount/models.py:131
270 msgid "token"
271 msgstr ""
272
273 #: socialaccount/models.py:133
274 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
275 msgstr ""
276
269277 #: socialaccount/models.py:136
270 msgid "token"
278 msgid "token secret"
271279 msgstr ""
272280
273281 #: socialaccount/models.py:138
274 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
275 msgstr ""
276
277 #: socialaccount/models.py:141
278 msgid "token secret"
279 msgstr ""
280
281 #: socialaccount/models.py:143
282282 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
283283 msgstr ""
284284
285 #: socialaccount/models.py:145
285 #: socialaccount/models.py:140
286286 msgid "expires at"
287287 msgstr "過期日"
288288
289 #: socialaccount/models.py:149
289 #: socialaccount/models.py:144
290290 msgid "social application token"
291291 msgstr "社群應用程式 Token"
292292
293 #: socialaccount/models.py:150
293 #: socialaccount/models.py:145
294294 msgid "social application tokens"
295295 msgstr "社群應用程式 Token"
296296
297 #: socialaccount/providers/douban/views.py:35
297 #: socialaccount/providers/douban/views.py:36
298298 msgid "Invalid profile data"
299299 msgstr ""
300300
11
22 from django.core.exceptions import ValidationError
33 from django.urls import reverse
4
5 from allauth.compat import ugettext_lazy as _
4 from django.utils.translation import gettext_lazy as _
65
76 from ..account import app_settings as account_settings
87 from ..account.adapter import get_adapter as get_account_adapter
190189 def serialize_instance(self, instance):
191190 return serialize_instance(instance)
192191
192 def get_app(self, request, provider):
193 # NOTE: Avoid loading models at top due to registry boot...
194 from allauth.socialaccount.models import SocialApp
195
196 config = app_settings.PROVIDERS.get(provider, {}).get('APP')
197 if config:
198 app = SocialApp(provider=provider)
199 for field in ['client_id', 'secret', 'key']:
200 setattr(app, field, config.get(field))
201 else:
202 app = SocialApp.objects.get_current(provider, request)
203 return app
204
193205
194206 def get_adapter(request=None):
195207 return import_attribute(app_settings.ADAPTER)(request)
00 from django.apps import AppConfig
1
2 from allauth.compat import ugettext_lazy as _
1 from django.utils.translation import gettext_lazy as _
32
43
54 class SocialAccountConfig(AppConfig):
33 import django
44 from django.core.exceptions import ValidationError
55 from django.db import models
6
7 from allauth.compat import six
86
97
108 class JSONField(models.TextField):
2523 """
2624 if self.blank and not value:
2725 return None
28 if isinstance(value, six.string_types):
26 if isinstance(value, str):
2927 try:
3028 return json.loads(value)
3129 except Exception as e:
3634 def validate(self, value, model_instance):
3735 """Check value is a valid JSON string, raise ValidationError on
3836 error."""
39 if isinstance(value, six.string_types):
37 if isinstance(value, str):
4038 super(JSONField, self).validate(value, model_instance)
4139 try:
4240 json.loads(value)
2929 migrations.AlterField(
3030 model_name='socialapp',
3131 name='secret',
32 field=models.CharField(help_text='API secret, client secret, or consumer secret', max_length=191, verbose_name='secret key'),
32 field=models.CharField(help_text='API secret, client secret, or consumer secret', max_length=191, verbose_name='secret key', blank=True),
3333 ),
3434 ]
55 from django.core.exceptions import PermissionDenied
66 from django.db import models
77 from django.utils.crypto import get_random_string
8 from django.utils.encoding import force_str
9 from django.utils.translation import gettext_lazy as _
810
911 import allauth.app_settings
1012 from allauth.account.models import EmailAddress
1113 from allauth.account.utils import get_next_redirect_url, setup_user_email
12 from allauth.compat import (
13 force_str,
14 python_2_unicode_compatible,
15 ugettext_lazy as _,
16 )
1714 from allauth.utils import get_user_model
1815
1916 from ..utils import get_request_param
3835 return app
3936
4037
41 @python_2_unicode_compatible
4238 class SocialApp(models.Model):
4339 objects = SocialAppManager()
4440
5248 help_text=_('App ID, or consumer key'))
5349 secret = models.CharField(verbose_name=_('secret key'),
5450 max_length=191,
51 blank=True,
5552 help_text=_('API secret, client secret, or'
5653 ' consumer secret'))
5754 key = models.CharField(verbose_name=_('key'),
7269 return self.name
7370
7471
75 @python_2_unicode_compatible
7672 class SocialAccount(models.Model):
7773 user = models.ForeignKey(allauth.app_settings.USER_MODEL,
7874 on_delete=models.CASCADE)
127123 return self.get_provider().wrap_account(self)
128124
129125
130 @python_2_unicode_compatible
131126 class SocialToken(models.Model):
132127 app = models.ForeignKey(SocialApp, on_delete=models.CASCADE)
133128 account = models.ForeignKey(SocialAccount, on_delete=models.CASCADE)
234229 user.save()
235230 self.account.user = user
236231 self.account.save()
237 if app_settings.STORE_TOKENS and self.token:
232 if app_settings.STORE_TOKENS and self.token and self.token.app.pk:
238233 self.token.account = self.account
239234 self.token.save()
240235 if connect:
264259 self.user = self.account.user
265260 a.save()
266261 # Update token
267 if app_settings.STORE_TOKENS and self.token:
262 if app_settings.STORE_TOKENS and self.token and self.token.app.pk:
268263 assert not self.token.pk
269264 try:
270265 t = SocialToken.objects.get(account=self.account,
0 from allauth.account.models import EmailAddress
1 from allauth.socialaccount.providers.amazon_cognito.utils import (
2 convert_to_python_bool_if_value_is_json_string_bool,
3 )
4 from allauth.socialaccount.providers.base import ProviderAccount
5 from allauth.socialaccount.providers.oauth2.provider import OAuth2Provider
6
7
8 class AmazonCognitoAccount(ProviderAccount):
9 def to_str(self):
10 dflt = super(AmazonCognitoAccount, self).to_str()
11
12 return self.account.extra_data.get("username", dflt)
13
14 def get_avatar_url(self):
15 return self.account.extra_data.get("picture")
16
17 def get_profile_url(self):
18 return self.account.extra_data.get("profile")
19
20
21 class AmazonCognitoProvider(OAuth2Provider):
22 id = "amazon_cognito"
23 name = "Amazon Cognito"
24 account_class = AmazonCognitoAccount
25
26 def extract_uid(self, data):
27 return str(data["sub"])
28
29 def extract_common_fields(self, data):
30 return {
31 "email": data.get("email"),
32 "first_name": data.get("given_name"),
33 "last_name": data.get("family_name"),
34 }
35
36 def get_default_scope(self):
37 return ["openid", "profile", "email"]
38
39 def extract_email_addresses(self, data):
40 email = data.get("email")
41 verified = convert_to_python_bool_if_value_is_json_string_bool(
42 data.get("email_verified", False)
43 )
44
45 return (
46 [
47 EmailAddress(
48 email=email, verified=verified, primary=True
49 )
50 ]
51 if email
52 else []
53 )
54
55 def extract_extra_data(self, data):
56 return {
57 "address": data.get("address"),
58 "birthdate": data.get("birthdate"),
59 "gender": data.get("gender"),
60 "locale": data.get("locale"),
61 "middlename": data.get("middlename"),
62 "nickname": data.get("nickname"),
63 "phone_number": data.get("phone_number"),
64 "phone_number_verified":
65 convert_to_python_bool_if_value_is_json_string_bool(
66 data.get("phone_number_verified")
67 ),
68 "picture": data.get("picture"),
69 "preferred_username": data.get("preferred_username"),
70 "profile": data.get("profile"),
71 "website": data.get("website"),
72 "zoneinfo": data.get("zoneinfo"),
73 }
74
75 @classmethod
76 def get_slug(cls):
77 # IMPORTANT: Amazon Cognito does not support `_` characters
78 # as part of their redirect URI.
79 return (
80 super(AmazonCognitoProvider, cls)
81 .get_slug()
82 .replace("_", "-")
83 )
84
85
86 provider_classes = [AmazonCognitoProvider]
0 import json
1
2 from django.test import override_settings
3
4 from allauth.account.models import EmailAddress
5 from allauth.socialaccount.models import SocialAccount
6 from allauth.socialaccount.providers.amazon_cognito.provider import (
7 AmazonCognitoProvider,
8 )
9 from allauth.socialaccount.providers.amazon_cognito.views import (
10 AmazonCognitoOAuth2Adapter,
11 )
12 from allauth.socialaccount.tests import OAuth2TestsMixin
13 from allauth.tests import MockedResponse, TestCase
14
15
16 def _get_mocked_claims():
17 return {
18 "sub": "4993b410-8a1b-4c36-b843-a9c1a697e6b7",
19 "given_name": "John",
20 "family_name": "Doe",
21 "email": "jdoe@example.com",
22 "username": "johndoe",
23 }
24
25
26 @override_settings(
27 SOCIALACCOUNT_PROVIDERS={
28 "amazon_cognito": {
29 "DOMAIN": "https://domain.auth.us-east-1.amazoncognito.com"
30 }
31 }
32 )
33 class AmazonCognitoTestCase(OAuth2TestsMixin, TestCase):
34 provider_id = AmazonCognitoProvider.id
35
36 def get_mocked_response(self):
37 mocked_payload = json.dumps(_get_mocked_claims())
38
39 return MockedResponse(status_code=200, content=mocked_payload)
40
41 @override_settings(SOCIALACCOUNT_PROVIDERS={"amazon_cognito": {}})
42 def test_oauth2_adapter_raises_if_domain_settings_is_missing(
43 self,
44 ):
45 mocked_response = self.get_mocked_response()
46
47 with self.assertRaises(
48 ValueError,
49 msg=AmazonCognitoOAuth2Adapter.DOMAIN_KEY_MISSING_ERROR,
50 ):
51 self.login(mocked_response)
52
53 def test_saves_email_as_verified_if_email_is_verified_in_cognito(
54 self,
55 ):
56 mocked_claims = _get_mocked_claims()
57 mocked_claims["email_verified"] = True
58 mocked_payload = json.dumps(mocked_claims)
59 mocked_response = MockedResponse(
60 status_code=200, content=mocked_payload
61 )
62
63 self.login(mocked_response)
64
65 user_id = SocialAccount.objects.get(
66 uid=mocked_claims["sub"]
67 ).user_id
68 email_address = EmailAddress.objects.get(user_id=user_id)
69
70 self.assertEqual(email_address.email, mocked_claims["email"])
71 self.assertTrue(email_address.verified)
72
73 def test_provider_slug_replaces_underscores_with_hyphens(self):
74 self.assertTrue("_" not in self.provider.get_slug())
0 from allauth.socialaccount.providers.amazon_cognito.provider import (
1 AmazonCognitoProvider,
2 )
3 from allauth.socialaccount.providers.oauth2.urls import default_urlpatterns
4
5
6 urlpatterns = default_urlpatterns(AmazonCognitoProvider)
0 def convert_to_python_bool_if_value_is_json_string_bool(s):
1 if s == "true":
2 return True
3 elif s == "false":
4 return False
5
6 return s
0 import requests
1
2 from allauth.socialaccount import app_settings
3 from allauth.socialaccount.providers.amazon_cognito.provider import (
4 AmazonCognitoProvider,
5 )
6 from allauth.socialaccount.providers.oauth2.views import (
7 OAuth2Adapter,
8 OAuth2CallbackView,
9 OAuth2LoginView,
10 )
11
12
13 class AmazonCognitoOAuth2Adapter(OAuth2Adapter):
14 provider_id = AmazonCognitoProvider.id
15
16 DOMAIN_KEY_MISSING_ERROR = (
17 '"DOMAIN" key is missing in Amazon Cognito configuration.'
18 )
19
20 @property
21 def settings(self):
22 return app_settings.PROVIDERS.get(self.provider_id, {})
23
24 @property
25 def domain(self):
26 domain = self.settings.get("DOMAIN")
27
28 if domain is None:
29 raise ValueError(self.DOMAIN_KEY_MISSING_ERROR)
30
31 return domain
32
33 @property
34 def access_token_url(self):
35 return "{}/oauth2/token".format(self.domain)
36
37 @property
38 def authorize_url(self):
39 return "{}/oauth2/authorize".format(self.domain)
40
41 @property
42 def profile_url(self):
43 return "{}/oauth2/userInfo".format(self.domain)
44
45 def complete_login(self, request, app, access_token, **kwargs):
46 headers = {
47 "Authorization": "Bearer {}".format(access_token),
48 }
49 extra_data = requests.get(self.profile_url, headers=headers)
50 extra_data.raise_for_status()
51
52 return self.get_provider().sociallogin_from_response(
53 request, extra_data.json()
54 )
55
56
57 oauth2_login = OAuth2LoginView.adapter_view(
58 AmazonCognitoOAuth2Adapter
59 )
60 oauth2_callback = OAuth2CallbackView.adapter_view(
61 AmazonCognitoOAuth2Adapter
62 )
00 import requests
1 from urllib.parse import urljoin
12
2 from allauth.compat import urljoin
33 from allauth.socialaccount import app_settings
44 from allauth.socialaccount.providers.oauth2.views import (
55 OAuth2Adapter,
00 from allauth.account.models import EmailAddress
1 from allauth.compat import python_2_unicode_compatible
21 from allauth.socialaccount import app_settings
32
43 from ..adapter import get_adapter
4544 raise NotImplementedError("get_login_url() for " + self.name)
4645
4746 def get_app(self, request):
48 # NOTE: Avoid loading models at top due to registry boot...
49 from allauth.socialaccount.models import SocialApp
50
51 return SocialApp.objects.get_current(self.id, request)
47 adapter = get_adapter(request)
48 return adapter.get_app(request, self.id)
5249
5350 def media_js(self, request):
5451 """
161158 return pkg
162159
163160
164 @python_2_unicode_compatible
165161 class ProviderAccount(object):
166162 def __init__(self, social_account):
167163 self.account = social_account
191187
192188 def to_str(self):
193189 """
194 Due to the way python_2_unicode_compatible works, this does not work:
195
196 @python_2_unicode_compatible
190 This did not use to work in the past due to py2 compatibility:
191
197192 class GoogleAccount(ProviderAccount):
198193 def __str__(self):
199194 dflt = super(GoogleAccount, self).__str__()
200195 return self.account.extra_data.get('name', dflt)
201196
202 It will result in and infinite recursion loop. That's why we
203 add a method `to_str` that can be overriden in a conventional
204 fashion, without having to worry about @python_2_unicode_compatible
197 So we have this method `to_str` that can be overriden in a conventional
198 fashion, without having to worry about it.
205199 """
206200 return self.get_brand()['name']
00 # -*- coding: utf-8 -*-
11 from __future__ import unicode_literals
2
3 from unittest import mock
24
35 from django.test.utils import override_settings
46
810 from allauth.tests import MockedResponse, patch
911
1012 from .provider import BitbucketOAuth2Provider
11
12
13 try:
14 from unittest import mock
15 except ImportError:
16 import mock
1713
1814
1915 @override_settings(SOCIALACCOUNT_QUERY_EMAIL=True)
00 import requests
11
2 from allauth.compat import ugettext_lazy as _
2 from django.utils.translation import gettext_lazy as _
3
34 from allauth.socialaccount.providers.oauth2.views import (
45 OAuth2Adapter,
56 OAuth2CallbackView,
0 from django.conf.urls import url
0 from django.urls import path
11
22 from . import views
33
44
55 urlpatterns = [
6 url('^draugiem/login/$', views.login, name="draugiem_login"),
7 url('^draugiem/callback/$', views.callback, name='draugiem_callback'),
6 path('draugiem/login/', views.login, name="draugiem_login"),
7 path('draugiem/callback/', views.callback, name='draugiem_callback'),
88 ]
3333 "-DfAs?size=128x128"),
3434 "referral_link": "https://db.tt/ASDfAsDf"
3535 }
36 return [MockedResponse(200, json.dumps(payload))]
36 return MockedResponse(200, json.dumps(payload))
1616 redirect_uri_protocol = 'https'
1717
1818 def complete_login(self, request, app, token, **kwargs):
19 extra_data = requests.post(self.profile_url, headers={
19 response = requests.post(self.profile_url, headers={
2020 'Authorization': 'Bearer %s' % (token.token, )
2121 })
22
23 # This only here because of weird response from the test suite
24 if isinstance(extra_data, list):
25 extra_data = extra_data[0]
26
22 response.raise_for_status()
2723 return self.get_provider().sociallogin_from_response(
2824 request,
29 extra_data.json()
25 response.json()
3026 )
3127
3228
0 from allauth.socialaccount.providers.base import ProviderAccount
1 from allauth.socialaccount.providers.oauth2.provider import OAuth2Provider
2
3
4 class ExistAccount(ProviderAccount):
5 def get_profile_url(self):
6 username = self.account.extra_data.get("username")
7 return 'https://exist.io/api/1/users/{}/profile/'.format(username)
8
9 def get_avatar_url(self):
10 return self.account.extra_data.get('avatar')
11
12 def to_str(self):
13 name = super(ExistAccount, self).to_str()
14 return self.account.extra_data.get('name', name)
15
16
17 class ExistProvider(OAuth2Provider):
18 id = 'exist'
19 name = 'Exist.io'
20 account_class = ExistAccount
21
22 def extract_uid(self, data):
23 return data.get('id')
24
25 def extract_common_fields(self, data):
26 extra_common = super(ExistProvider, self).extract_common_fields(data)
27 extra_common.update(
28 username=data.get('username'),
29 first_name=data.get('first_name'),
30 last_name=data.get('last_name'),
31 )
32 return extra_common
33
34 def get_default_scope(self):
35 return ['read']
36
37
38 provider_classes = [ExistProvider]
0 # -*- coding: utf-8 -*-
1 from allauth.socialaccount.providers.exist.provider import ExistProvider
2 from allauth.socialaccount.tests import OAuth2TestsMixin
3 from allauth.tests import MockedResponse, TestCase
4
5
6 class ExistTests(OAuth2TestsMixin, TestCase):
7 provider_id = ExistProvider.id
8
9 def get_mocked_response(self):
10 return MockedResponse(200, """
11 {
12 "id": 1,
13 "username": "josh",
14 "first_name": "Josh",
15 "last_name": "Sharp",
16 "bio": "I made this thing you're using.",
17 "url": "http://hellocode.co/",
18 "avatar": "https://exist.io/static/media/avatars/josh_2.png",
19 "timezone": "Australia/Melbourne",
20 "local_time": "2020-07-31T22:33:49.359+10:00",
21 "private": false,
22 "imperial_units": false,
23 "imperial_distance": false,
24 "imperial_weight": false,
25 "imperial_energy": false,
26 "imperial_liquid": false,
27 "imperial_temperature": false,
28 "attributes": []
29 }
30 """)
0 from allauth.socialaccount.providers.oauth2.urls import default_urlpatterns
1
2 from .provider import ExistProvider
3
4
5 urlpatterns = default_urlpatterns(ExistProvider)
0 import requests
1
2 from allauth.socialaccount.providers.oauth2.views import (
3 OAuth2Adapter,
4 OAuth2CallbackView,
5 OAuth2LoginView,
6 )
7
8 from .provider import ExistProvider
9
10
11 class ExistOAuth2Adapter(OAuth2Adapter):
12 provider_id = ExistProvider.id
13 access_token_url = 'https://exist.io/oauth2/access_token'
14 authorize_url = 'https://exist.io/oauth2/authorize'
15 profile_url = 'https://exist.io/api/1/users/$self/profile/'
16
17 def complete_login(self, request, app, token, **kwargs):
18 headers = {'Authorization': 'Bearer {0}'.format(token.token)}
19 resp = requests.get(self.profile_url, headers=headers)
20 extra_data = resp.json()
21 return self.get_provider().sociallogin_from_response(
22 request, extra_data
23 )
24
25
26 oauth2_login = OAuth2LoginView.adapter_view(ExistOAuth2Adapter)
27 oauth2_callback = OAuth2CallbackView.adapter_view(ExistOAuth2Adapter)
4747
4848 def default_locale(request):
4949 """
50 Guess an appropiate FB locale based on the active Django locale.
50 Guess an appropriate FB locale based on the active Django locale.
5151 If the active locale is available, it is returned. Otherwise,
5252 it tries to return another locale with the same language. If there
5353 isn't one avaible, 'en_US' is returned.
0 from django.conf.urls import url
0 from django.urls import path
11
22 from allauth.socialaccount.providers.oauth2.urls import default_urlpatterns
33
88 urlpatterns = default_urlpatterns(FacebookProvider)
99
1010 urlpatterns += [
11 url(r'^facebook/login/token/$',
12 views.login_by_token,
13 name="facebook_login_by_token"),
11 path('facebook/login/token/', views.login_by_token,
12 name="facebook_login_by_token"),
1413 ]
2727 def complete_login(self, request, app, token, **kwargs):
2828 params = {'access_token': token.token}
2929 resp = requests.get(self.profile_url, params=params)
30 resp.raise_for_status()
3031 extra_data = resp.json()
3132 if app_settings.QUERY_EMAIL and not extra_data.get('email'):
3233 extra_data['email'] = self.get_email(token)
3839 email = None
3940 params = {'access_token': token.token}
4041 resp = requests.get(self.emails_url, params=params)
42 resp.raise_for_status()
4143 emails = resp.json()
4244 if resp.status_code == 200 and emails:
4345 email = emails[0]
207207 self.assertEqual(len(mail.outbox), 1)
208208 self.login(self.get_mocked_response(verified_email=False))
209209 self.assertEqual(len(mail.outbox), 1)
210
211
212 @override_settings(
213 SOCIALACCOUNT_PROVIDERS={
214 'google': {
215 'APP': {
216 'client_id': 'app123id',
217 'key': 'google',
218 'secret': 'dummy'
219 }
220 }
221 }
222 )
223 class AppInSettingsTests(GoogleTests):
224 """
225 Run the same set of tests but without having a SocialApp entry.
226 """
227 pass
1717 def complete_login(self, request, app, token, **kwargs):
1818 resp = requests.get(self.profile_url,
1919 params={'access_token': token.token})
20 resp.raise_for_status()
2021 extra_data = resp.json()
2122 return self.get_provider().sociallogin_from_response(request,
2223 extra_data)
2525
2626 def extract_common_fields(self, data):
2727 email = data['kakao_account'].get('email')
28 nickname = data['properties'].get('nickname')
28 nickname = data.get('properties', {}).get('nickname')
2929
3030 return dict(email=email, username=nickname)
3131
00 from xml.etree import ElementTree
11 from xml.parsers.expat import ExpatError
22
3 from allauth.compat import six
43 from allauth.socialaccount import providers
54 from allauth.socialaccount.providers.oauth.client import OAuth
65 from allauth.socialaccount.providers.oauth.views import (
2120 .get_profile_fields()
2221 url = self.url + ':(%s)' % ','.join(fields)
2322 raw_xml = self.query(url)
24 if not six.PY3:
25 raw_xml = raw_xml.encode('utf8')
2623 try:
2724 return self.to_dict(ElementTree.fromstring(raw_xml))
2825 except (ExpatError, KeyError, IndexError):
0 from allauth.compat import six
10 from allauth.socialaccount import app_settings
21 from allauth.socialaccount.providers.base import (
32 ProviderAccount,
109 ret = ''
1110 v = data.get(field_name, {})
1211 if v:
13 if isinstance(v, six.string_types):
12 if isinstance(v, str):
1413 # Old V1 data
1514 ret = v
1615 else:
4746 if first_name or last_name:
4847 ret = ' '.join([first_name, last_name]).strip()
4948 return ret
49
50 def get_avatar_url(self):
51 """
52 Attempts the load the avatar associated to the avatar.
53
54 Requires the `profilePicture(displayImage~:playableStreams)`
55 profile field configured in settings.py
56
57 :return:
58 """
59 provider_configuration = self.account.get_provider().get_settings()
60 configured_profile_fields = \
61 provider_configuration.get('PROFILE_FIELDS', [])
62 # Can't get the avatar when this field is not specified
63 picture_field = 'profilePicture(displayImage~:playableStreams)'
64 if picture_field not in configured_profile_fields:
65 return super(LinkedInOAuth2Account, self).get_avatar_url()
66 # Iterate over the fields and attempt to get it by configured size
67 profile_picture_config = \
68 provider_configuration.get('PROFILEPICTURE', {})
69 req_size = \
70 profile_picture_config.get('display_size_w_h', (100.0, 100.0))
71 req_auth_method = \
72 profile_picture_config.get('authorization_method', 'PUBLIC')
73 # Iterate over the data returned by the provider
74 profile_elements = self.account.extra_data\
75 .get('profilePicture', {})\
76 .get('displayImage~', {})\
77 .get('elements', [])
78 for single_element in profile_elements:
79 if not req_auth_method == single_element['authorizationMethod']:
80 continue
81 # Get the dimensions from the payload
82 image_data = single_element.get('data', {})\
83 .get('com.linkedin.digitalmedia.mediaartifact.StillImage', {})\
84 .get('displaySize', {})
85 if not image_data:
86 continue
87 width, height = image_data['width'], image_data['height']
88 if not width or not height:
89 continue
90 if not width == req_size[0] or not height == req_size[1]:
91 continue
92 # Get the uri since actual size matches the requested size.
93 to_return = single_element.get('identifiers', [{}, ])[0]\
94 .get('identifier')
95 if to_return:
96 return to_return
97 return super(LinkedInOAuth2Account, self).get_avatar_url()
5098
5199
52100 class LinkedInOAuth2Provider(OAuth2Provider):
0 # -*- coding: utf-8 -*-
1 from json import loads
2
3 from django.test.client import RequestFactory
4 from django.test.utils import override_settings
5
06 from allauth.socialaccount.models import SocialAccount
7 from allauth.socialaccount.providers.base import ProviderException
18 from allauth.socialaccount.tests import OAuth2TestsMixin
29 from allauth.tests import MockedResponse, TestCase
310
4754 'publicProfileUrl': 'https://www.linkedin.com/in/johndoe'}
4855 acc = SocialAccount(extra_data=data, provider='linkedin_oauth2')
4956 self.assertEqual(acc.get_provider_account().to_str(), 'John Doe')
57
58 def test_get_avatar_url_no_picture_setting(self):
59 extra_data = '''
60 {
61 "profilePicture": {
62 "displayImage": "urn:li:digitalmediaAsset:12345abcdefgh-12abcd"
63 },
64 "id": "1234567",
65 "lastName": {
66 "preferredLocale": {
67 "language": "en",
68 "country": "US"
69 },
70 "localized": {
71 "en_US": "Penners"
72 }
73 },
74 "firstName": {
75 "preferredLocale": {
76 "language": "en",
77 "country": "US"
78 },
79 "localized": {
80 "en_US": "Raymond"
81 }
82 }
83 }
84 '''
85 acc = SocialAccount(
86 extra_data=loads(extra_data),
87 provider='linkedin_oauth2',
88 )
89 self.assertIsNone(acc.get_avatar_url())
90
91 @override_settings(
92 SOCIALACCOUNT_PROVIDERS={
93 'linkedin_oauth2': {
94 'PROFILE_FIELDS': [
95 'id',
96 'firstName',
97 'lastName',
98 'profilePicture(displayImage~:playableStreams)',
99 ],
100 'PROFILEPICTURE': {
101 'display_size_w_h': (400, 400.0),
102 },
103 },
104 })
105 def test_get_avatar_url_with_setting(self):
106 extra_data = '''
107 {
108 "profilePicture": {
109 "displayImage": "urn:li:digitalmediaAsset:12345abcdefgh-12abcd"
110 },
111 "id": "1234567",
112 "lastName": {
113 "preferredLocale": {
114 "language": "en",
115 "country": "US"
116 },
117 "localized": {
118 "en_US": "Penners"
119 }
120 },
121 "firstName": {
122 "preferredLocale": {
123 "language": "en",
124 "country": "US"
125 },
126 "localized": {
127 "en_US": "Raymond"
128 }
129 }
130 }
131 '''
132 acc = SocialAccount(
133 extra_data=loads(extra_data),
134 provider='linkedin_oauth2',
135 )
136 self.assertIsNone(acc.get_avatar_url())
137
138 @override_settings(
139 SOCIALACCOUNT_PROVIDERS={
140 'linkedin_oauth2': {
141 'PROFILE_FIELDS': [
142 'id',
143 'firstName',
144 'lastName',
145 'profilePicture(displayImage~:playableStreams)',
146 ],
147 'PROFILEPICTURE': {
148 'display_size_w_h': (100, 100.0),
149 },
150 },
151 })
152 def test_get_avatar_url_with_picture(self):
153 extra_data = '''
154 {
155 "profilePicture": {
156 "displayImage": "urn:li:digitalmediaAsset:12345abcdefgh-12abcd"
157 },
158 "id": "1234567",
159 "lastName": {
160 "preferredLocale": {
161 "language": "en",
162 "country": "US"
163 },
164 "localized": {
165 "en_US": "Penners"
166 }
167 },
168 "firstName": {
169 "preferredLocale": {
170 "language": "en",
171 "country": "US"
172 },
173 "localized": {
174 "en_US": "Raymond"
175 }
176 },
177 "profilePicture": {
178 "displayImage~": {
179 "elements": [
180 {
181 "authorizationMethod": "PUBLIC",
182 "data": {
183 "com.linkedin.digitalmedia.mediaartifact.StillImage": {
184 "storageSize": {
185 "height": 100,
186 "width": 100
187 },
188 "storageAspectRatio": {
189 "heightAspect": 1.0,
190 "formatted": "1.00:1.00",
191 "widthAspect": 1.0
192 },
193 "displaySize": {
194 "height": 100.0,
195 "width": 100.0,
196 "uom": "PX"
197 },
198 "rawCodecSpec": {
199 "name": "jpeg",
200 "type": "image"
201 },
202 "displayAspectRatio": {
203 "heightAspect": 1.0,
204 "formatted": "1.00:1.00",
205 "widthAspect": 1.0
206 },
207 "mediaType": "image/jpeg"
208 }
209 },
210 "artifact": "urn:li:digitalmediaMediaArtifact:avatar",
211 "identifiers": [
212 {
213 "identifierExpiresInSeconds": 4,
214 "file": "urn:li:digitalmediaFile:this-is-the-link",
215 "index": 0,
216 "identifier": "this-is-the-link",
217 "mediaType": "image/jpeg",
218 "identifierType": "EXTERNAL_URL"
219 }
220 ]
221 }
222 ]
223 }
224 }
225 }
226 '''
227 acc = SocialAccount(
228 extra_data=loads(extra_data),
229 provider='linkedin_oauth2',
230 )
231 self.assertEqual('this-is-the-link', acc.get_avatar_url())
232
233 @override_settings(
234 SOCIALACCOUNT_PROVIDERS={
235 'linkedin_oauth2': {
236 'PROFILE_FIELDS': [
237 'id',
238 'firstName',
239 'lastName',
240 'profilePicture(displayImage~:playableStreams)',
241 ],
242 'PROFILEPICTURE': {
243 'display_size_w_h': (400, 400.0),
244 },
245 },
246 })
247 def test_get_avatar_url_size_mismatch(self):
248 extra_data = '''
249 {
250 "profilePicture": {
251 "displayImage": "urn:li:digitalmediaAsset:12345abcdefgh-12abcd"
252 },
253 "id": "1234567",
254 "lastName": {
255 "preferredLocale": {
256 "language": "en",
257 "country": "US"
258 },
259 "localized": {
260 "en_US": "Penners"
261 }
262 },
263 "firstName": {
264 "preferredLocale": {
265 "language": "en",
266 "country": "US"
267 },
268 "localized": {
269 "en_US": "Raymond"
270 }
271 },
272 "profilePicture": {
273 "displayImage~": {
274 "elements": [
275 {
276 "authorizationMethod": "PUBLIC",
277 "data": {
278 "com.linkedin.digitalmedia.mediaartifact.StillImage": {
279 "storageSize": {
280 "height": 100,
281 "width": 100
282 },
283 "storageAspectRatio": {
284 "heightAspect": 1.0,
285 "formatted": "1.00:1.00",
286 "widthAspect": 1.0
287 },
288 "displaySize": {
289 "height": 100.0,
290 "width": 100.0,
291 "uom": "PX"
292 },
293 "rawCodecSpec": {
294 "name": "jpeg",
295 "type": "image"
296 },
297 "displayAspectRatio": {
298 "heightAspect": 1.0,
299 "formatted": "1.00:1.00",
300 "widthAspect": 1.0
301 },
302 "mediaType": "image/jpeg"
303 }
304 },
305 "artifact": "urn:li:digitalmediaMediaArtifact:avatar",
306 "identifiers": [
307 {
308 "identifierExpiresInSeconds": 4,
309 "file": "urn:li:digitalmediaFile:this-is-the-link",
310 "index": 0,
311 "identifier": "this-is-the-link",
312 "mediaType": "image/jpeg",
313 "identifierType": "EXTERNAL_URL"
314 }
315 ]
316 }
317 ]
318 }
319 }
320 }
321 '''
322 acc = SocialAccount(
323 extra_data=loads(extra_data),
324 provider='linkedin_oauth2',
325 )
326 self.assertIsNone(acc.get_avatar_url())
327
328 @override_settings(
329 SOCIALACCOUNT_PROVIDERS={
330 'linkedin_oauth2': {
331 'PROFILE_FIELDS': [
332 'id',
333 'firstName',
334 'lastName',
335 'profilePicture(displayImage~:playableStreams)',
336 ],
337 'PROFILEPICTURE': {
338 'display_size_w_h': (400, 400.0),
339 },
340 },
341 })
342 def test_get_avatar_url_auth_mismatch(self):
343 extra_data = '''
344 {
345 "profilePicture": {
346 "displayImage": "urn:li:digitalmediaAsset:12345abcdefgh-12abcd"
347 },
348 "id": "1234567",
349 "lastName": {
350 "preferredLocale": {
351 "language": "en",
352 "country": "US"
353 },
354 "localized": {
355 "en_US": "Penners"
356 }
357 },
358 "firstName": {
359 "preferredLocale": {
360 "language": "en",
361 "country": "US"
362 },
363 "localized": {
364 "en_US": "Raymond"
365 }
366 },
367 "profilePicture": {
368 "displayImage~": {
369 "elements": [
370 {
371 "authorizationMethod": "PRIVATE",
372 "data": {
373 "com.linkedin.digitalmedia.mediaartifact.StillImage": {
374 "storageSize": {
375 "height": 100,
376 "width": 100
377 },
378 "storageAspectRatio": {
379 "heightAspect": 1.0,
380 "formatted": "1.00:1.00",
381 "widthAspect": 1.0
382 },
383 "displaySize": {
384 "height": 100.0,
385 "width": 100.0,
386 "uom": "PX"
387 },
388 "rawCodecSpec": {
389 "name": "jpeg",
390 "type": "image"
391 },
392 "displayAspectRatio": {
393 "heightAspect": 1.0,
394 "formatted": "1.00:1.00",
395 "widthAspect": 1.0
396 },
397 "mediaType": "image/jpeg"
398 }
399 },
400 "artifact": "urn:li:digitalmediaMediaArtifact:avatar",
401 "identifiers": [
402 {
403 "identifierExpiresInSeconds": 4,
404 "file": "urn:li:digitalmediaFile:this-is-the-link",
405 "index": 0,
406 "identifier": "this-is-the-link",
407 "mediaType": "image/jpeg",
408 "identifierType": "EXTERNAL_URL"
409 }
410 ]
411 }
412 ]
413 }
414 }
415 }
416 '''
417 acc = SocialAccount(
418 extra_data=loads(extra_data),
419 provider='linkedin_oauth2',
420 )
421 self.assertIsNone(acc.get_avatar_url())
422
423 @override_settings(
424 SOCIALACCOUNT_PROVIDERS={
425 'linkedin_oauth2': {
426 'PROFILE_FIELDS': [
427 'id',
428 'firstName',
429 'lastName',
430 'profilePicture(displayImage~:playableStreams)',
431 ],
432 'PROFILEPICTURE': {
433 'display_size_w_h': (100, 100),
434 },
435 },
436 })
437 def test_get_avatar_url_float_vs_int(self):
438 extra_data = '''
439 {
440 "profilePicture": {
441 "displayImage": "urn:li:digitalmediaAsset:12345abcdefgh-12abcd"
442 },
443 "id": "1234567",
444 "lastName": {
445 "preferredLocale": {
446 "language": "en",
447 "country": "US"
448 },
449 "localized": {
450 "en_US": "Penners"
451 }
452 },
453 "firstName": {
454 "preferredLocale": {
455 "language": "en",
456 "country": "US"
457 },
458 "localized": {
459 "en_US": "Raymond"
460 }
461 },
462 "profilePicture": {
463 "displayImage~": {
464 "elements": [
465 {
466 "authorizationMethod": "PUBLIC",
467 "data": {
468 "com.linkedin.digitalmedia.mediaartifact.StillImage": {
469 "storageSize": {
470 "height": 100,
471 "width": 100
472 },
473 "storageAspectRatio": {
474 "heightAspect": 1.0,
475 "formatted": "1.00:1.00",
476 "widthAspect": 1.0
477 },
478 "displaySize": {
479 "height": 100.0,
480 "width": 100.0,
481 "uom": "PX"
482 },
483 "rawCodecSpec": {
484 "name": "jpeg",
485 "type": "image"
486 },
487 "displayAspectRatio": {
488 "heightAspect": 1.0,
489 "formatted": "1.00:1.00",
490 "widthAspect": 1.0
491 },
492 "mediaType": "image/jpeg"
493 }
494 },
495 "artifact": "urn:li:digitalmediaMediaArtifact:avatar",
496 "identifiers": [
497 {
498 "identifierExpiresInSeconds": 4,
499 "file": "urn:li:digitalmediaFile:this-is-the-link",
500 "index": 0,
501 "identifier": "this-is-the-link",
502 "mediaType": "image/jpeg",
503 "identifierType": "EXTERNAL_URL"
504 }
505 ]
506 }
507 ]
508 }
509 }
510 }
511 '''
512 acc = SocialAccount(
513 extra_data=loads(extra_data),
514 provider='linkedin_oauth2',
515 )
516 self.assertEqual('this-is-the-link', acc.get_avatar_url())
517
518 def test_id_missing(self):
519 extra_data = '''
520 {
521 "profilePicture": {
522 "displayImage": "urn:li:digitalmediaAsset:12345abcdefgh-12abcd"
523 },
524 "Id": "1234567"
525 }
526 '''
527 provider = LinkedInOAuth2Provider(
528 RequestFactory().get('/login')
529 )
530 self.assertRaises(
531 ProviderException,
532 provider.extract_uid,
533 loads(extra_data)
534 )
55 """
66
77 import requests
8 from urllib.parse import parse_qsl, urlparse
89
910 from django.http import HttpResponseRedirect
1011 from django.utils.http import urlencode
1213
1314 from requests_oauthlib import OAuth1
1415
15 from allauth.compat import parse_qsl, urlparse
1616 from allauth.utils import build_absolute_uri, get_request_param
1717
1818
0 from urllib.parse import parse_qsl
1
02 from django.urls import reverse
13 from django.utils.http import urlencode
24
3 from allauth.compat import parse_qsl
45 from allauth.socialaccount.providers.base import Provider
56
67
0 from django.conf.urls import include, url
0 from django.urls import include, path
11
22 from allauth.utils import import_attribute
33
99 provider.get_package() + '.views.oauth_callback')
1010
1111 urlpatterns = [
12 url('^login/$',
13 login_view, name=provider.id + "_login"),
14 url('^login/callback/$', callback_view,
15 name=provider.id + "_callback"),
12 path('login/', login_view, name=provider.id + "_login"),
13 path('login/callback/', callback_view, name=provider.id + "_callback"),
1614 ]
1715
18 return [url('^' + provider.get_slug() + '/', include(urlpatterns))]
16 return [path(provider.get_slug() + '/', include(urlpatterns))]
00 import requests
1 from urllib.parse import parse_qsl
12
23 from django.utils.http import urlencode
3
4 from allauth.compat import parse_qsl
54
65
76 class OAuth2Error(Exception):
0 from urllib.parse import parse_qsl
1
02 from django.urls import reverse
13 from django.utils.http import urlencode
24
3 from allauth.compat import parse_qsl
45 from allauth.socialaccount.providers.base import Provider
56
67
0 from django.conf.urls import include, url
0 from django.urls import include, path
11
22 from allauth.utils import import_attribute
33
99 provider.get_package() + '.views.oauth2_callback')
1010
1111 urlpatterns = [
12 url(r'^login/$',
13 login_view, name=provider.id + "_login"),
14 url(r'^login/callback/$',
15 callback_view, name=provider.id + "_callback"),
12 path('login/', login_view, name=provider.id + "_login"),
13 path('login/callback/', callback_view, name=provider.id + "_callback"),
1614 ]
1715
18 return [url('^' + provider.get_slug() + '/', include(urlpatterns))]
16 return [path(provider.get_slug() + '/', include(urlpatterns))]
00 from django.db import models
11
2 from allauth.compat import python_2_unicode_compatible
32
4
5 @python_2_unicode_compatible
63 class OpenIDStore(models.Model):
74 server_url = models.CharField(max_length=255)
85 handle = models.CharField(max_length=255)
1512 return self.server_url
1613
1714
18 @python_2_unicode_compatible
1915 class OpenIDNonce(models.Model):
2016 server_url = models.CharField(max_length=255)
2117 timestamp = models.IntegerField()
0 from urllib.parse import urlparse
1
02 from django.urls import reverse
13 from django.utils.http import urlencode
24
3 from allauth.compat import urlparse
45 from allauth.socialaccount.providers.base import Provider, ProviderAccount
56
67 from .utils import (
5859 def get_server_settings(self, endpoint):
5960 servers = self.get_settings().get('SERVERS', [])
6061 for server in servers:
61 if endpoint == server.get('openid_url'):
62 if endpoint is not None \
63 and endpoint.startswith(server.get('openid_url')):
6264 return server
6365 return {}
6466
0 from django.conf.urls import url
0 from django.urls import path
11
22 from . import views
33
44
55 urlpatterns = [
6 url('^openid/login/$', views.login, name="openid_login"),
7 url('^openid/callback/$', views.callback, name='openid_callback'),
6 path('openid/login/', views.login, name="openid_login"),
7 path('openid/callback/', views.callback, name='openid_callback'),
88 ]
00 import base64
11 import pickle
2 from collections import UserDict
23
34 from openid.association import Association as OIDAssociation
45 from openid.extensions.ax import FetchResponse
56 from openid.extensions.sreg import SRegResponse
67 from openid.store.interface import OpenIDStore as OIDStore
78
8 from allauth.compat import UserDict
99 from allauth.utils import valid_email_or_none
1010
1111 from .models import OpenIDNonce, OpenIDStore
2222 from .utils import AXAttributes, DBOpenIDStore, JSONSafeSession, SRegFields
2323
2424
25 def _openid_consumer(request):
26 store = DBOpenIDStore()
25 def _openid_consumer(request, provider, endpoint):
26 server_settings = provider.get_server_settings(endpoint)
27 stateless = server_settings.get('stateless', False)
28 store = None if stateless else DBOpenIDStore()
2729 client = consumer.Consumer(JSONSafeSession(request.session), store)
2830 return client
2931
6870 list(self.request.POST.items())
6971 ))
7072
71 def get_client(self):
72 return _openid_consumer(self.request)
73 def get_client(self, provider, endpoint):
74 return _openid_consumer(self.request, provider, endpoint)
7375
7476 def get_realm(self, provider):
7577 return provider.get_settings().get(
8587 return form
8688
8789 request = self.request
88 client = self.get_client()
8990 provider = self.provider(request)
91 endpoint = form.cleaned_data['openid']
92 client = self.get_client(provider, endpoint)
9093 realm = self.get_realm(provider)
9194
92 auth_request = client.begin(form.cleaned_data['openid'])
95 auth_request = client.begin(endpoint)
9396 if QUERY_EMAIL:
9497 sreg = SRegRequest()
9598 for name in SRegFields:
130133 provider = OpenIDProvider
131134
132135 def get(self, request):
133 client = self.get_client()
136 provider = self.provider(request)
137 endpoint = request.GET.get('openid.op_endpoint', '')
138 client = self.get_client(provider, endpoint)
134139 response = self.get_openid_response(client)
135140
136141 if response.status == consumer.SUCCESS:
156161 self.request, self.provider.id, error=error
157162 )
158163
159 def get_client(self):
160 return _openid_consumer(self.request)
164 def get_client(self, provider, endpoint):
165 return _openid_consumer(self.request, provider, endpoint)
161166
162167 def get_openid_response(self, client):
163168 return client.complete(
00 from xml.etree import ElementTree
11 from xml.parsers.expat import ExpatError
22
3 from allauth.compat import six
43 from allauth.socialaccount.providers.oauth.client import OAuth
54 from allauth.socialaccount.providers.oauth.views import (
65 OAuthAdapter,
1716
1817 def get_user_info(self):
1918 raw_xml = self.query(self.url)
20 if not six.PY3:
21 raw_xml = raw_xml.encode('utf8')
2219 try:
2320 user_element = ElementTree.fromstring(raw_xml).find('user')
2421 user_info = user_element.attrib
0 from django.conf.urls import url
0 from django.urls import path
11
22 from . import views
33
44
55 urlpatterns = [
6 url('^persona/login/$', views.persona_login, name="persona_login")
6 path('persona/login/', views.persona_login, name="persona_login")
77 ]
00 import json
1 from urllib.parse import parse_qs, urlparse
12
23 from django.test.utils import override_settings
34 from django.urls import reverse
45
5 from allauth.compat import parse_qs, urlparse
66 from allauth.socialaccount.models import SocialAccount
77 from allauth.socialaccount.providers import registry
88 from allauth.socialaccount.tests import create_oauth2_tests
2121 params={'access_token': token.token,
2222 'key': app.key,
2323 'site': site})
24 resp.raise_for_status()
2425 extra_data = resp.json()['items'][0]
2526 return self.get_provider().sociallogin_from_response(request,
2627 extra_data)
0 from django.conf.urls import url
0 from django.urls import path
11
22 from . import views
33
44
55 urlpatterns = [
6 url("^steam/login/$", views.steam_login, name="steam_login"),
7 url("^steam/callback/$", views.steam_callback, name="steam_callback"),
6 path("steam/login/", views.steam_login, name="steam_login"),
7 path("steam/callback/", views.steam_callback, name="steam_callback"),
88 ]
0 from django.conf.urls import url
0 from django.urls import path
11
22 from . import views
33
44
55 urlpatterns = [
6 url('^telegram/login/$', views.telegram_login, name="telegram_login")
6 path('telegram/login/', views.telegram_login, name="telegram_login")
77 ]
5252 provider = self.adapter.get_provider()
5353 scope = provider.get_scope(request)
5454 client = WeixinOAuth2Client(
55 self.request, app.client_id, app.secret,
55 request, app.client_id, app.secret,
5656 self.adapter.access_token_method,
5757 self.adapter.access_token_url,
5858 callback_url,
0 from allauth.socialaccount.providers.base import AuthAction, ProviderAccount
1 from allauth.socialaccount.providers.oauth2.provider import OAuth2Provider
2
3
4 class Scope(object):
5 ACCESS = 'read-only'
6
7
8 class YNABAccount(ProviderAccount):
9 pass
10
11
12 class YNABProvider(OAuth2Provider):
13 id = 'ynab'
14 name = 'YNAB'
15 account_class = YNABAccount
16
17 def get_default_scope(self):
18 scope = [Scope.ACCESS]
19 return scope
20
21 def get_auth_params(self, request, action):
22 ret = super(YNABProvider, self).get_auth_params(request,
23 action)
24 if action == AuthAction.REAUTHENTICATE:
25 ret['prompt'] = 'select_account consent'
26 return ret
27
28 def extract_uid(self, data):
29 return str(data['data']['user']['id'])
30
31
32 provider_classes = [YNABProvider]
0 # -*- coding: utf-8 -*-
1 from __future__ import absolute_import, unicode_literals
2
3 from requests.exceptions import HTTPError
4
5 from django.test.client import RequestFactory
6 from django.test.utils import override_settings
7 from django.urls import reverse
8
9 from allauth.socialaccount.models import SocialToken
10 from allauth.socialaccount.tests import OAuth2TestsMixin
11 from allauth.tests import MockedResponse, TestCase, patch
12
13 from .provider import YNABProvider
14
15
16 @override_settings(
17 SOCIALACCOUNT_AUTO_SIGNUP=True,
18 ACCOUNT_SIGNUP_FORM_CLASS=None, )
19 # ACCOUNT_EMAIL_VERIFICATION=account_settings
20 # .EmailVerificationMethod.MANDATORY)
21 class YNABTests(OAuth2TestsMixin, TestCase):
22 provider_id = YNABProvider.id
23
24 def get_mocked_response(self):
25 return MockedResponse(200, """
26 {"data": {
27 "user":{
28 "id": "abcd1234xyz5678"
29 }
30 }
31 }
32 """)
33
34 def test_ynab_compelete_login_401(self):
35 from allauth.socialaccount.providers.ynab.views import \
36 YNABOAuth2Adapter
37
38 class LessMockedResponse(MockedResponse):
39 def raise_for_status(self):
40 if self.status_code != 200:
41 raise HTTPError(None)
42
43 request = RequestFactory().get(
44 reverse(self.provider.id + '_login'),
45 dict(process='login'))
46
47 adapter = YNABOAuth2Adapter(request)
48 app = adapter.get_provider().get_app(request)
49 token = SocialToken(token='some_token')
50 response_with_401 = LessMockedResponse(
51 401, """
52 {"error": {
53 "errors": [{
54 "domain": "global",
55 "reason": "authError",
56 "message": "Invalid Credentials",
57 "locationType": "header",
58 "location": "Authorization" } ],
59 "code": 401,
60 "message": "Invalid Credentials" }
61 }""")
62 with patch(
63 'allauth.socialaccount.providers.ynab.views'
64 '.requests') as patched_requests:
65 patched_requests.get.return_value = response_with_401
66 with self.assertRaises(HTTPError):
67 adapter.complete_login(request, app, token)
0 from allauth.socialaccount.providers.oauth2.urls import default_urlpatterns
1
2 from .provider import YNABProvider
3
4
5 urlpatterns = default_urlpatterns(YNABProvider)
0 import requests
1
2 from allauth.socialaccount.providers.oauth2.views import (
3 OAuth2Adapter,
4 OAuth2CallbackView,
5 OAuth2LoginView,
6 )
7
8 from .provider import YNABProvider
9
10
11 class YNABOAuth2Adapter(OAuth2Adapter):
12 provider_id = YNABProvider.id
13 access_token_url = 'https://app.youneedabudget.com/oauth/token'
14 authorize_url = 'https://app.youneedabudget.com/oauth/authorize'
15 profile_url = 'https://api.youneedabudget.com/v1/user'
16
17 def complete_login(self, request, app, token, **kwargs):
18 resp = requests.get(self.profile_url,
19 headers={
20 'Authorization':
21 'Bearer {}'.format(token.token)})
22 resp.raise_for_status()
23 extra_data = resp.json()
24 login = self.get_provider() \
25 .sociallogin_from_response(request,
26 extra_data)
27 return login
28
29
30 oauth2_login = OAuth2LoginView.adapter_view(YNABOAuth2Adapter)
31 oauth2_callback = OAuth2CallbackView.adapter_view(YNABOAuth2Adapter)
00 import json
11 import random
22 import warnings
3 from urllib.parse import parse_qs, urlparse
34
45 from django.conf import settings
56 from django.contrib.auth.models import AnonymousUser
1314 from ..account import app_settings as account_settings
1415 from ..account.models import EmailAddress
1516 from ..account.utils import user_email, user_username
16 from ..compat import parse_qs, urlparse
1717 from ..tests import MockedResponse, TestCase, mocked_response
1818 from ..utils import get_user_model
19 from . import providers
19 from . import app_settings, providers
2020 from .helpers import complete_social_login
2121 from .models import SocialAccount, SocialApp, SocialLogin
2222 from .views import signup
2323
2424
25 def setup_app(provider):
26 app = None
27 if not app_settings.PROVIDERS.get(provider.id, {}).get('APP'):
28 app = SocialApp.objects.create(
29 provider=provider.id,
30 name=provider.id,
31 client_id='app123id',
32 key=provider.id,
33 secret='dummy')
34 app.sites.add(Site.objects.get_current())
35 return app
36
37
2538 class OAuthTestsMixin(object):
2639 provider_id = None
2740
3144 def setUp(self):
3245 super(OAuthTestsMixin, self).setUp()
3346 self.provider = providers.registry.by_id(self.provider_id)
34 app = SocialApp.objects.create(
35 provider=self.provider.id,
36 name=self.provider.id,
37 client_id='app123id',
38 key=self.provider.id,
39 secret='dummy')
40 app.sites.add(Site.objects.get_current())
47 self.app = setup_app(self.provider)
4148
4249 @override_settings(SOCIALACCOUNT_AUTO_SIGNUP=False)
4350 def test_login(self):
145152 def setUp(self):
146153 super(OAuth2TestsMixin, self).setUp()
147154 self.provider = providers.registry.by_id(self.provider_id)
148 app = SocialApp.objects.create(provider=self.provider.id,
149 name=self.provider.id,
150 client_id='app123id',
151 key=self.provider.id,
152 secret='dummy')
153 app.sites.add(Site.objects.get_current())
155 self.app = setup_app(self.provider)
154156
155157 @override_settings(SOCIALACCOUNT_AUTO_SIGNUP=False)
156158 def test_login(self):
192194 provider_account.get_brand()
193195 provider_account.to_str()
194196 # get token
195 t = sa.socialtoken_set.get()
196 # verify access_token and refresh_token
197 self.assertEqual('testac', t.token)
198 self.assertEqual(t.token_secret,
199 json.loads(self.get_login_response_json(
200 with_refresh_token=True)).get(
201 'refresh_token', ''))
197 if self.app:
198 t = sa.socialtoken_set.get()
199 # verify access_token and refresh_token
200 self.assertEqual('testac', t.token)
201 self.assertEqual(t.token_secret,
202 json.loads(self.get_login_response_json(
203 with_refresh_token=True)).get(
204 'refresh_token', ''))
202205
203206 def test_account_refresh_token_saved_next_login(self):
204207 """
0 from django.conf.urls import url
0 from django.urls import path
11
22 from . import views
33
44
55 urlpatterns = [
6 url(r'^login/cancelled/$', views.login_cancelled,
7 name='socialaccount_login_cancelled'),
8 url(r'^login/error/$', views.login_error,
9 name='socialaccount_login_error'),
10 url(r'^signup/$', views.signup, name='socialaccount_signup'),
11 url(r'^connections/$', views.connections, name='socialaccount_connections')
6 path('login/cancelled/', views.login_cancelled,
7 name='socialaccount_login_cancelled'),
8 path('login/error/', views.login_error,
9 name='socialaccount_login_error'),
10 path('signup/', views.signup, name='socialaccount_signup'),
11 path('connections/', views.connections, name='socialaccount_connections')
1212 ]
77 from django.core.files.base import ContentFile
88 from django.db import models
99 from django.test import RequestFactory, TestCase
10 from django.utils.http import base36_to_int, int_to_base36
1011 from django.views import csrf
11
12 from allauth.compat import base36_to_int, int_to_base36
1312
1413 from . import utils
1514
00 from importlib import import_module
11
2 from django.conf.urls import include, url
2 from django.urls import include, path
33
44 from allauth.socialaccount import providers
55
66 from . import app_settings
77
88
9 urlpatterns = [url(r'^', include('allauth.account.urls'))]
9 urlpatterns = [path('', include('allauth.account.urls'))]
1010
1111 if app_settings.SOCIALACCOUNT_ENABLED:
12 urlpatterns += [url(r'^social/', include('allauth.socialaccount.urls'))]
12 urlpatterns += [path('social/', include('allauth.socialaccount.urls'))]
1313
1414 # Provider urlpatterns, as separate attribute (for reusability).
1515 provider_urlpatterns = []
55 import string
66 import unicodedata
77 from collections import OrderedDict
8 from urllib.parse import urlsplit
89
910 from django.contrib.auth import get_user_model
1011 from django.contrib.sites.models import Site
11 from django.core.exceptions import ImproperlyConfigured
12 from django.core.exceptions import FieldDoesNotExist, ImproperlyConfigured
1213 from django.core.serializers.json import DjangoJSONEncoder
1314 from django.core.validators import ValidationError, validate_email
14 from django.db.models import FieldDoesNotExist, FileField
15 from django.db.models import FileField
1516 from django.db.models.fields import (
1617 BinaryField,
1718 DateField,
2021 TimeField,
2122 )
2223 from django.utils import dateparse
23 from django.utils.encoding import force_bytes
24
25 from allauth.compat import force_str, six, urlsplit
24 from django.utils.encoding import force_bytes, force_str
2625
2726
2827 # Magic number 7: if you run into collisions with this number, then you are
146145
147146
148147 def import_attribute(path):
149 assert isinstance(path, six.string_types)
148 assert isinstance(path, str)
150149 pkg, attr = path.rsplit('.', 1)
151150 ret = getattr(importlib.import_module(pkg), attr)
152151 return ret
180179 if isinstance(field, BinaryField):
181180 v = force_str(base64.b64encode(v))
182181 elif isinstance(field, FileField):
183 if v and not isinstance(v, six.string_types):
182 if v and not isinstance(v, str):
184183 v = v.name
185184 # Check if the field is serializable. If not, we'll fall back
186185 # to serializing the DB values which should cover most use cases.
292291
293292 def get_form_class(forms, form_id, default_form):
294293 form_class = forms.get(form_id, default_form)
295 if isinstance(form_class, six.string_types):
294 if isinstance(form_class, str):
296295 form_class = import_attribute(form_class)
297296 return form_class
298297
299298
300299 def get_request_param(request, param, default=None):
300 if request is None:
301 return default
301302 return request.POST.get(param) or request.GET.get(param, default)
00 Metadata-Version: 1.1
11 Name: django-allauth
2 Version: 0.40.0
2 Version: 0.41.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
88 Description: ==========================
99 Welcome to django-allauth!
1010 ==========================
11
12 .. image:: https://badge.fury.io/py/django-allauth.svg
13 :target: http://badge.fury.io/py/django-allauth
1411
1512 .. image:: https://travis-ci.org/pennersr/django-allauth.svg
1613 :target: http://travis-ci.org/pennersr/django-allauth
3027
3128 .. image:: https://img.shields.io/badge/code_style-standard-brightgreen.svg
3229 :target: http://standardjs.com
30
31 .. image:: https://pennersr.github.io/img/emacs-badge.svg
32 :target: https://www.gnu.org/software/emacs/
3333
3434 Integrated set of Django applications addressing authentication,
3535 registration, account management as well as 3rd party (social) account
101101 Classifier: License :: OSI Approved :: MIT License
102102 Classifier: Operating System :: OS Independent
103103 Classifier: Programming Language :: Python
104 Classifier: Programming Language :: Python :: 2.7
105 Classifier: Programming Language :: Python :: 3.4
104 Classifier: Programming Language :: Python :: 3
106105 Classifier: Programming Language :: Python :: 3.5
107106 Classifier: Programming Language :: Python :: 3.6
107 Classifier: Programming Language :: Python :: 3.7
108 Classifier: Programming Language :: Python :: 3.8
108109 Classifier: Framework :: Django
109 Classifier: Framework :: Django :: 1.11
110110 Classifier: Framework :: Django :: 2.0
111111 Classifier: Framework :: Django :: 2.1
112112 Classifier: Framework :: Django :: 2.2
113 Classifier: Framework :: Django :: 3.0
66 test_settings.py
77 allauth/__init__.py
88 allauth/app_settings.py
9 allauth/compat.py
109 allauth/exceptions.py
1110 allauth/models.py
1211 allauth/tests.py
138137 allauth/socialaccount/providers/amazon/tests.py
139138 allauth/socialaccount/providers/amazon/urls.py
140139 allauth/socialaccount/providers/amazon/views.py
140 allauth/socialaccount/providers/amazon_cognito/__init__.py
141 allauth/socialaccount/providers/amazon_cognito/provider.py
142 allauth/socialaccount/providers/amazon_cognito/tests.py
143 allauth/socialaccount/providers/amazon_cognito/urls.py
144 allauth/socialaccount/providers/amazon_cognito/utils.py
145 allauth/socialaccount/providers/amazon_cognito/views.py
141146 allauth/socialaccount/providers/angellist/__init__.py
142147 allauth/socialaccount/providers/angellist/provider.py
143148 allauth/socialaccount/providers/angellist/tests.py
285290 allauth/socialaccount/providers/evernote/tests.py
286291 allauth/socialaccount/providers/evernote/urls.py
287292 allauth/socialaccount/providers/evernote/views.py
293 allauth/socialaccount/providers/exist/__init__.py
294 allauth/socialaccount/providers/exist/provider.py
295 allauth/socialaccount/providers/exist/tests.py
296 allauth/socialaccount/providers/exist/urls.py
297 allauth/socialaccount/providers/exist/views.py
288298 allauth/socialaccount/providers/facebook/__init__.py
289299 allauth/socialaccount/providers/facebook/forms.py
290300 allauth/socialaccount/providers/facebook/locale.py
616626 allauth/socialaccount/providers/yahoo/tests.py
617627 allauth/socialaccount/providers/yahoo/urls.py
618628 allauth/socialaccount/providers/yahoo/views.py
629 allauth/socialaccount/providers/ynab/__init__.py
630 allauth/socialaccount/providers/ynab/provider.py
631 allauth/socialaccount/providers/ynab/tests.py
632 allauth/socialaccount/providers/ynab/urls.py
633 allauth/socialaccount/providers/ynab/views.py
619634 allauth/socialaccount/templatetags/__init__.py
620635 allauth/socialaccount/templatetags/socialaccount.py
621636 allauth/templates/base.html
0 Django>=1.11
0 Django>=2.0
11 python3-openid>=3.0.8
22 requests-oauthlib>=0.3.0
33 requests
1616
1717 Here are a few third party resources to help you get started:
1818
19 - https://www.youtube.com/watch?v=2QLAc7RJ99s
1920 - https://speakerdeck.com/tedtieken/signing-up-and-signing-in-users-in-django-with-django-allauth
2021 - https://stackoverflow.com/questions/tagged/django-allauth
2122 - http://www.sarahhagstrom.com/2013/09/the-missing-django-allauth-tutorial/
9091 one piece of the puzzle and for example a stack trace indicates another
9192 module crashing, please try to come up stripped version of the issue where it
9293 is clear that ``allauth`` is the one that is misbehaving.
94
95 - **Social login trouble:** There are many reasons why the social login for a
96 provider is not working for you. Common causes are errors in setting up the
97 credential for the OAuth app and/or having setup invalid callback URLs. Filing
98 issues stating that things are not working for you is not very helpful. It is
99 simply not feasible to debug your specific setup. If you really do think that
100 there is an issue in ``allauth``, please do the initial debugging and analysis
101 yourself, and, provide detailed information in the issue. If the issue does
102 not point to any concrete issue in ``allauth``, it is likely to get closed.
7272 'allauth.socialaccount.providers.edmodo',
7373 'allauth.socialaccount.providers.eveonline',
7474 'allauth.socialaccount.providers.evernote',
75 'allauth.socialaccount.providers.exist',
7576 'allauth.socialaccount.providers.facebook',
7677 'allauth.socialaccount.providers.feedly',
7778 'allauth.socialaccount.providers.fivehundredpx',
126127 'allauth.socialaccount.providers.weixin',
127128 'allauth.socialaccount.providers.windowslive',
128129 'allauth.socialaccount.providers.xing',
130 'allauth.socialaccount.providers.ynab',
129131 ...
130132 )
131133
132134 SITE_ID = 1
135
136 # Provider specific settings
137 SOCIALACCOUNT_PROVIDERS = {
138 'google': {
139 # For each OAuth based provider, either add a ``SocialApp``
140 # (``socialaccount`` app) containing the required client
141 # credentials, or list them here:
142 'APP': {
143 'client_id': '123',
144 'secret': '456',
145 'key': ''
146 }
147 }
148 }
133149
134150 urls.py::
135151
155171 Now start your server, visit your admin pages (e.g. http://localhost:8000/admin/)
156172 and follow these steps:
157173
158 1. Add a ``Site`` for your domain, matching ``settings.SITE_ID`` (``django.contrib.sites`` app).
159 2. For each OAuth based provider, add a ``Social App`` (``socialaccount`` app).
160 3. Fill in the site and the OAuth app credentials obtained from the provider.
174 - Add a ``Site`` for your domain, matching ``settings.SITE_ID`` (``django.contrib.sites`` app).
175 - For each OAuth based provider, either add a ``SocialApp`` (``socialaccount``
176 app) containing the required client credentials, or, make make sure that these are
177 configured via the ``SOCIALACCOUNT_PROVIDERS[<provider>]['APP']`` setting.
33 Requirements
44 ------------
55
6 - Python 2.7, 3.3, 3.4, 3.5 or 3.6
7
8 - Django (1.11+)
6 - Python 3.5, 3.6, 3.7 or 3.8
7
8 - Django (2.0+)
99
1010 - python-openid or python3-openid (depending on your Python version)
1111
4040
4141 - Amazon (OAuth2)
4242
43 - Amazon Cognito (OAuth2)
44
4345 - AngelList (OAuth2)
4446
4547 - Asana (OAuth2)
8688
8789 - Evernote (OAuth)
8890
91 - Exist (OAuth2)
92
8993 - Facebook (both OAuth2 and JS SDK)
9094
9195 - Feedly (OAuth2)
191195 - Xing (OAuth)
192196
193197 - Yahoo (OAuth2)
198
199 - YNAB (OAuth2)
194200
195201
196202 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...
7979 Development callback URL
8080 https://example.com/accounts/amazon/login/callback/
8181
82
83 Amazon Cognito
84 --------------
85
86 App registration (get your key and secret here)
87 1. Go to your https://console.aws.amazon.com/cognito/ and create a Cognito User Pool if you haven't already.
88 2. Go to General Settings > App Clients section and create a new App Client if you haven't already. Please make sure you select the option to generate a secret key.
89 3. Go to App Integration > App Client Settings section and:
90
91 1. Enable Cognito User Pool as an identity provider.
92 2. Set the callback and sign-out URLs. (see next section for development callback URL)
93 3. Enable Authorization Code Grant OAuth flow.
94 4. Select the OAuth scopes you'd like to allow.
95
96 4. Go to App Integration > Domain Name section and create a domain prefix for your Cognito User Pool.
97
98 Development callback URL:
99 http://localhost:8000/accounts/amazon-cognito/login/callback/
100
101 In addition, you'll need to specify your user pool's domain like so:
102
103 .. code-block:: python
104
105 SOCIALACCOUNT_PROVIDERS = {
106 'amazon_cognito': {
107 'DOMAIN': 'https://<domain-prefix>.auth.us-east-1.amazoncognito.com',
108 }
109 }
110
111 Your domain prefix is the value you specified in step 4 of the app registration process.
112 If you provided a custom domain such as accounts.example.com provide that instead.
82113
83114 AngelList
84115 ---------
412443 'EVERNOTE_HOSTNAME': 'evernote.com' # defaults to sandbox.evernote.com
413444 }
414445 }
446
447
448 Exist
449 -----
450
451 Register your OAuth2 app in apps page:
452
453 https://exist.io/account/apps/
454
455 During development set the callback url to:
456
457 http://localhost:8000/accounts/exist/login/callback/
458
459 In production replace localhost with whatever domain you're hosting your app on.
460
461 If your app is writing to certain attributes you need to specify this during the
462 creation of the app.
463
464 The following Exist settings are available:
465
466 .. code-block:: python
467
468 SOCIALACCOUNT_PROVIDERS = {
469 'exist': {
470 'SCOPE': ['read+write'],
471 }
472 }
473
474 SCOPE:
475 The default scope is ``read``. If you'd like to change this set the scope to
476 ``read+write``.
477
478 For more information:
479 OAuth documentation: http://developer.exist.io/#oauth2-authentication
480 API documentation: http://developer.exist.io/
415481
416482
417483 Facebook
10701136 {% load socialaccount %}
10711137 <a href="{% provider_login_url "openid" openid="https://www.google.com/accounts/o8/id" next="/success/url/" %}">Google</a>
10721138
1139 The OpenID provider can be forced to operate in stateless mode as follows::
1140
1141 SOCIALACCOUNT_PROVIDERS = \
1142 { 'openid':
1143 { 'SERVERS':
1144 [ dict(id='steam',
1145 name='Steam',
1146 openid_url='https://steamcommunity.com/openid',
1147 stateless=True,
1148 )]}}
10731149
10741150 OpenStreetMap
1075 -----
1151 -------------
10761152
10771153 Register your client application under `My Settings`/`oauth settings`:
10781154
11111187 .. code-block:: python
11121188
11131189 SOCIALACCOUNT_PROVIDERS = {
1114 'paypal': {
1190 'patreon': {
11151191 'VERSION': 'v1',
11161192 'SCOPE': ['pledges-to-me', 'users', 'my-campaign'],
11171193 }
14481524
14491525
14501526 Strava
1451 -----
1527 ------
14521528
14531529 Register your OAuth2 app in api settings page:
14541530
17171793
17181794 Register your OAuth2 app below and enter the resultant client id and secret into admin
17191795 https://developer.yahoo.com/apps/create/
1796
1797 YNAB
1798 ------
1799
1800 App Registration
1801 https://app.youneedabudget.com/settings/developer
1802
1803 Development callback URL
1804 http://127.0.0.1:8000/accounts/ynab/login/callback/
1805
1806
1807
1808 Default SCOPE permissions are 'read-only'. If this is the desired functionality, do not add SCOPE entry with ynab app
1809 in SOCIALACCOUNT_PROVIDERS. Otherwise, adding SCOPE and an empty string will give you read / write.
1810
1811 .. code-block:: python
1812
1813 SOCIALACCOUNT_PROVIDERS = {
1814 'ynab': {
1815 'SCOPE': ''
1816 }
1817 }
00 #!/usr/bin/env python
1 from __future__ import print_function
12 import io
23 import os
34 import sys
6061 or fn.lower() == pattern.lower()):
6162 bad_name = True
6263 if show_ignored:
63 print >> sys.stderr, (
64 print(
6465 "Directory %s ignored by pattern %s"
65 % (fn, pattern))
66 % (fn, pattern), file=sys.stderr)
6667 break
6768 if bad_name:
6869 continue
8485 or fn.lower() == pattern.lower()):
8586 bad_name = True
8687 if show_ignored:
87 print >> sys.stderr, (
88 print(
8889 "File %s ignored by pattern %s"
89 % (fn, pattern))
90 % (fn, pattern), file=sys.stderr)
9091 break
9192 if bad_name:
9293 continue
9798 excluded_directories = standard_exclude_directories
9899
99100 package_data = find_package_data(exclude_directories=excluded_directories)
100
101 test_requirements = []
102
103 IS_PY2 = sys.version_info[0] < 3
104
105 if IS_PY2:
106 openid_package = 'python-openid >= 2.2.5'
107 test_requirements.append('mock >= 1.0.1')
108 else:
109 openid_package = 'python3-openid >= 3.0.8'
110101
111102 long_description = io.open('README.rst', encoding='utf-8').read()
112103
125116 url='http://github.com/pennersr/django-allauth',
126117 keywords='django auth account social openid twitter facebook oauth'
127118 ' registration',
128 tests_require=test_requirements,
129 install_requires=['Django >= 1.11',
130 openid_package,
119 tests_require=[],
120 install_requires=['Django >= 2.0',
121 'python3-openid >= 3.0.8',
131122 'requests-oauthlib >= 0.3.0',
132123 "requests"],
133124 include_package_data=True,
140131 'License :: OSI Approved :: MIT License',
141132 'Operating System :: OS Independent',
142133 'Programming Language :: Python',
143 'Programming Language :: Python :: 2.7',
144 'Programming Language :: Python :: 3.4',
134 'Programming Language :: Python :: 3',
145135 'Programming Language :: Python :: 3.5',
146136 'Programming Language :: Python :: 3.6',
137 'Programming Language :: Python :: 3.7',
138 'Programming Language :: Python :: 3.8',
147139 'Framework :: Django',
148 'Framework :: Django :: 1.11',
149140 'Framework :: Django :: 2.0',
150141 'Framework :: Django :: 2.1',
151142 'Framework :: Django :: 2.2',
143 'Framework :: Django :: 3.0',
152144 ],
153145 packages=find_packages(exclude=['example']),
154146 package_data=package_data,
5151 'allauth.socialaccount',
5252 'allauth.socialaccount.providers.agave',
5353 'allauth.socialaccount.providers.amazon',
54 'allauth.socialaccount.providers.amazon_cognito',
5455 'allauth.socialaccount.providers.angellist',
5556 'allauth.socialaccount.providers.asana',
5657 'allauth.socialaccount.providers.auth0',
7980 'allauth.socialaccount.providers.eveonline',
8081 'allauth.socialaccount.providers.evernote',
8182 'allauth.socialaccount.providers.eventbrite',
83 'allauth.socialaccount.providers.exist',
8284 'allauth.socialaccount.providers.facebook',
8385 'allauth.socialaccount.providers.feedly',
8486 'allauth.socialaccount.providers.fivehundredpx',
138140 'allauth.socialaccount.providers.windowslive',
139141 'allauth.socialaccount.providers.xing',
140142 'allauth.socialaccount.providers.yahoo',
143 'allauth.socialaccount.providers.ynab',
141144 )
142145
143146 AUTHENTICATION_BACKENDS = (