Codebase list django-allauth / 58ab8f0
New upstream version 0.35.0 Pierre-Elliott Bécue 6 years ago
213 changed file(s) with 3126 addition(s) and 2678 deletion(s). Raw diff Collapse all Expand all
2626 Bojan Mihelac
2727 Chris Beaven
2828 Chris Davis
29 Christian Carter
2930 Christopher Grebs
3031 Daniel Eriksson
3132 Daniel Widerin
5152 James Rivett-Carnac
5253 James Thompson
5354 Jannis Leidel
55 Jannis Vajen
5456 Jeff Triplett
5557 Jerome Leclanche
5658 Joe Vanderstelt
0 0.35.0 (2017-02-02)
1 *******************
2
3 Security notice
4 ---------------
5
6 - As an extra security measure on top of what the standard Django password reset
7 token generator is already facilitating, allauth now adds the user email
8 address to the hash such that whenever the user's email address changes the
9 token is invalidated.
10
11
12 Note worthy changes
13 -------------------
14
15 - New provider: Azure, Microsoft Graph, Salesforce, Yahoo.
16
17
018 0.34.0 (2017-10-29)
119 *******************
220
00 Metadata-Version: 1.1
11 Name: django-allauth
2 Version: 0.34.0
2 Version: 0.35.0
33 Summary: Integrated set of Django applications addressing authentication, registration, account management as well as 3rd party (social) account authentication.
44 Home-page: http://github.com/pennersr/django-allauth
55 Author: Raymond Penners
99 Welcome to django-allauth!
1010 ==========================
1111
12 .. image:: https://badge.fury.io/py/django-allauth.png
12 .. image:: https://badge.fury.io/py/django-allauth.svg
1313 :target: http://badge.fury.io/py/django-allauth
1414
15 .. image:: https://travis-ci.org/pennersr/django-allauth.png
15 .. image:: https://travis-ci.org/pennersr/django-allauth.svg
1616 :target: http://travis-ci.org/pennersr/django-allauth
1717
1818 .. image:: https://img.shields.io/pypi/v/django-allauth.svg
1919 :target: https://pypi.python.org/pypi/django-allauth
2020
21 .. image:: https://coveralls.io/repos/pennersr/django-allauth/badge.png?branch=master
21 .. image:: https://coveralls.io/repos/pennersr/django-allauth/badge.svg?branch=master
2222 :alt: Coverage Status
2323 :target: https://coveralls.io/r/pennersr/django-allauth
2424
102102 Classifier: Operating System :: OS Independent
103103 Classifier: Programming Language :: Python
104104 Classifier: Programming Language :: Python :: 2.7
105 Classifier: Programming Language :: Python :: 3.3
106105 Classifier: Programming Language :: Python :: 3.4
107106 Classifier: Programming Language :: Python :: 3.5
108107 Classifier: Programming Language :: Python :: 3.6
109108 Classifier: Framework :: Django
110 Classifier: Framework :: Django :: 1.8
111 Classifier: Framework :: Django :: 1.10
112109 Classifier: Framework :: Django :: 1.11
110 Classifier: Framework :: Django :: 2.0
11 Welcome to django-allauth!
22 ==========================
33
4 .. image:: https://badge.fury.io/py/django-allauth.png
4 .. image:: https://badge.fury.io/py/django-allauth.svg
55 :target: http://badge.fury.io/py/django-allauth
66
7 .. image:: https://travis-ci.org/pennersr/django-allauth.png
7 .. image:: https://travis-ci.org/pennersr/django-allauth.svg
88 :target: http://travis-ci.org/pennersr/django-allauth
99
1010 .. image:: https://img.shields.io/pypi/v/django-allauth.svg
1111 :target: https://pypi.python.org/pypi/django-allauth
1212
13 .. image:: https://coveralls.io/repos/pennersr/django-allauth/badge.png?branch=master
13 .. image:: https://coveralls.io/repos/pennersr/django-allauth/badge.svg?branch=master
1414 :alt: Coverage Status
1515 :target: https://coveralls.io/r/pennersr/django-allauth
1616
0 """
0 r"""
11 _ ___ __ __ .___________. __ __
22 /\| |/\ / \ | | | | | || | | |
33 \ ` ' / / ^ \ | | | | `---| |----`| |__| |
77
88 """
99
10 VERSION = (0, 34, 0, 'final', 0)
10 VERSION = (0, 35, 0, 'final', 0)
1111
1212 __title__ = 'django-allauth'
1313 __version_info__ = VERSION
1515 VERSION[3], VERSION[4] or '') if VERSION[3] != 'final' else '')
1616 __author__ = 'Raymond Penners'
1717 __license__ = 'MIT'
18 __copyright__ = 'Copyright 2010-2017 Raymond Penners and contributors'
18 __copyright__ = 'Copyright 2010-2018 Raymond Penners and contributors'
88 from django.conf import settings
99 from django.contrib import messages
1010 from django.contrib.auth import (
11 authenticate,
1112 get_backends,
1213 login as django_login,
1314 logout as django_logout,
1415 )
1516 from django.contrib.auth.models import AbstractUser
17 from django.contrib.auth.password_validation import validate_password
1618 from django.contrib.sites.shortcuts import get_current_site
1719 from django.core.cache import cache
1820 from django.core.mail import EmailMessage, EmailMultiAlternatives
2022 from django.shortcuts import resolve_url
2123 from django.template import TemplateDoesNotExist
2224 from django.template.loader import render_to_string
25 from django.urls import reverse
2326 from django.utils import timezone
27 from django.utils.encoding import force_text
2428 from django.utils.translation import ugettext_lazy as _
2529
2630 from . import app_settings
27 from ..compat import authenticate, is_authenticated, reverse, validate_password
2831 from ..utils import (
2932 build_absolute_uri,
3033 email_address_exists,
3235 get_user_model,
3336 import_attribute,
3437 )
35
36
37 try:
38 from django.utils.encoding import force_text
39 except ImportError:
40 from django.utils.encoding import force_unicode as force_text
4138
4239
4340 class DefaultAccountAdapter(object):
144141 that URLs passed explicitly (e.g. by passing along a `next`
145142 GET parameter) take precedence over the value returned here.
146143 """
147 assert is_authenticated(request.user)
144 assert request.user.is_authenticated
148145 url = getattr(settings, "LOGIN_REDIRECT_URLNAME", None)
149146 if url:
150147 warnings.warn("LOGIN_REDIRECT_URLNAME is deprecated, simply"
167164 """
168165 The URL to return to after successful e-mail confirmation.
169166 """
170 if is_authenticated(request.user):
167 if request.user.is_authenticated:
171168 if app_settings.EMAIL_CONFIRMATION_AUTHENTICATED_REDIRECT_URL:
172169 return \
173170 app_settings.EMAIL_CONFIRMATION_AUTHENTICATED_REDIRECT_URL
479476 def authenticate(self, request, **credentials):
480477 """Only authenticates, does not actually login. See `login`"""
481478 self.pre_authenticate(request, **credentials)
482 user = authenticate(request=request, **credentials)
479 user = authenticate(request, **credentials)
483480 if user:
484481 cache_key = self._get_login_attempts_cache_key(
485482 request, **credentials)
495492 data.append(time.mktime(dt.timetuple()))
496493 cache.set(cache_key, data, app_settings.LOGIN_ATTEMPTS_TIMEOUT)
497494
495 def is_ajax(self, request):
496 return request.is_ajax()
497
498498
499499 def get_adapter(request=None):
500500 return import_attribute(app_settings.ADAPTER)(request)
0 import django
10 from django.contrib import admin
21
32 from . import app_settings
109 list_filter = ('primary', 'verified')
1110 search_fields = []
1211 raw_id_fields = ('user',)
13
14 def __init__(self, *args, **kwargs):
15 super(EmailAddressAdmin, self).__init__(*args, **kwargs)
16 if not self.search_fields and django.VERSION[:2] < (1, 7):
17 self.search_fields = self.get_search_fields(None)
1812
1913 def get_search_fields(self, request):
2014 base_fields = get_adapter(request).get_user_search_fields()
140140 """
141141 Minimum password Length
142142 """
143 import django
144143 from django.conf import settings
145144 ret = None
146 has_validators = (
147 django.VERSION[:2] >= (1, 9) and
148 bool(getattr(settings, 'AUTH_PASSWORD_VALIDATORS', [])))
149 if not has_validators:
145 if not settings.AUTH_PASSWORD_VALIDATORS:
150146 ret = self._setting("PASSWORD_MIN_LENGTH", 6)
151147 return ret
152148
77
88 class AuthenticationBackend(ModelBackend):
99
10 def authenticate(self, **credentials):
10 def authenticate(self, request, **credentials):
1111 ret = None
1212 if app_settings.AUTHENTICATION_METHOD == AuthenticationMethod.EMAIL:
1313 ret = self._authenticate_by_email(**credentials)
33 from importlib import import_module
44
55 from django import forms
6 from django.contrib.auth.tokens import default_token_generator
6 from django.contrib.auth.tokens import PasswordResetTokenGenerator
77 from django.contrib.sites.shortcuts import get_current_site
88 from django.core import exceptions, validators
9 from django.urls import reverse
910 from django.utils.translation import pgettext, ugettext, ugettext_lazy as _
1011
1112 from . import app_settings
12 from ..compat import reverse
1313 from ..utils import (
1414 build_absolute_uri,
1515 get_username_max_length,
2323 get_user_model,
2424 perform_login,
2525 setup_user_email,
26 sync_user_email_addresses,
2627 url_str_to_user_pk,
2728 user_email,
2829 user_pk_to_url_str,
2930 user_username,
3031 )
32
33
34 class EmailAwarePasswordResetTokenGenerator(PasswordResetTokenGenerator):
35
36 def _make_hash_value(self, user, timestamp):
37 ret = super(
38 EmailAwarePasswordResetTokenGenerator, self)._make_hash_value(
39 user, timestamp)
40 sync_user_email_addresses(user)
41 emails = set([user.email])
42 emails.update(
43 EmailAddress.objects
44 .filter(user=user)
45 .values_list('email', flat=True))
46 ret += '|'.join(sorted(emails))
47 return ret
48
49
50 default_token_generator = EmailAwarePasswordResetTokenGenerator()
3151
3252
3353 class PasswordVerificationMixin(object):
4969 app_settings.PASSWORD_INPUT_RENDER_VALUE)
5070 kwargs['widget'] = forms.PasswordInput(render_value=render_value,
5171 attrs={'placeholder':
52 _(kwargs.get("label"))})
72 kwargs.get("label")})
5373 super(PasswordField, self).__init__(*args, **kwargs)
5474
5575
352372 def clean(self):
353373 super(SignupForm, self).clean()
354374
355 # `password` cannot by of type `SetPasswordField`, as we don't
375 # `password` cannot be of type `SetPasswordField`, as we don't
356376 # have a `User` yet. So, let's populate a dummy user to be used
357377 # for password validaton.
358378 dummy_user = get_user_model()
558578 def clean(self):
559579 cleaned_data = super(UserTokenForm, self).clean()
560580
561 uidb36 = cleaned_data['uidb36']
562 key = cleaned_data['key']
581 uidb36 = cleaned_data.get('uidb36', None)
582 key = cleaned_data.get('key', None)
583
584 if not key:
585 raise forms.ValidationError(self.error_messages['token_invalid'])
563586
564587 self.reset_user = self._get_user(uidb36)
565588 if (self.reset_user is None or
33 import uuid
44 from datetime import timedelta
55
6 import django
76 from django import forms
87 from django.conf import settings
98 from django.contrib.auth.models import AbstractUser, AnonymousUser
1312 from django.db import models
1413 from django.test.client import Client, RequestFactory
1514 from django.test.utils import override_settings
15 from django.urls import reverse
1616 from django.utils.timezone import now
1717
1818 from allauth.account.forms import BaseSignupForm, SignupForm
2525 from allauth.utils import get_user_model, get_username_max_length
2626
2727 from . import app_settings
28 from ..compat import is_authenticated, reverse
2928 from .adapter import get_adapter
3029 from .auth_backends import AuthenticationBackend
3130 from .signals import user_logged_out
134133
135134 @override_settings(
136135 ACCOUNT_USERNAME_REQUIRED=True,
137 ACCOUNT_SIGNUP_PASSOWRD_ENTER_TWICE=True)
136 ACCOUNT_SIGNUP_PASSWORD_ENTER_TWICE=True)
138137 def test_signup_password_twice_form_error(self):
139138 resp = self.client.post(
140139 reverse('account_signup'),
184183 def _create_user_and_login(self, usable_password=True):
185184 password = 'doe' if usable_password else False
186185 user = self._create_user(password=password)
187 self.client_force_login(user)
186 self.client.force_login(user)
188187 return user
189188
190189 def test_redirect_when_authenticated(self):
283282 self.assertEqual(mail.outbox[0].to, ["john@example.org"])
284283 return user
285284
285 def test_password_reset_flow_with_empty_session(self):
286 """
287 Test the password reset flow when the session is empty:
288 requesting a new password, receiving the reset link via email,
289 following the link, getting redirected to the
290 new link (without the token)
291 Copying the link and using it in a DIFFERENT client (Browser/Device).
292 """
293 # Request new password
294 self._request_new_password()
295 body = mail.outbox[0].body
296 self.assertGreater(body.find('https://'), 0)
297
298 # Extract URL for `password_reset_from_key` view
299 url = body[body.find('/password/reset/'):].split()[0]
300 resp = self.client.get(url)
301
302 reset_pass_url = resp.url
303
304 # Accesing the url via a different session
305 resp = self.client_class().get(reset_pass_url)
306
307 # We should receive the token_fail context_data
308 self.assertTemplateUsed(
309 resp,
310 'account/password_reset_from_key.%s' %
311 app_settings.TEMPLATE_EXTENSION)
312
313 self.assertTrue(resp.context_data['token_fail'])
314
286315 def test_password_reset_flow(self):
287316 """
288317 Tests the password reset flow: requesting a new password,
348377 data = json.loads(response.content.decode('utf8'))
349378 assert 'invalid' in data['form']['errors'][0]
350379
380 def test_password_reset_flow_with_email_changed(self):
381 """
382 Test that the password reset token is invalidated if
383 the user email address was changed.
384 """
385 user = self._request_new_password()
386 body = mail.outbox[0].body
387 self.assertGreater(body.find('https://'), 0)
388 EmailAddress.objects.create(
389 user=user,
390 email='other@email.org')
391 # Extract URL for `password_reset_from_key` view
392 url = body[body.find('/password/reset/'):].split()[0]
393 resp = self.client.get(url)
394 self.assertTemplateUsed(
395 resp,
396 'account/password_reset_from_key.%s' %
397 app_settings.TEMPLATE_EXTENSION)
398 self.assertTrue('token_fail' in resp.context_data)
399
351400 @override_settings(ACCOUNT_LOGIN_ON_PASSWORD_RESET=True)
352401 def test_password_reset_ACCOUNT_LOGIN_ON_PASSWORD_RESET(self):
353402 user = self._request_new_password()
360409 resp.url,
361410 {'password1': 'newpass123',
362411 'password2': 'newpass123'})
363 self.assertTrue(is_authenticated(user))
412 self.assertTrue(user.is_authenticated)
364413 # EmailVerificationMethod.MANDATORY sends us to the confirm-email page
365414 self.assertRedirects(resp, '/confirm-email/')
366415
655704 }
656705 }])
657706 def test_django_password_validation(self):
658 if django.VERSION < (1, 9, ):
659 return
660707 resp = self.client.post(
661708 reverse('account_signup'),
662709 {'username': 'johndoe',
9851032 backend = AuthenticationBackend()
9861033 self.assertEqual(
9871034 backend.authenticate(
1035 request=None,
9881036 username=user.username,
9891037 password=user.username).pk,
9901038 user.pk)
9911039 self.assertEqual(
9921040 backend.authenticate(
1041 request=None,
9931042 username=user.email,
9941043 password=user.username),
9951044 None)
10011050 backend = AuthenticationBackend()
10021051 self.assertEqual(
10031052 backend.authenticate(
1053 request=None,
10041054 username=user.email,
10051055 password=user.username).pk,
10061056 user.pk)
10071057 self.assertEqual(
10081058 backend.authenticate(
1059 request=None,
10091060 username=user.username,
10101061 password=user.username),
10111062 None)
10171068 backend = AuthenticationBackend()
10181069 self.assertEqual(
10191070 backend.authenticate(
1071 request=None,
10201072 username=user.email,
10211073 password=user.username).pk,
10221074 user.pk)
10231075 self.assertEqual(
10241076 backend.authenticate(
1077 request=None,
10251078 username=user.username,
10261079 password=user.username).pk,
10271080 user.pk)
88 from django.db.models import Q
99 from django.http import HttpResponseRedirect
1010 from django.utils import six
11 from django.utils.encoding import force_text
1112 from django.utils.http import urlencode
1213 from django.utils.timezone import now
1314
2324 )
2425 from .adapter import get_adapter
2526 from .app_settings import EmailVerificationMethod
26
27
28 try:
29 from django.utils.encoding import force_text
30 except ImportError:
31 from django.utils.encoding import force_unicode as force_text
3227
3328
3429 def get_next_redirect_url(request, redirect_field_name="next"):
421416 User = get_user_model()
422417 # TODO: Ugh, isn't there a cleaner way to determine whether or not
423418 # the PK is a str-like field?
424 if getattr(User._meta.pk, 'rel', None):
425 pk_field = User._meta.pk.rel.to._meta.pk
419 if getattr(User._meta.pk, 'remote_field', None):
420 pk_field = User._meta.pk.remote_field.to._meta.pk
426421 else:
427422 pk_field = User._meta.pk
428423 if issubclass(type(pk_field), models.UUIDField):
66 HttpResponseRedirect,
77 )
88 from django.shortcuts import redirect
9 from django.urls import reverse, reverse_lazy
910 from django.utils.decorators import method_decorator
1011 from django.views.decorators.debug import sensitive_post_parameters
1112 from django.views.generic.base import TemplateResponseMixin, TemplateView, View
1213 from django.views.generic.edit import FormView
1314
1415 from . import app_settings, signals
15 from ..compat import is_anonymous, is_authenticated, reverse, reverse_lazy
1616 from ..exceptions import ImmediateHttpResponse
1717 from ..utils import get_form_class, get_request_param
1818 from .adapter import get_adapter
4848
4949
5050 def _ajax_response(request, response, form=None, data=None):
51 if request.is_ajax():
51 adapter = get_adapter(request)
52 if adapter.is_ajax(request):
5253 if (isinstance(response, HttpResponseRedirect) or isinstance(
5354 response, HttpResponsePermanentRedirect)):
5455 redirect_to = response['Location']
5556 else:
5657 redirect_to = None
57 response = get_adapter(request).ajax_response(
58 response = adapter.ajax_response(
5859 request,
5960 response,
6061 form=form,
6667 class RedirectAuthenticatedUserMixin(object):
6768
6869 def dispatch(self, request, *args, **kwargs):
69 if is_authenticated(request.user) and \
70 if request.user.is_authenticated and \
7071 app_settings.AUTHENTICATED_LOGIN_REDIRECTS:
7172 redirect_to = self.get_authenticated_redirect_url()
7273 response = HttpResponseRedirect(redirect_to)
113114 return form
114115
115116 def _get_ajax_data_if(self):
116 return self.get_ajax_data() if self.request.is_ajax() else None
117 return (
118 self.get_ajax_data()
119 if get_adapter(self.request).is_ajax(self.request)
120 else None)
117121
118122 def get_ajax_data(self):
119123 return None
322326 if user_pk_str:
323327 user_pk = url_str_to_user_pk(user_pk_str)
324328 user = confirmation.email_address.user
325 if user_pk == user.pk and is_anonymous(self.request.user):
329 if user_pk == user.pk and self.request.user.is_anonymous:
326330 return perform_login(self.request,
327331 user,
328332 app_settings.EmailVerificationMethod.NONE,
758762 def get(self, *args, **kwargs):
759763 if app_settings.LOGOUT_ON_GET:
760764 return self.post(*args, **kwargs)
761 if not is_authenticated(self.request.user):
765 if not self.request.user.is_authenticated:
762766 return redirect(self.get_redirect_url())
763767 ctx = self.get_context_data()
764768 return self.render_to_response(ctx)
765769
766770 def post(self, *args, **kwargs):
767771 url = self.get_redirect_url()
768 if is_authenticated(self.request.user):
772 if self.request.user.is_authenticated:
769773 self.logout()
770774 return redirect(url)
771775
0 import django
10 from django.utils import six
21
32
65 except ImportError:
76 from UserDict import UserDict # noqa
87
9 if django.VERSION > (1, 10,):
10 from django.urls import NoReverseMatch, reverse, reverse_lazy
11 else:
12 from django.core.urlresolvers import NoReverseMatch, reverse, reverse_lazy # noqa
13
148 try:
159 from urllib.parse import parse_qsl, parse_qs, urlparse, urlunparse, urljoin
1610 except ImportError:
1711 from urlparse import parse_qsl, parse_qs, urlparse, urlunparse, urljoin # noqa
18
19 if django.VERSION >= (1, 9, 0):
20 from django.contrib.auth.password_validation import validate_password
21 else:
22 def validate_password(password, user=None, password_validators=None):
23 pass
24
25
26 def template_context_value(context, key):
27 try:
28 value = context[key]
29 except KeyError:
30 value = getattr(context, key)
31 return value
32
33
34 def is_anonymous(user):
35 if django.VERSION > (1, 10,):
36 return user.is_anonymous
37 else:
38 return user.is_anonymous()
39
40
41 def is_authenticated(user):
42 if django.VERSION > (1, 10,):
43 return user.is_authenticated
44 else:
45 return user.is_authenticated()
46
47
48 def authenticate(request=None, **credentials):
49 from django.contrib.auth import authenticate
50 if django.VERSION >= (1, 11, 0):
51 return authenticate(request=request, **credentials)
52 else:
53 return authenticate(**credentials)
5412
5513
5614 def int_to_base36(i):
66 msgstr ""
77 "Project-Id-Version: 0.1\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-10-29 09:56-0500\n"
9 "POT-Creation-Date: 2018-02-02 12:55-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"
1818 "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
1919 "X-Generator: Poedit 1.8.6\n"
2020
21 #: account/adapter.py:48
21 #: account/adapter.py:45
2222 msgid "Username can not be used. Please use other username."
2323 msgstr "اسم المستخدم غير مسموح به. الرجاء اختيار اسم اخر‪.‬"
2424
25 #: account/adapter.py:52
25 #: account/adapter.py:49
2626 msgid "Too many failed login attempts. Try again later."
2727 msgstr ""
2828
29 #: account/adapter.py:54
29 #: account/adapter.py:51
3030 msgid "A user is already registered with this e-mail address."
3131 msgstr "هنالك مستخدم مسجل سابقا مع نفس عنوان البريد الاكتروني‪.‬"
3232
33 #: account/adapter.py:291
33 #: account/adapter.py:288
3434 #, python-brace-format
3535 msgid "Password must be a minimum of {0} characters."
3636 msgstr "كلمة المرور يجب أن لا تقل عن {0} حروف."
3939 msgid "Accounts"
4040 msgstr "الحسابات"
4141
42 #: account/forms.py:41 account/forms.py:378
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:71 account/forms.py:345 account/forms.py:456
46 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4747 msgid "Password"
4848 msgstr "كلمة السر"
4949
50 #: account/forms.py:72
50 #: account/forms.py:92
5151 msgid "Remember Me"
5252 msgstr "ذكرني"
5353
54 #: account/forms.py:78
54 #: account/forms.py:98
5555 msgid "This account is currently inactive."
5656 msgstr "هذا الحساب غير نشط حاليا."
5757
58 #: account/forms.py:81
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:84
62 #: account/forms.py:104
6363 msgid "The username and/or password you specified are not correct."
6464 msgstr "اسم المستخدم و / أو كلمة المرور الذي حددته غير صحيحة."
6565
66 #: account/forms.py:93 account/forms.py:248 account/forms.py:406
67 #: account/forms.py:475
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:95 account/forms.py:281 account/forms.py:401
72 #: account/forms.py:470
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:100 account/forms.py:103 account/forms.py:240
77 #: account/forms.py:244
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:110
81 #: account/forms.py:130
8282 msgid "Username or e-mail"
8383 msgstr "اسم المستخدم أو البريج الالكتروني"
8484
85 #: account/forms.py:113
85 #: account/forms.py:133
8686 msgctxt "field label"
8787 msgid "Login"
8888 msgstr "تسجيل الدخول"
8989
90 #: account/forms.py:272
90 #: account/forms.py:292
9191 #, fuzzy
9292 #| msgid "E-mail (optional)"
9393 msgid "E-mail (again)"
9494 msgstr "البريد الالكتروني ‪)‬اختياري‪(‬"
9595
96 #: account/forms.py:276
96 #: account/forms.py:296
9797 #, fuzzy
9898 #| msgid "email confirmation"
9999 msgid "E-mail address confirmation"
100100 msgstr "تأكيد البريد الإلكتروني"
101101
102 #: account/forms.py:284
102 #: account/forms.py:304
103103 msgid "E-mail (optional)"
104104 msgstr "البريد الالكتروني ‪)‬اختياري‪(‬"
105105
106 #: account/forms.py:325
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:348 account/forms.py:457
112 #: account/forms.py:368 account/forms.py:477
113113 msgid "Password (again)"
114114 msgstr "كلمة السر ‪)‬مرة أخرى‪(‬"
115115
116 #: account/forms.py:412
116 #: account/forms.py:432
117117 msgid "This e-mail address is already associated with this account."
118118 msgstr "عنوان البريد الإلكتروني هذا بالفعل المقترنة مع هذا الحساب."
119119
120 #: account/forms.py:414
120 #: account/forms.py:434
121121 msgid "This e-mail address is already associated with another account."
122122 msgstr "عنوان البريد الإلكتروني هذا مقترن بالفعل بحساب آخر."
123123
124 #: account/forms.py:436
124 #: account/forms.py:456
125125 msgid "Current Password"
126126 msgstr "كلمة المرور الحالية"
127127
128 #: account/forms.py:437 account/forms.py:526
128 #: account/forms.py:457 account/forms.py:546
129129 msgid "New Password"
130130 msgstr "كلمة المرور الجديدة"
131131
132 #: account/forms.py:438 account/forms.py:527
132 #: account/forms.py:458 account/forms.py:547
133133 msgid "New Password (again)"
134134 msgstr "كلمة المرور الجديدة (مرة أخرى)"
135135
136 #: account/forms.py:446
136 #: account/forms.py:466
137137 msgid "Please type your current password."
138138 msgstr "الرجاء كتابة كلمة المرور الحالية الخاصة بك."
139139
140 #: account/forms.py:484
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:548
144 #: account/forms.py:568
145145 msgid "The password reset token was invalid."
146146 msgstr ""
147147
177177 msgid "sent"
178178 msgstr "مبعوث"
179179
180 #: account/models.py:86 socialaccount/models.py:61
180 #: account/models.py:86 socialaccount/models.py:55
181181 msgid "key"
182182 msgstr "مفتاح"
183183
210210 msgid "Social Accounts"
211211 msgstr "الحسابات الاجتماعية"
212212
213 #: socialaccount/models.py:49 socialaccount/models.py:83
213 #: socialaccount/models.py:43 socialaccount/models.py:77
214214 msgid "provider"
215215 msgstr "مزود"
216216
217 #: socialaccount/models.py:52
217 #: socialaccount/models.py:46
218218 msgid "name"
219219 msgstr "اسم"
220220
221 #: socialaccount/models.py:54
221 #: socialaccount/models.py:48
222222 msgid "client id"
223223 msgstr ""
224224
225 #: socialaccount/models.py:56
225 #: socialaccount/models.py:50
226226 msgid "App ID, or consumer key"
227227 msgstr ""
228228
229 #: socialaccount/models.py:57
229 #: socialaccount/models.py:51
230230 msgid "secret key"
231231 msgstr ""
232232
233 #: socialaccount/models.py:59
233 #: socialaccount/models.py:53
234234 msgid "API secret, client secret, or consumer secret"
235235 msgstr ""
236236
237 #: socialaccount/models.py:64
237 #: socialaccount/models.py:58
238238 msgid "Key"
239239 msgstr ""
240240
241 #: socialaccount/models.py:72
241 #: socialaccount/models.py:66
242242 msgid "social application"
243243 msgstr ""
244244
245 #: socialaccount/models.py:73
245 #: socialaccount/models.py:67
246246 msgid "social applications"
247247 msgstr ""
248248
249 #: socialaccount/models.py:96
250 msgid "uid"
251 msgstr ""
252
253 #: socialaccount/models.py:98
254 msgid "last login"
255 msgstr ""
256
257 #: socialaccount/models.py:100
258 msgid "date joined"
259 msgstr ""
260
249261 #: socialaccount/models.py:102
250 msgid "uid"
251 msgstr ""
252
253 #: socialaccount/models.py:104
254 msgid "last login"
262 msgid "extra data"
255263 msgstr ""
256264
257265 #: socialaccount/models.py:106
258 msgid "date joined"
259 msgstr ""
260
261 #: socialaccount/models.py:108
262 msgid "extra data"
263 msgstr ""
264
265 #: socialaccount/models.py:112
266266 msgid "social account"
267267 msgstr ""
268268
269 #: socialaccount/models.py:113
269 #: socialaccount/models.py:107
270270 msgid "social accounts"
271271 msgstr ""
272272
273 #: socialaccount/models.py:139
273 #: socialaccount/models.py:133
274274 msgid "token"
275275 msgstr ""
276276
277 #: socialaccount/models.py:141
277 #: socialaccount/models.py:135
278278 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
279279 msgstr ""
280280
281 #: socialaccount/models.py:144
281 #: socialaccount/models.py:138
282282 msgid "token secret"
283283 msgstr ""
284284
285 #: socialaccount/models.py:140
286 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
287 msgstr ""
288
289 #: socialaccount/models.py:142
290 msgid "expires at"
291 msgstr ""
292
285293 #: socialaccount/models.py:146
286 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
287 msgstr ""
288
289 #: socialaccount/models.py:148
290 msgid "expires at"
291 msgstr ""
292
293 #: socialaccount/models.py:152
294294 msgid "social application token"
295295 msgstr ""
296296
297 #: socialaccount/models.py:153
297 #: socialaccount/models.py:147
298298 msgid "social application tokens"
299299 msgstr ""
300300
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-10-29 09:56-0500\n"
9 "POT-Creation-Date: 2018-02-02 12:55-0600\n"
1010 "PO-Revision-Date: 2014-08-12 00:28+0200\n"
1111 "Last-Translator: Tomas Marcik <tomas.marcik@dolnex.cz>, 2013\n"
1212 "Language-Team: Dolnex Technologies s.r.o. <info@dolnex.cz>\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
1818
19 #: account/adapter.py:48
19 #: account/adapter.py:45
2020 msgid "Username can not be used. Please use other username."
2121 msgstr "Toto uživatelské jméno nemůže být zvoleno. Prosím, zvolte si jiné."
2222
23 #: account/adapter.py:52
23 #: account/adapter.py:49
2424 msgid "Too many failed login attempts. Try again later."
25 msgstr ""
26
27 #: account/adapter.py:54
25 msgstr "Příliš mnoho pokusů o přihlášení. Zkuste to prosím později."
26
27 #: account/adapter.py:51
2828 msgid "A user is already registered with this e-mail address."
2929 msgstr "Uživatel s tímto e-mailem je již registrován."
3030
31 #: account/adapter.py:291
31 #: account/adapter.py:288
3232 #, python-brace-format
3333 msgid "Password must be a minimum of {0} characters."
3434 msgstr "Heslo musí obsahovat minimálně {0} znaků."
3838 msgid "Accounts"
3939 msgstr "Účet"
4040
41 #: account/forms.py:41 account/forms.py:378
41 #: account/forms.py:61 account/forms.py:398
4242 msgid "You must type the same password each time."
4343 msgstr "Hesla se musí shodovat."
4444
45 #: account/forms.py:71 account/forms.py:345 account/forms.py:456
45 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4646 msgid "Password"
4747 msgstr "Heslo"
4848
49 #: account/forms.py:72
49 #: account/forms.py:92
5050 msgid "Remember Me"
5151 msgstr "Zapamatovat"
5252
53 #: account/forms.py:78
53 #: account/forms.py:98
5454 msgid "This account is currently inactive."
5555 msgstr "Účet je v tuto chvíli neaktivní."
5656
57 #: account/forms.py:81
57 #: account/forms.py:101
5858 msgid "The e-mail address and/or password you specified are not correct."
5959 msgstr "Zadaný e-mail nebo heslo není správné."
6060
61 #: account/forms.py:84
61 #: account/forms.py:104
6262 msgid "The username and/or password you specified are not correct."
6363 msgstr "Zadané uživatelské jméno nebo heslo není správné."
6464
65 #: account/forms.py:93 account/forms.py:248 account/forms.py:406
66 #: account/forms.py:475
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-mailová adresa"
6969
70 #: account/forms.py:95 account/forms.py:281 account/forms.py:401
71 #: account/forms.py:470
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:100 account/forms.py:103 account/forms.py:240
76 #: account/forms.py:244
75 #: account/forms.py:120 account/forms.py:123 account/forms.py:260
76 #: account/forms.py:264
7777 msgid "Username"
7878 msgstr "Uživatelské jméno"
7979
80 #: account/forms.py:110
80 #: account/forms.py:130
8181 msgid "Username or e-mail"
8282 msgstr "Uživatelské jméno nebo e-mail"
8383
84 #: account/forms.py:113
84 #: account/forms.py:133
8585 msgctxt "field label"
8686 msgid "Login"
8787 msgstr "Login"
8888
89 #: account/forms.py:272
89 #: account/forms.py:292
9090 #, fuzzy
9191 #| msgid "E-mail (optional)"
9292 msgid "E-mail (again)"
9393 msgstr "E-mail (nepovinné)"
9494
95 #: account/forms.py:276
95 #: account/forms.py:296
9696 #, fuzzy
9797 #| msgid "email confirmation"
9898 msgid "E-mail address confirmation"
9999 msgstr "Potrvzovací e-mail"
100100
101 #: account/forms.py:284
101 #: account/forms.py:304
102102 msgid "E-mail (optional)"
103103 msgstr "E-mail (nepovinné)"
104104
105 #: account/forms.py:325
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 "Hesla se musí shodovat."
110110
111 #: account/forms.py:348 account/forms.py:457
111 #: account/forms.py:368 account/forms.py:477
112112 msgid "Password (again)"
113113 msgstr "Heslo (znovu)"
114114
115 #: account/forms.py:412
115 #: account/forms.py:432
116116 msgid "This e-mail address is already associated with this account."
117117 msgstr "Tento e-mail je již k tomuto účtu přiřazen."
118118
119 #: account/forms.py:414
119 #: account/forms.py:434
120120 msgid "This e-mail address is already associated with another account."
121121 msgstr "Tento e-mail je již přiřazen k jinému účtu."
122122
123 #: account/forms.py:436
123 #: account/forms.py:456
124124 msgid "Current Password"
125125 msgstr "Současné heslo"
126126
127 #: account/forms.py:437 account/forms.py:526
127 #: account/forms.py:457 account/forms.py:546
128128 msgid "New Password"
129129 msgstr "Nové heslo"
130130
131 #: account/forms.py:438 account/forms.py:527
131 #: account/forms.py:458 account/forms.py:547
132132 msgid "New Password (again)"
133133 msgstr "Nové heslo (znovu)"
134134
135 #: account/forms.py:446
135 #: account/forms.py:466
136136 msgid "Please type your current password."
137137 msgstr "Prosím, zadejte svoje současné heslo."
138138
139 #: account/forms.py:484
139 #: account/forms.py:504
140140 msgid "The e-mail address is not assigned to any user account"
141141 msgstr "E-mail není přiřazen k žádnému účtu"
142142
143 #: account/forms.py:548
143 #: account/forms.py:568
144144 msgid "The password reset token was invalid."
145 msgstr ""
145 msgstr "Token pro reset hesla není platný."
146146
147147 #: account/models.py:23
148148 msgid "user"
179179 msgid "sent"
180180 msgstr ""
181181
182 #: account/models.py:86 socialaccount/models.py:61
182 #: account/models.py:86 socialaccount/models.py:55
183183 msgid "key"
184184 msgstr ""
185185
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 ""
200 "Účet s touto e-mailovou adresou již existuje. Prosím přihlaste se nejdříve "
201 "pod tímto účtem a potom připojte svůj %s účet."
200202
201203 #: socialaccount/adapter.py:131
202204 msgid "Your account has no password set up."
211213 msgid "Social Accounts"
212214 msgstr "Účet"
213215
214 #: socialaccount/models.py:49 socialaccount/models.py:83
216 #: socialaccount/models.py:43 socialaccount/models.py:77
215217 msgid "provider"
216218 msgstr ""
217219
218 #: socialaccount/models.py:52
220 #: socialaccount/models.py:46
219221 #, fuzzy
220222 msgid "name"
221223 msgstr "Uživatelské jméno"
222224
223 #: socialaccount/models.py:54
225 #: socialaccount/models.py:48
224226 msgid "client id"
225227 msgstr ""
226228
227 #: socialaccount/models.py:56
229 #: socialaccount/models.py:50
228230 msgid "App ID, or consumer key"
229231 msgstr ""
230232
231 #: socialaccount/models.py:57
233 #: socialaccount/models.py:51
232234 msgid "secret key"
233235 msgstr ""
234236
235 #: socialaccount/models.py:59
237 #: socialaccount/models.py:53
236238 msgid "API secret, client secret, or consumer secret"
237239 msgstr ""
238240
239 #: socialaccount/models.py:64
241 #: socialaccount/models.py:58
240242 msgid "Key"
241243 msgstr ""
242244
243 #: socialaccount/models.py:72
245 #: socialaccount/models.py:66
244246 msgid "social application"
245247 msgstr ""
246248
247 #: socialaccount/models.py:73
249 #: socialaccount/models.py:67
248250 msgid "social applications"
249251 msgstr ""
250252
253 #: socialaccount/models.py:96
254 msgid "uid"
255 msgstr ""
256
257 #: socialaccount/models.py:98
258 msgid "last login"
259 msgstr ""
260
261 #: socialaccount/models.py:100
262 msgid "date joined"
263 msgstr ""
264
251265 #: socialaccount/models.py:102
252 msgid "uid"
253 msgstr ""
254
255 #: socialaccount/models.py:104
256 msgid "last login"
266 msgid "extra data"
257267 msgstr ""
258268
259269 #: socialaccount/models.py:106
260 msgid "date joined"
261 msgstr ""
262
263 #: socialaccount/models.py:108
264 msgid "extra data"
265 msgstr ""
266
267 #: socialaccount/models.py:112
268270 msgid "social account"
269271 msgstr ""
270272
271 #: socialaccount/models.py:113
273 #: socialaccount/models.py:107
272274 msgid "social accounts"
273275 msgstr ""
274276
275 #: socialaccount/models.py:139
277 #: socialaccount/models.py:133
276278 msgid "token"
277279 msgstr ""
278280
279 #: socialaccount/models.py:141
281 #: socialaccount/models.py:135
280282 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
281283 msgstr ""
282284
283 #: socialaccount/models.py:144
285 #: socialaccount/models.py:138
284286 msgid "token secret"
285287 msgstr ""
286288
289 #: socialaccount/models.py:140
290 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
291 msgstr ""
292
293 #: socialaccount/models.py:142
294 msgid "expires at"
295 msgstr ""
296
287297 #: socialaccount/models.py:146
288 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
289 msgstr ""
290
291 #: socialaccount/models.py:148
292 msgid "expires at"
293 msgstr ""
294
295 #: socialaccount/models.py:152
296298 msgid "social application token"
297299 msgstr ""
298300
299 #: socialaccount/models.py:153
301 #: socialaccount/models.py:147
300302 msgid "social application tokens"
301303 msgstr ""
302304
603605 "Forgotten your password? Enter your e-mail address below, and we'll send you "
604606 "an e-mail allowing you to reset it."
605607 msgstr ""
606 "Zapomněli jste heslo? Zadejte prosím svojí e-mailovou adresu a do e-mailové "
608 "Zapomněli jste heslo? Zadejte prosím svoji e-mailovou adresu a do e-mailové "
607609 "schránky Vám přijde návod na jeho obnovu."
608610
609611 #: templates/account/password_reset.html:20
689691 #: templates/account/verified_email_required.html:5
690692 #: templates/account/verified_email_required.html:8
691693 msgid "Verify Your E-mail Address"
692 msgstr "Ověřte svojí e-mailovou adresu."
694 msgstr "Ověřte svoji e-mailovou adresu."
693695
694696 #: templates/account/verification_sent.html:10
695697 #, fuzzy
77 msgstr ""
88 "Project-Id-Version: django-allauth\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2017-10-29 09:56-0500\n"
11 "PO-Revision-Date: 2014-08-12 00:27+0200\n"
12 "Last-Translator: Jannis Vajen\n"
10 "POT-Creation-Date: 2018-02-02 12:55-0600\n"
11 "PO-Revision-Date: 2017-11-04 16:22+0100\n"
12 "Last-Translator: Jannis Vajen <jvajen@gmail.com>\n"
1313 "Language-Team: German (http://www.transifex.com/projects/p/django-allauth/"
1414 "language/de/)\n"
1515 "Language: de\n"
1717 "Content-Type: text/plain; charset=UTF-8\n"
1818 "Content-Transfer-Encoding: 8bit\n"
1919 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
21 #: account/adapter.py:48
20 "X-Generator: Poedit 2.0.4\n"
21
22 #: account/adapter.py:45
2223 msgid "Username can not be used. Please use other username."
2324 msgstr ""
24 "Anmeldename kann nicht genutzt werden. Bitte wähle einen anderen Namen."
25
26 #: account/adapter.py:52
25 "Anmeldename kann nicht verwendet werden. Bitte wähle einen anderen Namen."
26
27 #: account/adapter.py:49
2728 msgid "Too many failed login attempts. Try again later."
2829 msgstr ""
29
30 #: account/adapter.py:54
30 "Zu viele gescheiterte Anmeldeversuche. Bitte versuche es später erneut."
31
32 #: account/adapter.py:51
3133 msgid "A user is already registered with this e-mail address."
3234 msgstr "Es ist bereits jemand mit dieser E-Mail-Adresse registriert."
3335
34 #: account/adapter.py:291
36 #: account/adapter.py:288
3537 #, python-brace-format
3638 msgid "Password must be a minimum of {0} characters."
3739 msgstr "Das Passwort muss aus mindestens {0} Zeichen bestehen."
3840
3941 #: account/apps.py:7
40 #, fuzzy
4142 msgid "Accounts"
42 msgstr "Konto"
43
44 #: account/forms.py:41 account/forms.py:378
43 msgstr "Konten"
44
45 #: account/forms.py:61 account/forms.py:398
4546 msgid "You must type the same password each time."
4647 msgstr "Du musst zweimal das selbe Passwort eingeben."
4748
48 #: account/forms.py:71 account/forms.py:345 account/forms.py:456
49 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4950 msgid "Password"
5051 msgstr "Passwort"
5152
52 #: account/forms.py:72
53 #: account/forms.py:92
5354 msgid "Remember Me"
5455 msgstr "Angemeldet bleiben"
5556
56 #: account/forms.py:78
57 #: account/forms.py:98
5758 msgid "This account is currently inactive."
5859 msgstr "Dieses Konto ist derzeit inaktiv."
5960
60 #: account/forms.py:81
61 #: account/forms.py:101
6162 msgid "The e-mail address and/or password you specified are not correct."
6263 msgstr "Die E-Mail-Adresse und/oder das Passwort sind leider falsch."
6364
64 #: account/forms.py:84
65 #: account/forms.py:104
6566 msgid "The username and/or password you specified are not correct."
6667 msgstr "Der Anmeldename und/oder das Passwort sind leider falsch."
6768
68 #: account/forms.py:93 account/forms.py:248 account/forms.py:406
69 #: account/forms.py:475
69 #: account/forms.py:113 account/forms.py:268 account/forms.py:426
70 #: account/forms.py:495
7071 msgid "E-mail address"
7172 msgstr "E-Mail-Adresse"
7273
73 #: account/forms.py:95 account/forms.py:281 account/forms.py:401
74 #: account/forms.py:470
74 #: account/forms.py:115 account/forms.py:301 account/forms.py:421
75 #: account/forms.py:490
7576 msgid "E-mail"
7677 msgstr "E-Mail"
7778
78 #: account/forms.py:100 account/forms.py:103 account/forms.py:240
79 #: account/forms.py:244
79 #: account/forms.py:120 account/forms.py:123 account/forms.py:260
80 #: account/forms.py:264
8081 msgid "Username"
8182 msgstr "Anmeldename"
8283
83 #: account/forms.py:110
84 #: account/forms.py:130
8485 msgid "Username or e-mail"
8586 msgstr "Anmeldename oder E-Mail"
8687
87 #: account/forms.py:113
88 #: account/forms.py:133
8889 msgctxt "field label"
8990 msgid "Login"
9091 msgstr "Anmeldung"
9192
92 #: account/forms.py:272
93 #, fuzzy
94 #| msgid "E-mail (optional)"
93 #: account/forms.py:292
9594 msgid "E-mail (again)"
96 msgstr "E-Mail (optional)"
97
98 #: account/forms.py:276
99 #, fuzzy
100 #| msgid "email confirmation"
95 msgstr "E-Mail (wiederholen)"
96
97 #: account/forms.py:296
10198 msgid "E-mail address confirmation"
102 msgstr "E-Mail-Bestätigung"
103
104 #: account/forms.py:284
99 msgstr "Bestätigung der E-Mail-Adresse"
100
101 #: account/forms.py:304
105102 msgid "E-mail (optional)"
106103 msgstr "E-Mail (optional)"
107104
108 #: account/forms.py:325
109 #, fuzzy
110 #| msgid "You must type the same password each time."
105 #: account/forms.py:345
111106 msgid "You must type the same email each time."
112 msgstr "Du musst zweimal das selbe Passwort eingeben."
113
114 #: account/forms.py:348 account/forms.py:457
107 msgstr "Du musst zweimal dasselbe Passwort eingeben."
108
109 #: account/forms.py:368 account/forms.py:477
115110 msgid "Password (again)"
116111 msgstr "Passwort (Wiederholung)"
117112
118 #: account/forms.py:412
113 #: account/forms.py:432
119114 msgid "This e-mail address is already associated with this account."
120115 msgstr "Diese E-Mail-Adresse wird bereits in diesem Konto verwendet."
121116
122 #: account/forms.py:414
117 #: account/forms.py:434
123118 msgid "This e-mail address is already associated with another account."
124119 msgstr "Diese E-Mail-Adresse wird bereits in einem anderen Konto verwendet."
125120
126 #: account/forms.py:436
121 #: account/forms.py:456
127122 msgid "Current Password"
128123 msgstr "Aktuelles Passwort"
129124
130 #: account/forms.py:437 account/forms.py:526
125 #: account/forms.py:457 account/forms.py:546
131126 msgid "New Password"
132127 msgstr "Neues Passwort"
133128
134 #: account/forms.py:438 account/forms.py:527
129 #: account/forms.py:458 account/forms.py:547
135130 msgid "New Password (again)"
136131 msgstr "Neues Passwort (Wiederholung)"
137132
138 #: account/forms.py:446
133 #: account/forms.py:466
139134 msgid "Please type your current password."
140135 msgstr "Bitte gib Dein aktuelles Passwort ein."
141136
142 #: account/forms.py:484
137 #: account/forms.py:504
143138 msgid "The e-mail address is not assigned to any user account"
144 msgstr "Diese E-Mail-Adresse ist keinem Konto zugeordnet."
145
146 #: account/forms.py:548
139 msgstr "Diese E-Mail-Adresse ist keinem Konto zugeordnet"
140
141 #: account/forms.py:568
147142 msgid "The password reset token was invalid."
148 msgstr ""
143 msgstr "Das Sicherheits-Token zum Zurücksetzen des Passwortes war ungültig."
149144
150145 #: account/models.py:23
151146 msgid "user"
179174 msgid "sent"
180175 msgstr "Gesendet"
181176
182 #: account/models.py:86 socialaccount/models.py:61
177 #: account/models.py:86 socialaccount/models.py:55
183178 msgid "key"
184179 msgstr "Schlüssel"
185180
209204 msgstr "Dein Konto hat keine bestätigte E-Mail-Adresse."
210205
211206 #: socialaccount/apps.py:7
212 #, fuzzy
213207 msgid "Social Accounts"
214208 msgstr "Konto"
215209
216 #: socialaccount/models.py:49 socialaccount/models.py:83
210 #: socialaccount/models.py:43 socialaccount/models.py:77
217211 msgid "provider"
218 msgstr ""
219
220 #: socialaccount/models.py:52
221 #, fuzzy
212 msgstr "Anbieter"
213
214 #: socialaccount/models.py:46
222215 msgid "name"
223216 msgstr "Anmeldename"
224217
225 #: socialaccount/models.py:54
218 #: socialaccount/models.py:48
226219 msgid "client id"
227 msgstr ""
228
229 #: socialaccount/models.py:56
220 msgstr "Client-ID"
221
222 #: socialaccount/models.py:50
230223 msgid "App ID, or consumer key"
231 msgstr ""
232
233 #: socialaccount/models.py:57
224 msgstr "App-ID oder 'Consumer key'"
225
226 #: socialaccount/models.py:51
234227 msgid "secret key"
235 msgstr ""
236
237 #: socialaccount/models.py:59
228 msgstr "Geheimer Schlüssel"
229
230 #: socialaccount/models.py:53
238231 msgid "API secret, client secret, or consumer secret"
239 msgstr ""
240
241 #: socialaccount/models.py:64
242 #, fuzzy
232 msgstr "'API secret', 'client secret' oder 'consumer secret'"
233
234 #: socialaccount/models.py:58
243235 msgid "Key"
244236 msgstr "Schlüssel"
245237
246 #: socialaccount/models.py:72
238 #: socialaccount/models.py:66
247239 msgid "social application"
248 msgstr ""
249
250 #: socialaccount/models.py:73
240 msgstr "Soziale Anwendung"
241
242 #: socialaccount/models.py:67
251243 msgid "social applications"
252 msgstr ""
244 msgstr "Soziale Anwendungen"
245
246 #: socialaccount/models.py:96
247 msgid "uid"
248 msgstr "UID"
249
250 #: socialaccount/models.py:98
251 msgid "last login"
252 msgstr "Letzte Anmeldung"
253
254 #: socialaccount/models.py:100
255 msgid "date joined"
256 msgstr "Registrierdatum"
253257
254258 #: socialaccount/models.py:102
255 msgid "uid"
256 msgstr ""
257
258 #: socialaccount/models.py:104
259 msgid "last login"
260 msgstr ""
259 msgid "extra data"
260 msgstr "Weitere Daten"
261261
262262 #: socialaccount/models.py:106
263 msgid "date joined"
264 msgstr ""
265
266 #: socialaccount/models.py:108
267 msgid "extra data"
268 msgstr ""
269
270 #: socialaccount/models.py:112
271263 msgid "social account"
272 msgstr ""
273
274 #: socialaccount/models.py:113
264 msgstr "Soziales Konto"
265
266 #: socialaccount/models.py:107
275267 msgid "social accounts"
276 msgstr ""
277
278 #: socialaccount/models.py:139
268 msgstr "Soziale Konten"
269
270 #: socialaccount/models.py:133
279271 msgid "token"
280 msgstr ""
281
282 #: socialaccount/models.py:141
272 msgstr "Token"
273
274 #: socialaccount/models.py:135
283275 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
284 msgstr ""
285
286 #: socialaccount/models.py:144
276 msgstr "\"oauth_token\" (OAuth1) oder \"access token\" (OAuth2)"
277
278 #: socialaccount/models.py:138
287279 msgid "token secret"
288 msgstr ""
280 msgstr "Geheimes Token"
281
282 #: socialaccount/models.py:140
283 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
284 msgstr "\"oauth_token_secret\" (OAuth1) oder \"refresh token\" (OAuth2)"
285
286 #: socialaccount/models.py:142
287 msgid "expires at"
288 msgstr "Läuft ab"
289289
290290 #: socialaccount/models.py:146
291 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
292 msgstr ""
293
294 #: socialaccount/models.py:148
295 msgid "expires at"
296 msgstr ""
297
298 #: socialaccount/models.py:152
299291 msgid "social application token"
300 msgstr ""
301
302 #: socialaccount/models.py:153
292 msgstr "Token für soziale Anwendung"
293
294 #: socialaccount/models.py:147
303295 msgid "social application tokens"
304 msgstr ""
296 msgstr "Tokens für soziale Anwendungen"
305297
306298 #: socialaccount/providers/douban/views.py:36
307299 msgid "Invalid profile data"
308 msgstr ""
300 msgstr "Ungültige Profildaten"
309301
310302 #: socialaccount/providers/oauth/client.py:78
311303 #, python-format
320312 #: socialaccount/providers/oauth/client.py:128
321313 #, python-format
322314 msgid "No request token saved for \"%s\"."
323 msgstr "Kein Request-Token gespeichert für \"%s\""
315 msgstr "Kein Request-Token gespeichert für \"%s\"."
324316
325317 #: socialaccount/providers/oauth/client.py:177
326318 #, python-format
327319 msgid "No access token saved for \"%s\"."
328 msgstr "Kein Access-Token gespeichert für \"%s\""
320 msgstr "Kein Access-Token gespeichert für \"%s\"."
329321
330322 #: socialaccount/providers/oauth/client.py:197
331323 #, python-format
332324 msgid "No access to private resources at \"%s\"."
333 msgstr "Kein Zugriff zu privaten Daten auf \"%s\""
325 msgstr "Kein Zugriff zu privaten Daten auf \"%s\"."
334326
335327 #: templates/account/account_inactive.html:5
336328 #: templates/account/account_inactive.html:8
403395 msgstr "Möchtest du wirklich die ausgewählte E-Mail-Adresse entfernen?"
404396
405397 #: 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"
398 #, python-format
412399 msgid ""
413400 "Hello from %(site_name)s!\n"
414401 "\n"
417404 "\n"
418405 "To confirm this is correct, go to %(activate_url)s\n"
419406 msgstr ""
420 "Nutzer_in %(user_display)s hat diese E-Mailadresse auf %(site_name)s "
421 "angegeben.\n"
407 "Hallo von %(site_name)s!\n"
422408 "\n"
423 "Um dies zu bestätigen, rufe bitte folgende Adresse auf: \n"
424 "%(activate_url)s\n"
409 "Du erhältst diese E-Mail der/die Nutzer/in %(user_display)s deine E-Mail-"
410 "Adresse als seine/ihre angab, um sie mit seinem/ihrem Konto zu verknüpfen.\n"
411 "\n"
412 "Um dies zu bestätigen, rufe bitte folgende Adresse auf: %(activate_url)s\n"
425413
426414 #: templates/account/email/email_confirmation_message.txt:7
427415 #, python-format
429417 "Thank you from %(site_name)s!\n"
430418 "%(site_domain)s"
431419 msgstr ""
420 "Danke von %(site_name)s!\n"
421 "%(site_domain)s"
432422
433423 #: templates/account/email/email_confirmation_subject.txt:3
434 #, fuzzy
435 #| msgid "Confirm E-mail Address"
436424 msgid "Please Confirm Your E-mail Address"
437 msgstr "E-Mail-Adresse bestätigen?"
425 msgstr "Bitte bestätige deine E-Mail-Adresse"
438426
439427 #: templates/account/email/password_reset_key_message.txt:1
440 #, fuzzy, python-format
441 #| msgid ""
442 #| "You're receiving this e-mail because you or someone else has requested a "
443 #| "password for your user account at %(site_domain)s.\n"
444 #| "It can be safely ignored if you did not request a password reset. Click "
445 #| "the link below to reset your password."
428 #, python-format
446429 msgid ""
447430 "Hello from %(site_name)s!\n"
448431 "\n"
451434 "It can be safely ignored if you did not request a password reset. Click the "
452435 "link below to reset your password."
453436 msgstr ""
454 "Du erhälst diese E-Mail, weil Du oder jemand anderes die Zurücksetzung des "
455 "Passworts für dein Konto auf %(site_domain)s erbeten hat. Du kannst diese E-"
456 "Mail ignorieren, wenn Du dein Passwort nicht zurücksetzen möchtest. Um das "
457 "Passwort zurückzusetzen rufe folgende Seite auf:"
437 "Hallo von %(site_name)s!\n"
438 "\n"
439 "Du erhältst diese E-Mail weil du oder jemand anderes die Zurücksetzung des "
440 "Passwortes für dein Konto gefordert hat.\n"
441 "Falls es sich dabei nicht um dich handelt, kann diese Nachricht ignoriert "
442 "werden. Rufe folgende Adresse auf um dein Passwort zurückzusetzen."
458443
459444 #: templates/account/email/password_reset_key_message.txt:8
460445 #, python-format
469454 "Thank you for using %(site_name)s!\n"
470455 "%(site_domain)s"
471456 msgstr ""
457 "Danke dass du %(site_name)s nutzt!\n"
458 "%(site_domain)s"
472459
473460 #: templates/account/email/password_reset_key_subject.txt:3
474461 msgid "Password Reset E-mail"
477464 #: templates/account/email_confirm.html:6
478465 #: templates/account/email_confirm.html:10
479466 msgid "Confirm E-mail Address"
480 msgstr "E-Mail-Adresse bestätigen?"
467 msgstr "E-Mail-Adresse bestätigen"
481468
482469 #: templates/account/email_confirm.html:16
483470 #, python-format
718705 "you are who you claim to be. For this purpose, we require that you\n"
719706 "verify ownership of your e-mail address. "
720707 msgstr ""
721 "Auf diesem Teil der Webseite möchten wie sicher sein,\n"
722 "dass Du derjenige bist, für den Du Dich ausgibst.\n"
723 "Dazu müsstest Du nur Deine E-Mail-Adresse verifizieren lassen."
708 "Auf diesem Teil der Webseite möchten wie sichergehen,\n"
709 "dass du die Person bist für die du dich ausgibst.\n"
710 "Dazu musst du deine E-Mail-Adresse verifizieren. "
724711
725712 #: templates/account/verified_email_required.html:16
726713 msgid ""
66 msgstr ""
77 "Project-Id-Version: \n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-10-29 09:56-0500\n"
9 "POT-Creation-Date: 2018-02-02 12:55-0600\n"
1010 "PO-Revision-Date: 2014-08-12 00:29+0200\n"
1111 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1212 "Language-Team: LANGUAGE <LL@li.org>\n"
1717 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1818 "X-Generator: Poedit 1.6.5\n"
1919
20 #: account/adapter.py:48
20 #: account/adapter.py:45
2121 msgid "Username can not be used. Please use other username."
2222 msgstr ""
2323 "Το όνομα χρήστη δε μπορεί να χρησιμοποιηθεί. Παρακαλούμε χρησιμοποιήστε άλλο "
2424 "όνομα χρήστη."
2525
26 #: account/adapter.py:52
26 #: account/adapter.py:49
2727 msgid "Too many failed login attempts. Try again later."
2828 msgstr ""
2929
30 #: account/adapter.py:54
30 #: account/adapter.py:51
3131 msgid "A user is already registered with this e-mail address."
3232 msgstr "Ένας χρήστης έχει ήδη εγγραφεί με τη συγκεκριμένη διεύθυνση e-mail."
3333
34 #: account/adapter.py:291
34 #: account/adapter.py:288
3535 #, python-brace-format
3636 msgid "Password must be a minimum of {0} characters."
3737 msgstr "Ο κωδικός πρέπει να είναι κατ' ελάχιστο {0} χαρακτήρες."
4040 msgid "Accounts"
4141 msgstr "Λογαριασμοί"
4242
43 #: account/forms.py:41 account/forms.py:378
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:71 account/forms.py:345 account/forms.py:456
47 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4848 msgid "Password"
4949 msgstr "Κωδικός"
5050
51 #: account/forms.py:72
51 #: account/forms.py:92
5252 msgid "Remember Me"
5353 msgstr "Να με θυμάσαι"
5454
55 #: account/forms.py:78
55 #: account/forms.py:98
5656 msgid "This account is currently inactive."
5757 msgstr "Ο λογαριασμός δεν είναι ενεργός"
5858
59 #: account/forms.py:81
59 #: account/forms.py:101
6060 msgid "The e-mail address and/or password you specified are not correct."
6161 msgstr "Η διεύθυνση e-mail ή/και ο κωδικός δεν είναι σωστά."
6262
63 #: account/forms.py:84
63 #: account/forms.py:104
6464 msgid "The username and/or password you specified are not correct."
6565 msgstr "Το όνομα χρήστη ή/και ο κωδικός δεν είναι σωστά."
6666
67 #: account/forms.py:93 account/forms.py:248 account/forms.py:406
68 #: account/forms.py:475
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-mail"
7171
72 #: account/forms.py:95 account/forms.py:281 account/forms.py:401
73 #: account/forms.py:470
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:100 account/forms.py:103 account/forms.py:240
78 #: account/forms.py:244
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:110
82 #: account/forms.py:130
8383 msgid "Username or e-mail"
8484 msgstr "Όνομα χρήστη ή e-mail"
8585
86 #: account/forms.py:113
86 #: account/forms.py:133
8787 msgctxt "field label"
8888 msgid "Login"
8989 msgstr "Σύνδεση"
9090
91 #: account/forms.py:272
91 #: account/forms.py:292
9292 #, fuzzy
9393 #| msgid "E-mail (optional)"
9494 msgid "E-mail (again)"
9595 msgstr "E-mail (προαιρετικό)"
9696
97 #: account/forms.py:276
97 #: account/forms.py:296
9898 #, fuzzy
9999 #| msgid "email confirmation"
100100 msgid "E-mail address confirmation"
101101 msgstr "επιβεβαίωση email"
102102
103 #: account/forms.py:284
103 #: account/forms.py:304
104104 msgid "E-mail (optional)"
105105 msgstr "E-mail (προαιρετικό)"
106106
107 #: account/forms.py:325
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:348 account/forms.py:457
113 #: account/forms.py:368 account/forms.py:477
114114 msgid "Password (again)"
115115 msgstr "Κωδικός (ξανά)"
116116
117 #: account/forms.py:412
117 #: account/forms.py:432
118118 msgid "This e-mail address is already associated with this account."
119119 msgstr "Αυτή η διεύθυνση e-mail έχει ήδη συσχετιστεί με το λογαριασμό."
120120
121 #: account/forms.py:414
121 #: account/forms.py:434
122122 msgid "This e-mail address is already associated with another account."
123123 msgstr "Αυτή η διεύθυνση e-mail έχει ήδη συσχετιστεί με έναν άλλο λογαριασμό."
124124
125 #: account/forms.py:436
125 #: account/forms.py:456
126126 msgid "Current Password"
127127 msgstr "Τρέχον κωδικός"
128128
129 #: account/forms.py:437 account/forms.py:526
129 #: account/forms.py:457 account/forms.py:546
130130 msgid "New Password"
131131 msgstr "Νέος κωδικός"
132132
133 #: account/forms.py:438 account/forms.py:527
133 #: account/forms.py:458 account/forms.py:547
134134 msgid "New Password (again)"
135135 msgstr "Νέος κωδικός (ξανά)"
136136
137 #: account/forms.py:446
137 #: account/forms.py:466
138138 msgid "Please type your current password."
139139 msgstr "Παρακαλούμε συμπληρώσατε τον κωδικό σας."
140140
141 #: account/forms.py:484
141 #: account/forms.py:504
142142 msgid "The e-mail address is not assigned to any user account"
143143 msgstr "Η διεύθυνση e-mail δεν έχει συσχετιστεί με κάποιο λογαριασμό"
144144
145 #: account/forms.py:548
145 #: account/forms.py:568
146146 msgid "The password reset token was invalid."
147147 msgstr ""
148148
178178 msgid "sent"
179179 msgstr "στάλθηκε"
180180
181 #: account/models.py:86 socialaccount/models.py:61
181 #: account/models.py:86 socialaccount/models.py:55
182182 msgid "key"
183183 msgstr "κλειδί"
184184
212212 msgid "Social Accounts"
213213 msgstr "Κοινωνικοί λογαριασμοί"
214214
215 #: socialaccount/models.py:49 socialaccount/models.py:83
215 #: socialaccount/models.py:43 socialaccount/models.py:77
216216 msgid "provider"
217217 msgstr "πάροχος"
218218
219 #: socialaccount/models.py:52
219 #: socialaccount/models.py:46
220220 msgid "name"
221221 msgstr "όνομα"
222222
223 #: socialaccount/models.py:54
223 #: socialaccount/models.py:48
224224 msgid "client id"
225225 msgstr "client id"
226226
227 #: socialaccount/models.py:56
227 #: socialaccount/models.py:50
228228 msgid "App ID, or consumer key"
229229 msgstr "App ID ή consumer key"
230230
231 #: socialaccount/models.py:57
231 #: socialaccount/models.py:51
232232 msgid "secret key"
233233 msgstr "secret key"
234234
235 #: socialaccount/models.py:59
235 #: socialaccount/models.py:53
236236 msgid "API secret, client secret, or consumer secret"
237237 msgstr "API secret, client secret, or consumer secret"
238238
239 #: socialaccount/models.py:64
239 #: socialaccount/models.py:58
240240 msgid "Key"
241241 msgstr "Κλειδί"
242242
243 #: socialaccount/models.py:72
243 #: socialaccount/models.py:66
244244 msgid "social application"
245245 msgstr "κοινωνική εφαρμογή"
246246
247 #: socialaccount/models.py:73
247 #: socialaccount/models.py:67
248248 msgid "social applications"
249249 msgstr "κοινωνικές εφαρμογές"
250250
251 #: socialaccount/models.py:102
251 #: socialaccount/models.py:96
252252 msgid "uid"
253253 msgstr "uid"
254254
255 #: socialaccount/models.py:104
255 #: socialaccount/models.py:98
256256 msgid "last login"
257257 msgstr "τελευταία σύνδεση"
258258
259 #: socialaccount/models.py:106
259 #: socialaccount/models.py:100
260260 msgid "date joined"
261261 msgstr "ημερομηνία εγγραφής"
262262
263 #: socialaccount/models.py:108
263 #: socialaccount/models.py:102
264264 msgid "extra data"
265265 msgstr "επιπλέον πληροφορίες"
266266
267 #: socialaccount/models.py:112
267 #: socialaccount/models.py:106
268268 msgid "social account"
269269 msgstr "κοινωνικός λογαριασμός"
270270
271 #: socialaccount/models.py:113
271 #: socialaccount/models.py:107
272272 msgid "social accounts"
273273 msgstr "κοινωνικοί λογαριασμοί"
274274
275 #: socialaccount/models.py:139
275 #: socialaccount/models.py:133
276276 msgid "token"
277277 msgstr ""
278278
279 #: socialaccount/models.py:141
279 #: socialaccount/models.py:135
280280 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
281281 msgstr "\"oauth_token\" (OAuth1) ή access token (OAuth2)"
282282
283 #: socialaccount/models.py:144
283 #: socialaccount/models.py:138
284284 msgid "token secret"
285285 msgstr "token secret"
286286
287 #: socialaccount/models.py:146
287 #: socialaccount/models.py:140
288288 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
289289 msgstr "\"oauth_token_secret\" (OAuth1) ή refresh token (OAuth2)"
290290
291 #: socialaccount/models.py:148
291 #: socialaccount/models.py:142
292292 msgid "expires at"
293293 msgstr "λήγει στις"
294294
295 #: socialaccount/models.py:152
295 #: socialaccount/models.py:146
296296 msgid "social application token"
297297 msgstr "token κοινωνικής εφαρμογής"
298298
299 #: socialaccount/models.py:153
299 #: socialaccount/models.py:147
300300 msgid "social application tokens"
301301 msgstr "token κοινωνικών εφαρμογών"
302302
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2017-10-29 09:56-0500\n"
10 "POT-Creation-Date: 2018-02-02 12:55-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"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818
19 #: account/adapter.py:48
19 #: account/adapter.py:45
2020 msgid "Username can not be used. Please use other username."
2121 msgstr ""
2222
23 #: account/adapter.py:52
23 #: account/adapter.py:49
2424 msgid "Too many failed login attempts. Try again later."
2525 msgstr ""
2626
27 #: account/adapter.py:54
27 #: account/adapter.py:51
2828 msgid "A user is already registered with this e-mail address."
2929 msgstr ""
3030
31 #: account/adapter.py:291
31 #: account/adapter.py:288
3232 #, python-brace-format
3333 msgid "Password must be a minimum of {0} characters."
3434 msgstr ""
3737 msgid "Accounts"
3838 msgstr ""
3939
40 #: account/forms.py:41 account/forms.py:378
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:71 account/forms.py:345 account/forms.py:456
44 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4545 msgid "Password"
4646 msgstr ""
4747
48 #: account/forms.py:72
48 #: account/forms.py:92
4949 msgid "Remember Me"
5050 msgstr ""
5151
52 #: account/forms.py:78
52 #: account/forms.py:98
5353 msgid "This account is currently inactive."
5454 msgstr ""
5555
56 #: account/forms.py:81
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:84
60 #: account/forms.py:104
6161 msgid "The username and/or password you specified are not correct."
6262 msgstr ""
6363
64 #: account/forms.py:93 account/forms.py:248 account/forms.py:406
65 #: account/forms.py:475
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:95 account/forms.py:281 account/forms.py:401
70 #: account/forms.py:470
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:100 account/forms.py:103 account/forms.py:240
75 #: account/forms.py:244
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:110
79 #: account/forms.py:130
8080 msgid "Username or e-mail"
8181 msgstr ""
8282
83 #: account/forms.py:113
83 #: account/forms.py:133
8484 msgctxt "field label"
8585 msgid "Login"
8686 msgstr ""
8787
88 #: account/forms.py:272
88 #: account/forms.py:292
8989 msgid "E-mail (again)"
9090 msgstr ""
9191
92 #: account/forms.py:276
92 #: account/forms.py:296
9393 msgid "E-mail address confirmation"
9494 msgstr ""
9595
96 #: account/forms.py:284
96 #: account/forms.py:304
9797 msgid "E-mail (optional)"
9898 msgstr ""
9999
100 #: account/forms.py:325
100 #: account/forms.py:345
101101 msgid "You must type the same email each time."
102102 msgstr ""
103103
104 #: account/forms.py:348 account/forms.py:457
104 #: account/forms.py:368 account/forms.py:477
105105 msgid "Password (again)"
106106 msgstr ""
107107
108 #: account/forms.py:412
108 #: account/forms.py:432
109109 msgid "This e-mail address is already associated with this account."
110110 msgstr ""
111111
112 #: account/forms.py:414
112 #: account/forms.py:434
113113 msgid "This e-mail address is already associated with another account."
114114 msgstr ""
115115
116 #: account/forms.py:436
116 #: account/forms.py:456
117117 msgid "Current Password"
118118 msgstr ""
119119
120 #: account/forms.py:437 account/forms.py:526
120 #: account/forms.py:457 account/forms.py:546
121121 msgid "New Password"
122122 msgstr ""
123123
124 #: account/forms.py:438 account/forms.py:527
124 #: account/forms.py:458 account/forms.py:547
125125 msgid "New Password (again)"
126126 msgstr ""
127127
128 #: account/forms.py:446
128 #: account/forms.py:466
129129 msgid "Please type your current password."
130130 msgstr ""
131131
132 #: account/forms.py:484
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:548
136 #: account/forms.py:568
137137 msgid "The password reset token was invalid."
138138 msgstr ""
139139
169169 msgid "sent"
170170 msgstr ""
171171
172 #: account/models.py:86 socialaccount/models.py:61
172 #: account/models.py:86 socialaccount/models.py:55
173173 msgid "key"
174174 msgstr ""
175175
200200 msgid "Social Accounts"
201201 msgstr ""
202202
203 #: socialaccount/models.py:49 socialaccount/models.py:83
203 #: socialaccount/models.py:43 socialaccount/models.py:77
204204 msgid "provider"
205205 msgstr ""
206206
207 #: socialaccount/models.py:52
207 #: socialaccount/models.py:46
208208 msgid "name"
209209 msgstr ""
210210
211 #: socialaccount/models.py:54
211 #: socialaccount/models.py:48
212212 msgid "client id"
213213 msgstr ""
214214
215 #: socialaccount/models.py:56
215 #: socialaccount/models.py:50
216216 msgid "App ID, or consumer key"
217217 msgstr ""
218218
219 #: socialaccount/models.py:57
219 #: socialaccount/models.py:51
220220 msgid "secret key"
221221 msgstr ""
222222
223 #: socialaccount/models.py:59
223 #: socialaccount/models.py:53
224224 msgid "API secret, client secret, or consumer secret"
225225 msgstr ""
226226
227 #: socialaccount/models.py:64
227 #: socialaccount/models.py:58
228228 msgid "Key"
229229 msgstr ""
230230
231 #: socialaccount/models.py:72
231 #: socialaccount/models.py:66
232232 msgid "social application"
233233 msgstr ""
234234
235 #: socialaccount/models.py:73
235 #: socialaccount/models.py:67
236236 msgid "social applications"
237237 msgstr ""
238238
239 #: socialaccount/models.py:96
240 msgid "uid"
241 msgstr ""
242
243 #: socialaccount/models.py:98
244 msgid "last login"
245 msgstr ""
246
247 #: socialaccount/models.py:100
248 msgid "date joined"
249 msgstr ""
250
239251 #: socialaccount/models.py:102
240 msgid "uid"
241 msgstr ""
242
243 #: socialaccount/models.py:104
244 msgid "last login"
252 msgid "extra data"
245253 msgstr ""
246254
247255 #: socialaccount/models.py:106
248 msgid "date joined"
249 msgstr ""
250
251 #: socialaccount/models.py:108
252 msgid "extra data"
253 msgstr ""
254
255 #: socialaccount/models.py:112
256256 msgid "social account"
257257 msgstr ""
258258
259 #: socialaccount/models.py:113
259 #: socialaccount/models.py:107
260260 msgid "social accounts"
261261 msgstr ""
262262
263 #: socialaccount/models.py:139
263 #: socialaccount/models.py:133
264264 msgid "token"
265265 msgstr ""
266266
267 #: socialaccount/models.py:141
267 #: socialaccount/models.py:135
268268 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
269269 msgstr ""
270270
271 #: socialaccount/models.py:144
271 #: socialaccount/models.py:138
272272 msgid "token secret"
273273 msgstr ""
274274
275 #: socialaccount/models.py:140
276 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
277 msgstr ""
278
279 #: socialaccount/models.py:142
280 msgid "expires at"
281 msgstr ""
282
275283 #: socialaccount/models.py:146
276 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
277 msgstr ""
278
279 #: socialaccount/models.py:148
280 msgid "expires at"
281 msgstr ""
282
283 #: socialaccount/models.py:152
284284 msgid "social application token"
285285 msgstr ""
286286
287 #: socialaccount/models.py:153
287 #: socialaccount/models.py:147
288288 msgid "social application tokens"
289289 msgstr ""
290290
66 msgstr ""
77 "Project-Id-Version: django-allauth\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-10-29 09:56-0500\n"
9 "POT-Creation-Date: 2018-02-02 12:55-0600\n"
1010 "PO-Revision-Date: 2014-08-12 00:30+0200\n"
1111 "Last-Translator: Jannis Š\n"
1212 "Language-Team: Spanish (http://www.transifex.com/projects/p/django-allauth/"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919
20 #: account/adapter.py:48
20 #: account/adapter.py:45
2121 msgid "Username can not be used. Please use other username."
22 msgstr "Este nombre de usuario no puede ser usado. Por favor ingrese otro."
23
24 #: account/adapter.py:52
22 msgstr "Este nombre de usuario no puede ser usado. Por favor ingresa otro."
23
24 #: account/adapter.py:49
2525 msgid "Too many failed login attempts. Try again later."
26 msgstr ""
27
28 #: account/adapter.py:54
26 msgstr "Demasiados intentos fallidos, intenta más tarde."
27
28 #: account/adapter.py:51
2929 msgid "A user is already registered with this e-mail address."
3030 msgstr "Un usuario ya fue registrado con esta dirección de correo electrónico."
3131
32 #: account/adapter.py:291
32 #: account/adapter.py:288
3333 #, python-brace-format
3434 msgid "Password must be a minimum of {0} characters."
3535 msgstr "Una contraseña necesita al menos {0} caracteres."
3838 msgid "Accounts"
3939 msgstr "Cuentas"
4040
41 #: account/forms.py:41 account/forms.py:378
41 #: account/forms.py:61 account/forms.py:398
4242 msgid "You must type the same password each time."
43 msgstr "Tiene que escribir la misma contraseña cada vez."
44
45 #: account/forms.py:71 account/forms.py:345 account/forms.py:456
43 msgstr "Debes escribir la misma contraseña cada vez."
44
45 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4646 msgid "Password"
4747 msgstr "Contraseña"
4848
49 #: account/forms.py:72
49 #: account/forms.py:92
5050 msgid "Remember Me"
5151 msgstr "Recordarme"
5252
53 #: account/forms.py:78
53 #: account/forms.py:98
5454 msgid "This account is currently inactive."
5555 msgstr "Esta cuenta está desactivada actualmente."
5656
57 #: account/forms.py:81
57 #: account/forms.py:101
5858 msgid "The e-mail address and/or password you specified are not correct."
5959 msgstr ""
6060 "El correo electrónico y/o la contraseña que especificaste no son correctos."
6161
62 #: account/forms.py:84
62 #: account/forms.py:104
6363 msgid "The username and/or password you specified are not correct."
6464 msgstr "El usuario y/o la contraseña que especificaste no son correctos."
6565
66 #: account/forms.py:93 account/forms.py:248 account/forms.py:406
67 #: account/forms.py:475
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 "Correo electrónico"
7070
71 #: account/forms.py:95 account/forms.py:281 account/forms.py:401
72 #: account/forms.py:470
71 #: account/forms.py:115 account/forms.py:301 account/forms.py:421
72 #: account/forms.py:490
7373 msgid "E-mail"
7474 msgstr "Correo electrónico"
7575
76 #: account/forms.py:100 account/forms.py:103 account/forms.py:240
77 #: account/forms.py:244
76 #: account/forms.py:120 account/forms.py:123 account/forms.py:260
77 #: account/forms.py:264
7878 msgid "Username"
7979 msgstr "Usuario"
8080
81 #: account/forms.py:110
81 #: account/forms.py:130
8282 msgid "Username or e-mail"
8383 msgstr "Nombre de usuario o correo electrónico"
8484
85 #: account/forms.py:113
85 #: account/forms.py:133
8686 msgctxt "field label"
8787 msgid "Login"
8888 msgstr "Iniciar sesión"
8989
90 #: account/forms.py:272
90 #: account/forms.py:292
9191 #, fuzzy
9292 #| msgid "E-mail (optional)"
9393 msgid "E-mail (again)"
9494 msgstr "Correo Electrónico (opcional)"
9595
96 #: account/forms.py:276
96 #: account/forms.py:296
9797 #, fuzzy
9898 #| msgid "email confirmation"
9999 msgid "E-mail address confirmation"
100100 msgstr "confirmación de correo electrónico"
101101
102 #: account/forms.py:284
102 #: account/forms.py:304
103103 msgid "E-mail (optional)"
104104 msgstr "Correo Electrónico (opcional)"
105105
106 #: account/forms.py:325
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."
110 msgstr "Tiene que escribir la misma contraseña cada vez."
111
112 #: account/forms.py:348 account/forms.py:457
110 msgstr "Debes escribir la misma contraseña cada vez."
111
112 #: account/forms.py:368 account/forms.py:477
113113 msgid "Password (again)"
114114 msgstr "Contraseña (de nuevo)"
115115
116 #: account/forms.py:412
116 #: account/forms.py:432
117117 msgid "This e-mail address is already associated with this account."
118118 msgstr "Este correo electrónico ya está asociado con esta cuenta."
119119
120 #: account/forms.py:414
120 #: account/forms.py:434
121121 msgid "This e-mail address is already associated with another account."
122122 msgstr "Este correo electrónico ya está asociado con otra cuenta."
123123
124 #: account/forms.py:436
124 #: account/forms.py:456
125125 msgid "Current Password"
126126 msgstr "Contraseña actual"
127127
128 #: account/forms.py:437 account/forms.py:526
128 #: account/forms.py:457 account/forms.py:546
129129 msgid "New Password"
130130 msgstr "Nueva contraseña"
131131
132 #: account/forms.py:438 account/forms.py:527
132 #: account/forms.py:458 account/forms.py:547
133133 msgid "New Password (again)"
134134 msgstr "Nueva contraseña (de nuevo)"
135135
136 #: account/forms.py:446
136 #: account/forms.py:466
137137 msgid "Please type your current password."
138 msgstr "Por favor, escriba su contraseña actual."
139
140 #: account/forms.py:484
138 msgstr "Por favor, escribe tu contraseña actual."
139
140 #: account/forms.py:504
141141 msgid "The e-mail address is not assigned to any user account"
142142 msgstr ""
143143 "La dirección de correo electrónico no está asignada a ninguna cuenta de "
144144 "usuario"
145145
146 #: account/forms.py:548
146 #: account/forms.py:568
147147 msgid "The password reset token was invalid."
148148 msgstr ""
149149
179179 msgid "sent"
180180 msgstr "enviado"
181181
182 #: account/models.py:86 socialaccount/models.py:61
182 #: account/models.py:86 socialaccount/models.py:55
183183 msgid "key"
184184 msgstr ""
185185
198198 "account first, then connect your %s account."
199199 msgstr ""
200200 "Ya existe una cuenta asociada a esta dirección de correo electrónico. Por "
201 "favor, autentíquese usando esa cuenta, y luego vincule su cuenta de %s."
201 "favor, autentícate usando esa cuenta, y luego vincula tu cuenta de %s."
202202
203203 #: socialaccount/adapter.py:131
204204 msgid "Your account has no password set up."
205 msgstr "Su cuenta no tiene una contraseña definida."
205 msgstr "Tu cuenta no tiene una contraseña definida."
206206
207207 #: socialaccount/adapter.py:138
208208 msgid "Your account has no verified e-mail address."
209 msgstr "Su cuenta no tiene un correo electrónico verificado."
209 msgstr "Tu cuenta no tiene un correo electrónico verificado."
210210
211211 #: socialaccount/apps.py:7
212212 msgid "Social Accounts"
213213 msgstr "Cuentas Sociales"
214214
215 #: socialaccount/models.py:49 socialaccount/models.py:83
215 #: socialaccount/models.py:43 socialaccount/models.py:77
216216 msgid "provider"
217217 msgstr "proveedor"
218218
219 #: socialaccount/models.py:52
219 #: socialaccount/models.py:46
220220 msgid "name"
221221 msgstr "nombre"
222222
223 #: socialaccount/models.py:54
223 #: socialaccount/models.py:48
224224 msgid "client id"
225225 msgstr ""
226226
227 #: socialaccount/models.py:56
227 #: socialaccount/models.py:50
228228 msgid "App ID, or consumer key"
229229 msgstr ""
230230
231 #: socialaccount/models.py:57
231 #: socialaccount/models.py:51
232232 msgid "secret key"
233233 msgstr ""
234234
235 #: socialaccount/models.py:59
235 #: socialaccount/models.py:53
236236 msgid "API secret, client secret, or consumer secret"
237237 msgstr ""
238238
239 #: socialaccount/models.py:64
239 #: socialaccount/models.py:58
240240 msgid "Key"
241241 msgstr ""
242242
243 #: socialaccount/models.py:72
243 #: socialaccount/models.py:66
244244 msgid "social application"
245245 msgstr ""
246246
247 #: socialaccount/models.py:73
247 #: socialaccount/models.py:67
248248 msgid "social applications"
249249 msgstr ""
250250
251 #: socialaccount/models.py:102
251 #: socialaccount/models.py:96
252252 msgid "uid"
253253 msgstr ""
254254
255 #: socialaccount/models.py:104
255 #: socialaccount/models.py:98
256256 msgid "last login"
257257 msgstr "último inicio de sesión"
258258
259 #: socialaccount/models.py:100
260 msgid "date joined"
261 msgstr ""
262
263 #: socialaccount/models.py:102
264 msgid "extra data"
265 msgstr ""
266
259267 #: socialaccount/models.py:106
260 msgid "date joined"
261 msgstr ""
262
263 #: socialaccount/models.py:108
264 msgid "extra data"
265 msgstr ""
266
267 #: socialaccount/models.py:112
268268 msgid "social account"
269269 msgstr ""
270270
271 #: socialaccount/models.py:113
271 #: socialaccount/models.py:107
272272 msgid "social accounts"
273273 msgstr ""
274274
275 #: socialaccount/models.py:139
275 #: socialaccount/models.py:133
276276 msgid "token"
277277 msgstr ""
278278
279 #: socialaccount/models.py:141
279 #: socialaccount/models.py:135
280280 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
281281 msgstr ""
282282
283 #: socialaccount/models.py:144
283 #: socialaccount/models.py:138
284284 msgid "token secret"
285285 msgstr ""
286286
287 #: socialaccount/models.py:140
288 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
289 msgstr ""
290
291 #: socialaccount/models.py:142
292 msgid "expires at"
293 msgstr ""
294
287295 #: socialaccount/models.py:146
288 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
289 msgstr ""
290
291 #: socialaccount/models.py:148
292 msgid "expires at"
293 msgstr ""
294
295 #: socialaccount/models.py:152
296296 msgid "social application token"
297297 msgstr ""
298298
299 #: socialaccount/models.py:153
299 #: socialaccount/models.py:147
300300 msgid "social application tokens"
301301 msgstr ""
302302
332332 #: templates/account/account_inactive.html:5
333333 #: templates/account/account_inactive.html:8
334334 msgid "Account Inactive"
335 msgstr "Cuenta Desactivada"
335 msgstr "Cuenta desactivada"
336336
337337 #: templates/account/account_inactive.html:10
338338 msgid "This account is inactive."
339 msgstr "Su cuenta está desactivada."
339 msgstr "Esta cuenta está desactivada."
340340
341341 #: templates/account/email.html:5
342342 msgid "Account"
385385 "an e-mail address so you can receive notifications, reset your password, etc."
386386 msgstr ""
387387 "Actualmente no tienes ninguna dirección de correo electrónico definida. "
388 "Debes añadir una dirección de correo electrónico para que pueda recibir "
388 "Debes añadir una dirección de correo electrónico para poder recibir "
389389 "notificaciones, restablecer la contraseña, etc."
390390
391391 #: templates/account/email.html:48
399399 #: templates/account/email.html:62
400400 msgid "Do you really want to remove the selected e-mail address?"
401401 msgstr ""
402 "¿Está seguro de querer eliminar la dirección de correo electrónico "
402 "¿Estás seguro de querer eliminar la dirección de correo electrónico "
403403 "seleccionada?"
404404
405405 #: templates/account/email/email_confirmation_message.txt:1
420420 "El usuario %(user_display)s de %(site_name)s ha proporcionado este como su "
421421 "correo electrónico.\n"
422422 "\n"
423 "Para confirmar que esto es correcto, haga clic en %(activate_url)s\n"
423 "Para confirmar que esto es correcto, haz clic en %(activate_url)s\n"
424424
425425 #: templates/account/email/email_confirmation_message.txt:7
426426 #, python-format
450450 "It can be safely ignored if you did not request a password reset. Click the "
451451 "link below to reset your password."
452452 msgstr ""
453 "Ha recibido este correo porque usted u otra persona ha pedido una nueva "
453 "Has recibido este correo porque tú u otra persona han pedido una nueva "
454454 "contraseña para su cuenta en %(site_domain)s.\n"
455 "Si usted no pidió restablecer su contraseña, ignore este correo. Haga clic "
456 "en el enlace de abajo para restablecer su contraseña."
455 "Si tú no pediste restablecer tu contraseña, ignora este correo. Haz clic en "
456 "el enlace de abajo para restablecer tu contraseña."
457457
458458 #: templates/account/email/password_reset_key_message.txt:8
459459 #, python-format
460460 msgid "In case you forgot, your username is %(username)s."
461 msgstr "En caso de haber olvidado su nombre de usuario, es %(username)s."
461 msgstr "En caso de haber olvidado tu nombre de usuario, es %(username)s."
462462
463463 #: templates/account/email/password_reset_key_message.txt:10
464464 #, python-format
482482 "Please confirm that <a href=\"mailto:%(email)s\">%(email)s</a> is an e-mail "
483483 "address for user %(user_display)s."
484484 msgstr ""
485 "Por favor confirme que <a href=\"mailto:%(email)s\">%(email)s</a> es una "
485 "Por favor confirma que <a href=\"mailto:%(email)s\">%(email)s</a> es una "
486486 "dirección de correo electrónico del usuario %(user_display)s."
487487
488488 #: templates/account/email_confirm.html:20
496496 "\"%(email_url)s\">issue a new e-mail confirmation request</a>."
497497 msgstr ""
498498 "Este enlace de verificación de correo ha expirado o es inválido. Por favor "
499 "<a href=\"%(email_url)s\">solicite una nueva verificación por correo "
499 "<a href=\"%(email_url)s\">solicita una nueva verificación por correo "
500500 "electrónico.</a>."
501501
502502 #: templates/account/login.html:6 templates/account/login.html:10
512512 "up</a>\n"
513513 "for a %(site_name)s account and sign in below:"
514514 msgstr ""
515 "Por favor inicie sesión con una\n"
515 "Por favor inicia sesión con una\n"
516516 "cuenta de otra red social. O, <a href=\"%(signup_url)s\">regístrese</a> \n"
517 "como usuario de %(site_name)s e inicie sesión a continuación:"
517 "como usuario de %(site_name)s e inicia sesión a continuación:"
518518
519519 #: templates/account/login.html:25
520520 msgid "or"
531531
532532 #: templates/account/login.html:42
533533 msgid "Forgot Password?"
534 msgstr "¿Olvidó su contraseña?"
534 msgstr "¿Olvidaste tu contraseña?"
535535
536536 #: templates/account/logout.html:5 templates/account/logout.html:8
537537 #: templates/account/logout.html:17
540540
541541 #: templates/account/logout.html:10
542542 msgid "Are you sure you want to sign out?"
543 msgstr "¿Está seguro de querer cerrar sesión?"
543 msgstr "¿Estás seguro de querer cerrar sesión?"
544544
545545 #: templates/account/messages/cannot_delete_primary_email.txt:2
546546 #, python-format
547547 msgid "You cannot remove your primary e-mail address (%(email)s)."
548 msgstr "No puede eliminar su correo electrónico principal (%(email)s)."
548 msgstr "No puedes eliminar tu correo electrónico principal (%(email)s)."
549549
550550 #: templates/account/messages/email_confirmation_sent.txt:2
551551 #, python-format
555555 #: templates/account/messages/email_confirmed.txt:2
556556 #, python-format
557557 msgid "You have confirmed %(email)s."
558 msgstr "Ha confirmado %(email)s."
558 msgstr "Has confirmado %(email)s."
559559
560560 #: templates/account/messages/email_deleted.txt:2
561561 #, python-format
565565 #: templates/account/messages/logged_in.txt:4
566566 #, python-format
567567 msgid "Successfully signed in as %(name)s."
568 msgstr "Ha iniciado sesión exitosamente como %(name)s."
568 msgstr "Has iniciado sesión exitosamente como %(name)s."
569569
570570 #: templates/account/messages/logged_out.txt:2
571571 msgid "You have signed out."
585585
586586 #: templates/account/messages/unverified_primary_email.txt:2
587587 msgid "Your primary e-mail address must be verified."
588 msgstr "Su dirección principal de correo eletrónico debe ser verificado."
588 msgstr "Tu dirección principal de correo eletrónico debe ser verificado."
589589
590590 #: templates/account/password_change.html:5
591591 #: templates/account/password_change.html:8
609609 "Forgotten your password? Enter your e-mail address below, and we'll send you "
610610 "an e-mail allowing you to reset it."
611611 msgstr ""
612 "¿Ha olvidado su contraseña? Ingrese su correo electrónico y le enviaremos un "
613 "correo que le permitirá restablecerla."
612 "¿Has olvidado tu contraseña? Ingresa tu correo electrónico y te enviaremos "
613 "un correo que te permitirá restablecerla."
614614
615615 #: templates/account/password_reset.html:20
616616 msgid "Reset My Password"
619619 #: templates/account/password_reset.html:23
620620 msgid "Please contact us if you have any trouble resetting your password."
621621 msgstr ""
622 "Si tiene alguna dificultad para restablecer su contraseña, por favor "
623 "contáctenos."
622 "Si tiene alguna dificultad para restablecer tu contraseña, por favor "
623 "contáctanos."
624624
625625 #: templates/account/password_reset_done.html:15
626626 msgid ""
627627 "We have sent you an e-mail. Please contact us if you do not receive it "
628628 "within a few minutes."
629629 msgstr ""
630 "Le hemos enviado un correo electrónico. Por favor contáctenos si no recibe "
630 "Te hemos enviado un correo electrónico. Por favor contáctanos si no recibes "
631631 "el correo en unos minutos."
632632
633633 #: templates/account/password_reset_from_key.html:7
634634 msgid "Bad Token"
635 msgstr "Hay problema con el token"
635 msgstr "Hay un problema con el token"
636636
637637 #: templates/account/password_reset_from_key.html:11
638638 #, python-format
642642 "a>."
643643 msgstr ""
644644 "El enlace para restablecer la contraseña es inválido, probablemente porque "
645 "ya ha sido utilizado. Por favor solicite <a href=\"%(passwd_reset_url)s"
645 "ya ha sido utilizado. Por favor solicita <a href=\"%(passwd_reset_url)s"
646646 "\">retablecer la contraseña de nuevo</a>."
647647
648648 #: templates/account/password_reset_from_key.html:17
652652 #: templates/account/password_reset_from_key.html:20
653653 #: templates/account/password_reset_from_key_done.html:8
654654 msgid "Your password is now changed."
655 msgstr "Su contraseña ha cambiado."
655 msgstr "Tu contraseña ha cambiado."
656656
657657 #: templates/account/password_set.html:5 templates/account/password_set.html:8
658658 #: templates/account/password_set.html:13
673673 msgid ""
674674 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
675675 msgstr ""
676 "¿Ya tiene una cuenta? Por favor <a href=\"%(login_url)s\">inicie sesión</a>."
676 "¿Ya tienes una cuenta? Por favor <a href=\"%(login_url)s\">inicia sesión</a>."
677677
678678 #: templates/account/signup_closed.html:5
679679 #: templates/account/signup_closed.html:8
691691 #: templates/account/snippets/already_logged_in.html:5
692692 #, python-format
693693 msgid "you are already logged in as %(user_display)s."
694 msgstr "ha iniciado sesión como %(user_display)s."
694 msgstr "has iniciado sesión como %(user_display)s."
695695
696696 #: templates/account/verification_sent.html:5
697697 #: templates/account/verification_sent.html:8
706706 "finalize the signup process. Please contact us if you do not receive it "
707707 "within a few minutes."
708708 msgstr ""
709 "Le hemos enviado un correo electrónico para su verificación. Siga el enlace "
710 "para completar el proceso de registro. Por favor contáctenos si no recibe el "
711 "correo en unos minutos."
709 "Te hemos enviado un correo electrónico para tu verificación. Sigue el enlace "
710 "para completar el proceso de registro. Por favor contáctanos si no recibes "
711 "el correo en unos minutos."
712712
713713 #: templates/account/verified_email_required.html:12
714714 msgid ""
716716 "you are who you claim to be. For this purpose, we require that you\n"
717717 "verify ownership of your e-mail address. "
718718 msgstr ""
719 "Esta parte del sitio requiere que verifiquemos que usted es quien dice ser. "
720 "Para este fin, pedimos que verifique que es el dueño de su correo "
719 "Esta parte del sitio requiere que verifiquemos que tu eres quien dices ser. "
720 "Para este fin, pedimos que verifiques que eres el dueño de tu correo "
721721 "electrónico. "
722722
723723 #: templates/account/verified_email_required.html:16
726726 "verification. Please click on the link inside this e-mail. Please\n"
727727 "contact us if you do not receive it within a few minutes."
728728 msgstr ""
729 "Le hemos enviado un correo electrónico para su verificación. Por favor, haga "
730 "clic en el enlace de este correo. Por favor contáctenos si no recibe el "
729 "Te hemos enviado un correo electrónico para tu verificación. Por favor, haz "
730 "clic en el enlace de este correo. Por favor contáctanos si no recibes el "
731731 "correo en unos minutos."
732732
733733 #: templates/account/verified_email_required.html:20
736736 "<strong>Note:</strong> you can still <a href=\"%(email_url)s\">change your e-"
737737 "mail address</a>."
738738 msgstr ""
739 "<strong>Nota:</strong> todavía puede <a href=\"%(email_url)s\">cambiar su "
739 "<strong>Nota:</strong> todavía puede <a href=\"%(email_url)s\">cambiar tu "
740740 "dirección de correo electrónico</a>."
741741
742742 #: templates/openid/login.html:9
764764 msgid ""
765765 "You can sign in to your account using any of the following third party "
766766 "accounts:"
767 msgstr "Puede iniciar sesión con alguna de las siguientes cuentas externas:"
767 msgstr "Puedes iniciar sesión con alguna de las siguientes cuentas externas:"
768768
769769 #: templates/socialaccount/connections.html:43
770770 msgid ""
771771 "You currently have no social network accounts connected to this account."
772772 msgstr ""
773 "Actualmente no tiene ninguna cuenta de red social asociada a esta cuenta."
773 "Actualmente no tienes ninguna cuenta de red social asociada a esta cuenta."
774774
775775 #: templates/socialaccount/connections.html:46
776776 msgid "Add a 3rd Party Account"
788788 "accounts. If this was a mistake, please proceed to <a href=\"%(login_url)s"
789789 "\">sign in</a>."
790790 msgstr ""
791 "Ha decidido cancelar el inicio de sesión a nuestro sitio usando las "
791 "Has decidido cancelar el inicio de sesión a nuestro sitio usando las "
792792 "siguientes cuentas. Si esto fue un error, <a href=\"%(login_url)s\">inicie "
793793 "sesión</a>."
794794
810810 "You are about to use your %(provider_name)s account to login to\n"
811811 "%(site_name)s. As a final step, please complete the following form:"
812812 msgstr ""
813 "Esta a punto de utilizar su cuenta %(provider_name)s para acceder a "
814 "%(site_name)s. Como paso final, por favor complete el siguiente formulario:"
813 "Estas a punto de utilizar tu cuenta %(provider_name)s para acceder a "
814 "%(site_name)s. Como paso final, por favor completa el siguiente formulario:"
815815
816816 #~ msgid "The login and/or password you specified are not correct."
817817 #~ msgstr ""
824824 #~ "+/-/_."
825825
826826 #~ msgid "This username is already taken. Please choose another."
827 #~ msgstr "Este usuario ya está en uso. Por favor elija otro."
827 #~ msgstr "Este usuario ya está en uso. Por favor elije otro."
828828
829829 #, fuzzy
830830 #~| msgid "Sign In"
835835 #~ "You have confirmed that <a href=\"mailto:%(email)s\">%(email)s</a> is an "
836836 #~ "e-mail address for user %(user_display)s."
837837 #~ msgstr ""
838 #~ "Usted ha confirmado que <a href=\"mailto:%(email)s\">%(email)s</a> es una "
838 #~ "Has confirmado que <a href=\"mailto:%(email)s\">%(email)s</a> es una "
839839 #~ "dirección de correo electrónico del usuario %(user_display)s."
840840
841841 #~ msgid "Thanks for using our site!"
859859 #~ msgstr "Contraseña Eliminada"
860860
861861 #~ msgid "Your password has been deleted."
862 #~ msgstr "Su contraseña fue eliminada."
862 #~ msgstr "Tu contraseña fue eliminada."
55 msgstr ""
66 "Project-Id-Version: \n"
77 "Report-Msgid-Bugs-To: \n"
8 "POT-Creation-Date: 2017-10-29 09:56-0500\n"
8 "POT-Creation-Date: 2018-02-02 12:55-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"
1515 "Content-Transfer-Encoding: 8bit\n"
1616 "X-Generator: Poedit 1.7.4\n"
1717
18 #: account/adapter.py:48
18 #: account/adapter.py:45
1919 msgid "Username can not be used. Please use other username."
2020 msgstr "این نام‌کاربری نمی‌تواند انتخاب شود، لطفا یک نام‌کاربری دیگر انتخاب کنید"
2121
22 #: account/adapter.py:52
22 #: account/adapter.py:49
2323 msgid "Too many failed login attempts. Try again later."
2424 msgstr ""
2525
26 #: account/adapter.py:54
26 #: account/adapter.py:51
2727 msgid "A user is already registered with this e-mail address."
2828 msgstr "کاربر دیگری قبلا با این نام کاربری ثبت نام کرده است."
2929
30 #: account/adapter.py:291
30 #: account/adapter.py:288
3131 #, python-brace-format
3232 msgid "Password must be a minimum of {0} characters."
3333 msgstr "پسورد تنها می‌تواند دارای {0} کاراکتر باشد."
3737 msgid "Accounts"
3838 msgstr "حساب کاربری"
3939
40 #: account/forms.py:41 account/forms.py:378
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:71 account/forms.py:345 account/forms.py:456
44 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4545 msgid "Password"
4646 msgstr "رمز عبور"
4747
48 #: account/forms.py:72
48 #: account/forms.py:92
4949 msgid "Remember Me"
5050 msgstr "مرا به خاطر بسپار"
5151
52 #: account/forms.py:78
52 #: account/forms.py:98
5353 msgid "This account is currently inactive."
5454 msgstr "این حساب کاربری درحال حاضر غیرفعال است"
5555
56 #: account/forms.py:81
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:84
60 #: account/forms.py:104
6161 msgid "The username and/or password you specified are not correct."
6262 msgstr "نام کاربری یا رمز عبور صحیح نمی‌باشد."
6363
64 #: account/forms.py:93 account/forms.py:248 account/forms.py:406
65 #: account/forms.py:475
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:95 account/forms.py:281 account/forms.py:401
70 #: account/forms.py:470
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:100 account/forms.py:103 account/forms.py:240
75 #: account/forms.py:244
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:110
79 #: account/forms.py:130
8080 msgid "Username or e-mail"
8181 msgstr "نام کاربری یا ایمیل"
8282
83 #: account/forms.py:113
83 #: account/forms.py:133
8484 msgctxt "field label"
8585 msgid "Login"
8686 msgstr "ورود"
8787
88 #: account/forms.py:272
88 #: account/forms.py:292
8989 #, fuzzy
9090 #| msgid "E-mail (optional)"
9191 msgid "E-mail (again)"
9292 msgstr "ایمیل (اختیاری)"
9393
94 #: account/forms.py:276
94 #: account/forms.py:296
9595 #, fuzzy
9696 #| msgid "email confirmation"
9797 msgid "E-mail address confirmation"
9898 msgstr "تائید آدرس ایمیل"
9999
100 #: account/forms.py:284
100 #: account/forms.py:304
101101 msgid "E-mail (optional)"
102102 msgstr "ایمیل (اختیاری)"
103103
104 #: account/forms.py:325
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:348 account/forms.py:457
110 #: account/forms.py:368 account/forms.py:477
111111 msgid "Password (again)"
112112 msgstr "تکرار رمز عبور"
113113
114 #: account/forms.py:412
114 #: account/forms.py:432
115115 msgid "This e-mail address is already associated with this account."
116116 msgstr "ایمیل آدرسی که انتخاب کرده‌اید قبلا به این حساب کاربری وصل شده است."
117117
118 #: account/forms.py:414
118 #: account/forms.py:434
119119 msgid "This e-mail address is already associated with another account."
120120 msgstr ""
121121 "ایمیل آدرسی که انتخاب کرده‌اید قبلا به این حساب کاربر دیگری وصل شده است."
122122
123 #: account/forms.py:436
123 #: account/forms.py:456
124124 msgid "Current Password"
125125 msgstr "رمز عبور فعلی"
126126
127 #: account/forms.py:437 account/forms.py:526
127 #: account/forms.py:457 account/forms.py:546
128128 msgid "New Password"
129129 msgstr "رمز عبور جدید"
130130
131 #: account/forms.py:438 account/forms.py:527
131 #: account/forms.py:458 account/forms.py:547
132132 msgid "New Password (again)"
133133 msgstr "تکرار رمز عبور جدید"
134134
135 #: account/forms.py:446
135 #: account/forms.py:466
136136 msgid "Please type your current password."
137137 msgstr "لطفا رمز عبور فعلی خود را تایپ کنید"
138138
139 #: account/forms.py:484
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:548
143 #: account/forms.py:568
144144 msgid "The password reset token was invalid."
145145 msgstr ""
146146
176176 msgid "sent"
177177 msgstr "ارسال شد"
178178
179 #: account/models.py:86 socialaccount/models.py:61
179 #: account/models.py:86 socialaccount/models.py:55
180180 msgid "key"
181181 msgstr "کلید"
182182
210210 msgid "Social Accounts"
211211 msgstr "حساب کاربری"
212212
213 #: socialaccount/models.py:49 socialaccount/models.py:83
213 #: socialaccount/models.py:43 socialaccount/models.py:77
214214 msgid "provider"
215215 msgstr ""
216216
217 #: socialaccount/models.py:52
217 #: socialaccount/models.py:46
218218 #, fuzzy
219219 msgid "name"
220220 msgstr "نام کاربری"
221221
222 #: socialaccount/models.py:54
222 #: socialaccount/models.py:48
223223 msgid "client id"
224224 msgstr ""
225225
226 #: socialaccount/models.py:56
226 #: socialaccount/models.py:50
227227 msgid "App ID, or consumer key"
228228 msgstr ""
229229
230 #: socialaccount/models.py:57
230 #: socialaccount/models.py:51
231231 msgid "secret key"
232232 msgstr ""
233233
234 #: socialaccount/models.py:59
234 #: socialaccount/models.py:53
235235 msgid "API secret, client secret, or consumer secret"
236236 msgstr ""
237237
238 #: socialaccount/models.py:64
238 #: socialaccount/models.py:58
239239 #, fuzzy
240240 msgid "Key"
241241 msgstr "کلید"
242242
243 #: socialaccount/models.py:72
243 #: socialaccount/models.py:66
244244 msgid "social application"
245245 msgstr ""
246246
247 #: socialaccount/models.py:73
247 #: socialaccount/models.py:67
248248 msgid "social applications"
249249 msgstr ""
250250
251 #: socialaccount/models.py:96
252 msgid "uid"
253 msgstr ""
254
255 #: socialaccount/models.py:98
256 msgid "last login"
257 msgstr ""
258
259 #: socialaccount/models.py:100
260 msgid "date joined"
261 msgstr ""
262
251263 #: socialaccount/models.py:102
252 msgid "uid"
253 msgstr ""
254
255 #: socialaccount/models.py:104
256 msgid "last login"
264 msgid "extra data"
257265 msgstr ""
258266
259267 #: socialaccount/models.py:106
260 msgid "date joined"
261 msgstr ""
262
263 #: socialaccount/models.py:108
264 msgid "extra data"
265 msgstr ""
266
267 #: socialaccount/models.py:112
268268 msgid "social account"
269269 msgstr ""
270270
271 #: socialaccount/models.py:113
271 #: socialaccount/models.py:107
272272 msgid "social accounts"
273273 msgstr ""
274274
275 #: socialaccount/models.py:139
275 #: socialaccount/models.py:133
276276 msgid "token"
277277 msgstr ""
278278
279 #: socialaccount/models.py:141
279 #: socialaccount/models.py:135
280280 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
281281 msgstr ""
282282
283 #: socialaccount/models.py:144
283 #: socialaccount/models.py:138
284284 msgid "token secret"
285285 msgstr ""
286286
287 #: socialaccount/models.py:146
287 #: socialaccount/models.py:140
288288 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
289289 msgstr ""
290290
291 #: socialaccount/models.py:148
291 #: socialaccount/models.py:142
292292 msgid "expires at"
293293 msgstr "انقضا در"
294294
295 #: socialaccount/models.py:152
295 #: socialaccount/models.py:146
296296 msgid "social application token"
297297 msgstr "توکن اپلیکشن"
298298
299 #: socialaccount/models.py:153
299 #: socialaccount/models.py:147
300300 msgid "social application tokens"
301301 msgstr "توکن اپلیکیشن‌ها"
302302
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2017-10-29 09:56-0500\n"
10 "POT-Creation-Date: 2018-02-02 12:55-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"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919 "X-Translated-Using: django-rosetta 0.7.6\n"
2020
21 #: account/adapter.py:48
21 #: account/adapter.py:45
2222 msgid "Username can not be used. Please use other username."
2323 msgstr "Käyttäjänimeä ei voi käyttää. Valitse toinen käyttäjänimi."
2424
25 #: account/adapter.py:52
25 #: account/adapter.py:49
2626 msgid "Too many failed login attempts. Try again later."
2727 msgstr ""
2828 "Liian monta virheellistä kirjautumisyritystä. Yritä myöhemmin uudelleen."
2929
30 #: account/adapter.py:54
30 #: account/adapter.py:51
3131 msgid "A user is already registered with this e-mail address."
3232 msgstr "Tämä sähköpostiosoite on jo käytössä."
3333
34 #: account/adapter.py:291
34 #: account/adapter.py:288
3535 #, python-brace-format
3636 msgid "Password must be a minimum of {0} characters."
3737 msgstr "Salasanan tulee olla vähintään {0} merkkiä pitkä."
4040 msgid "Accounts"
4141 msgstr "Tili"
4242
43 #: account/forms.py:41 account/forms.py:378
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:71 account/forms.py:345 account/forms.py:456
47 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4848 msgid "Password"
4949 msgstr "Salasana"
5050
51 #: account/forms.py:72
51 #: account/forms.py:92
5252 msgid "Remember Me"
5353 msgstr "Muista minut"
5454
55 #: account/forms.py:78
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:81
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:84
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:93 account/forms.py:248 account/forms.py:406
68 #: account/forms.py:475
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:95 account/forms.py:281 account/forms.py:401
73 #: account/forms.py:470
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:100 account/forms.py:103 account/forms.py:240
78 #: account/forms.py:244
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:110
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:113
86 #: account/forms.py:133
8787 msgctxt "field label"
8888 msgid "Login"
8989 msgstr "Käyttäjätunnus"
9090
91 #: account/forms.py:272
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:276
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:284
103 #: account/forms.py:304
104104 msgid "E-mail (optional)"
105105 msgstr "Sähköpostiosoite (valinnainen)"
106106
107 #: account/forms.py:325
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:348 account/forms.py:457
113 #: account/forms.py:368 account/forms.py:477
114114 msgid "Password (again)"
115115 msgstr "Salasana (uudestaan)"
116116
117 #: account/forms.py:412
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:414
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:436
125 #: account/forms.py:456
126126 msgid "Current Password"
127127 msgstr "Nykyinen salasana"
128128
129 #: account/forms.py:437 account/forms.py:526
129 #: account/forms.py:457 account/forms.py:546
130130 msgid "New Password"
131131 msgstr "Uusi salasana"
132132
133 #: account/forms.py:438 account/forms.py:527
133 #: account/forms.py:458 account/forms.py:547
134134 msgid "New Password (again)"
135135 msgstr "Uusi salasana (uudestaan)"
136136
137 #: account/forms.py:446
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:484
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:548
145 #: account/forms.py:568
146146 msgid "The password reset token was invalid."
147147 msgstr "Salasanan uusimistarkiste ei kelpaa."
148148
178178 msgid "sent"
179179 msgstr "lähetetty"
180180
181 #: account/models.py:86 socialaccount/models.py:61
181 #: account/models.py:86 socialaccount/models.py:55
182182 msgid "key"
183183 msgstr "avain"
184184
211211 msgid "Social Accounts"
212212 msgstr "Sosiaalisen median tilit"
213213
214 #: socialaccount/models.py:49 socialaccount/models.py:83
214 #: socialaccount/models.py:43 socialaccount/models.py:77
215215 msgid "provider"
216216 msgstr "tarjoaja"
217217
218 #: socialaccount/models.py:52
218 #: socialaccount/models.py:46
219219 msgid "name"
220220 msgstr "nimi"
221221
222 #: socialaccount/models.py:54
222 #: socialaccount/models.py:48
223223 msgid "client id"
224224 msgstr "asiakas id"
225225
226 #: socialaccount/models.py:56
226 #: socialaccount/models.py:50
227227 msgid "App ID, or consumer key"
228228 msgstr "Sovellus ID tai kuluttajan avain"
229229
230 #: socialaccount/models.py:57
230 #: socialaccount/models.py:51
231231 msgid "secret key"
232232 msgstr "salainen avain"
233233
234 #: socialaccount/models.py:59
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:64
238 #: socialaccount/models.py:58
239239 msgid "Key"
240240 msgstr "Avain"
241241
242 #: socialaccount/models.py:72
242 #: socialaccount/models.py:66
243243 msgid "social application"
244244 msgstr "sosiaalinen applikaatio"
245245
246 #: socialaccount/models.py:73
246 #: socialaccount/models.py:67
247247 msgid "social applications"
248248 msgstr "sosiaaliset applikaatiot"
249249
250 #: socialaccount/models.py:102
250 #: socialaccount/models.py:96
251251 msgid "uid"
252252 msgstr "uid"
253253
254 #: socialaccount/models.py:104
254 #: socialaccount/models.py:98
255255 msgid "last login"
256256 msgstr "viimeisin sisäänkirjautuminen"
257257
258 #: socialaccount/models.py:106
258 #: socialaccount/models.py:100
259259 msgid "date joined"
260260 msgstr "liittymispäivämäärä"
261261
262 #: socialaccount/models.py:108
262 #: socialaccount/models.py:102
263263 msgid "extra data"
264264 msgstr "lisätiedot"
265265
266 #: socialaccount/models.py:112
266 #: socialaccount/models.py:106
267267 msgid "social account"
268268 msgstr "sosiaalisen median tili"
269269
270 #: socialaccount/models.py:113
270 #: socialaccount/models.py:107
271271 msgid "social accounts"
272272 msgstr "sosiaalisen median tilit"
273273
274 #: socialaccount/models.py:139
274 #: socialaccount/models.py:133
275275 msgid "token"
276276 msgstr ""
277277
278 #: socialaccount/models.py:141
278 #: socialaccount/models.py:135
279279 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
280280 msgstr ""
281281
282 #: socialaccount/models.py:144
282 #: socialaccount/models.py:138
283283 msgid "token secret"
284284 msgstr ""
285285
286 #: socialaccount/models.py:146
286 #: socialaccount/models.py:140
287287 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
288288 msgstr ""
289289
290 #: socialaccount/models.py:148
290 #: socialaccount/models.py:142
291291 msgid "expires at"
292292 msgstr "vanhenee"
293293
294 #: socialaccount/models.py:152
294 #: socialaccount/models.py:146
295295 msgid "social application token"
296296 msgstr ""
297297
298 #: socialaccount/models.py:153
298 #: socialaccount/models.py:147
299299 msgid "social application tokens"
300300 msgstr ""
301301
88 msgstr ""
99 "Project-Id-Version: django-allauth\n"
1010 "Report-Msgid-Bugs-To: \n"
11 "POT-Creation-Date: 2017-10-29 09:56-0500\n"
11 "POT-Creation-Date: 2018-02-02 12:55-0600\n"
1212 "PO-Revision-Date: 2016-10-06 15:16+0200\n"
1313 "Last-Translator: Steve Kossouho <steve.kossouho@yahoo.fr>\n"
1414 "Language-Team: français <>\n"
1919 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
2020 "X-Generator: Gtranslator 2.91.7\n"
2121
22 #: account/adapter.py:48
22 #: account/adapter.py:45
2323 msgid "Username can not be used. Please use other username."
2424 msgstr "Ce pseudonyme ne peut pas être utilisé. Veuillez en choisir un autre."
2525
26 #: account/adapter.py:52
26 #: account/adapter.py:49
2727 msgid "Too many failed login attempts. Try again later."
2828 msgstr ""
2929 "Trop de tentatives de connexion échouées. Veuillez réessayer ultérieurement."
3030
31 #: account/adapter.py:54
31 #: account/adapter.py:51
3232 msgid "A user is already registered with this e-mail address."
3333 msgstr "Un autre utilisateur utilise déjà cette adresse e-mail."
3434
35 #: account/adapter.py:291
35 #: account/adapter.py:288
3636 #, python-brace-format
3737 msgid "Password must be a minimum of {0} characters."
3838 msgstr "Le mot de passe doit contenir au minimum {0} caractères."
4141 msgid "Accounts"
4242 msgstr "Comptes"
4343
44 #: account/forms.py:41 account/forms.py:378
44 #: account/forms.py:61 account/forms.py:398
4545 msgid "You must type the same password each time."
4646 msgstr "Vous devez saisir deux fois le même mot de passe."
4747
48 #: account/forms.py:71 account/forms.py:345 account/forms.py:456
48 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4949 msgid "Password"
5050 msgstr "Mot de passe"
5151
52 #: account/forms.py:72
52 #: account/forms.py:92
5353 msgid "Remember Me"
5454 msgstr "Se souvenir de moi"
5555
56 #: account/forms.py:78
56 #: account/forms.py:98
5757 msgid "This account is currently inactive."
5858 msgstr "Ce compte est actuellement désactivé."
5959
60 #: account/forms.py:81
60 #: account/forms.py:101
6161 msgid "The e-mail address and/or password you specified are not correct."
6262 msgstr "L’adresse e-mail ou le mot de passe sont incorrects."
6363
64 #: account/forms.py:84
64 #: account/forms.py:104
6565 msgid "The username and/or password you specified are not correct."
6666 msgstr "Le pseudo ou le mot de passe sont incorrects."
6767
68 #: account/forms.py:93 account/forms.py:248 account/forms.py:406
69 #: account/forms.py:475
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 "Adresse e-mail"
7272
73 #: account/forms.py:95 account/forms.py:281 account/forms.py:401
74 #: account/forms.py:470
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:100 account/forms.py:103 account/forms.py:240
79 #: account/forms.py:244
78 #: account/forms.py:120 account/forms.py:123 account/forms.py:260
79 #: account/forms.py:264
8080 msgid "Username"
8181 msgstr "Pseudonyme"
8282
83 #: account/forms.py:110
83 #: account/forms.py:130
8484 msgid "Username or e-mail"
8585 msgstr "Pseudonyme ou e-mail"
8686
87 #: account/forms.py:113
87 #: account/forms.py:133
8888 msgctxt "field label"
8989 msgid "Login"
9090 msgstr "Identifiant"
9191
92 #: account/forms.py:272
92 #: account/forms.py:292
9393 #, fuzzy
9494 #| msgid "E-mail (optional)"
9595 msgid "E-mail (again)"
9696 msgstr "E-mail (facultatif)"
9797
98 #: account/forms.py:276
98 #: account/forms.py:296
9999 msgid "E-mail address confirmation"
100100 msgstr "Confirmation d'adresse e-mail"
101101
102 #: account/forms.py:284
102 #: account/forms.py:304
103103 msgid "E-mail (optional)"
104104 msgstr "E-mail (facultatif)"
105105
106 #: account/forms.py:325
106 #: account/forms.py:345
107107 msgid "You must type the same email each time."
108 msgstr "Vous devez saisir deux fois le même mot de passe."
109
110 #: account/forms.py:348 account/forms.py:457
108 msgstr "Vous devez saisir deux fois le même email."
109
110 #: account/forms.py:368 account/forms.py:477
111111 msgid "Password (again)"
112112 msgstr "Mot de passe (confirmation)"
113113
114 #: account/forms.py:412
114 #: account/forms.py:432
115115 msgid "This e-mail address is already associated with this account."
116116 msgstr "L'adresse e-mail est déjà associée à votre compte."
117117
118 #: account/forms.py:414
118 #: account/forms.py:434
119119 msgid "This e-mail address is already associated with another account."
120120 msgstr "L'adresse e-mail est déjà associée à un autre compte."
121121
122 #: account/forms.py:436
122 #: account/forms.py:456
123123 msgid "Current Password"
124124 msgstr "Mot de passe actuel"
125125
126 #: account/forms.py:437 account/forms.py:526
126 #: account/forms.py:457 account/forms.py:546
127127 msgid "New Password"
128128 msgstr "Nouveau mot de passe"
129129
130 #: account/forms.py:438 account/forms.py:527
130 #: account/forms.py:458 account/forms.py:547
131131 msgid "New Password (again)"
132132 msgstr "Nouveau mot de passe (confirmation)"
133133
134 #: account/forms.py:446
134 #: account/forms.py:466
135135 msgid "Please type your current password."
136136 msgstr "Merci d'indiquer votre mot de passe actuel."
137137
138 #: account/forms.py:484
138 #: account/forms.py:504
139139 msgid "The e-mail address is not assigned to any user account"
140140 msgstr "Cette adresse e-mail n'est pas associée à un compte utilisateur"
141141
142 #: account/forms.py:548
142 #: account/forms.py:568
143143 msgid "The password reset token was invalid."
144144 msgstr "Le jeton de réinitialisation de mot de passe est invalide."
145145
175175 msgid "sent"
176176 msgstr "envoyé"
177177
178 #: account/models.py:86 socialaccount/models.py:61
178 #: account/models.py:86 socialaccount/models.py:55
179179 msgid "key"
180180 msgstr "clé"
181181
208208 msgid "Social Accounts"
209209 msgstr "Comptes Sociaux"
210210
211 #: socialaccount/models.py:49 socialaccount/models.py:83
211 #: socialaccount/models.py:43 socialaccount/models.py:77
212212 msgid "provider"
213213 msgstr "fournisseur"
214214
215 #: socialaccount/models.py:52
215 #: socialaccount/models.py:46
216216 msgid "name"
217217 msgstr "nom"
218218
219 #: socialaccount/models.py:54
219 #: socialaccount/models.py:48
220220 msgid "client id"
221221 msgstr "id client"
222222
223 #: socialaccount/models.py:56
223 #: socialaccount/models.py:50
224224 msgid "App ID, or consumer key"
225225 msgstr "ID de l'app ou clé de l'utilisateur"
226226
227 #: socialaccount/models.py:57
227 #: socialaccount/models.py:51
228228 msgid "secret key"
229229 msgstr "clé secrète"
230230
231 #: socialaccount/models.py:59
231 #: socialaccount/models.py:53
232232 msgid "API secret, client secret, or consumer secret"
233233 msgstr "Secret de l'API, secret du client, ou secret de l'utilisateur"
234234
235 #: socialaccount/models.py:64
235 #: socialaccount/models.py:58
236236 msgid "Key"
237237 msgstr "Clé"
238238
239 #: socialaccount/models.py:72
239 #: socialaccount/models.py:66
240240 msgid "social application"
241241 msgstr "application sociale"
242242
243 #: socialaccount/models.py:73
243 #: socialaccount/models.py:67
244244 msgid "social applications"
245245 msgstr "applications sociales"
246246
247 #: socialaccount/models.py:102
247 #: socialaccount/models.py:96
248248 msgid "uid"
249249 msgstr "uid"
250250
251 #: socialaccount/models.py:104
251 #: socialaccount/models.py:98
252252 msgid "last login"
253253 msgstr "dernière identification"
254254
255 #: socialaccount/models.py:106
255 #: socialaccount/models.py:100
256256 msgid "date joined"
257257 msgstr "date d'inscription"
258258
259 #: socialaccount/models.py:108
259 #: socialaccount/models.py:102
260260 msgid "extra data"
261261 msgstr "données supplémentaires"
262262
263 #: socialaccount/models.py:112
263 #: socialaccount/models.py:106
264264 msgid "social account"
265265 msgstr "compte social"
266266
267 #: socialaccount/models.py:113
267 #: socialaccount/models.py:107
268268 msgid "social accounts"
269269 msgstr "comptes sociaux"
270270
271 #: socialaccount/models.py:139
271 #: socialaccount/models.py:133
272272 msgid "token"
273273 msgstr "jeton"
274274
275 #: socialaccount/models.py:141
275 #: socialaccount/models.py:135
276276 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
277277 msgstr "\"oauth_token\" (OAuth1) ou jeton d'accès (OAuth2)"
278278
279 #: socialaccount/models.py:144
279 #: socialaccount/models.py:138
280280 msgid "token secret"
281281 msgstr "jeton secret"
282282
283 #: socialaccount/models.py:146
283 #: socialaccount/models.py:140
284284 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
285285 msgstr "\"oauth_token_secret\" (OAuth1) ou jeton d'actualisation (OAuth2)"
286286
287 #: socialaccount/models.py:148
287 #: socialaccount/models.py:142
288288 msgid "expires at"
289289 msgstr "expire le"
290290
291 #: socialaccount/models.py:152
291 #: socialaccount/models.py:146
292292 msgid "social application token"
293293 msgstr "jeton de l'application sociale"
294294
295 #: socialaccount/models.py:153
295 #: socialaccount/models.py:147
296296 msgid "social application tokens"
297297 msgstr "jetons de l'application sociale"
298298
66 msgstr ""
77 "Project-Id-Version: 0.1\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-10-29 09:56-0500\n"
9 "POT-Creation-Date: 2018-02-02 12:55-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"
1717 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1818 "X-Generator: Poedit 2.0.3\n"
1919
20 #: account/adapter.py:48
20 #: account/adapter.py:45
2121 msgid "Username can not be used. Please use other username."
2222 msgstr "לא ניתן להשתמש בשם משתמש זה. אנא בחר שם משתמש אחר."
2323
24 #: account/adapter.py:52
24 #: account/adapter.py:49
2525 msgid "Too many failed login attempts. Try again later."
2626 msgstr "יותר מדי ניסיונות התחברות כושלים. אנא נסה שוב מאוחר יותר."
2727
28 #: account/adapter.py:54
28 #: account/adapter.py:51
2929 msgid "A user is already registered with this e-mail address."
3030 msgstr "משתמש אחר כבר רשום עם כתובת אימייל זו."
3131
32 #: account/adapter.py:291
32 #: account/adapter.py:288
3333 #, python-brace-format
3434 msgid "Password must be a minimum of {0} characters."
3535 msgstr "הסיסמה חייבת להיות באורך של לפחות {0} תווים."
3838 msgid "Accounts"
3939 msgstr "חשבונות"
4040
41 #: account/forms.py:41 account/forms.py:378
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:71 account/forms.py:345 account/forms.py:456
45 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4646 msgid "Password"
4747 msgstr "סיסמה"
4848
49 #: account/forms.py:72
49 #: account/forms.py:92
5050 msgid "Remember Me"
5151 msgstr "זכור אותי"
5252
53 #: account/forms.py:78
53 #: account/forms.py:98
5454 msgid "This account is currently inactive."
5555 msgstr "חשבון זה אינו פעיל כעת."
5656
57 #: account/forms.py:81
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:84
61 #: account/forms.py:104
6262 msgid "The username and/or password you specified are not correct."
6363 msgstr "שם המשתמש ו/או הסיסמה אינם נכונים."
6464
65 #: account/forms.py:93 account/forms.py:248 account/forms.py:406
66 #: account/forms.py:475
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:95 account/forms.py:281 account/forms.py:401
71 #: account/forms.py:470
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:100 account/forms.py:103 account/forms.py:240
76 #: account/forms.py:244
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:110
80 #: account/forms.py:130
8181 msgid "Username or e-mail"
8282 msgstr "שם משתמש או אימייל"
8383
84 #: account/forms.py:113
84 #: account/forms.py:133
8585 msgctxt "field label"
8686 msgid "Login"
8787 msgstr "כניסה"
8888
89 #: account/forms.py:272
89 #: account/forms.py:292
9090 msgid "E-mail (again)"
9191 msgstr "אימייל (שוב)"
9292
93 #: account/forms.py:276
93 #: account/forms.py:296
9494 msgid "E-mail address confirmation"
9595 msgstr "אישור כתובת אימייל"
9696
97 #: account/forms.py:284
97 #: account/forms.py:304
9898 msgid "E-mail (optional)"
9999 msgstr "אימייל (לא חובה)"
100100
101 #: account/forms.py:325
101 #: account/forms.py:345
102102 msgid "You must type the same email each time."
103103 msgstr "יש להזין את אותו האימייל פעמיים."
104104
105 #: account/forms.py:348 account/forms.py:457
105 #: account/forms.py:368 account/forms.py:477
106106 msgid "Password (again)"
107107 msgstr "סיסמה (שוב)"
108108
109 #: account/forms.py:412
109 #: account/forms.py:432
110110 msgid "This e-mail address is already associated with this account."
111111 msgstr "כתובת אימייל זו כבר משויכת לחשבון זה."
112112
113 #: account/forms.py:414
113 #: account/forms.py:434
114114 msgid "This e-mail address is already associated with another account."
115115 msgstr "כתובת אימייל זו כבר משויכת לחשבון אחר."
116116
117 #: account/forms.py:436
117 #: account/forms.py:456
118118 msgid "Current Password"
119119 msgstr "סיסמה נוכחית"
120120
121 #: account/forms.py:437 account/forms.py:526
121 #: account/forms.py:457 account/forms.py:546
122122 msgid "New Password"
123123 msgstr "סיסמה חדשה"
124124
125 #: account/forms.py:438 account/forms.py:527
125 #: account/forms.py:458 account/forms.py:547
126126 msgid "New Password (again)"
127127 msgstr "סיסמה חדשה (שוב)"
128128
129 #: account/forms.py:446
129 #: account/forms.py:466
130130 msgid "Please type your current password."
131131 msgstr "אנא הזן את הסיסמה הנוכחית."
132132
133 #: account/forms.py:484
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:548
137 #: account/forms.py:568
138138 msgid "The password reset token was invalid."
139139 msgstr "אסימון איפוס הסיסמה אינו תקין."
140140
170170 msgid "sent"
171171 msgstr "נשלח"
172172
173 #: account/models.py:86 socialaccount/models.py:61
173 #: account/models.py:86 socialaccount/models.py:55
174174 msgid "key"
175175 msgstr "מפתח"
176176
203203 msgid "Social Accounts"
204204 msgstr "חשבונות חברתיים"
205205
206 #: socialaccount/models.py:49 socialaccount/models.py:83
206 #: socialaccount/models.py:43 socialaccount/models.py:77
207207 msgid "provider"
208208 msgstr ""
209209
210 #: socialaccount/models.py:52
210 #: socialaccount/models.py:46
211211 msgid "name"
212212 msgstr "שם"
213213
214 #: socialaccount/models.py:54
214 #: socialaccount/models.py:48
215215 msgid "client id"
216216 msgstr ""
217217
218 #: socialaccount/models.py:56
218 #: socialaccount/models.py:50
219219 msgid "App ID, or consumer key"
220220 msgstr ""
221221
222 #: socialaccount/models.py:57
222 #: socialaccount/models.py:51
223223 msgid "secret key"
224224 msgstr ""
225225
226 #: socialaccount/models.py:59
226 #: socialaccount/models.py:53
227227 msgid "API secret, client secret, or consumer secret"
228228 msgstr ""
229229
230 #: socialaccount/models.py:64
230 #: socialaccount/models.py:58
231231 msgid "Key"
232232 msgstr ""
233233
234 #: socialaccount/models.py:72
234 #: socialaccount/models.py:66
235235 msgid "social application"
236236 msgstr ""
237237
238 #: socialaccount/models.py:73
238 #: socialaccount/models.py:67
239239 msgid "social applications"
240240 msgstr ""
241241
242 #: socialaccount/models.py:102
242 #: socialaccount/models.py:96
243243 msgid "uid"
244244 msgstr ""
245245
246 #: socialaccount/models.py:104
246 #: socialaccount/models.py:98
247247 msgid "last login"
248248 msgstr "התחברות אחרונה"
249249
250 #: socialaccount/models.py:106
250 #: socialaccount/models.py:100
251251 msgid "date joined"
252252 msgstr "תאריך הצטרפות"
253253
254 #: socialaccount/models.py:108
254 #: socialaccount/models.py:102
255255 msgid "extra data"
256256 msgstr ""
257257
258 #: socialaccount/models.py:112
258 #: socialaccount/models.py:106
259259 msgid "social account"
260260 msgstr "חשבון חברתי"
261261
262 #: socialaccount/models.py:113
262 #: socialaccount/models.py:107
263263 msgid "social accounts"
264264 msgstr "חשבונות חברתיים"
265265
266 #: socialaccount/models.py:139
266 #: socialaccount/models.py:133
267267 msgid "token"
268268 msgstr ""
269269
270 #: socialaccount/models.py:141
270 #: socialaccount/models.py:135
271271 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
272272 msgstr ""
273273
274 #: socialaccount/models.py:144
274 #: socialaccount/models.py:138
275275 msgid "token secret"
276276 msgstr ""
277277
278 #: socialaccount/models.py:146
278 #: socialaccount/models.py:140
279279 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
280280 msgstr ""
281281
282 #: socialaccount/models.py:148
282 #: socialaccount/models.py:142
283283 msgid "expires at"
284284 msgstr "פג תוקף בתאריך"
285285
286 #: socialaccount/models.py:152
286 #: socialaccount/models.py:146
287287 msgid "social application token"
288288 msgstr ""
289289
290 #: socialaccount/models.py:153
290 #: socialaccount/models.py:147
291291 msgid "social application tokens"
292292 msgstr ""
293293
99 msgstr ""
1010 "Project-Id-Version: PACKAGE VERSION\n"
1111 "Report-Msgid-Bugs-To: \n"
12 "POT-Creation-Date: 2017-10-29 09:56-0500\n"
12 "POT-Creation-Date: 2018-02-02 12:55-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"
2222 "X-Generator: Poedit 1.5.4\n"
2323 "X-Translated-Using: django-rosetta 0.7.2\n"
2424
25 #: account/adapter.py:48
25 #: account/adapter.py:45
2626 msgid "Username can not be used. Please use other username."
2727 msgstr "Nije moguće koristiti upisano korisničko ime. Molimo odaberite drugo."
2828
29 #: account/adapter.py:52
29 #: account/adapter.py:49
3030 msgid "Too many failed login attempts. Try again later."
3131 msgstr ""
3232
33 #: account/adapter.py:54
33 #: account/adapter.py:51
3434 msgid "A user is already registered with this e-mail address."
3535 msgstr "Već postoji korisnik registriran s ovom e-mail adresom."
3636
37 #: account/adapter.py:291
37 #: account/adapter.py:288
3838 #, python-brace-format
3939 msgid "Password must be a minimum of {0} characters."
4040 msgstr "Lozinka treba imati najmanje {0} znakova."
4343 msgid "Accounts"
4444 msgstr "Korisnički računi"
4545
46 #: account/forms.py:41 account/forms.py:378
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:71 account/forms.py:345 account/forms.py:456
50 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
5151 msgid "Password"
5252 msgstr "Lozinka"
5353
54 #: account/forms.py:72
54 #: account/forms.py:92
5555 msgid "Remember Me"
5656 msgstr "Zapamti me"
5757
58 #: account/forms.py:78
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:81
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:84
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:93 account/forms.py:248 account/forms.py:406
71 #: account/forms.py:475
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:95 account/forms.py:281 account/forms.py:401
76 #: account/forms.py:470
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:100 account/forms.py:103 account/forms.py:240
81 #: account/forms.py:244
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:110
85 #: account/forms.py:130
8686 msgid "Username or e-mail"
8787 msgstr "Korisničko ime ili e-mail"
8888
89 #: account/forms.py:113
89 #: account/forms.py:133
9090 msgctxt "field label"
9191 msgid "Login"
9292 msgstr "Prijava"
9393
94 #: account/forms.py:272
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:276
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:284
106 #: account/forms.py:304
107107 msgid "E-mail (optional)"
108108 msgstr "E-mail (neobavezno)"
109109
110 #: account/forms.py:325
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:348 account/forms.py:457
116 #: account/forms.py:368 account/forms.py:477
117117 msgid "Password (again)"
118118 msgstr "Lozinka (ponovno)"
119119
120 #: account/forms.py:412
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:414
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:436
128 #: account/forms.py:456
129129 msgid "Current Password"
130130 msgstr "Trenutna lozinka"
131131
132 #: account/forms.py:437 account/forms.py:526
132 #: account/forms.py:457 account/forms.py:546
133133 msgid "New Password"
134134 msgstr "Nova lozinka"
135135
136 #: account/forms.py:438 account/forms.py:527
136 #: account/forms.py:458 account/forms.py:547
137137 msgid "New Password (again)"
138138 msgstr "Nova lozinka (ponovno)"
139139
140 #: account/forms.py:446
140 #: account/forms.py:466
141141 msgid "Please type your current password."
142142 msgstr "Molimo unesite trenutnu lozinku."
143143
144 #: account/forms.py:484
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:548
148 #: account/forms.py:568
149149 msgid "The password reset token was invalid."
150150 msgstr ""
151151
181181 msgid "sent"
182182 msgstr ""
183183
184 #: account/models.py:86 socialaccount/models.py:61
184 #: account/models.py:86 socialaccount/models.py:55
185185 msgid "key"
186186 msgstr ""
187187
214214 msgid "Social Accounts"
215215 msgstr "Korisnički računi"
216216
217 #: socialaccount/models.py:49 socialaccount/models.py:83
217 #: socialaccount/models.py:43 socialaccount/models.py:77
218218 msgid "provider"
219219 msgstr ""
220220
221 #: socialaccount/models.py:52
221 #: socialaccount/models.py:46
222222 msgid "name"
223223 msgstr "naziv"
224224
225 #: socialaccount/models.py:54
225 #: socialaccount/models.py:48
226226 msgid "client id"
227227 msgstr ""
228228
229 #: socialaccount/models.py:56
229 #: socialaccount/models.py:50
230230 msgid "App ID, or consumer key"
231231 msgstr ""
232232
233 #: socialaccount/models.py:57
233 #: socialaccount/models.py:51
234234 msgid "secret key"
235235 msgstr ""
236236
237 #: socialaccount/models.py:59
237 #: socialaccount/models.py:53
238238 msgid "API secret, client secret, or consumer secret"
239239 msgstr ""
240240
241 #: socialaccount/models.py:64
241 #: socialaccount/models.py:58
242242 msgid "Key"
243243 msgstr ""
244244
245 #: socialaccount/models.py:72
245 #: socialaccount/models.py:66
246246 msgid "social application"
247247 msgstr ""
248248
249 #: socialaccount/models.py:73
249 #: socialaccount/models.py:67
250250 msgid "social applications"
251251 msgstr ""
252252
253 #: socialaccount/models.py:96
254 msgid "uid"
255 msgstr ""
256
257 #: socialaccount/models.py:98
258 msgid "last login"
259 msgstr ""
260
261 #: socialaccount/models.py:100
262 msgid "date joined"
263 msgstr ""
264
253265 #: socialaccount/models.py:102
254 msgid "uid"
255 msgstr ""
256
257 #: socialaccount/models.py:104
258 msgid "last login"
266 msgid "extra data"
259267 msgstr ""
260268
261269 #: socialaccount/models.py:106
262 msgid "date joined"
263 msgstr ""
264
265 #: socialaccount/models.py:108
266 msgid "extra data"
267 msgstr ""
268
269 #: socialaccount/models.py:112
270270 msgid "social account"
271271 msgstr ""
272272
273 #: socialaccount/models.py:113
273 #: socialaccount/models.py:107
274274 msgid "social accounts"
275275 msgstr ""
276276
277 #: socialaccount/models.py:139
277 #: socialaccount/models.py:133
278278 msgid "token"
279279 msgstr ""
280280
281 #: socialaccount/models.py:141
281 #: socialaccount/models.py:135
282282 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
283283 msgstr ""
284284
285 #: socialaccount/models.py:144
285 #: socialaccount/models.py:138
286286 msgid "token secret"
287287 msgstr ""
288288
289 #: socialaccount/models.py:140
290 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
291 msgstr ""
292
293 #: socialaccount/models.py:142
294 msgid "expires at"
295 msgstr ""
296
289297 #: socialaccount/models.py:146
290 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
291 msgstr ""
292
293 #: socialaccount/models.py:148
294 msgid "expires at"
295 msgstr ""
296
297 #: socialaccount/models.py:152
298298 msgid "social application token"
299299 msgstr ""
300300
301 #: socialaccount/models.py:153
301 #: socialaccount/models.py:147
302302 msgid "social application tokens"
303303 msgstr ""
304304
66 msgstr ""
77 "Project-Id-Version: \n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-10-29 09:56-0500\n"
9 "POT-Creation-Date: 2018-02-02 12:55-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"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "X-Generator: Poedit 1.7.6\n"
1818
19 #: account/adapter.py:48
19 #: account/adapter.py:45
2020 msgid "Username can not be used. Please use other username."
2121 msgstr "Ez a felhasználói azonosító nem használható. Kérlek válassz másikat!"
2222
23 #: account/adapter.py:52
23 #: account/adapter.py:49
2424 msgid "Too many failed login attempts. Try again later."
2525 msgstr ""
2626
27 #: account/adapter.py:54
27 #: account/adapter.py:51
2828 msgid "A user is already registered with this e-mail address."
2929 msgstr "Egy felhasználó már regisztrált ezzel az email címmel."
3030
31 #: account/adapter.py:291
31 #: account/adapter.py:288
3232 #, python-brace-format
3333 msgid "Password must be a minimum of {0} characters."
3434 msgstr "A jelszónak minimum {0} hosszúnak kell lennnie."
3737 msgid "Accounts"
3838 msgstr "Felhasználók"
3939
40 #: account/forms.py:41 account/forms.py:378
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:71 account/forms.py:345 account/forms.py:456
44 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4545 msgid "Password"
4646 msgstr "Jelszó"
4747
48 #: account/forms.py:72
48 #: account/forms.py:92
4949 msgid "Remember Me"
5050 msgstr "Emlékezz rám"
5151
52 #: account/forms.py:78
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:81
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:84
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:93 account/forms.py:248 account/forms.py:406
65 #: account/forms.py:475
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:95 account/forms.py:281 account/forms.py:401
70 #: account/forms.py:470
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:100 account/forms.py:103 account/forms.py:240
75 #: account/forms.py:244
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:110
79 #: account/forms.py:130
8080 msgid "Username or e-mail"
8181 msgstr "Felhasználó azonosító vagy email"
8282
83 #: account/forms.py:113
83 #: account/forms.py:133
8484 msgctxt "field label"
8585 msgid "Login"
8686 msgstr "Bejelentkezés"
8787
88 #: account/forms.py:272
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:276
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:284
100 #: account/forms.py:304
101101 msgid "E-mail (optional)"
102102 msgstr "Email (nem kötelező)"
103103
104 #: account/forms.py:325
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:348 account/forms.py:457
110 #: account/forms.py:368 account/forms.py:477
111111 msgid "Password (again)"
112112 msgstr "Jelszó (ismét)"
113113
114 #: account/forms.py:412
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:414
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:436
122 #: account/forms.py:456
123123 msgid "Current Password"
124124 msgstr "Jelenlegi jelszó"
125125
126 #: account/forms.py:437 account/forms.py:526
126 #: account/forms.py:457 account/forms.py:546
127127 msgid "New Password"
128128 msgstr "Új jelszó"
129129
130 #: account/forms.py:438 account/forms.py:527
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:446
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:484
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:548
142 #: account/forms.py:568
143143 msgid "The password reset token was invalid."
144144 msgstr ""
145145
175175 msgid "sent"
176176 msgstr ""
177177
178 #: account/models.py:86 socialaccount/models.py:61
178 #: account/models.py:86 socialaccount/models.py:55
179179 msgid "key"
180180 msgstr ""
181181
208208 msgid "Social Accounts"
209209 msgstr "Közösségi Felhasználók"
210210
211 #: socialaccount/models.py:49 socialaccount/models.py:83
211 #: socialaccount/models.py:43 socialaccount/models.py:77
212212 msgid "provider"
213213 msgstr ""
214214
215 #: socialaccount/models.py:52
215 #: socialaccount/models.py:46
216216 msgid "name"
217217 msgstr ""
218218
219 #: socialaccount/models.py:54
219 #: socialaccount/models.py:48
220220 msgid "client id"
221221 msgstr ""
222222
223 #: socialaccount/models.py:56
223 #: socialaccount/models.py:50
224224 msgid "App ID, or consumer key"
225225 msgstr ""
226226
227 #: socialaccount/models.py:57
227 #: socialaccount/models.py:51
228228 msgid "secret key"
229229 msgstr ""
230230
231 #: socialaccount/models.py:59
231 #: socialaccount/models.py:53
232232 msgid "API secret, client secret, or consumer secret"
233233 msgstr ""
234234
235 #: socialaccount/models.py:64
235 #: socialaccount/models.py:58
236236 msgid "Key"
237237 msgstr ""
238238
239 #: socialaccount/models.py:72
239 #: socialaccount/models.py:66
240240 msgid "social application"
241241 msgstr ""
242242
243 #: socialaccount/models.py:73
243 #: socialaccount/models.py:67
244244 msgid "social applications"
245245 msgstr ""
246246
247 #: socialaccount/models.py:96
248 msgid "uid"
249 msgstr ""
250
251 #: socialaccount/models.py:98
252 msgid "last login"
253 msgstr ""
254
255 #: socialaccount/models.py:100
256 msgid "date joined"
257 msgstr ""
258
247259 #: socialaccount/models.py:102
248 msgid "uid"
249 msgstr ""
250
251 #: socialaccount/models.py:104
252 msgid "last login"
260 msgid "extra data"
253261 msgstr ""
254262
255263 #: socialaccount/models.py:106
256 msgid "date joined"
257 msgstr ""
258
259 #: socialaccount/models.py:108
260 msgid "extra data"
261 msgstr ""
262
263 #: socialaccount/models.py:112
264264 msgid "social account"
265265 msgstr ""
266266
267 #: socialaccount/models.py:113
267 #: socialaccount/models.py:107
268268 msgid "social accounts"
269269 msgstr ""
270270
271 #: socialaccount/models.py:139
271 #: socialaccount/models.py:133
272272 msgid "token"
273273 msgstr ""
274274
275 #: socialaccount/models.py:141
275 #: socialaccount/models.py:135
276276 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
277277 msgstr ""
278278
279 #: socialaccount/models.py:144
279 #: socialaccount/models.py:138
280280 msgid "token secret"
281281 msgstr ""
282282
283 #: socialaccount/models.py:140
284 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
285 msgstr ""
286
287 #: socialaccount/models.py:142
288 msgid "expires at"
289 msgstr ""
290
283291 #: socialaccount/models.py:146
284 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
285 msgstr ""
286
287 #: socialaccount/models.py:148
288 msgid "expires at"
289 msgstr ""
290
291 #: socialaccount/models.py:152
292292 msgid "social application token"
293293 msgstr ""
294294
295 #: socialaccount/models.py:153
295 #: socialaccount/models.py:147
296296 msgid "social application tokens"
297297 msgstr ""
298298
99 msgstr ""
1010 "Project-Id-Version: django-allauth\n"
1111 "Report-Msgid-Bugs-To: \n"
12 "POT-Creation-Date: 2017-10-29 09:56-0500\n"
12 "POT-Creation-Date: 2018-02-02 12:55-0600\n"
1313 "PO-Revision-Date: 2014-08-12 00:31+0200\n"
1414 "Last-Translator: joke2k <joke2k@gmail.com>\n"
1515 "Language-Team: Italian (http://www.transifex.com/projects/p/django-allauth/"
2020 "Content-Transfer-Encoding: 8bit\n"
2121 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
2222
23 #: account/adapter.py:48
23 #: account/adapter.py:45
2424 msgid "Username can not be used. Please use other username."
2525 msgstr "Questo username non può essere usato. Per favore scegline un altro."
2626
27 #: account/adapter.py:52
27 #: account/adapter.py:49
2828 msgid "Too many failed login attempts. Try again later."
2929 msgstr ""
3030
31 #: account/adapter.py:54
31 #: account/adapter.py:51
3232 msgid "A user is already registered with this e-mail address."
3333 msgstr "Un altro utente si è già registrato con questo indirizzo e-mail."
3434
35 #: account/adapter.py:291
35 #: account/adapter.py:288
3636 #, python-brace-format
3737 msgid "Password must be a minimum of {0} characters."
3838 msgstr "La password deve essere lunga almeno {0} caratteri."
4242 msgid "Accounts"
4343 msgstr "Account"
4444
45 #: account/forms.py:41 account/forms.py:378
45 #: account/forms.py:61 account/forms.py:398
4646 msgid "You must type the same password each time."
4747 msgstr "Devi digitare la stessa password."
4848
49 #: account/forms.py:71 account/forms.py:345 account/forms.py:456
49 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
5050 msgid "Password"
5151 msgstr "Password"
5252
53 #: account/forms.py:72
53 #: account/forms.py:92
5454 msgid "Remember Me"
5555 msgstr "Ricordami"
5656
57 #: account/forms.py:78
57 #: account/forms.py:98
5858 msgid "This account is currently inactive."
5959 msgstr "Questo account non è attualmente attivo"
6060
61 #: account/forms.py:81
61 #: account/forms.py:101
6262 msgid "The e-mail address and/or password you specified are not correct."
6363 msgstr "L'indirizzo e-mail e/o la password che hai usato non sono corretti."
6464
65 #: account/forms.py:84
65 #: account/forms.py:104
6666 msgid "The username and/or password you specified are not correct."
6767 msgstr "Lo username e/o la password che hai usato non sono corretti."
6868
69 #: account/forms.py:93 account/forms.py:248 account/forms.py:406
70 #: account/forms.py:475
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 "Indirizzo e-mail"
7373
74 #: account/forms.py:95 account/forms.py:281 account/forms.py:401
75 #: account/forms.py:470
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:100 account/forms.py:103 account/forms.py:240
80 #: account/forms.py:244
79 #: account/forms.py:120 account/forms.py:123 account/forms.py:260
80 #: account/forms.py:264
8181 msgid "Username"
8282 msgstr "Username"
8383
84 #: account/forms.py:110
84 #: account/forms.py:130
8585 msgid "Username or e-mail"
8686 msgstr "Username o e-mail"
8787
88 #: account/forms.py:113
88 #: account/forms.py:133
8989 msgctxt "field label"
9090 msgid "Login"
9191 msgstr "Login"
9292
93 #: account/forms.py:272
93 #: account/forms.py:292
9494 #, fuzzy
9595 #| msgid "E-mail (optional)"
9696 msgid "E-mail (again)"
9797 msgstr "E-mail (opzionale)"
9898
99 #: account/forms.py:276
99 #: account/forms.py:296
100100 #, fuzzy
101101 #| msgid "email confirmation"
102102 msgid "E-mail address confirmation"
103103 msgstr "email di conferma"
104104
105 #: account/forms.py:284
105 #: account/forms.py:304
106106 msgid "E-mail (optional)"
107107 msgstr "E-mail (opzionale)"
108108
109 #: account/forms.py:325
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 "Devi digitare la stessa password."
114114
115 #: account/forms.py:348 account/forms.py:457
115 #: account/forms.py:368 account/forms.py:477
116116 msgid "Password (again)"
117117 msgstr "Password (nuovamente)"
118118
119 #: account/forms.py:412
119 #: account/forms.py:432
120120 msgid "This e-mail address is already associated with this account."
121121 msgstr "Questo indirizzo e-mail è già associato a questo account."
122122
123 #: account/forms.py:414
123 #: account/forms.py:434
124124 msgid "This e-mail address is already associated with another account."
125125 msgstr "Questo indirizzo e-mail è gia associato a un altro account."
126126
127 #: account/forms.py:436
127 #: account/forms.py:456
128128 msgid "Current Password"
129129 msgstr "Password attuale"
130130
131 #: account/forms.py:437 account/forms.py:526
131 #: account/forms.py:457 account/forms.py:546
132132 msgid "New Password"
133133 msgstr "Nuova password"
134134
135 #: account/forms.py:438 account/forms.py:527
135 #: account/forms.py:458 account/forms.py:547
136136 msgid "New Password (again)"
137137 msgstr "Nuova password (nuovamente)"
138138
139 #: account/forms.py:446
139 #: account/forms.py:466
140140 msgid "Please type your current password."
141141 msgstr "Per favore digita la tua password attuale."
142142
143 #: account/forms.py:484
143 #: account/forms.py:504
144144 msgid "The e-mail address is not assigned to any user account"
145145 msgstr "L'indirizzo e-mail non è assegnato a nessun utenza"
146146
147 #: account/forms.py:548
147 #: account/forms.py:568
148148 msgid "The password reset token was invalid."
149149 msgstr ""
150150
180180 msgid "sent"
181181 msgstr "inviato"
182182
183 #: account/models.py:86 socialaccount/models.py:61
183 #: account/models.py:86 socialaccount/models.py:55
184184 msgid "key"
185185 msgstr "chiave"
186186
214214 msgid "Social Accounts"
215215 msgstr "Account"
216216
217 #: socialaccount/models.py:49 socialaccount/models.py:83
217 #: socialaccount/models.py:43 socialaccount/models.py:77
218218 msgid "provider"
219219 msgstr ""
220220
221 #: socialaccount/models.py:52
221 #: socialaccount/models.py:46
222222 #, fuzzy
223223 msgid "name"
224224 msgstr "Username"
225225
226 #: socialaccount/models.py:54
226 #: socialaccount/models.py:48
227227 msgid "client id"
228228 msgstr ""
229229
230 #: socialaccount/models.py:56
230 #: socialaccount/models.py:50
231231 msgid "App ID, or consumer key"
232232 msgstr ""
233233
234 #: socialaccount/models.py:57
234 #: socialaccount/models.py:51
235235 msgid "secret key"
236236 msgstr ""
237237
238 #: socialaccount/models.py:59
238 #: socialaccount/models.py:53
239239 msgid "API secret, client secret, or consumer secret"
240240 msgstr ""
241241
242 #: socialaccount/models.py:64
242 #: socialaccount/models.py:58
243243 #, fuzzy
244244 msgid "Key"
245245 msgstr "chiave"
246246
247 #: socialaccount/models.py:72
247 #: socialaccount/models.py:66
248248 msgid "social application"
249249 msgstr ""
250250
251 #: socialaccount/models.py:73
251 #: socialaccount/models.py:67
252252 msgid "social applications"
253253 msgstr ""
254254
255 #: socialaccount/models.py:96
256 msgid "uid"
257 msgstr ""
258
259 #: socialaccount/models.py:98
260 msgid "last login"
261 msgstr ""
262
263 #: socialaccount/models.py:100
264 msgid "date joined"
265 msgstr ""
266
255267 #: socialaccount/models.py:102
256 msgid "uid"
257 msgstr ""
258
259 #: socialaccount/models.py:104
260 msgid "last login"
268 msgid "extra data"
261269 msgstr ""
262270
263271 #: socialaccount/models.py:106
264 msgid "date joined"
265 msgstr ""
266
267 #: socialaccount/models.py:108
268 msgid "extra data"
269 msgstr ""
270
271 #: socialaccount/models.py:112
272272 msgid "social account"
273273 msgstr ""
274274
275 #: socialaccount/models.py:113
275 #: socialaccount/models.py:107
276276 msgid "social accounts"
277277 msgstr ""
278278
279 #: socialaccount/models.py:139
279 #: socialaccount/models.py:133
280280 msgid "token"
281281 msgstr ""
282282
283 #: socialaccount/models.py:141
283 #: socialaccount/models.py:135
284284 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
285285 msgstr ""
286286
287 #: socialaccount/models.py:144
287 #: socialaccount/models.py:138
288288 msgid "token secret"
289289 msgstr ""
290290
291 #: socialaccount/models.py:140
292 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
293 msgstr ""
294
295 #: socialaccount/models.py:142
296 msgid "expires at"
297 msgstr ""
298
291299 #: socialaccount/models.py:146
292 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
293 msgstr ""
294
295 #: socialaccount/models.py:148
296 msgid "expires at"
297 msgstr ""
298
299 #: socialaccount/models.py:152
300300 msgid "social application token"
301301 msgstr ""
302302
303 #: socialaccount/models.py:153
303 #: socialaccount/models.py:147
304304 msgid "social application tokens"
305305 msgstr ""
306306
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2017-10-29 09:56-0500\n"
10 "POT-Creation-Date: 2018-02-02 12:55-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"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=1; plural=0;\n"
1919
20 #: account/adapter.py:48
20 #: account/adapter.py:45
2121 msgid "Username can not be used. Please use other username."
2222 msgstr "このユーザー名は使用できません。他のユーザー名を選んでください。"
2323
24 #: account/adapter.py:52
24 #: account/adapter.py:49
2525 msgid "Too many failed login attempts. Try again later."
2626 msgstr ""
2727
28 #: account/adapter.py:54
28 #: account/adapter.py:51
2929 msgid "A user is already registered with this e-mail address."
3030 msgstr "他のユーザーがこのメールアドレスを使用しています。"
3131
32 #: account/adapter.py:291
32 #: account/adapter.py:288
3333 #, python-brace-format
3434 msgid "Password must be a minimum of {0} characters."
3535 msgstr "パスワードは {0} 文字以上の長さが必要です。"
3838 msgid "Accounts"
3939 msgstr "アカウント"
4040
41 #: account/forms.py:41 account/forms.py:378
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:71 account/forms.py:345 account/forms.py:456
45 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4646 msgid "Password"
4747 msgstr "パスワード"
4848
49 #: account/forms.py:72
49 #: account/forms.py:92
5050 msgid "Remember Me"
5151 msgstr "ログインしたままにする"
5252
53 #: account/forms.py:78
53 #: account/forms.py:98
5454 msgid "This account is currently inactive."
5555 msgstr "このアカウントは現在無効です。"
5656
57 #: account/forms.py:81
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:84
61 #: account/forms.py:104
6262 msgid "The username and/or password you specified are not correct."
6363 msgstr "入力されたユーザー名もしくはパスワードが正しくありません。"
6464
65 #: account/forms.py:93 account/forms.py:248 account/forms.py:406
66 #: account/forms.py:475
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:95 account/forms.py:281 account/forms.py:401
71 #: account/forms.py:470
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:100 account/forms.py:103 account/forms.py:240
76 #: account/forms.py:244
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:110
80 #: account/forms.py:130
8181 msgid "Username or e-mail"
8282 msgstr "ユーザー名またはメールアドレス"
8383
84 #: account/forms.py:113
84 #: account/forms.py:133
8585 msgctxt "field label"
8686 msgid "Login"
8787 msgstr "ログイン"
8888
89 #: account/forms.py:272
89 #: account/forms.py:292
9090 #, fuzzy
9191 #| msgid "E-mail (optional)"
9292 msgid "E-mail (again)"
9393 msgstr "メールアドレス(オプション)"
9494
95 #: account/forms.py:276
95 #: account/forms.py:296
9696 #, fuzzy
9797 #| msgid "email confirmation"
9898 msgid "E-mail address confirmation"
9999 msgstr "メールアドレスの確認"
100100
101 #: account/forms.py:284
101 #: account/forms.py:304
102102 msgid "E-mail (optional)"
103103 msgstr "メールアドレス(オプション)"
104104
105 #: account/forms.py:325
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:348 account/forms.py:457
111 #: account/forms.py:368 account/forms.py:477
112112 msgid "Password (again)"
113113 msgstr "パスワード(再入力)"
114114
115 #: account/forms.py:412
115 #: account/forms.py:432
116116 msgid "This e-mail address is already associated with this account."
117117 msgstr "このメールアドレスはすでに登録されています。"
118118
119 #: account/forms.py:414
119 #: account/forms.py:434
120120 msgid "This e-mail address is already associated with another account."
121121 msgstr "このメールアドレスは別のアカウントで使用されています。"
122122
123 #: account/forms.py:436
123 #: account/forms.py:456
124124 msgid "Current Password"
125125 msgstr "現在のパスワード"
126126
127 #: account/forms.py:437 account/forms.py:526
127 #: account/forms.py:457 account/forms.py:546
128128 msgid "New Password"
129129 msgstr "新しいパスワード"
130130
131 #: account/forms.py:438 account/forms.py:527
131 #: account/forms.py:458 account/forms.py:547
132132 msgid "New Password (again)"
133133 msgstr "新しいパスワード(再入力)"
134134
135 #: account/forms.py:446
135 #: account/forms.py:466
136136 msgid "Please type your current password."
137137 msgstr "現在のパスワードを入力してください。"
138138
139 #: account/forms.py:484
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:548
143 #: account/forms.py:568
144144 msgid "The password reset token was invalid."
145145 msgstr ""
146146
176176 msgid "sent"
177177 msgstr "送信日時"
178178
179 #: account/models.py:86 socialaccount/models.py:61
179 #: account/models.py:86 socialaccount/models.py:55
180180 msgid "key"
181181 msgstr ""
182182
207207 msgid "Social Accounts"
208208 msgstr "外部アカウント"
209209
210 #: socialaccount/models.py:49 socialaccount/models.py:83
210 #: socialaccount/models.py:43 socialaccount/models.py:77
211211 msgid "provider"
212212 msgstr "プロバイダー"
213213
214 #: socialaccount/models.py:52
214 #: socialaccount/models.py:46
215215 msgid "name"
216216 msgstr "ユーザー名"
217217
218 #: socialaccount/models.py:54
218 #: socialaccount/models.py:48
219219 msgid "client id"
220220 msgstr ""
221221
222 #: socialaccount/models.py:56
222 #: socialaccount/models.py:50
223223 msgid "App ID, or consumer key"
224224 msgstr ""
225225
226 #: socialaccount/models.py:57
226 #: socialaccount/models.py:51
227227 msgid "secret key"
228228 msgstr ""
229229
230 #: socialaccount/models.py:59
230 #: socialaccount/models.py:53
231231 msgid "API secret, client secret, or consumer secret"
232232 msgstr ""
233233
234 #: socialaccount/models.py:64
234 #: socialaccount/models.py:58
235235 msgid "Key"
236236 msgstr ""
237237
238 #: socialaccount/models.py:72
238 #: socialaccount/models.py:66
239239 msgid "social application"
240240 msgstr ""
241241
242 #: socialaccount/models.py:73
242 #: socialaccount/models.py:67
243243 msgid "social applications"
244244 msgstr ""
245245
246 #: socialaccount/models.py:96
247 msgid "uid"
248 msgstr ""
249
250 #: socialaccount/models.py:98
251 msgid "last login"
252 msgstr ""
253
254 #: socialaccount/models.py:100
255 msgid "date joined"
256 msgstr ""
257
246258 #: socialaccount/models.py:102
247 msgid "uid"
248 msgstr ""
249
250 #: socialaccount/models.py:104
251 msgid "last login"
259 msgid "extra data"
252260 msgstr ""
253261
254262 #: socialaccount/models.py:106
255 msgid "date joined"
256 msgstr ""
257
258 #: socialaccount/models.py:108
259 msgid "extra data"
260 msgstr ""
261
262 #: socialaccount/models.py:112
263263 msgid "social account"
264264 msgstr ""
265265
266 #: socialaccount/models.py:113
266 #: socialaccount/models.py:107
267267 msgid "social accounts"
268268 msgstr ""
269269
270 #: socialaccount/models.py:139
270 #: socialaccount/models.py:133
271271 msgid "token"
272272 msgstr ""
273273
274 #: socialaccount/models.py:141
274 #: socialaccount/models.py:135
275275 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
276276 msgstr ""
277277
278 #: socialaccount/models.py:144
278 #: socialaccount/models.py:138
279279 msgid "token secret"
280280 msgstr ""
281281
282 #: socialaccount/models.py:140
283 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
284 msgstr ""
285
286 #: socialaccount/models.py:142
287 msgid "expires at"
288 msgstr ""
289
282290 #: socialaccount/models.py:146
283 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
284 msgstr ""
285
286 #: socialaccount/models.py:148
287 msgid "expires at"
288 msgstr ""
289
290 #: socialaccount/models.py:152
291291 msgid "social application token"
292292 msgstr ""
293293
294 #: socialaccount/models.py:153
294 #: socialaccount/models.py:147
295295 msgid "social application tokens"
296296 msgstr ""
297297
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2017-10-29 09:56-0500\n"
10 "POT-Creation-Date: 2018-02-02 12:55-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"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=1; plural=0;\n"
1919
20 #: account/adapter.py:48
20 #: account/adapter.py:45
2121 msgid "Username can not be used. Please use other username."
2222 msgstr "해당 아이디는 이미 사용중입니다. 다른 사용자명을 이용해 주세요."
2323
24 #: account/adapter.py:52
24 #: account/adapter.py:49
2525 msgid "Too many failed login attempts. Try again later."
2626 msgstr "너무 많은 로그인 실패가 감지되었습니다. 잠시 후에 다시 시도하세요."
2727
28 #: account/adapter.py:54
28 #: account/adapter.py:51
2929 msgid "A user is already registered with this e-mail address."
3030 msgstr "해당 이메일은 이미 사용되고 있습니다."
3131
32 #: account/adapter.py:291
32 #: account/adapter.py:288
3333 #, python-brace-format
3434 msgid "Password must be a minimum of {0} characters."
3535 msgstr "비밀번호는 최소 {0}자 이상이어야 합니다."
3838 msgid "Accounts"
3939 msgstr "계정"
4040
41 #: account/forms.py:41 account/forms.py:378
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:71 account/forms.py:345 account/forms.py:456
45 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4646 msgid "Password"
4747 msgstr "비밀번호"
4848
49 #: account/forms.py:72
49 #: account/forms.py:92
5050 msgid "Remember Me"
5151 msgstr "아이디 저장"
5252
53 #: account/forms.py:78
53 #: account/forms.py:98
5454 msgid "This account is currently inactive."
5555 msgstr "해당 계정은 현재 비활성화 상태입니다."
5656
57 #: account/forms.py:81
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:84
61 #: account/forms.py:104
6262 msgid "The username and/or password you specified are not correct."
6363 msgstr "아이디 또는 비밀번호가 올바르지 않습니다."
6464
65 #: account/forms.py:93 account/forms.py:248 account/forms.py:406
66 #: account/forms.py:475
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:95 account/forms.py:281 account/forms.py:401
71 #: account/forms.py:470
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:100 account/forms.py:103 account/forms.py:240
76 #: account/forms.py:244
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:110
80 #: account/forms.py:130
8181 msgid "Username or e-mail"
8282 msgstr "아이디 또는 이메일"
8383
84 #: account/forms.py:113
84 #: account/forms.py:133
8585 msgctxt "field label"
8686 msgid "Login"
8787 msgstr "로그인"
8888
89 #: account/forms.py:272
89 #: account/forms.py:292
9090 msgid "E-mail (again)"
9191 msgstr "이메일 (확인)"
9292
93 #: account/forms.py:276
93 #: account/forms.py:296
9494 msgid "E-mail address confirmation"
9595 msgstr "이메일 주소 확인"
9696
97 #: account/forms.py:284
97 #: account/forms.py:304
9898 msgid "E-mail (optional)"
9999 msgstr "이메일 (선택사항)"
100100
101 #: account/forms.py:325
101 #: account/forms.py:345
102102 msgid "You must type the same email each time."
103103 msgstr "동일한 이메일을 입력해야 합니다."
104104
105 #: account/forms.py:348 account/forms.py:457
105 #: account/forms.py:368 account/forms.py:477
106106 msgid "Password (again)"
107107 msgstr "비밀번호 (확인)"
108108
109 #: account/forms.py:412
109 #: account/forms.py:432
110110 msgid "This e-mail address is already associated with this account."
111111 msgstr "해당 이메일은 이미 이 계정에 등록되어 있습니다."
112112
113 #: account/forms.py:414
113 #: account/forms.py:434
114114 msgid "This e-mail address is already associated with another account."
115115 msgstr "해당 이메일은 다른 계정에 등록되어 있습니다."
116116
117 #: account/forms.py:436
117 #: account/forms.py:456
118118 msgid "Current Password"
119119 msgstr "현재 비밀번호"
120120
121 #: account/forms.py:437 account/forms.py:526
121 #: account/forms.py:457 account/forms.py:546
122122 msgid "New Password"
123123 msgstr "새 비밀번호"
124124
125 #: account/forms.py:438 account/forms.py:527
125 #: account/forms.py:458 account/forms.py:547
126126 msgid "New Password (again)"
127127 msgstr "새 비밀번호 (확인)"
128128
129 #: account/forms.py:446
129 #: account/forms.py:466
130130 msgid "Please type your current password."
131131 msgstr "현재 비밀번호를 입력하세요."
132132
133 #: account/forms.py:484
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:548
137 #: account/forms.py:568
138138 msgid "The password reset token was invalid."
139139 msgstr "비밀번호 초기화 토큰이 올바르지 않습니다."
140140
170170 msgid "sent"
171171 msgstr "전송됨"
172172
173 #: account/models.py:86 socialaccount/models.py:61
173 #: account/models.py:86 socialaccount/models.py:55
174174 msgid "key"
175175 msgstr "키"
176176
203203 msgid "Social Accounts"
204204 msgstr "소셜 계정"
205205
206 #: socialaccount/models.py:49 socialaccount/models.py:83
206 #: socialaccount/models.py:43 socialaccount/models.py:77
207207 msgid "provider"
208208 msgstr "제공자"
209209
210 #: socialaccount/models.py:52
210 #: socialaccount/models.py:46
211211 msgid "name"
212212 msgstr "이름"
213213
214 #: socialaccount/models.py:54
214 #: socialaccount/models.py:48
215215 msgid "client id"
216216 msgstr "클라이언트 아이디"
217217
218 #: socialaccount/models.py:56
218 #: socialaccount/models.py:50
219219 msgid "App ID, or consumer key"
220220 msgstr "앱 아이디 또는 컨슈머 아이디"
221221
222 #: socialaccount/models.py:57
222 #: socialaccount/models.py:51
223223 msgid "secret key"
224224 msgstr "비밀 키"
225225
226 #: socialaccount/models.py:59
226 #: socialaccount/models.py:53
227227 msgid "API secret, client secret, or consumer secret"
228228 msgstr "API 비밀 키, 클라이언트 비밀 키, 또는 컨슈머 비밀 키"
229229
230 #: socialaccount/models.py:64
230 #: socialaccount/models.py:58
231231 msgid "Key"
232232 msgstr "키"
233233
234 #: socialaccount/models.py:72
234 #: socialaccount/models.py:66
235235 msgid "social application"
236236 msgstr "소셜 어플리케이션"
237237
238 #: socialaccount/models.py:73
238 #: socialaccount/models.py:67
239239 msgid "social applications"
240240 msgstr "소셜 어플리케이션"
241241
242 #: socialaccount/models.py:102
242 #: socialaccount/models.py:96
243243 msgid "uid"
244244 msgstr ""
245245
246 #: socialaccount/models.py:104
246 #: socialaccount/models.py:98
247247 msgid "last login"
248248 msgstr "최종 로그인"
249249
250 #: socialaccount/models.py:106
250 #: socialaccount/models.py:100
251251 msgid "date joined"
252252 msgstr "가입 날짜"
253253
254 #: socialaccount/models.py:108
254 #: socialaccount/models.py:102
255255 msgid "extra data"
256256 msgstr "추가 정보"
257257
258 #: socialaccount/models.py:112
258 #: socialaccount/models.py:106
259259 msgid "social account"
260260 msgstr "소셜 계정"
261261
262 #: socialaccount/models.py:113
262 #: socialaccount/models.py:107
263263 msgid "social accounts"
264264 msgstr "소셜 계정"
265265
266 #: socialaccount/models.py:139
266 #: socialaccount/models.py:133
267267 msgid "token"
268268 msgstr "토큰"
269269
270 #: socialaccount/models.py:141
270 #: socialaccount/models.py:135
271271 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
272272 msgstr "\"oauth_token\" (OAuth1) 또는 access token (OAuth2)"
273273
274 #: socialaccount/models.py:144
274 #: socialaccount/models.py:138
275275 msgid "token secret"
276276 msgstr ""
277277
278 #: socialaccount/models.py:146
278 #: socialaccount/models.py:140
279279 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
280280 msgstr "\"oauth_token_secret\" (OAuth1) 또는 refresh token (OAuth2)"
281281
282 #: socialaccount/models.py:148
282 #: socialaccount/models.py:142
283283 msgid "expires at"
284284 msgstr "만료일"
285285
286 #: socialaccount/models.py:152
286 #: socialaccount/models.py:146
287287 msgid "social application token"
288288 msgstr "소셜 어플리케이션 토큰"
289289
290 #: socialaccount/models.py:153
290 #: socialaccount/models.py:147
291291 msgid "social application tokens"
292292 msgstr "소셜 어플리케이션 토큰"
293293
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-10-29 09:56-0500\n"
9 "POT-Creation-Date: 2018-02-02 12:55-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"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "X-Generator: Poedit 1.5.4\n"
1818
19 #: account/adapter.py:48
19 #: account/adapter.py:45
2020 msgid "Username can not be used. Please use other username."
2121 msgstr "Бул атты колдонуу мүмкүн эмес. Башкасын тандаңыз."
2222
23 #: account/adapter.py:52
23 #: account/adapter.py:49
2424 msgid "Too many failed login attempts. Try again later."
2525 msgstr "Өтө көп жолу кирүү аракеттери жасалды. Кайрадан аракеттениңиз."
2626
27 #: account/adapter.py:54
27 #: account/adapter.py:51
2828 msgid "A user is already registered with this e-mail address."
2929 msgstr "Мындай эмейл менен катталган колдонуучу бар."
3030
31 #: account/adapter.py:291
31 #: account/adapter.py:288
3232 #, python-brace-format
3333 msgid "Password must be a minimum of {0} characters."
3434 msgstr "Купуя жок дегенде {0} белгиден турушу керек."
3737 msgid "Accounts"
3838 msgstr "Эсептер"
3939
40 #: account/forms.py:41 account/forms.py:378
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:71 account/forms.py:345 account/forms.py:456
44 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4545 msgid "Password"
4646 msgstr "Купуя"
4747
48 #: account/forms.py:72
48 #: account/forms.py:92
4949 msgid "Remember Me"
5050 msgstr "Мени эстеп кал"
5151
52 #: account/forms.py:78
52 #: account/forms.py:98
5353 msgid "This account is currently inactive."
5454 msgstr "Бул эсеп учурда активдүү эмес."
5555
56 #: account/forms.py:81
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:84
60 #: account/forms.py:104
6161 msgid "The username and/or password you specified are not correct."
6262 msgstr "Сиз берген колдонуучу аты жана/же купуя туура эмес."
6363
64 #: account/forms.py:93 account/forms.py:248 account/forms.py:406
65 #: account/forms.py:475
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:95 account/forms.py:281 account/forms.py:401
70 #: account/forms.py:470
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:100 account/forms.py:103 account/forms.py:240
75 #: account/forms.py:244
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:110
79 #: account/forms.py:130
8080 msgid "Username or e-mail"
8181 msgstr "Колдонуучу аты же эмейл"
8282
83 #: account/forms.py:113
83 #: account/forms.py:133
8484 msgctxt "field label"
8585 msgid "Login"
8686 msgstr "Логин"
8787
88 #: account/forms.py:272
88 #: account/forms.py:292
8989 #, fuzzy
9090 #| msgid "E-mail (optional)"
9191 msgid "E-mail (again)"
9292 msgstr "Эмейл (милдеттүү эмес)"
9393
94 #: account/forms.py:276
94 #: account/forms.py:296
9595 #, fuzzy
9696 #| msgid "email confirmation"
9797 msgid "E-mail address confirmation"
9898 msgstr "эмейл ырастоо"
9999
100 #: account/forms.py:284
100 #: account/forms.py:304
101101 msgid "E-mail (optional)"
102102 msgstr "Эмейл (милдеттүү эмес)"
103103
104 #: account/forms.py:325
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:348 account/forms.py:457
110 #: account/forms.py:368 account/forms.py:477
111111 msgid "Password (again)"
112112 msgstr "Купуя (дагы бир жолу)"
113113
114 #: account/forms.py:412
114 #: account/forms.py:432
115115 msgid "This e-mail address is already associated with this account."
116116 msgstr "Бул эмейл дарек ушул эсеп менен буга чейин туташтырылган."
117117
118 #: account/forms.py:414
118 #: account/forms.py:434
119119 msgid "This e-mail address is already associated with another account."
120120 msgstr "Бул эмейл дарек башка бир эсеп менен буга чейин туташтырылган."
121121
122 #: account/forms.py:436
122 #: account/forms.py:456
123123 msgid "Current Password"
124124 msgstr "Азыркы купуя"
125125
126 #: account/forms.py:437 account/forms.py:526
126 #: account/forms.py:457 account/forms.py:546
127127 msgid "New Password"
128128 msgstr "Жаңы купуя"
129129
130 #: account/forms.py:438 account/forms.py:527
130 #: account/forms.py:458 account/forms.py:547
131131 msgid "New Password (again)"
132132 msgstr "Жаңы купуя (кайрадан)"
133133
134 #: account/forms.py:446
134 #: account/forms.py:466
135135 msgid "Please type your current password."
136136 msgstr "Учурдагы купуяңызды жазыңыз."
137137
138 #: account/forms.py:484
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:548
142 #: account/forms.py:568
143143 msgid "The password reset token was invalid."
144144 msgstr "Купуяны жаңыртуу токени туура эмес."
145145
175175 msgid "sent"
176176 msgstr "жөнөтүлгөн"
177177
178 #: account/models.py:86 socialaccount/models.py:61
178 #: account/models.py:86 socialaccount/models.py:55
179179 msgid "key"
180180 msgstr "ачкыч"
181181
208208 msgid "Social Accounts"
209209 msgstr "Социалдык эсептер"
210210
211 #: socialaccount/models.py:49 socialaccount/models.py:83
211 #: socialaccount/models.py:43 socialaccount/models.py:77
212212 msgid "provider"
213213 msgstr "провайдер"
214214
215 #: socialaccount/models.py:52
215 #: socialaccount/models.py:46
216216 msgid "name"
217217 msgstr "аты"
218218
219 #: socialaccount/models.py:54
219 #: socialaccount/models.py:48
220220 msgid "client id"
221221 msgstr "кардар id'си"
222222
223 #: socialaccount/models.py:56
223 #: socialaccount/models.py:50
224224 msgid "App ID, or consumer key"
225225 msgstr "Колдонмо ID'си, же керектөөчү ачкычы"
226226
227 #: socialaccount/models.py:57
227 #: socialaccount/models.py:51
228228 msgid "secret key"
229229 msgstr "жашыруун ачкыч"
230230
231 #: socialaccount/models.py:59
231 #: socialaccount/models.py:53
232232 msgid "API secret, client secret, or consumer secret"
233233 msgstr "API, кардар же керектөөчүнүн жашыруун ачкычы"
234234
235 #: socialaccount/models.py:64
235 #: socialaccount/models.py:58
236236 msgid "Key"
237237 msgstr "Ачкыч"
238238
239 #: socialaccount/models.py:72
239 #: socialaccount/models.py:66
240240 msgid "social application"
241241 msgstr "социалдык колдонмо"
242242
243 #: socialaccount/models.py:73
243 #: socialaccount/models.py:67
244244 msgid "social applications"
245245 msgstr "социалдык колдонмолор"
246246
247 #: socialaccount/models.py:102
247 #: socialaccount/models.py:96
248248 msgid "uid"
249249 msgstr "uid"
250250
251 #: socialaccount/models.py:104
251 #: socialaccount/models.py:98
252252 msgid "last login"
253253 msgstr "акыркы кириши"
254254
255 #: socialaccount/models.py:106
255 #: socialaccount/models.py:100
256256 msgid "date joined"
257257 msgstr "кошулган күнү"
258258
259 #: socialaccount/models.py:108
259 #: socialaccount/models.py:102
260260 msgid "extra data"
261261 msgstr "кошумча маалымат"
262262
263 #: socialaccount/models.py:112
263 #: socialaccount/models.py:106
264264 msgid "social account"
265265 msgstr "социалдык эсеп"
266266
267 #: socialaccount/models.py:113
267 #: socialaccount/models.py:107
268268 msgid "social accounts"
269269 msgstr "социалдык эсептер"
270270
271 #: socialaccount/models.py:139
271 #: socialaccount/models.py:133
272272 msgid "token"
273273 msgstr "токен"
274274
275 #: socialaccount/models.py:141
275 #: socialaccount/models.py:135
276276 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
277277 msgstr "\"oauth_token\" (OAuth1) же жетки токени (OAuth2)"
278278
279 #: socialaccount/models.py:144
279 #: socialaccount/models.py:138
280280 msgid "token secret"
281281 msgstr "токендин жашыруун ачкычы"
282282
283 #: socialaccount/models.py:146
283 #: socialaccount/models.py:140
284284 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
285285 msgstr "\"oauth_token_secret\" (OAuth1) же жаңыртуу токени (OAuth2)"
286286
287 #: socialaccount/models.py:148
287 #: socialaccount/models.py:142
288288 msgid "expires at"
289289 msgstr "мөөнөтү аяктайт"
290290
291 #: socialaccount/models.py:152
291 #: socialaccount/models.py:146
292292 msgid "social application token"
293293 msgstr "социалдык колдонмо токени"
294294
295 #: socialaccount/models.py:153
295 #: socialaccount/models.py:147
296296 msgid "social application tokens"
297297 msgstr "социалдык колдонмо токендери"
298298
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2017-10-29 09:56-0500\n"
10 "POT-Creation-Date: 2018-02-02 12:55-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"
1818 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
1919 "%100<10 || n%100>=20) ? 1 : 2);\n"
2020
21 #: account/adapter.py:48
21 #: account/adapter.py:45
2222 msgid "Username can not be used. Please use other username."
2323 msgstr ""
2424 "Šis naudotojo vardas negalimas. Prašome pasirinkti kitą naudotojo vardą."
2525
26 #: account/adapter.py:52
26 #: account/adapter.py:49
2727 msgid "Too many failed login attempts. Try again later."
2828 msgstr ""
2929
30 #: account/adapter.py:54
30 #: account/adapter.py:51
3131 msgid "A user is already registered with this e-mail address."
3232 msgstr "Šiuo el. pašto adresu jau yra užsiregistravęs kitas naudotojas."
3333
34 #: account/adapter.py:291
34 #: account/adapter.py:288
3535 #, python-brace-format
3636 msgid "Password must be a minimum of {0} characters."
3737 msgstr "Slaptažodis turi būti sudarytas mažiausiai iš {0} simbolių."
4040 msgid "Accounts"
4141 msgstr "Paskyros"
4242
43 #: account/forms.py:41 account/forms.py:378
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:71 account/forms.py:345 account/forms.py:456
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:72
51 #: account/forms.py:92
5252 msgid "Remember Me"
5353 msgstr "Prisimink mane"
5454
55 #: account/forms.py:78
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:81
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:84
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:93 account/forms.py:248 account/forms.py:406
68 #: account/forms.py:475
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:95 account/forms.py:281 account/forms.py:401
73 #: account/forms.py:470
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:100 account/forms.py:103 account/forms.py:240
78 #: account/forms.py:244
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:110
82 #: account/forms.py:130
8383 msgid "Username or e-mail"
8484 msgstr "Naudotojo vardas arba el. paštas"
8585
86 #: account/forms.py:113
86 #: account/forms.py:133
8787 msgctxt "field label"
8888 msgid "Login"
8989 msgstr "Prisijungimo vardas"
9090
91 #: account/forms.py:272
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:276
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:284
103 #: account/forms.py:304
104104 msgid "E-mail (optional)"
105105 msgstr "El. paštas (neprivalomas)"
106106
107 #: account/forms.py:325
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:348 account/forms.py:457
113 #: account/forms.py:368 account/forms.py:477
114114 msgid "Password (again)"
115115 msgstr "Slaptažodis (pakartoti)"
116116
117 #: account/forms.py:412
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:414
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:436
125 #: account/forms.py:456
126126 msgid "Current Password"
127127 msgstr "Esamas slaptažodis"
128128
129 #: account/forms.py:437 account/forms.py:526
129 #: account/forms.py:457 account/forms.py:546
130130 msgid "New Password"
131131 msgstr "Naujas slaptažodis"
132132
133 #: account/forms.py:438 account/forms.py:527
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:446
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:484
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:548
145 #: account/forms.py:568
146146 msgid "The password reset token was invalid."
147147 msgstr "Neteisingas slaptažodžio atstatymo atpažinimo ženklas."
148148
178178 msgid "sent"
179179 msgstr "išsiųstas"
180180
181 #: account/models.py:86 socialaccount/models.py:61
181 #: account/models.py:86 socialaccount/models.py:55
182182 msgid "key"
183183 msgstr "raktas"
184184
211211 msgid "Social Accounts"
212212 msgstr "Socialinės paskyros"
213213
214 #: socialaccount/models.py:49 socialaccount/models.py:83
214 #: socialaccount/models.py:43 socialaccount/models.py:77
215215 msgid "provider"
216216 msgstr "tiekėjas"
217217
218 #: socialaccount/models.py:52
218 #: socialaccount/models.py:46
219219 msgid "name"
220220 msgstr "pavadinimas"
221221
222 #: socialaccount/models.py:54
222 #: socialaccount/models.py:48
223223 msgid "client id"
224224 msgstr "kliento id"
225225
226 #: socialaccount/models.py:56
226 #: socialaccount/models.py:50
227227 msgid "App ID, or consumer key"
228228 msgstr "App ID arba consumer key"
229229
230 #: socialaccount/models.py:57
230 #: socialaccount/models.py:51
231231 msgid "secret key"
232232 msgstr "secret key"
233233
234 #: socialaccount/models.py:59
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:64
238 #: socialaccount/models.py:58
239239 msgid "Key"
240240 msgstr "Raktas"
241241
242 #: socialaccount/models.py:72
242 #: socialaccount/models.py:66
243243 msgid "social application"
244244 msgstr "socialinė programėlė"
245245
246 #: socialaccount/models.py:73
246 #: socialaccount/models.py:67
247247 msgid "social applications"
248248 msgstr "socialinės programėlės"
249249
250 #: socialaccount/models.py:102
250 #: socialaccount/models.py:96
251251 msgid "uid"
252252 msgstr "uid"
253253
254 #: socialaccount/models.py:104
254 #: socialaccount/models.py:98
255255 msgid "last login"
256256 msgstr "paskutinis prisijungimas"
257257
258 #: socialaccount/models.py:106
258 #: socialaccount/models.py:100
259259 msgid "date joined"
260260 msgstr "registracijos data"
261261
262 #: socialaccount/models.py:108
262 #: socialaccount/models.py:102
263263 msgid "extra data"
264264 msgstr "papildomi duomenys"
265265
266 #: socialaccount/models.py:112
266 #: socialaccount/models.py:106
267267 msgid "social account"
268268 msgstr "socialinė paskyra"
269269
270 #: socialaccount/models.py:113
270 #: socialaccount/models.py:107
271271 msgid "social accounts"
272272 msgstr "socialinės paskyros"
273273
274 #: socialaccount/models.py:139
274 #: socialaccount/models.py:133
275275 msgid "token"
276276 msgstr "atpažinimo ženklas"
277277
278 #: socialaccount/models.py:141
278 #: socialaccount/models.py:135
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:144
282 #: socialaccount/models.py:138
283283 msgid "token secret"
284284 msgstr "token secret"
285285
286 #: socialaccount/models.py:146
286 #: socialaccount/models.py:140
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:148
291 #: socialaccount/models.py:142
292292 msgid "expires at"
293293 msgstr "galiojimas"
294294
295 #: socialaccount/models.py:152
295 #: socialaccount/models.py:146
296296 msgid "social application token"
297297 msgstr "socialinės programėlės atpažinimo ženklas"
298298
299 #: socialaccount/models.py:153
299 #: socialaccount/models.py:147
300300 msgid "social application tokens"
301301 msgstr "socialinės programėlės atpažinimo ženklai"
302302
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2017-10-29 09:56-0500\n"
10 "POT-Creation-Date: 2018-02-02 12:55-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"
1818 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : "
1919 "2);\n"
2020
21 #: account/adapter.py:48
21 #: account/adapter.py:45
2222 msgid "Username can not be used. Please use other username."
2323 msgstr ""
2424 "Lietotājvārds nevar tikt izmantots. Lūdzu izvēlietis citu lietotājvārdu."
2525
26 #: account/adapter.py:52
26 #: account/adapter.py:49
2727 msgid "Too many failed login attempts. Try again later."
2828 msgstr ""
2929 "Pārāk daudz neveiksmīgi pieslēgšanās mēģinājumi. Mēģiniet vēlreiz vēlāk."
3030
31 #: account/adapter.py:54
31 #: account/adapter.py:51
3232 msgid "A user is already registered with this e-mail address."
3333 msgstr "Lietotājs ar šādu e-pasta adresi jau ir reģistrēts."
3434
35 #: account/adapter.py:291
35 #: account/adapter.py:288
3636 #, python-brace-format
3737 msgid "Password must be a minimum of {0} characters."
3838 msgstr "Parolei jābūt vismaz {0} simbolus garai."
4141 msgid "Accounts"
4242 msgstr "Konti"
4343
44 #: account/forms.py:41 account/forms.py:378
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:71 account/forms.py:345 account/forms.py:456
48 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4949 msgid "Password"
5050 msgstr "Parole"
5151
52 #: account/forms.py:72
52 #: account/forms.py:92
5353 msgid "Remember Me"
5454 msgstr "Atcerēties mani"
5555
56 #: account/forms.py:78
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:81
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:84
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:93 account/forms.py:248 account/forms.py:406
69 #: account/forms.py:475
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:95 account/forms.py:281 account/forms.py:401
74 #: account/forms.py:470
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:100 account/forms.py:103 account/forms.py:240
79 #: account/forms.py:244
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:110
83 #: account/forms.py:130
8484 msgid "Username or e-mail"
8585 msgstr "Lietotājvārds vai e-pasts"
8686
87 #: account/forms.py:113
87 #: account/forms.py:133
8888 msgctxt "field label"
8989 msgid "Login"
9090 msgstr "Ieiet"
9191
92 #: account/forms.py:272
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:276
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:284
104 #: account/forms.py:304
105105 msgid "E-mail (optional)"
106106 msgstr "E-pasts (izvēles)"
107107
108 #: account/forms.py:325
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:348 account/forms.py:457
114 #: account/forms.py:368 account/forms.py:477
115115 msgid "Password (again)"
116116 msgstr "Parole (vēlreiz)"
117117
118 #: account/forms.py:412
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:414
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:436
126 #: account/forms.py:456
127127 msgid "Current Password"
128128 msgstr "Šobrīdējā parole"
129129
130 #: account/forms.py:437 account/forms.py:526
130 #: account/forms.py:457 account/forms.py:546
131131 msgid "New Password"
132132 msgstr "Jaunā parole"
133133
134 #: account/forms.py:438 account/forms.py:527
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:446
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:484
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:548
146 #: account/forms.py:568
147147 msgid "The password reset token was invalid."
148148 msgstr "Paroles atjaunošanas marķieris bija nederīgs."
149149
179179 msgid "sent"
180180 msgstr "nosūtīts"
181181
182 #: account/models.py:86 socialaccount/models.py:61
182 #: account/models.py:86 socialaccount/models.py:55
183183 msgid "key"
184184 msgstr "atslēga"
185185
212212 msgid "Social Accounts"
213213 msgstr "Sociālie konti"
214214
215 #: socialaccount/models.py:49 socialaccount/models.py:83
215 #: socialaccount/models.py:43 socialaccount/models.py:77
216216 msgid "provider"
217217 msgstr "sniedzējs"
218218
219 #: socialaccount/models.py:52
219 #: socialaccount/models.py:46
220220 msgid "name"
221221 msgstr "vārds"
222222
223 #: socialaccount/models.py:54
223 #: socialaccount/models.py:48
224224 msgid "client id"
225225 msgstr "klienta id"
226226
227 #: socialaccount/models.py:56
227 #: socialaccount/models.py:50
228228 msgid "App ID, or consumer key"
229229 msgstr "App ID, vai consumer key"
230230
231 #: socialaccount/models.py:57
231 #: socialaccount/models.py:51
232232 msgid "secret key"
233233 msgstr "secret key"
234234
235 #: socialaccount/models.py:59
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:64
239 #: socialaccount/models.py:58
240240 msgid "Key"
241241 msgstr "Key"
242242
243 #: socialaccount/models.py:72
243 #: socialaccount/models.py:66
244244 msgid "social application"
245245 msgstr "sociālā aplikācija"
246246
247 #: socialaccount/models.py:73
247 #: socialaccount/models.py:67
248248 msgid "social applications"
249249 msgstr "sociālās aplikācijas"
250250
251 #: socialaccount/models.py:102
251 #: socialaccount/models.py:96
252252 msgid "uid"
253253 msgstr "uid"
254254
255 #: socialaccount/models.py:104
255 #: socialaccount/models.py:98
256256 msgid "last login"
257257 msgstr "pēdējā pieslēgšanās"
258258
259 #: socialaccount/models.py:106
259 #: socialaccount/models.py:100
260260 msgid "date joined"
261261 msgstr "reģistrācijas datums"
262262
263 #: socialaccount/models.py:108
263 #: socialaccount/models.py:102
264264 msgid "extra data"
265265 msgstr "papildus informācija"
266266
267 #: socialaccount/models.py:112
267 #: socialaccount/models.py:106
268268 msgid "social account"
269269 msgstr "sociālais konts"
270270
271 #: socialaccount/models.py:113
271 #: socialaccount/models.py:107
272272 msgid "social accounts"
273273 msgstr "sociālie konti"
274274
275 #: socialaccount/models.py:139
275 #: socialaccount/models.py:133
276276 msgid "token"
277277 msgstr "token"
278278
279 #: socialaccount/models.py:141
279 #: socialaccount/models.py:135
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:144
283 #: socialaccount/models.py:138
284284 msgid "token secret"
285285 msgstr "token secret"
286286
287 #: socialaccount/models.py:146
287 #: socialaccount/models.py:140
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:148
291 #: socialaccount/models.py:142
292292 msgid "expires at"
293293 msgstr "beidzas"
294294
295 #: socialaccount/models.py:152
295 #: socialaccount/models.py:146
296296 msgid "social application token"
297297 msgstr "sociālās aplikācijas marķieris"
298298
299 #: socialaccount/models.py:153
299 #: socialaccount/models.py:147
300300 msgid "social application tokens"
301301 msgstr "sociālās aplikācijas marķieri"
302302
77 msgstr ""
88 "Project-Id-Version: django-allauth\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2017-10-29 09:56-0500\n"
10 "POT-Creation-Date: 2018-02-02 12:55-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/"
1818 "Content-Transfer-Encoding: 8bit\n"
1919 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
2020
21 #: account/adapter.py:48
21 #: account/adapter.py:45
2222 msgid "Username can not be used. Please use other username."
2323 msgstr "Deze gebruikersnaam mag je niet gebruiken, kies een andere."
2424
25 #: account/adapter.py:52
25 #: account/adapter.py:49
2626 msgid "Too many failed login attempts. Try again later."
2727 msgstr "Teveel foutieve inlog pogingen. Probeer het later nogmaals."
2828
29 #: account/adapter.py:54
29 #: account/adapter.py:51
3030 msgid "A user is already registered with this e-mail address."
3131 msgstr "Er is al een gebruiker geregistreerd met dit e-mailadres."
3232
33 #: account/adapter.py:291
33 #: account/adapter.py:288
3434 #, python-brace-format
3535 msgid "Password must be a minimum of {0} characters."
3636 msgstr "Het wachtwoord moet minimaal {0} tekens bevatten."
3939 msgid "Accounts"
4040 msgstr "Accounts"
4141
42 #: account/forms.py:41 account/forms.py:378
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:71 account/forms.py:345 account/forms.py:456
46 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4747 msgid "Password"
4848 msgstr "Wachtwoord"
4949
50 #: account/forms.py:72
50 #: account/forms.py:92
5151 msgid "Remember Me"
5252 msgstr "Onthouden"
5353
54 #: account/forms.py:78
54 #: account/forms.py:98
5555 msgid "This account is currently inactive."
5656 msgstr "Dit account is niet actief"
5757
58 #: account/forms.py:81
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:84
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:93 account/forms.py:248 account/forms.py:406
67 #: account/forms.py:475
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:95 account/forms.py:281 account/forms.py:401
72 #: account/forms.py:470
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:100 account/forms.py:103 account/forms.py:240
77 #: account/forms.py:244
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:110
81 #: account/forms.py:130
8282 msgid "Username or e-mail"
8383 msgstr "Gebruikersnaam of e-mail"
8484
85 #: account/forms.py:113
85 #: account/forms.py:133
8686 msgctxt "field label"
8787 msgid "Login"
8888 msgstr "Login"
8989
90 #: account/forms.py:272
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:276
96 #: account/forms.py:296
9797 msgid "E-mail address confirmation"
9898 msgstr "Bevestig e-mailadres"
9999
100 #: account/forms.py:284
100 #: account/forms.py:304
101101 msgid "E-mail (optional)"
102102 msgstr "E-mail (optioneel)"
103103
104 #: account/forms.py:325
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:348 account/forms.py:457
108 #: account/forms.py:368 account/forms.py:477
109109 msgid "Password (again)"
110110 msgstr "Wachtwoord (bevestigen)"
111111
112 #: account/forms.py:412
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:414
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:436
120 #: account/forms.py:456
121121 msgid "Current Password"
122122 msgstr "Huidig wachtwoord"
123123
124 #: account/forms.py:437 account/forms.py:526
124 #: account/forms.py:457 account/forms.py:546
125125 msgid "New Password"
126126 msgstr "Nieuw wachtwoord"
127127
128 #: account/forms.py:438 account/forms.py:527
128 #: account/forms.py:458 account/forms.py:547
129129 msgid "New Password (again)"
130130 msgstr "Nieuw wachtwoord (bevestigen)"
131131
132 #: account/forms.py:446
132 #: account/forms.py:466
133133 msgid "Please type your current password."
134134 msgstr "Geef je huidige wachtwoord op."
135135
136 #: account/forms.py:484
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:548
140 #: account/forms.py:568
141141 msgid "The password reset token was invalid."
142142 msgstr "De wachtwoordherstel-sleutel is niet geldig."
143143
173173 msgid "sent"
174174 msgstr "verstuurd"
175175
176 #: account/models.py:86 socialaccount/models.py:61
176 #: account/models.py:86 socialaccount/models.py:55
177177 msgid "key"
178178 msgstr "sleutel"
179179
206206 msgid "Social Accounts"
207207 msgstr "Sociale accounts"
208208
209 #: socialaccount/models.py:49 socialaccount/models.py:83
209 #: socialaccount/models.py:43 socialaccount/models.py:77
210210 msgid "provider"
211211 msgstr ""
212212
213 #: socialaccount/models.py:52
213 #: socialaccount/models.py:46
214214 msgid "name"
215215 msgstr "naam"
216216
217 #: socialaccount/models.py:54
217 #: socialaccount/models.py:48
218218 msgid "client id"
219219 msgstr ""
220220
221 #: socialaccount/models.py:56
221 #: socialaccount/models.py:50
222222 msgid "App ID, or consumer key"
223223 msgstr ""
224224
225 #: socialaccount/models.py:57
225 #: socialaccount/models.py:51
226226 msgid "secret key"
227227 msgstr ""
228228
229 #: socialaccount/models.py:59
229 #: socialaccount/models.py:53
230230 msgid "API secret, client secret, or consumer secret"
231231 msgstr ""
232232
233 #: socialaccount/models.py:64
233 #: socialaccount/models.py:58
234234 msgid "Key"
235235 msgstr ""
236236
237 #: socialaccount/models.py:72
237 #: socialaccount/models.py:66
238238 msgid "social application"
239239 msgstr ""
240240
241 #: socialaccount/models.py:73
241 #: socialaccount/models.py:67
242242 msgid "social applications"
243243 msgstr ""
244244
245 #: socialaccount/models.py:96
246 msgid "uid"
247 msgstr ""
248
249 #: socialaccount/models.py:98
250 msgid "last login"
251 msgstr ""
252
253 #: socialaccount/models.py:100
254 msgid "date joined"
255 msgstr ""
256
245257 #: socialaccount/models.py:102
246 msgid "uid"
247 msgstr ""
248
249 #: socialaccount/models.py:104
250 msgid "last login"
258 msgid "extra data"
251259 msgstr ""
252260
253261 #: socialaccount/models.py:106
254 msgid "date joined"
255 msgstr ""
256
257 #: socialaccount/models.py:108
258 msgid "extra data"
259 msgstr ""
260
261 #: socialaccount/models.py:112
262262 msgid "social account"
263263 msgstr ""
264264
265 #: socialaccount/models.py:113
265 #: socialaccount/models.py:107
266266 msgid "social accounts"
267267 msgstr ""
268268
269 #: socialaccount/models.py:139
269 #: socialaccount/models.py:133
270270 msgid "token"
271271 msgstr ""
272272
273 #: socialaccount/models.py:141
273 #: socialaccount/models.py:135
274274 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
275275 msgstr ""
276276
277 #: socialaccount/models.py:144
277 #: socialaccount/models.py:138
278278 msgid "token secret"
279279 msgstr ""
280280
281 #: socialaccount/models.py:140
282 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
283 msgstr ""
284
285 #: socialaccount/models.py:142
286 msgid "expires at"
287 msgstr ""
288
281289 #: socialaccount/models.py:146
282 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
283 msgstr ""
284
285 #: socialaccount/models.py:148
286 msgid "expires at"
287 msgstr ""
288
289 #: socialaccount/models.py:152
290290 msgid "social application token"
291291 msgstr ""
292292
293 #: socialaccount/models.py:153
293 #: socialaccount/models.py:147
294294 msgid "social application tokens"
295295 msgstr ""
296296
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2017-10-29 09:56-0500\n"
10 "POT-Creation-Date: 2018-02-02 12:55-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"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818
19 #: account/adapter.py:48
19 #: account/adapter.py:45
2020 msgid "Username can not be used. Please use other username."
2121 msgstr "Brukernavnet kan ikke brukes. Vennligst bruk et annet brukernavn."
2222
23 #: account/adapter.py:52
23 #: account/adapter.py:49
2424 msgid "Too many failed login attempts. Try again later."
2525 msgstr "For mange innloggingsforsøk. Vennligst prøv igjen senere."
2626
27 #: account/adapter.py:54
27 #: account/adapter.py:51
2828 msgid "A user is already registered with this e-mail address."
2929 msgstr "En bruker med følgende e-postadresse er allerede registrert."
3030
31 #: account/adapter.py:291
31 #: account/adapter.py:288
3232 #, python-brace-format
3333 msgid "Password must be a minimum of {0} characters."
3434 msgstr "Passordet må være minst {0} tegn."
3737 msgid "Accounts"
3838 msgstr "Kontoer"
3939
40 #: account/forms.py:41 account/forms.py:378
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:71 account/forms.py:345 account/forms.py:456
44 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4545 msgid "Password"
4646 msgstr "Passord"
4747
48 #: account/forms.py:72
48 #: account/forms.py:92
4949 msgid "Remember Me"
5050 msgstr "Husk meg"
5151
52 #: account/forms.py:78
52 #: account/forms.py:98
5353 msgid "This account is currently inactive."
5454 msgstr "Denne kontoen er for tiden inaktiv."
5555
56 #: account/forms.py:81
56 #: account/forms.py:101
5757 msgid "The e-mail address and/or password you specified are not correct."
5858 msgstr "E-postadressen og/eller passordet du spesifiserte er feil."
5959
60 #: account/forms.py:84
60 #: account/forms.py:104
6161 msgid "The username and/or password you specified are not correct."
6262 msgstr "Brukernavnet og/eller passordet du spesifiserte er feil."
6363
64 #: account/forms.py:93 account/forms.py:248 account/forms.py:406
65 #: account/forms.py:475
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:95 account/forms.py:281 account/forms.py:401
70 #: account/forms.py:470
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:100 account/forms.py:103 account/forms.py:240
75 #: account/forms.py:244
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:110
79 #: account/forms.py:130
8080 msgid "Username or e-mail"
8181 msgstr "Brukernavn eller e-post"
8282
83 #: account/forms.py:113
83 #: account/forms.py:133
8484 msgctxt "field label"
8585 msgid "Login"
8686 msgstr "Logg inn"
8787
88 #: account/forms.py:272
88 #: account/forms.py:292
8989 msgid "E-mail (again)"
9090 msgstr "E-post (igjen)"
9191
92 #: account/forms.py:276
92 #: account/forms.py:296
9393 msgid "E-mail address confirmation"
9494 msgstr "E-postadresse bekreftelse"
9595
96 #: account/forms.py:284
96 #: account/forms.py:304
9797 msgid "E-mail (optional)"
9898 msgstr "E-post (valgfritt)"
9999
100 #: account/forms.py:325
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:348 account/forms.py:457
104 #: account/forms.py:368 account/forms.py:477
105105 msgid "Password (again)"
106106 msgstr "Passord (igjen)"
107107
108 #: account/forms.py:412
108 #: account/forms.py:432
109109 msgid "This e-mail address is already associated with this account."
110110 msgstr "Denne e-postadressen er allerede assosiert med denne kontoen."
111111
112 #: account/forms.py:414
112 #: account/forms.py:434
113113 msgid "This e-mail address is already associated with another account."
114114 msgstr "Denne e-postadressen er allerede assosiert med en annen konto."
115115
116 #: account/forms.py:436
116 #: account/forms.py:456
117117 msgid "Current Password"
118118 msgstr "Nåværende passord"
119119
120 #: account/forms.py:437 account/forms.py:526
120 #: account/forms.py:457 account/forms.py:546
121121 msgid "New Password"
122122 msgstr "Nytt passord"
123123
124 #: account/forms.py:438 account/forms.py:527
124 #: account/forms.py:458 account/forms.py:547
125125 msgid "New Password (again)"
126126 msgstr "Nytt passord (igjen)"
127127
128 #: account/forms.py:446
128 #: account/forms.py:466
129129 msgid "Please type your current password."
130130 msgstr "Vennligst skriv inn ditt passord."
131131
132 #: account/forms.py:484
132 #: account/forms.py:504
133133 msgid "The e-mail address is not assigned to any user account"
134134 msgstr "E-postadressen er ikke gitt til en brukerkonto"
135135
136 #: account/forms.py:548
136 #: account/forms.py:568
137137 msgid "The password reset token was invalid."
138138 msgstr "Passord gjennoprettelses token var ugyldig."
139139
169169 msgid "sent"
170170 msgstr "sendt"
171171
172 #: account/models.py:86 socialaccount/models.py:61
172 #: account/models.py:86 socialaccount/models.py:55
173173 msgid "key"
174174 msgstr "nøkkel"
175175
202202 msgid "Social Accounts"
203203 msgstr "Sosialkontoer"
204204
205 #: socialaccount/models.py:49 socialaccount/models.py:83
205 #: socialaccount/models.py:43 socialaccount/models.py:77
206206 msgid "provider"
207207 msgstr "tilbyder"
208208
209 #: socialaccount/models.py:52
209 #: socialaccount/models.py:46
210210 msgid "name"
211211 msgstr "navn"
212212
213 #: socialaccount/models.py:54
213 #: socialaccount/models.py:48
214214 msgid "client id"
215215 msgstr "klient id"
216216
217 #: socialaccount/models.py:56
217 #: socialaccount/models.py:50
218218 msgid "App ID, or consumer key"
219219 msgstr "App ID, eller konsumer nøkkel"
220220
221 #: socialaccount/models.py:57
221 #: socialaccount/models.py:51
222222 msgid "secret key"
223223 msgstr "hemmelig nøkkel"
224224
225 #: socialaccount/models.py:59
225 #: socialaccount/models.py:53
226226 msgid "API secret, client secret, or consumer secret"
227227 msgstr "API hemmelighet, klient hemmelighet eller konsumer hemmelighet"
228228
229 #: socialaccount/models.py:64
229 #: socialaccount/models.py:58
230230 msgid "Key"
231231 msgstr "Nøkkel"
232232
233 #: socialaccount/models.py:72
233 #: socialaccount/models.py:66
234234 msgid "social application"
235235 msgstr "sosial applikasjon"
236236
237 #: socialaccount/models.py:73
237 #: socialaccount/models.py:67
238238 msgid "social applications"
239239 msgstr "sosial applikasjoner"
240240
241 #: socialaccount/models.py:102
241 #: socialaccount/models.py:96
242242 msgid "uid"
243243 msgstr "uid"
244244
245 #: socialaccount/models.py:104
245 #: socialaccount/models.py:98
246246 msgid "last login"
247247 msgstr "siste innlogging"
248248
249 #: socialaccount/models.py:106
249 #: socialaccount/models.py:100
250250 msgid "date joined"
251251 msgstr "ble med dato"
252252
253 #: socialaccount/models.py:108
253 #: socialaccount/models.py:102
254254 msgid "extra data"
255255 msgstr "ekstra data"
256256
257 #: socialaccount/models.py:112
257 #: socialaccount/models.py:106
258258 msgid "social account"
259259 msgstr "sosialkonto"
260260
261 #: socialaccount/models.py:113
261 #: socialaccount/models.py:107
262262 msgid "social accounts"
263263 msgstr "sosialkontoer"
264264
265 #: socialaccount/models.py:139
265 #: socialaccount/models.py:133
266266 msgid "token"
267267 msgstr "token"
268268
269 #: socialaccount/models.py:141
269 #: socialaccount/models.py:135
270270 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
271271 msgstr "\"oauth_token\" (OAuth1) eller aksess token (OAuth2)"
272272
273 #: socialaccount/models.py:144
273 #: socialaccount/models.py:138
274274 msgid "token secret"
275275 msgstr "token hemmelighet"
276276
277 #: socialaccount/models.py:146
277 #: socialaccount/models.py:140
278278 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
279279 msgstr "\"oauth_token_secret\" (OAuth1) eller forfrisknings token (OAuth2)"
280280
281 #: socialaccount/models.py:148
281 #: socialaccount/models.py:142
282282 msgid "expires at"
283283 msgstr "utgår den"
284284
285 #: socialaccount/models.py:152
285 #: socialaccount/models.py:146
286286 msgid "social application token"
287287 msgstr "sosial applikasjon token"
288288
289 #: socialaccount/models.py:153
289 #: socialaccount/models.py:147
290290 msgid "social application tokens"
291291 msgstr "sosial applikasjon tokener"
292292
55 msgstr ""
66 "Project-Id-Version: \n"
77 "Report-Msgid-Bugs-To: \n"
8 "POT-Creation-Date: 2017-10-29 09:56-0500\n"
8 "POT-Creation-Date: 2018-02-02 12:55-0600\n"
99 "PO-Revision-Date: 2016-12-05 10:43+0100\n"
1010 "Last-Translator: Adam Dobrawy <naczelnik@jawnosc.tk>\n"
1111 "Language-Team: \n"
1515 "Content-Transfer-Encoding: 8bit\n"
1616 "X-Generator: Poedit 1.8.7.1\n"
1717
18 #: account/adapter.py:48
18 #: account/adapter.py:45
1919 msgid "Username can not be used. Please use other username."
2020 msgstr "Nie możesz użyć tej nazwy użytkownika. Proszę wybierz inną."
2121
22 #: account/adapter.py:52
22 #: account/adapter.py:49
2323 msgid "Too many failed login attempts. Try again later."
2424 msgstr "Zbyt wiele nieudanych prób logowania. Spróbuj ponownie później."
2525
26 #: account/adapter.py:54
26 #: account/adapter.py:51
2727 msgid "A user is already registered with this e-mail address."
2828 msgstr "W systemie jest już zarejestrowany użytkownik o tym adresie e-mail."
2929
30 #: account/adapter.py:291
30 #: account/adapter.py:288
3131 #, python-brace-format
3232 msgid "Password must be a minimum of {0} characters."
3333 msgstr "Hasło musi składać się minimalnie z {0} znaków."
3636 msgid "Accounts"
3737 msgstr "Konta"
3838
39 #: account/forms.py:41 account/forms.py:378
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:71 account/forms.py:345 account/forms.py:456
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:72
47 #: account/forms.py:92
4848 msgid "Remember Me"
4949 msgstr "Pamiętaj mnie"
5050
51 #: account/forms.py:78
51 #: account/forms.py:98
5252 msgid "This account is currently inactive."
5353 msgstr "Konto jest obecnie nieaktywne."
5454
55 #: account/forms.py:81
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:84
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:93 account/forms.py:248 account/forms.py:406
64 #: account/forms.py:475
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:95 account/forms.py:281 account/forms.py:401
69 #: account/forms.py:470
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:100 account/forms.py:103 account/forms.py:240
74 #: account/forms.py:244
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:110
78 #: account/forms.py:130
7979 msgid "Username or e-mail"
8080 msgstr "Nazwa użytkownika lub e-mail"
8181
82 #: account/forms.py:113
82 #: account/forms.py:133
8383 msgctxt "field label"
8484 msgid "Login"
8585 msgstr "Login"
8686
87 #: account/forms.py:272
87 #: account/forms.py:292
8888 msgid "E-mail (again)"
8989 msgstr "E-mail (ponownie)"
9090
91 #: account/forms.py:276
91 #: account/forms.py:296
9292 msgid "E-mail address confirmation"
9393 msgstr "Powierdzenie adresu email"
9494
95 #: account/forms.py:284
95 #: account/forms.py:304
9696 msgid "E-mail (optional)"
9797 msgstr "E-mail (opcjonalnie)"
9898
99 #: account/forms.py:325
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:348 account/forms.py:457
103 #: account/forms.py:368 account/forms.py:477
104104 msgid "Password (again)"
105105 msgstr "Hasło (ponownie)"
106106
107 #: account/forms.py:412
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:414
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:436
115 #: account/forms.py:456
116116 msgid "Current Password"
117117 msgstr "Obecne hasło"
118118
119 #: account/forms.py:437 account/forms.py:526
119 #: account/forms.py:457 account/forms.py:546
120120 msgid "New Password"
121121 msgstr "Nowe hasło"
122122
123 #: account/forms.py:438 account/forms.py:527
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:446
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:484
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:548
135 #: account/forms.py:568
136136 msgid "The password reset token was invalid."
137137 msgstr "Token resetowania hasła był nieprawidłowy."
138138
168168 msgid "sent"
169169 msgstr "wysłano"
170170
171 #: account/models.py:86 socialaccount/models.py:61
171 #: account/models.py:86 socialaccount/models.py:55
172172 msgid "key"
173173 msgstr "klucz"
174174
201201 msgid "Social Accounts"
202202 msgstr "Konta społecznościowe"
203203
204 #: socialaccount/models.py:49 socialaccount/models.py:83
204 #: socialaccount/models.py:43 socialaccount/models.py:77
205205 msgid "provider"
206206 msgstr "dostawca usług"
207207
208 #: socialaccount/models.py:52
208 #: socialaccount/models.py:46
209209 msgid "name"
210210 msgstr "nazwa"
211211
212 #: socialaccount/models.py:54
212 #: socialaccount/models.py:48
213213 msgid "client id"
214214 msgstr "klient ID"
215215
216 #: socialaccount/models.py:56
216 #: socialaccount/models.py:50
217217 msgid "App ID, or consumer key"
218218 msgstr "ID aplikacji lub klucz odbiorcy"
219219
220 #: socialaccount/models.py:57
220 #: socialaccount/models.py:51
221221 msgid "secret key"
222222 msgstr "Klucz prywatny"
223223
224 #: socialaccount/models.py:59
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:64
228 #: socialaccount/models.py:58
229229 msgid "Key"
230230 msgstr "Klucz"
231231
232 #: socialaccount/models.py:72
232 #: socialaccount/models.py:66
233233 msgid "social application"
234234 msgstr "Aplikacja społecznościowa"
235235
236 #: socialaccount/models.py:73
236 #: socialaccount/models.py:67
237237 msgid "social applications"
238238 msgstr "Aplikacje społecznościowe"
239239
240 #: socialaccount/models.py:102
240 #: socialaccount/models.py:96
241241 msgid "uid"
242242 msgstr "uid"
243243
244 #: socialaccount/models.py:104
244 #: socialaccount/models.py:98
245245 msgid "last login"
246246 msgstr "Data ostatniego logowania"
247247
248 #: socialaccount/models.py:106
248 #: socialaccount/models.py:100
249249 msgid "date joined"
250250 msgstr "Data przyłączenia"
251251
252 #: socialaccount/models.py:108
252 #: socialaccount/models.py:102
253253 msgid "extra data"
254254 msgstr "Dodatkowe dane"
255255
256 #: socialaccount/models.py:112
256 #: socialaccount/models.py:106
257257 msgid "social account"
258258 msgstr "Konto społecznościowe"
259259
260 #: socialaccount/models.py:113
260 #: socialaccount/models.py:107
261261 msgid "social accounts"
262262 msgstr "Konta społecznościowe"
263263
264 #: socialaccount/models.py:139
264 #: socialaccount/models.py:133
265265 msgid "token"
266266 msgstr "token"
267267
268 #: socialaccount/models.py:141
268 #: socialaccount/models.py:135
269269 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
270270 msgstr "\"oauth_token\" (OAuth1) lub access token (OAuth2)"
271271
272 #: socialaccount/models.py:144
272 #: socialaccount/models.py:138
273273 msgid "token secret"
274274 msgstr "token secret"
275275
276 #: socialaccount/models.py:146
276 #: socialaccount/models.py:140
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:148
280 #: socialaccount/models.py:142
281281 msgid "expires at"
282282 msgstr "wygasa"
283283
284 #: socialaccount/models.py:152
284 #: socialaccount/models.py:146
285285 msgid "social application token"
286286 msgstr "Token aplikacji społecznościowej"
287287
288 #: socialaccount/models.py:153
288 #: socialaccount/models.py:147
289289 msgid "social application tokens"
290290 msgstr "Tokeny aplikacji społecznościowych"
291291
1010 msgstr ""
1111 "Project-Id-Version: django-allauth\n"
1212 "Report-Msgid-Bugs-To: \n"
13 "POT-Creation-Date: 2017-10-29 09:56-0500\n"
13 "POT-Creation-Date: 2018-02-02 12:55-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/"
2121 "Content-Transfer-Encoding: 8bit\n"
2222 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
2323
24 #: account/adapter.py:48
24 #: account/adapter.py:45
2525 msgid "Username can not be used. Please use other username."
2626 msgstr "O nome de usuário não pode ser usado. Escolha outro."
2727
28 #: account/adapter.py:52
28 #: account/adapter.py:49
2929 msgid "Too many failed login attempts. Try again later."
3030 msgstr ""
3131
32 #: account/adapter.py:54
32 #: account/adapter.py:51
3333 msgid "A user is already registered with this e-mail address."
3434 msgstr "Um usuário já foi registado com este endereço de e-mail."
3535
36 #: account/adapter.py:291
36 #: account/adapter.py:288
3737 #, python-brace-format
3838 msgid "Password must be a minimum of {0} characters."
3939 msgstr "A senha deve ter no mínimo {0} caracteres."
4242 msgid "Accounts"
4343 msgstr "Contas"
4444
45 #: account/forms.py:41 account/forms.py:378
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:71 account/forms.py:345 account/forms.py:456
49 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
5050 msgid "Password"
5151 msgstr "Senha"
5252
53 #: account/forms.py:72
53 #: account/forms.py:92
5454 msgid "Remember Me"
5555 msgstr "Lembrar-me"
5656
57 #: account/forms.py:78
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:81
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:84
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:93 account/forms.py:248 account/forms.py:406
70 #: account/forms.py:475
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:95 account/forms.py:281 account/forms.py:401
75 #: account/forms.py:470
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:100 account/forms.py:103 account/forms.py:240
80 #: account/forms.py:244
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:110
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:113
88 #: account/forms.py:133
8989 msgctxt "field label"
9090 msgid "Login"
9191 msgstr "Login"
9292
93 #: account/forms.py:272
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:276
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:284
105 #: account/forms.py:304
106106 msgid "E-mail (optional)"
107107 msgstr "E-mail (opcional)"
108108
109 #: account/forms.py:325
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:348 account/forms.py:457
115 #: account/forms.py:368 account/forms.py:477
116116 msgid "Password (again)"
117117 msgstr "Senha (novamente)"
118118
119 #: account/forms.py:412
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:414
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:436
127 #: account/forms.py:456
128128 msgid "Current Password"
129129 msgstr "senha atual"
130130
131 #: account/forms.py:437 account/forms.py:526
131 #: account/forms.py:457 account/forms.py:546
132132 msgid "New Password"
133133 msgstr "Nova Senha"
134134
135 #: account/forms.py:438 account/forms.py:527
135 #: account/forms.py:458 account/forms.py:547
136136 msgid "New Password (again)"
137137 msgstr "Nova Senha (novamente)"
138138
139 #: account/forms.py:446
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:484
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:548
147 #: account/forms.py:568
148148 msgid "The password reset token was invalid."
149149 msgstr ""
150150
180180 msgid "sent"
181181 msgstr "enviado"
182182
183 #: account/models.py:86 socialaccount/models.py:61
183 #: account/models.py:86 socialaccount/models.py:55
184184 msgid "key"
185185 msgstr "chave"
186186
213213 msgid "Social Accounts"
214214 msgstr "Contas Sociais"
215215
216 #: socialaccount/models.py:49 socialaccount/models.py:83
216 #: socialaccount/models.py:43 socialaccount/models.py:77
217217 msgid "provider"
218218 msgstr "provedor"
219219
220 #: socialaccount/models.py:52
220 #: socialaccount/models.py:46
221221 msgid "name"
222222 msgstr "nome"
223223
224 #: socialaccount/models.py:54
224 #: socialaccount/models.py:48
225225 msgid "client id"
226226 msgstr "id do cliente"
227227
228 #: socialaccount/models.py:56
228 #: socialaccount/models.py:50
229229 msgid "App ID, or consumer key"
230230 msgstr "App ID ou chave de consumidor"
231231
232 #: socialaccount/models.py:57
232 #: socialaccount/models.py:51
233233 msgid "secret key"
234234 msgstr "Chave secreta"
235235
236 #: socialaccount/models.py:59
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:64
240 #: socialaccount/models.py:58
241241 msgid "Key"
242242 msgstr "Chave"
243243
244 #: socialaccount/models.py:72
244 #: socialaccount/models.py:66
245245 msgid "social application"
246246 msgstr "aplicativo social"
247247
248 #: socialaccount/models.py:73
248 #: socialaccount/models.py:67
249249 msgid "social applications"
250250 msgstr "aplicativos sociais"
251251
252 #: socialaccount/models.py:102
252 #: socialaccount/models.py:96
253253 msgid "uid"
254254 msgstr "uid"
255255
256 #: socialaccount/models.py:104
256 #: socialaccount/models.py:98
257257 msgid "last login"
258258 msgstr "último acesso"
259259
260 #: socialaccount/models.py:106
260 #: socialaccount/models.py:100
261261 msgid "date joined"
262262 msgstr "data de adesão"
263263
264 #: socialaccount/models.py:108
264 #: socialaccount/models.py:102
265265 msgid "extra data"
266266 msgstr "dados extras"
267267
268 #: socialaccount/models.py:112
268 #: socialaccount/models.py:106
269269 msgid "social account"
270270 msgstr "conta social"
271271
272 #: socialaccount/models.py:113
272 #: socialaccount/models.py:107
273273 msgid "social accounts"
274274 msgstr "contas sociais"
275275
276 #: socialaccount/models.py:139
276 #: socialaccount/models.py:133
277277 msgid "token"
278278 msgstr ""
279279
280 #: socialaccount/models.py:141
280 #: socialaccount/models.py:135
281281 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
282282 msgstr "\"oauth_token\" (OAuth1) ou token de acesso (OAuth2)"
283283
284 #: socialaccount/models.py:144
284 #: socialaccount/models.py:138
285285 msgid "token secret"
286286 msgstr "token secreto"
287287
288 #: socialaccount/models.py:146
288 #: socialaccount/models.py:140
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:148
292 #: socialaccount/models.py:142
293293 msgid "expires at"
294294 msgstr "expira em"
295295
296 #: socialaccount/models.py:152
296 #: socialaccount/models.py:146
297297 msgid "social application token"
298298 msgstr "token de aplicativo social"
299299
300 #: socialaccount/models.py:153
300 #: socialaccount/models.py:147
301301 msgid "social application tokens"
302302 msgstr "tokens de aplicativo social"
303303
66 msgstr ""
77 "Project-Id-Version: django-allauth\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-10-29 09:56-0500\n"
9 "POT-Creation-Date: 2018-02-02 12:55-0600\n"
1010 "PO-Revision-Date: 2014-08-12 00:33+0200\n"
1111 "Last-Translator: Jannis Š\n"
1212 "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919
20 #: account/adapter.py:48
20 #: account/adapter.py:45
2121 msgid "Username can not be used. Please use other username."
2222 msgstr "Nome de utilizador não pode ser utilizado. Por favor, use outro nome."
2323
24 #: account/adapter.py:52
24 #: account/adapter.py:49
2525 msgid "Too many failed login attempts. Try again later."
2626 msgstr ""
2727
28 #: account/adapter.py:54
28 #: account/adapter.py:51
2929 msgid "A user is already registered with this e-mail address."
3030 msgstr "Um utilizador já foi registado com este endereço de e-mail."
3131
32 #: account/adapter.py:291
32 #: account/adapter.py:288
3333 #, python-brace-format
3434 msgid "Password must be a minimum of {0} characters."
3535 msgstr "A palavra-passe deve ter no mínimo {0} caracteres."
3939 msgid "Accounts"
4040 msgstr "Conta"
4141
42 #: account/forms.py:41 account/forms.py:378
42 #: account/forms.py:61 account/forms.py:398
4343 msgid "You must type the same password each time."
4444 msgstr "Deve escrever a mesma palavra-passe em ambos os campos."
4545
46 #: account/forms.py:71 account/forms.py:345 account/forms.py:456
46 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4747 msgid "Password"
4848 msgstr "Palavra-passe"
4949
50 #: account/forms.py:72
50 #: account/forms.py:92
5151 msgid "Remember Me"
5252 msgstr "Lembrar-me"
5353
54 #: account/forms.py:78
54 #: account/forms.py:98
5555 msgid "This account is currently inactive."
5656 msgstr "Esta conta está de momento desactivada"
5757
58 #: account/forms.py:81
58 #: account/forms.py:101
5959 msgid "The e-mail address and/or password you specified are not correct."
6060 msgstr ""
6161 "O endereço de e-mail e/ou palavra-passe que especificou não estão correctos."
6262
63 #: account/forms.py:84
63 #: account/forms.py:104
6464 msgid "The username and/or password you specified are not correct."
6565 msgstr ""
6666 "O nome de utilizador e/ou palavra-passe que especificou não estão correctos."
6767
68 #: account/forms.py:93 account/forms.py:248 account/forms.py:406
69 #: account/forms.py:475
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 "Endereço de e-mail"
7272
73 #: account/forms.py:95 account/forms.py:281 account/forms.py:401
74 #: account/forms.py:470
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:100 account/forms.py:103 account/forms.py:240
79 #: account/forms.py:244
78 #: account/forms.py:120 account/forms.py:123 account/forms.py:260
79 #: account/forms.py:264
8080 msgid "Username"
8181 msgstr "Nome de utilizador"
8282
83 #: account/forms.py:110
83 #: account/forms.py:130
8484 msgid "Username or e-mail"
8585 msgstr "Nome de utilizador ou e-mail"
8686
87 #: account/forms.py:113
87 #: account/forms.py:133
8888 msgctxt "field label"
8989 msgid "Login"
9090 msgstr "Entrar"
9191
92 #: account/forms.py:272
92 #: account/forms.py:292
9393 #, fuzzy
9494 #| msgid "E-mail (optional)"
9595 msgid "E-mail (again)"
9696 msgstr "E-mail (opcional)"
9797
98 #: account/forms.py:276
98 #: account/forms.py:296
9999 #, fuzzy
100100 #| msgid "email confirmation"
101101 msgid "E-mail address confirmation"
102102 msgstr "confirmação de e-mail"
103103
104 #: account/forms.py:284
104 #: account/forms.py:304
105105 msgid "E-mail (optional)"
106106 msgstr "E-mail (opcional)"
107107
108 #: account/forms.py:325
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 "Deve escrever a mesma palavra-passe em ambos os campos."
113113
114 #: account/forms.py:348 account/forms.py:457
114 #: account/forms.py:368 account/forms.py:477
115115 msgid "Password (again)"
116116 msgstr "Palavra-passe (novamente)"
117117
118 #: account/forms.py:412
118 #: account/forms.py:432
119119 msgid "This e-mail address is already associated with this account."
120120 msgstr "Este endereço de e-mail já foi associado com esta conta."
121121
122 #: account/forms.py:414
122 #: account/forms.py:434
123123 msgid "This e-mail address is already associated with another account."
124124 msgstr "Este endereço de e-mail já foi associado com outra conta."
125125
126 #: account/forms.py:436
126 #: account/forms.py:456
127127 msgid "Current Password"
128128 msgstr "Palavra-passe atual"
129129
130 #: account/forms.py:437 account/forms.py:526
130 #: account/forms.py:457 account/forms.py:546
131131 msgid "New Password"
132132 msgstr "Nova Palavra-passe"
133133
134 #: account/forms.py:438 account/forms.py:527
134 #: account/forms.py:458 account/forms.py:547
135135 msgid "New Password (again)"
136136 msgstr "Nova Palavra-passe (novamente)"
137137
138 #: account/forms.py:446
138 #: account/forms.py:466
139139 msgid "Please type your current password."
140140 msgstr "Por favor insira a sua palavra-passe atual."
141141
142 #: account/forms.py:484
142 #: account/forms.py:504
143143 msgid "The e-mail address is not assigned to any user account"
144144 msgstr "O endereço de e-mail não está associado a nenhuma conta de utilizador"
145145
146 #: account/forms.py:548
146 #: account/forms.py:568
147147 msgid "The password reset token was invalid."
148148 msgstr ""
149149
182182 msgid "sent"
183183 msgstr ""
184184
185 #: account/models.py:86 socialaccount/models.py:61
185 #: account/models.py:86 socialaccount/models.py:55
186186 msgid "key"
187187 msgstr ""
188188
214214 msgid "Social Accounts"
215215 msgstr "Conta"
216216
217 #: socialaccount/models.py:49 socialaccount/models.py:83
217 #: socialaccount/models.py:43 socialaccount/models.py:77
218218 msgid "provider"
219219 msgstr ""
220220
221 #: socialaccount/models.py:52
221 #: socialaccount/models.py:46
222222 #, fuzzy
223223 msgid "name"
224224 msgstr "Nome de utilizador"
225225
226 #: socialaccount/models.py:54
226 #: socialaccount/models.py:48
227227 msgid "client id"
228228 msgstr ""
229229
230 #: socialaccount/models.py:56
230 #: socialaccount/models.py:50
231231 msgid "App ID, or consumer key"
232232 msgstr ""
233233
234 #: socialaccount/models.py:57
234 #: socialaccount/models.py:51
235235 msgid "secret key"
236236 msgstr ""
237237
238 #: socialaccount/models.py:59
238 #: socialaccount/models.py:53
239239 msgid "API secret, client secret, or consumer secret"
240240 msgstr ""
241241
242 #: socialaccount/models.py:64
242 #: socialaccount/models.py:58
243243 msgid "Key"
244244 msgstr ""
245245
246 #: socialaccount/models.py:72
246 #: socialaccount/models.py:66
247247 msgid "social application"
248248 msgstr ""
249249
250 #: socialaccount/models.py:73
250 #: socialaccount/models.py:67
251251 msgid "social applications"
252252 msgstr ""
253253
254 #: socialaccount/models.py:96
255 msgid "uid"
256 msgstr ""
257
258 #: socialaccount/models.py:98
259 msgid "last login"
260 msgstr ""
261
262 #: socialaccount/models.py:100
263 msgid "date joined"
264 msgstr ""
265
254266 #: socialaccount/models.py:102
255 msgid "uid"
256 msgstr ""
257
258 #: socialaccount/models.py:104
259 msgid "last login"
267 msgid "extra data"
260268 msgstr ""
261269
262270 #: socialaccount/models.py:106
263 msgid "date joined"
264 msgstr ""
265
266 #: socialaccount/models.py:108
267 msgid "extra data"
268 msgstr ""
269
270 #: socialaccount/models.py:112
271271 msgid "social account"
272272 msgstr ""
273273
274 #: socialaccount/models.py:113
274 #: socialaccount/models.py:107
275275 msgid "social accounts"
276276 msgstr ""
277277
278 #: socialaccount/models.py:139
278 #: socialaccount/models.py:133
279279 msgid "token"
280280 msgstr ""
281281
282 #: socialaccount/models.py:141
282 #: socialaccount/models.py:135
283283 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
284284 msgstr ""
285285
286 #: socialaccount/models.py:144
286 #: socialaccount/models.py:138
287287 msgid "token secret"
288288 msgstr ""
289289
290 #: socialaccount/models.py:140
291 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
292 msgstr ""
293
294 #: socialaccount/models.py:142
295 msgid "expires at"
296 msgstr ""
297
290298 #: socialaccount/models.py:146
291 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
292 msgstr ""
293
294 #: socialaccount/models.py:148
295 msgid "expires at"
296 msgstr ""
297
298 #: socialaccount/models.py:152
299299 msgid "social application token"
300300 msgstr ""
301301
302 #: socialaccount/models.py:153
302 #: socialaccount/models.py:147
303303 msgid "social application tokens"
304304 msgstr ""
305305
66 msgstr ""
77 "Project-Id-Version: \n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-10-29 09:56-0500\n"
9 "POT-Creation-Date: 2018-02-02 12:55-0600\n"
1010 "PO-Revision-Date: 2017-04-05 22:48+0300\n"
1111 "Last-Translator: \n"
1212 "Language-Team: \n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "X-Generator: Poedit 1.8.7.1\n"
1818
19 #: account/adapter.py:48
19 #: account/adapter.py:45
2020 msgid "Username can not be used. Please use other username."
2121 msgstr "Такое имя пользователя не может быть использовано, выберите другое."
2222
23 #: account/adapter.py:52
23 #: account/adapter.py:49
2424 msgid "Too many failed login attempts. Try again later."
2525 msgstr "Слишком много попыток входа в систему, попробуйте позже."
2626
27 #: account/adapter.py:54
27 #: account/adapter.py:51
2828 msgid "A user is already registered with this e-mail address."
2929 msgstr "Пользователь с таким e-mail адресом уже зарегистрирован."
3030
31 #: account/adapter.py:291
31 #: account/adapter.py:288
3232 #, python-brace-format
3333 msgid "Password must be a minimum of {0} characters."
3434 msgstr "Минимальное количество символов в пароле: {0}."
3737 msgid "Accounts"
3838 msgstr "Аккаунты"
3939
40 #: account/forms.py:41 account/forms.py:378
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:71 account/forms.py:345 account/forms.py:456
44 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4545 msgid "Password"
4646 msgstr "Пароль"
4747
48 #: account/forms.py:72
48 #: account/forms.py:92
4949 msgid "Remember Me"
5050 msgstr "Запомнить меня"
5151
52 #: account/forms.py:78
52 #: account/forms.py:98
5353 msgid "This account is currently inactive."
5454 msgstr "Учетная запись неактивна."
5555
56 #: account/forms.py:81
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:84
60 #: account/forms.py:104
6161 msgid "The username and/or password you specified are not correct."
6262 msgstr "Имя пользователя и/или пароль не верны."
6363
64 #: account/forms.py:93 account/forms.py:248 account/forms.py:406
65 #: account/forms.py:475
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:95 account/forms.py:281 account/forms.py:401
70 #: account/forms.py:470
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:100 account/forms.py:103 account/forms.py:240
75 #: account/forms.py:244
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:110
79 #: account/forms.py:130
8080 msgid "Username or e-mail"
8181 msgstr "Имя пользователя или e-mail"
8282
83 #: account/forms.py:113
83 #: account/forms.py:133
8484 msgctxt "field label"
8585 msgid "Login"
8686 msgstr "Войти"
8787
88 #: account/forms.py:272
88 #: account/forms.py:292
8989 msgid "E-mail (again)"
9090 msgstr "E-mail (ещё раз)"
9191
92 #: account/forms.py:276
92 #: account/forms.py:296
9393 msgid "E-mail address confirmation"
9494 msgstr "Подтверждение email адреса"
9595
96 #: account/forms.py:284
96 #: account/forms.py:304
9797 msgid "E-mail (optional)"
9898 msgstr "E-mail (опционально)"
9999
100 #: account/forms.py:325
100 #: account/forms.py:345
101101 msgid "You must type the same email each time."
102102 msgstr "Вы должны ввести одинаковый e-mail дважды."
103103
104 #: account/forms.py:348 account/forms.py:457
104 #: account/forms.py:368 account/forms.py:477
105105 msgid "Password (again)"
106106 msgstr "Пароль (ещё раз)"
107107
108 #: account/forms.py:412
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:414
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:436
116 #: account/forms.py:456
117117 msgid "Current Password"
118118 msgstr "Текущий пароль"
119119
120 #: account/forms.py:437 account/forms.py:526
120 #: account/forms.py:457 account/forms.py:546
121121 msgid "New Password"
122122 msgstr "Новый пароль"
123123
124 #: account/forms.py:438 account/forms.py:527
124 #: account/forms.py:458 account/forms.py:547
125125 msgid "New Password (again)"
126126 msgstr "Новый пароль (ещё раз)"
127127
128 #: account/forms.py:446
128 #: account/forms.py:466
129129 msgid "Please type your current password."
130130 msgstr "Пожалуйста, введите свой текущий пароль."
131131
132 #: account/forms.py:484
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:548
136 #: account/forms.py:568
137137 msgid "The password reset token was invalid."
138138 msgstr "Неправильный код для сброса пароля."
139139
169169 msgid "sent"
170170 msgstr "отправлено"
171171
172 #: account/models.py:86 socialaccount/models.py:61
172 #: account/models.py:86 socialaccount/models.py:55
173173 msgid "key"
174174 msgstr "ключ"
175175
202202 msgid "Social Accounts"
203203 msgstr "Социальные аккаунты"
204204
205 #: socialaccount/models.py:49 socialaccount/models.py:83
205 #: socialaccount/models.py:43 socialaccount/models.py:77
206206 msgid "provider"
207207 msgstr "провайдер"
208208
209 #: socialaccount/models.py:52
209 #: socialaccount/models.py:46
210210 msgid "name"
211211 msgstr "имя"
212212
213 #: socialaccount/models.py:54
213 #: socialaccount/models.py:48
214214 msgid "client id"
215215 msgstr "id клиента"
216216
217 #: socialaccount/models.py:56
217 #: socialaccount/models.py:50
218218 msgid "App ID, or consumer key"
219219 msgstr "ID приложения или ключ потребителя"
220220
221 #: socialaccount/models.py:57
221 #: socialaccount/models.py:51
222222 msgid "secret key"
223223 msgstr "секретный ключ"
224224
225 #: socialaccount/models.py:59
225 #: socialaccount/models.py:53
226226 msgid "API secret, client secret, or consumer secret"
227227 msgstr "Секретный ключ API, клиента или потребителя"
228228
229 #: socialaccount/models.py:64
229 #: socialaccount/models.py:58
230230 msgid "Key"
231231 msgstr "Ключ"
232232
233 #: socialaccount/models.py:72
233 #: socialaccount/models.py:66
234234 msgid "social application"
235235 msgstr "социальное приложение"
236236
237 #: socialaccount/models.py:73
237 #: socialaccount/models.py:67
238238 msgid "social applications"
239239 msgstr "социальные приложения"
240240
241 #: socialaccount/models.py:102
241 #: socialaccount/models.py:96
242242 msgid "uid"
243243 msgstr "UID пользователя"
244244
245 #: socialaccount/models.py:104
245 #: socialaccount/models.py:98
246246 msgid "last login"
247247 msgstr "дата последнего входа в систему"
248248
249 #: socialaccount/models.py:106
249 #: socialaccount/models.py:100
250250 msgid "date joined"
251251 msgstr "дата регистрации"
252252
253 #: socialaccount/models.py:108
253 #: socialaccount/models.py:102
254254 msgid "extra data"
255255 msgstr "дополнительные данные"
256256
257 #: socialaccount/models.py:112
257 #: socialaccount/models.py:106
258258 msgid "social account"
259259 msgstr "аккаунт социальной сети"
260260
261 #: socialaccount/models.py:113
261 #: socialaccount/models.py:107
262262 msgid "social accounts"
263263 msgstr "аккаунты социальных сетей"
264264
265 #: socialaccount/models.py:139
265 #: socialaccount/models.py:133
266266 msgid "token"
267267 msgstr "токен"
268268
269 #: socialaccount/models.py:141
269 #: socialaccount/models.py:135
270270 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
271271 msgstr "\"oauth_token\" (OAuth1) или access token (OAuth2)"
272272
273 #: socialaccount/models.py:144
273 #: socialaccount/models.py:138
274274 msgid "token secret"
275275 msgstr "секретный токен"
276276
277 #: socialaccount/models.py:146
277 #: socialaccount/models.py:140
278278 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
279279 msgstr "\"oauth_token_secret\" (OAuth1) или refresh token (OAuth2)"
280280
281 #: socialaccount/models.py:148
281 #: socialaccount/models.py:142
282282 msgid "expires at"
283283 msgstr "истекает"
284284
285 #: socialaccount/models.py:152
285 #: socialaccount/models.py:146
286286 msgid "social application token"
287287 msgstr "токен социального приложения"
288288
289 #: socialaccount/models.py:153
289 #: socialaccount/models.py:147
290290 msgid "social application tokens"
291291 msgstr "токены социальных приложений"
292292
66 msgstr ""
77 "Project-Id-Version: \n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-10-29 09:56-0500\n"
9 "POT-Creation-Date: 2018-02-02 12:55-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"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "X-Generator: Poedit 2.0.1\n"
1818
19 #: account/adapter.py:48
19 #: account/adapter.py:45
2020 msgid "Username can not be used. Please use other username."
2121 msgstr "Užívateľské meno nemôže byť použité. Prosím, použite iné meno."
2222
23 #: account/adapter.py:52
23 #: account/adapter.py:49
2424 msgid "Too many failed login attempts. Try again later."
2525 msgstr "Príliš veľa neúspešných pokusov o prihlásenie. Skúste neskôr."
2626
27 #: account/adapter.py:54
27 #: account/adapter.py:51
2828 msgid "A user is already registered with this e-mail address."
2929 msgstr "Používateľ s touto e-mailovou adresou už existuje."
3030
31 #: account/adapter.py:291
31 #: account/adapter.py:288
3232 #, python-brace-format
3333 msgid "Password must be a minimum of {0} characters."
3434 msgstr "Heslo musí mať aspoň {0} znakov."
3737 msgid "Accounts"
3838 msgstr "Účty"
3939
40 #: account/forms.py:41 account/forms.py:378
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:71 account/forms.py:345 account/forms.py:456
44 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4545 msgid "Password"
4646 msgstr "Heslo"
4747
48 #: account/forms.py:72
48 #: account/forms.py:92
4949 msgid "Remember Me"
5050 msgstr "Zapamätať si ma"
5151
52 #: account/forms.py:78
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:81
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:84
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:93 account/forms.py:248 account/forms.py:406
65 #: account/forms.py:475
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:95 account/forms.py:281 account/forms.py:401
70 #: account/forms.py:470
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:100 account/forms.py:103 account/forms.py:240
75 #: account/forms.py:244
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:110
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:113
83 #: account/forms.py:133
8484 msgctxt "field label"
8585 msgid "Login"
8686 msgstr "Login"
8787
88 #: account/forms.py:272
88 #: account/forms.py:292
8989 msgid "E-mail (again)"
9090 msgstr "E-mail (znova)"
9191
92 #: account/forms.py:276
92 #: account/forms.py:296
9393 msgid "E-mail address confirmation"
9494 msgstr "Potvrdenie e-mailu"
9595
96 #: account/forms.py:284
96 #: account/forms.py:304
9797 msgid "E-mail (optional)"
9898 msgstr "E-mail (nepovinné)"
9999
100 #: account/forms.py:325
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:348 account/forms.py:457
104 #: account/forms.py:368 account/forms.py:477
105105 msgid "Password (again)"
106106 msgstr "Heslo (znovu)"
107107
108 #: account/forms.py:412
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:414
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:436
116 #: account/forms.py:456
117117 msgid "Current Password"
118118 msgstr "Súčasné heslo"
119119
120 #: account/forms.py:437 account/forms.py:526
120 #: account/forms.py:457 account/forms.py:546
121121 msgid "New Password"
122122 msgstr "Nové heslo"
123123
124 #: account/forms.py:438 account/forms.py:527
124 #: account/forms.py:458 account/forms.py:547
125125 msgid "New Password (again)"
126126 msgstr "Nové heslo (znovu)"
127127
128 #: account/forms.py:446
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:484
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:548
137 #: account/forms.py:568
138138 msgid "The password reset token was invalid."
139139 msgstr "Token na obnovu hesla bol nesprávny."
140140
170170 msgid "sent"
171171 msgstr "odoslané"
172172
173 #: account/models.py:86 socialaccount/models.py:61
173 #: account/models.py:86 socialaccount/models.py:55
174174 msgid "key"
175175 msgstr "kľúč"
176176
203203 msgid "Social Accounts"
204204 msgstr "Účty na sociálnych sieťach"
205205
206 #: socialaccount/models.py:49 socialaccount/models.py:83
206 #: socialaccount/models.py:43 socialaccount/models.py:77
207207 msgid "provider"
208208 msgstr "poskytovateľ"
209209
210 #: socialaccount/models.py:52
210 #: socialaccount/models.py:46
211211 msgid "name"
212212 msgstr "užívateľské meno"
213213
214 #: socialaccount/models.py:54
214 #: socialaccount/models.py:48
215215 msgid "client id"
216216 msgstr "identifikátor klienta"
217217
218 #: socialaccount/models.py:56
218 #: socialaccount/models.py:50
219219 msgid "App ID, or consumer key"
220220 msgstr "ID aplikácie alebo zákaznícky kľúč"
221221
222 #: socialaccount/models.py:57
222 #: socialaccount/models.py:51
223223 msgid "secret key"
224224 msgstr "tajný kľúč"
225225
226 #: socialaccount/models.py:59
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:64
230 #: socialaccount/models.py:58
231231 msgid "Key"
232232 msgstr "Kľúč"
233233
234 #: socialaccount/models.py:72
234 #: socialaccount/models.py:66
235235 msgid "social application"
236236 msgstr "sociálna aplikácia"
237237
238 #: socialaccount/models.py:73
238 #: socialaccount/models.py:67
239239 msgid "social applications"
240240 msgstr "sociálne aplikácie"
241241
242 #: socialaccount/models.py:102
242 #: socialaccount/models.py:96
243243 msgid "uid"
244244 msgstr "uid"
245245
246 #: socialaccount/models.py:104
246 #: socialaccount/models.py:98
247247 msgid "last login"
248248 msgstr "posledné prihlásenie"
249249
250 #: socialaccount/models.py:106
250 #: socialaccount/models.py:100
251251 msgid "date joined"
252252 msgstr "dáum pripojenia"
253253
254 #: socialaccount/models.py:108
254 #: socialaccount/models.py:102
255255 msgid "extra data"
256256 msgstr "ďalšie údaje"
257257
258 #: socialaccount/models.py:112
258 #: socialaccount/models.py:106
259259 msgid "social account"
260260 msgstr "sociálny účet"
261261
262 #: socialaccount/models.py:113
262 #: socialaccount/models.py:107
263263 msgid "social accounts"
264264 msgstr "sociálne účty"
265265
266 #: socialaccount/models.py:139
266 #: socialaccount/models.py:133
267267 msgid "token"
268268 msgstr "token"
269269
270 #: socialaccount/models.py:141
270 #: socialaccount/models.py:135
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:144
275 #: socialaccount/models.py:138
276276 msgid "token secret"
277277 msgstr "heslo prístupového tokenu"
278278
279 #: socialaccount/models.py:146
279 #: socialaccount/models.py:140
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:148
285 #: socialaccount/models.py:142
286286 msgid "expires at"
287287 msgstr "vyexpiruje"
288288
289 #: socialaccount/models.py:152
289 #: socialaccount/models.py:146
290290 msgid "social application token"
291291 msgstr "token sociálnej aplikácie"
292292
293 #: socialaccount/models.py:153
293 #: socialaccount/models.py:147
294294 msgid "social application tokens"
295295 msgstr "tokeny sociálnej aplikácie"
296296
66 msgstr ""
77 "Project-Id-Version: django-allauth\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-10-29 09:56-0500\n"
9 "POT-Creation-Date: 2018-02-02 12:55-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/"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919
20 #: account/adapter.py:48
20 #: account/adapter.py:45
2121 msgid "Username can not be used. Please use other username."
2222 msgstr "Användarnamnet kan ej användas. Välj ett annat användarnamn."
2323
24 #: account/adapter.py:52
24 #: account/adapter.py:49
2525 msgid "Too many failed login attempts. Try again later."
2626 msgstr ""
2727
28 #: account/adapter.py:54
28 #: account/adapter.py:51
2929 msgid "A user is already registered with this e-mail address."
3030 msgstr "En användare är redan registrerad med den här epost-adressen"
3131
32 #: account/adapter.py:291
32 #: account/adapter.py:288
3333 #, python-brace-format
3434 msgid "Password must be a minimum of {0} characters."
3535 msgstr "Lösenordet måste vara minst {0} tecken långt"
3939 msgid "Accounts"
4040 msgstr "Konto"
4141
42 #: account/forms.py:41 account/forms.py:378
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:71 account/forms.py:345 account/forms.py:456
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:72
50 #: account/forms.py:92
5151 msgid "Remember Me"
5252 msgstr "Kom ihåg mig"
5353
54 #: account/forms.py:78
54 #: account/forms.py:98
5555 msgid "This account is currently inactive."
5656 msgstr "Detta konto är inaktivt."
5757
58 #: account/forms.py:81
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:84
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:93 account/forms.py:248 account/forms.py:406
67 #: account/forms.py:475
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:95 account/forms.py:281 account/forms.py:401
72 #: account/forms.py:470
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:100 account/forms.py:103 account/forms.py:240
77 #: account/forms.py:244
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:110
81 #: account/forms.py:130
8282 msgid "Username or e-mail"
8383 msgstr "Användarnamn eller epost-adress"
8484
85 #: account/forms.py:113
85 #: account/forms.py:133
8686 msgctxt "field label"
8787 msgid "Login"
8888 msgstr "Logga in"
8989
90 #: account/forms.py:272
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:276
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:284
102 #: account/forms.py:304
103103 msgid "E-mail (optional)"
104104 msgstr "Epost (valfritt)"
105105
106 #: account/forms.py:325
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:348 account/forms.py:457
112 #: account/forms.py:368 account/forms.py:477
113113 msgid "Password (again)"
114114 msgstr "Lösenord (igen)"
115115
116 #: account/forms.py:412
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:414
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:436
124 #: account/forms.py:456
125125 msgid "Current Password"
126126 msgstr "Nuvarande lösenord"
127127
128 #: account/forms.py:437 account/forms.py:526
128 #: account/forms.py:457 account/forms.py:546
129129 msgid "New Password"
130130 msgstr "Nytt lösenord"
131131
132 #: account/forms.py:438 account/forms.py:527
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:446
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:484
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:548
144 #: account/forms.py:568
145145 msgid "The password reset token was invalid."
146146 msgstr ""
147147
180180 msgid "sent"
181181 msgstr ""
182182
183 #: account/models.py:86 socialaccount/models.py:61
183 #: account/models.py:86 socialaccount/models.py:55
184184 msgid "key"
185185 msgstr ""
186186
212212 msgid "Social Accounts"
213213 msgstr "Konto"
214214
215 #: socialaccount/models.py:49 socialaccount/models.py:83
215 #: socialaccount/models.py:43 socialaccount/models.py:77
216216 msgid "provider"
217217 msgstr ""
218218
219 #: socialaccount/models.py:52
219 #: socialaccount/models.py:46
220220 #, fuzzy
221221 msgid "name"
222222 msgstr "Användarnamn"
223223
224 #: socialaccount/models.py:54
224 #: socialaccount/models.py:48
225225 msgid "client id"
226226 msgstr ""
227227
228 #: socialaccount/models.py:56
228 #: socialaccount/models.py:50
229229 msgid "App ID, or consumer key"
230230 msgstr ""
231231
232 #: socialaccount/models.py:57
232 #: socialaccount/models.py:51
233233 msgid "secret key"
234234 msgstr ""
235235
236 #: socialaccount/models.py:59
236 #: socialaccount/models.py:53
237237 msgid "API secret, client secret, or consumer secret"
238238 msgstr ""
239239
240 #: socialaccount/models.py:64
240 #: socialaccount/models.py:58
241241 msgid "Key"
242242 msgstr ""
243243
244 #: socialaccount/models.py:72
244 #: socialaccount/models.py:66
245245 msgid "social application"
246246 msgstr ""
247247
248 #: socialaccount/models.py:73
248 #: socialaccount/models.py:67
249249 msgid "social applications"
250250 msgstr ""
251251
252 #: socialaccount/models.py:96
253 msgid "uid"
254 msgstr ""
255
256 #: socialaccount/models.py:98
257 msgid "last login"
258 msgstr ""
259
260 #: socialaccount/models.py:100
261 msgid "date joined"
262 msgstr ""
263
252264 #: socialaccount/models.py:102
253 msgid "uid"
254 msgstr ""
255
256 #: socialaccount/models.py:104
257 msgid "last login"
265 msgid "extra data"
258266 msgstr ""
259267
260268 #: socialaccount/models.py:106
261 msgid "date joined"
262 msgstr ""
263
264 #: socialaccount/models.py:108
265 msgid "extra data"
266 msgstr ""
267
268 #: socialaccount/models.py:112
269269 msgid "social account"
270270 msgstr ""
271271
272 #: socialaccount/models.py:113
272 #: socialaccount/models.py:107
273273 msgid "social accounts"
274274 msgstr ""
275275
276 #: socialaccount/models.py:139
276 #: socialaccount/models.py:133
277277 msgid "token"
278278 msgstr ""
279279
280 #: socialaccount/models.py:141
280 #: socialaccount/models.py:135
281281 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
282282 msgstr ""
283283
284 #: socialaccount/models.py:144
284 #: socialaccount/models.py:138
285285 msgid "token secret"
286286 msgstr ""
287287
288 #: socialaccount/models.py:140
289 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
290 msgstr ""
291
292 #: socialaccount/models.py:142
293 msgid "expires at"
294 msgstr ""
295
288296 #: socialaccount/models.py:146
289 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
290 msgstr ""
291
292 #: socialaccount/models.py:148
293 msgid "expires at"
294 msgstr ""
295
296 #: socialaccount/models.py:152
297297 msgid "social application token"
298298 msgstr ""
299299
300 #: socialaccount/models.py:153
300 #: socialaccount/models.py:147
301301 msgid "social application tokens"
302302 msgstr ""
303303
99 msgstr ""
1010 "Project-Id-Version: django-allauth\n"
1111 "Report-Msgid-Bugs-To: \n"
12 "POT-Creation-Date: 2017-10-29 09:56-0500\n"
12 "POT-Creation-Date: 2018-02-02 12:55-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"
1919 "Content-Transfer-Encoding: 8bit\n"
2020 "Plural-Forms: nplurals=1; plural=0;\n"
2121
22 #: account/adapter.py:48
22 #: account/adapter.py:45
2323 msgid "Username can not be used. Please use other username."
2424 msgstr "ไม่สามารถใช้ชื่อผู้ใช้นี้ได้ กรุณาใช้ชื่อผู้ใช้อื่น"
2525
26 #: account/adapter.py:52
26 #: account/adapter.py:49
2727 msgid "Too many failed login attempts. Try again later."
2828 msgstr ""
2929
30 #: account/adapter.py:54
30 #: account/adapter.py:51
3131 msgid "A user is already registered with this e-mail address."
3232 msgstr "ชื่อผู้ใช้ได้ถูกลงทะเบียนด้วยอีเมลนี้แล้ว"
3333
34 #: account/adapter.py:291
34 #: account/adapter.py:288
3535 #, python-brace-format
3636 msgid "Password must be a minimum of {0} characters."
3737 msgstr "รหัสผ่านต้องมีอย่างน้อย {0} ตัวอักษร"
4040 msgid "Accounts"
4141 msgstr "บัญชี"
4242
43 #: account/forms.py:41 account/forms.py:378
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:71 account/forms.py:345 account/forms.py:456
47 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4848 msgid "Password"
4949 msgstr "รหัสผ่าน"
5050
51 #: account/forms.py:72
51 #: account/forms.py:92
5252 msgid "Remember Me"
5353 msgstr "จดจำการเข้าใช้"
5454
55 #: account/forms.py:78
55 #: account/forms.py:98
5656 msgid "This account is currently inactive."
5757 msgstr "บัญชีนี้อยู่ในสถานะที่ใช้งานไม่ได้่"
5858
59 #: account/forms.py:81
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:84
63 #: account/forms.py:104
6464 msgid "The username and/or password you specified are not correct."
6565 msgstr "ชื่อผู้ใช้และ/หรือรหัสผ่านที่ระบุมาไม่ถูกต้อง"
6666
67 #: account/forms.py:93 account/forms.py:248 account/forms.py:406
68 #: account/forms.py:475
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:95 account/forms.py:281 account/forms.py:401
73 #: account/forms.py:470
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:100 account/forms.py:103 account/forms.py:240
78 #: account/forms.py:244
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:110
82 #: account/forms.py:130
8383 msgid "Username or e-mail"
8484 msgstr "ชื่อผู้ใช้ หรือ อีเมล"
8585
86 #: account/forms.py:113
86 #: account/forms.py:133
8787 msgctxt "field label"
8888 msgid "Login"
8989 msgstr "ลงชื่อเข้าใช้"
9090
91 #: account/forms.py:272
91 #: account/forms.py:292
9292 #, fuzzy
9393 #| msgid "E-mail (optional)"
9494 msgid "E-mail (again)"
9595 msgstr "อีเมล (ไม่จำเป็น)"
9696
97 #: account/forms.py:276
97 #: account/forms.py:296
9898 #, fuzzy
9999 #| msgid "email confirmation"
100100 msgid "E-mail address confirmation"
101101 msgstr "การยืนยันอีเมล"
102102
103 #: account/forms.py:284
103 #: account/forms.py:304
104104 msgid "E-mail (optional)"
105105 msgstr "อีเมล (ไม่จำเป็น)"
106106
107 #: account/forms.py:325
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:348 account/forms.py:457
113 #: account/forms.py:368 account/forms.py:477
114114 msgid "Password (again)"
115115 msgstr "รหัสผ่าน (อีกครั้ง)"
116116
117 #: account/forms.py:412
117 #: account/forms.py:432
118118 msgid "This e-mail address is already associated with this account."
119119 msgstr "อีเมลนี้ได้ถูกเชื่อมกับบัญชีนี้แล้ว"
120120
121 #: account/forms.py:414
121 #: account/forms.py:434
122122 msgid "This e-mail address is already associated with another account."
123123 msgstr "อีเมลนี้ได้ถูกเชื่อมกับบัญชีอื่นแล้ว"
124124
125 #: account/forms.py:436
125 #: account/forms.py:456
126126 msgid "Current Password"
127127 msgstr "รหัสผ่านปัจจุบัน"
128128
129 #: account/forms.py:437 account/forms.py:526
129 #: account/forms.py:457 account/forms.py:546
130130 msgid "New Password"
131131 msgstr "รหัสผ่านใหม่"
132132
133 #: account/forms.py:438 account/forms.py:527
133 #: account/forms.py:458 account/forms.py:547
134134 msgid "New Password (again)"
135135 msgstr "รหัสผ่านใหม่ (อีกครั้ง)"
136136
137 #: account/forms.py:446
137 #: account/forms.py:466
138138 msgid "Please type your current password."
139139 msgstr "โปรดใส่รหัสผ่านปัจจุบัน"
140140
141 #: account/forms.py:484
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:548
145 #: account/forms.py:568
146146 msgid "The password reset token was invalid."
147147 msgstr "token ที่ใช้รีเซ็ทรหัสผ่านไม่ถูกต้อง"
148148
178178 msgid "sent"
179179 msgstr "ส่งแล้ว"
180180
181 #: account/models.py:86 socialaccount/models.py:61
181 #: account/models.py:86 socialaccount/models.py:55
182182 msgid "key"
183183 msgstr "คีย์"
184184
209209 msgid "Social Accounts"
210210 msgstr "บัญชีโซเชียล"
211211
212 #: socialaccount/models.py:49 socialaccount/models.py:83
212 #: socialaccount/models.py:43 socialaccount/models.py:77
213213 msgid "provider"
214214 msgstr "ผู้ให้บริการ"
215215
216 #: socialaccount/models.py:52
216 #: socialaccount/models.py:46
217217 msgid "name"
218218 msgstr "ชื่อ"
219219
220 #: socialaccount/models.py:54
220 #: socialaccount/models.py:48
221221 msgid "client id"
222222 msgstr ""
223223
224 #: socialaccount/models.py:56
224 #: socialaccount/models.py:50
225225 msgid "App ID, or consumer key"
226226 msgstr ""
227227
228 #: socialaccount/models.py:57
228 #: socialaccount/models.py:51
229229 msgid "secret key"
230230 msgstr ""
231231
232 #: socialaccount/models.py:59
232 #: socialaccount/models.py:53
233233 msgid "API secret, client secret, or consumer secret"
234234 msgstr ""
235235
236 #: socialaccount/models.py:64
236 #: socialaccount/models.py:58
237237 msgid "Key"
238238 msgstr "คีย์"
239239
240 #: socialaccount/models.py:72
240 #: socialaccount/models.py:66
241241 msgid "social application"
242242 msgstr ""
243243
244 #: socialaccount/models.py:73
244 #: socialaccount/models.py:67
245245 msgid "social applications"
246246 msgstr ""
247247
248 #: socialaccount/models.py:96
249 msgid "uid"
250 msgstr ""
251
252 #: socialaccount/models.py:98
253 msgid "last login"
254 msgstr ""
255
256 #: socialaccount/models.py:100
257 msgid "date joined"
258 msgstr ""
259
248260 #: socialaccount/models.py:102
249 msgid "uid"
250 msgstr ""
251
252 #: socialaccount/models.py:104
253 msgid "last login"
261 msgid "extra data"
254262 msgstr ""
255263
256264 #: socialaccount/models.py:106
257 msgid "date joined"
258 msgstr ""
259
260 #: socialaccount/models.py:108
261 msgid "extra data"
262 msgstr ""
263
264 #: socialaccount/models.py:112
265265 msgid "social account"
266266 msgstr ""
267267
268 #: socialaccount/models.py:113
268 #: socialaccount/models.py:107
269269 msgid "social accounts"
270270 msgstr ""
271271
272 #: socialaccount/models.py:139
272 #: socialaccount/models.py:133
273273 msgid "token"
274274 msgstr "token"
275275
276 #: socialaccount/models.py:141
276 #: socialaccount/models.py:135
277277 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
278278 msgstr ""
279279
280 #: socialaccount/models.py:144
280 #: socialaccount/models.py:138
281281 msgid "token secret"
282282 msgstr ""
283283
284 #: socialaccount/models.py:140
285 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
286 msgstr ""
287
288 #: socialaccount/models.py:142
289 msgid "expires at"
290 msgstr ""
291
284292 #: socialaccount/models.py:146
285 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
286 msgstr ""
287
288 #: socialaccount/models.py:148
289 msgid "expires at"
290 msgstr ""
291
292 #: socialaccount/models.py:152
293293 msgid "social application token"
294294 msgstr ""
295295
296 #: socialaccount/models.py:153
296 #: socialaccount/models.py:147
297297 msgid "social application tokens"
298298 msgstr ""
299299
77 msgstr ""
88 "Project-Id-Version: django-allauth\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2017-10-29 09:56-0500\n"
10 "POT-Creation-Date: 2018-02-02 12:55-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/"
1818 "Content-Transfer-Encoding: 8bit\n"
1919 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
2020
21 #: account/adapter.py:48
21 #: account/adapter.py:45
2222 msgid "Username can not be used. Please use other username."
2323 msgstr "Bu kullanıcı adı kullanılamaz. Lütfen başka bir kullanıcı adı deneyin."
2424
25 #: account/adapter.py:52
25 #: account/adapter.py:49
2626 msgid "Too many failed login attempts. Try again later."
2727 msgstr "Çok fazla hatalı giriş yapıldı. Lütfen daha sonra tekrar deneyin."
2828
29 #: account/adapter.py:54
29 #: account/adapter.py:51
3030 msgid "A user is already registered with this e-mail address."
3131 msgstr "Bu e-posta adresiyle bir kullanıcı zaten kayıtlı."
3232
33 #: account/adapter.py:291
33 #: account/adapter.py:288
3434 #, python-brace-format
3535 msgid "Password must be a minimum of {0} characters."
3636 msgstr "Parola en az {0} karakter olmalıdır."
4040 msgid "Accounts"
4141 msgstr "Hesap"
4242
43 #: account/forms.py:41 account/forms.py:378
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:71 account/forms.py:345 account/forms.py:456
47 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4848 msgid "Password"
4949 msgstr "Parola"
5050
51 #: account/forms.py:72
51 #: account/forms.py:92
5252 msgid "Remember Me"
5353 msgstr "Beni Hatırla"
5454
55 #: account/forms.py:78
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:81
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:84
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:93 account/forms.py:248 account/forms.py:406
68 #: account/forms.py:475
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:95 account/forms.py:281 account/forms.py:401
73 #: account/forms.py:470
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:100 account/forms.py:103 account/forms.py:240
78 #: account/forms.py:244
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:110
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:113
86 #: account/forms.py:133
8787 msgctxt "field label"
8888 msgid "Login"
8989 msgstr "Giriş Yap"
9090
91 #: account/forms.py:272
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:276
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:284
103 #: account/forms.py:304
104104 msgid "E-mail (optional)"
105105 msgstr "E-posta (zorunlu değil)"
106106
107 #: account/forms.py:325
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:348 account/forms.py:457
113 #: account/forms.py:368 account/forms.py:477
114114 msgid "Password (again)"
115115 msgstr "Parola (tekrar)"
116116
117 #: account/forms.py:412
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:414
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:436
125 #: account/forms.py:456
126126 msgid "Current Password"
127127 msgstr "Mevcut Parola"
128128
129 #: account/forms.py:437 account/forms.py:526
129 #: account/forms.py:457 account/forms.py:546
130130 msgid "New Password"
131131 msgstr "Yeni Parola"
132132
133 #: account/forms.py:438 account/forms.py:527
133 #: account/forms.py:458 account/forms.py:547
134134 msgid "New Password (again)"
135135 msgstr "Yeni Parola (tekrar)"
136136
137 #: account/forms.py:446
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:484
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:548
145 #: account/forms.py:568
146146 msgid "The password reset token was invalid."
147147 msgstr "Şifre sıfırlama kodu hatalı."
148148
181181 msgid "sent"
182182 msgstr ""
183183
184 #: account/models.py:86 socialaccount/models.py:61
184 #: account/models.py:86 socialaccount/models.py:55
185185 msgid "key"
186186 msgstr ""
187187
215215 msgid "Social Accounts"
216216 msgstr "Hesap"
217217
218 #: socialaccount/models.py:49 socialaccount/models.py:83
218 #: socialaccount/models.py:43 socialaccount/models.py:77
219219 msgid "provider"
220220 msgstr ""
221221
222 #: socialaccount/models.py:52
222 #: socialaccount/models.py:46
223223 #, fuzzy
224224 msgid "name"
225225 msgstr "Kullanıcı adı"
226226
227 #: socialaccount/models.py:54
227 #: socialaccount/models.py:48
228228 msgid "client id"
229229 msgstr ""
230230
231 #: socialaccount/models.py:56
231 #: socialaccount/models.py:50
232232 msgid "App ID, or consumer key"
233233 msgstr ""
234234
235 #: socialaccount/models.py:57
235 #: socialaccount/models.py:51
236236 msgid "secret key"
237237 msgstr ""
238238
239 #: socialaccount/models.py:59
239 #: socialaccount/models.py:53
240240 msgid "API secret, client secret, or consumer secret"
241241 msgstr ""
242242
243 #: socialaccount/models.py:64
243 #: socialaccount/models.py:58
244244 msgid "Key"
245245 msgstr ""
246246
247 #: socialaccount/models.py:72
247 #: socialaccount/models.py:66
248248 msgid "social application"
249249 msgstr ""
250250
251 #: socialaccount/models.py:73
251 #: socialaccount/models.py:67
252252 msgid "social applications"
253253 msgstr ""
254254
255 #: socialaccount/models.py:96
256 msgid "uid"
257 msgstr ""
258
259 #: socialaccount/models.py:98
260 msgid "last login"
261 msgstr ""
262
263 #: socialaccount/models.py:100
264 msgid "date joined"
265 msgstr ""
266
255267 #: socialaccount/models.py:102
256 msgid "uid"
257 msgstr ""
258
259 #: socialaccount/models.py:104
260 msgid "last login"
268 msgid "extra data"
261269 msgstr ""
262270
263271 #: socialaccount/models.py:106
264 msgid "date joined"
265 msgstr ""
266
267 #: socialaccount/models.py:108
268 msgid "extra data"
269 msgstr ""
270
271 #: socialaccount/models.py:112
272272 msgid "social account"
273273 msgstr ""
274274
275 #: socialaccount/models.py:113
275 #: socialaccount/models.py:107
276276 msgid "social accounts"
277277 msgstr ""
278278
279 #: socialaccount/models.py:139
279 #: socialaccount/models.py:133
280280 msgid "token"
281281 msgstr ""
282282
283 #: socialaccount/models.py:141
283 #: socialaccount/models.py:135
284284 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
285285 msgstr ""
286286
287 #: socialaccount/models.py:144
287 #: socialaccount/models.py:138
288288 msgid "token secret"
289289 msgstr ""
290290
291 #: socialaccount/models.py:140
292 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
293 msgstr ""
294
295 #: socialaccount/models.py:142
296 msgid "expires at"
297 msgstr ""
298
291299 #: socialaccount/models.py:146
292 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
293 msgstr ""
294
295 #: socialaccount/models.py:148
296 msgid "expires at"
297 msgstr ""
298
299 #: socialaccount/models.py:152
300300 msgid "social application token"
301301 msgstr ""
302302
303 #: socialaccount/models.py:153
303 #: socialaccount/models.py:147
304304 msgid "social application tokens"
305305 msgstr ""
306306
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2017-10-29 09:56-0500\n"
10 "POT-Creation-Date: 2018-02-02 12:55-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"
1818 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
1919 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
2020
21 #: account/adapter.py:48
21 #: account/adapter.py:45
2222 msgid "Username can not be used. Please use other username."
2323 msgstr ""
2424 "Ім'я користувача не може бути використаним. Будь ласка, оберіть інше ім'я "
2525 "користувача."
2626
27 #: account/adapter.py:52
27 #: account/adapter.py:49
2828 msgid "Too many failed login attempts. Try again later."
2929 msgstr "Занадто багато спроб входу в систему, спробуйте пізніше."
3030
31 #: account/adapter.py:54
31 #: account/adapter.py:51
3232 msgid "A user is already registered with this e-mail address."
3333 msgstr "Користувач з такою e-mail адресою уже зареєстрований."
3434
35 #: account/adapter.py:291
35 #: account/adapter.py:288
3636 #, python-brace-format
3737 msgid "Password must be a minimum of {0} characters."
3838 msgstr "Пароль повинен містити мінімум {0} символів."
4141 msgid "Accounts"
4242 msgstr "Акаунти"
4343
44 #: account/forms.py:41 account/forms.py:378
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:71 account/forms.py:345 account/forms.py:456
48 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4949 msgid "Password"
5050 msgstr "Пароль"
5151
52 #: account/forms.py:72
52 #: account/forms.py:92
5353 msgid "Remember Me"
5454 msgstr "Запам'ятати мене"
5555
56 #: account/forms.py:78
56 #: account/forms.py:98
5757 msgid "This account is currently inactive."
5858 msgstr "Даний акаунт є неактивним."
5959
60 #: account/forms.py:81
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:84
64 #: account/forms.py:104
6565 msgid "The username and/or password you specified are not correct."
6666 msgstr "Введене ім'я користувача і/або пароль є некоректними."
6767
68 #: account/forms.py:93 account/forms.py:248 account/forms.py:406
69 #: account/forms.py:475
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:95 account/forms.py:281 account/forms.py:401
74 #: account/forms.py:470
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:100 account/forms.py:103 account/forms.py:240
79 #: account/forms.py:244
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:110
83 #: account/forms.py:130
8484 msgid "Username or e-mail"
8585 msgstr "Ім'я користувача або e-mail"
8686
87 #: account/forms.py:113
87 #: account/forms.py:133
8888 msgctxt "field label"
8989 msgid "Login"
9090 msgstr "Увійти"
9191
92 #: account/forms.py:272
92 #: account/forms.py:292
9393 msgid "E-mail (again)"
9494 msgstr "E-mail (ще раз)"
9595
96 #: account/forms.py:276
96 #: account/forms.py:296
9797 msgid "E-mail address confirmation"
9898 msgstr "e-mail адреса підтвердження"
9999
100 #: account/forms.py:284
100 #: account/forms.py:304
101101 msgid "E-mail (optional)"
102102 msgstr "E-mail (необов'язковий)"
103103
104 #: account/forms.py:325
104 #: account/forms.py:345
105105 msgid "You must type the same email each time."
106106 msgstr "Ви повинні вводити однакову e-mail адресу кожного разу."
107107
108 #: account/forms.py:348 account/forms.py:457
108 #: account/forms.py:368 account/forms.py:477
109109 msgid "Password (again)"
110110 msgstr "Пароль (ще раз)"
111111
112 #: account/forms.py:412
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:414
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:436
120 #: account/forms.py:456
121121 msgid "Current Password"
122122 msgstr "Поточний пароль"
123123
124 #: account/forms.py:437 account/forms.py:526
124 #: account/forms.py:457 account/forms.py:546
125125 msgid "New Password"
126126 msgstr "Новий пароль"
127127
128 #: account/forms.py:438 account/forms.py:527
128 #: account/forms.py:458 account/forms.py:547
129129 msgid "New Password (again)"
130130 msgstr "Новий пароль (ще раз)"
131131
132 #: account/forms.py:446
132 #: account/forms.py:466
133133 msgid "Please type your current password."
134134 msgstr "Будь ласка, вкажіть Ваш поточний пароль."
135135
136 #: account/forms.py:484
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:548
140 #: account/forms.py:568
141141 msgid "The password reset token was invalid."
142142 msgstr "Токен відновлення паролю був невірним."
143143
173173 msgid "sent"
174174 msgstr "відправлено"
175175
176 #: account/models.py:86 socialaccount/models.py:61
176 #: account/models.py:86 socialaccount/models.py:55
177177 msgid "key"
178178 msgstr "ключ"
179179
206206 msgid "Social Accounts"
207207 msgstr "Соціальні акаунти"
208208
209 #: socialaccount/models.py:49 socialaccount/models.py:83
209 #: socialaccount/models.py:43 socialaccount/models.py:77
210210 msgid "provider"
211211 msgstr "постачальник"
212212
213 #: socialaccount/models.py:52
213 #: socialaccount/models.py:46
214214 msgid "name"
215215 msgstr "Ім'я"
216216
217 #: socialaccount/models.py:54
217 #: socialaccount/models.py:48
218218 msgid "client id"
219219 msgstr "ідентифікатор клієнта"
220220
221 #: socialaccount/models.py:56
221 #: socialaccount/models.py:50
222222 msgid "App ID, or consumer key"
223223 msgstr "ідентифікатор додатку або ключ користувача"
224224
225 #: socialaccount/models.py:57
225 #: socialaccount/models.py:51
226226 msgid "secret key"
227227 msgstr "секретний ключ"
228228
229 #: socialaccount/models.py:59
229 #: socialaccount/models.py:53
230230 msgid "API secret, client secret, or consumer secret"
231231 msgstr ""
232232 "секретний ключ додатку, секретний ключ клієнта або секретний ключ користувача"
233233
234 #: socialaccount/models.py:64
234 #: socialaccount/models.py:58
235235 msgid "Key"
236236 msgstr "Ключ"
237237
238 #: socialaccount/models.py:72
238 #: socialaccount/models.py:66
239239 msgid "social application"
240240 msgstr "соціальний додаток"
241241
242 #: socialaccount/models.py:73
242 #: socialaccount/models.py:67
243243 msgid "social applications"
244244 msgstr "соціальні додатки"
245245
246 #: socialaccount/models.py:102
246 #: socialaccount/models.py:96
247247 msgid "uid"
248248 msgstr "ID користувача"
249249
250 #: socialaccount/models.py:104
250 #: socialaccount/models.py:98
251251 msgid "last login"
252252 msgstr "дата останнього входу"
253253
254 #: socialaccount/models.py:106
254 #: socialaccount/models.py:100
255255 msgid "date joined"
256256 msgstr "дата реєстрації"
257257
258 #: socialaccount/models.py:108
258 #: socialaccount/models.py:102
259259 msgid "extra data"
260260 msgstr "додаткові дані"
261261
262 #: socialaccount/models.py:112
262 #: socialaccount/models.py:106
263263 msgid "social account"
264264 msgstr "аккаунт соціальної мережі"
265265
266 #: socialaccount/models.py:113
266 #: socialaccount/models.py:107
267267 msgid "social accounts"
268268 msgstr "акаунти соціальних мереж"
269269
270 #: socialaccount/models.py:139
270 #: socialaccount/models.py:133
271271 msgid "token"
272272 msgstr "токен"
273273
274 #: socialaccount/models.py:141
274 #: socialaccount/models.py:135
275275 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
276276 msgstr "\"oauth_token\" (OAuth1) або access token (OAuth2)"
277277
278 #: socialaccount/models.py:144
278 #: socialaccount/models.py:138
279279 msgid "token secret"
280280 msgstr "секретний токен"
281281
282 #: socialaccount/models.py:146
282 #: socialaccount/models.py:140
283283 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
284284 msgstr "\"oauth_token_secret\" (OAuth1) або refresh token (OAuth2)"
285285
286 #: socialaccount/models.py:148
286 #: socialaccount/models.py:142
287287 msgid "expires at"
288288 msgstr "закінчується"
289289
290 #: socialaccount/models.py:152
290 #: socialaccount/models.py:146
291291 msgid "social application token"
292292 msgstr "токен соціального додатку"
293293
294 #: socialaccount/models.py:153
294 #: socialaccount/models.py:147
295295 msgid "social application tokens"
296296 msgstr "токени соціальних додатків"
297297
66 msgstr ""
77 "Project-Id-Version: django-allauth\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-10-29 09:56-0500\n"
9 "POT-Creation-Date: 2018-02-02 12:55-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"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717
18 #: account/adapter.py:48
18 #: account/adapter.py:45
1919 msgid "Username can not be used. Please use other username."
2020 msgstr "此用户名不能使用,请改用其他用户名。"
2121
22 #: account/adapter.py:52
22 #: account/adapter.py:49
2323 msgid "Too many failed login attempts. Try again later."
2424 msgstr "登录失败次数过多,请稍后重试。"
2525
26 #: account/adapter.py:54
26 #: account/adapter.py:51
2727 msgid "A user is already registered with this e-mail address."
2828 msgstr "此e-mail地址已被其他用户注册。"
2929
30 #: account/adapter.py:291
30 #: account/adapter.py:288
3131 #, python-brace-format
3232 msgid "Password must be a minimum of {0} characters."
3333 msgstr "密码长度不得少于 {0} 个字符。"
3737 msgid "Accounts"
3838 msgstr "账号"
3939
40 #: account/forms.py:41 account/forms.py:378
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:71 account/forms.py:345 account/forms.py:456
44 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4545 msgid "Password"
4646 msgstr "密码"
4747
48 #: account/forms.py:72
48 #: account/forms.py:92
4949 msgid "Remember Me"
5050 msgstr "记住我"
5151
52 #: account/forms.py:78
52 #: account/forms.py:98
5353 msgid "This account is currently inactive."
5454 msgstr "此账号当前未激活。"
5555
56 #: account/forms.py:81
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:84
60 #: account/forms.py:104
6161 msgid "The username and/or password you specified are not correct."
6262 msgstr "您提供的用户名或密码不正确。"
6363
64 #: account/forms.py:93 account/forms.py:248 account/forms.py:406
65 #: account/forms.py:475
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:95 account/forms.py:281 account/forms.py:401
70 #: account/forms.py:470
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:100 account/forms.py:103 account/forms.py:240
75 #: account/forms.py:244
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:110
79 #: account/forms.py:130
8080 msgid "Username or e-mail"
8181 msgstr "用户名或e-mail"
8282
83 #: account/forms.py:113
83 #: account/forms.py:133
8484 msgctxt "field label"
8585 msgid "Login"
8686 msgstr "账号"
8787
88 #: account/forms.py:272
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:276
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:284
100 #: account/forms.py:304
101101 msgid "E-mail (optional)"
102102 msgstr "E-mail (选填项)"
103103
104 #: account/forms.py:325
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:348 account/forms.py:457
110 #: account/forms.py:368 account/forms.py:477
111111 msgid "Password (again)"
112112 msgstr "密码(重复)"
113113
114 #: account/forms.py:412
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:414
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:436
122 #: account/forms.py:456
123123 msgid "Current Password"
124124 msgstr "当前密码"
125125
126 #: account/forms.py:437 account/forms.py:526
126 #: account/forms.py:457 account/forms.py:546
127127 msgid "New Password"
128128 msgstr "新密码"
129129
130 #: account/forms.py:438 account/forms.py:527
130 #: account/forms.py:458 account/forms.py:547
131131 msgid "New Password (again)"
132132 msgstr "新密码(重复)"
133133
134 #: account/forms.py:446
134 #: account/forms.py:466
135135 msgid "Please type your current password."
136136 msgstr "请输入您的当前密码"
137137
138 #: account/forms.py:484
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:548
142 #: account/forms.py:568
143143 msgid "The password reset token was invalid."
144144 msgstr "重设密码的token不合法。"
145145
177177 msgid "sent"
178178 msgstr "已发送"
179179
180 #: account/models.py:86 socialaccount/models.py:61
180 #: account/models.py:86 socialaccount/models.py:55
181181 msgid "key"
182182 msgstr "key"
183183
209209 msgid "Social Accounts"
210210 msgstr "账号"
211211
212 #: socialaccount/models.py:49 socialaccount/models.py:83
212 #: socialaccount/models.py:43 socialaccount/models.py:77
213213 msgid "provider"
214214 msgstr "提供商"
215215
216 #: socialaccount/models.py:52
216 #: socialaccount/models.py:46
217217 #, fuzzy
218218 msgid "name"
219219 msgstr "用户名"
220220
221 #: socialaccount/models.py:54
221 #: socialaccount/models.py:48
222222 msgid "client id"
223223 msgstr "客户端 id"
224224
225 #: socialaccount/models.py:56
225 #: socialaccount/models.py:50
226226 msgid "App ID, or consumer key"
227227 msgstr ""
228228
229 #: socialaccount/models.py:57
229 #: socialaccount/models.py:51
230230 msgid "secret key"
231231 msgstr ""
232232
233 #: socialaccount/models.py:59
233 #: socialaccount/models.py:53
234234 msgid "API secret, client secret, or consumer secret"
235235 msgstr ""
236236
237 #: socialaccount/models.py:64
237 #: socialaccount/models.py:58
238238 #, fuzzy
239239 msgid "Key"
240240 msgstr "key"
241241
242 #: socialaccount/models.py:72
242 #: socialaccount/models.py:66
243243 msgid "social application"
244244 msgstr ""
245245
246 #: socialaccount/models.py:73
246 #: socialaccount/models.py:67
247247 msgid "social applications"
248248 msgstr ""
249249
250 #: socialaccount/models.py:102
250 #: socialaccount/models.py:96
251251 msgid "uid"
252252 msgstr ""
253253
254 #: socialaccount/models.py:104
254 #: socialaccount/models.py:98
255255 msgid "last login"
256256 msgstr "最后登录"
257257
258 #: socialaccount/models.py:106
258 #: socialaccount/models.py:100
259259 msgid "date joined"
260260 msgstr "注册日期"
261261
262 #: socialaccount/models.py:108
262 #: socialaccount/models.py:102
263263 msgid "extra data"
264264 msgstr ""
265265
266 #: socialaccount/models.py:112
266 #: socialaccount/models.py:106
267267 msgid "social account"
268268 msgstr "社交账号"
269269
270 #: socialaccount/models.py:113
270 #: socialaccount/models.py:107
271271 msgid "social accounts"
272272 msgstr "社交账号"
273273
274 #: socialaccount/models.py:139
274 #: socialaccount/models.py:133
275275 msgid "token"
276276 msgstr ""
277277
278 #: socialaccount/models.py:141
278 #: socialaccount/models.py:135
279279 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
280280 msgstr ""
281281
282 #: socialaccount/models.py:144
282 #: socialaccount/models.py:138
283283 msgid "token secret"
284284 msgstr ""
285285
286 #: socialaccount/models.py:140
287 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
288 msgstr ""
289
290 #: socialaccount/models.py:142
291 msgid "expires at"
292 msgstr ""
293
286294 #: socialaccount/models.py:146
287 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
288 msgstr ""
289
290 #: socialaccount/models.py:148
291 msgid "expires at"
292 msgstr ""
293
294 #: socialaccount/models.py:152
295295 msgid "social application token"
296296 msgstr ""
297297
298 #: socialaccount/models.py:153
298 #: socialaccount/models.py:147
299299 msgid "social application tokens"
300300 msgstr ""
301301
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2017-10-29 09:56-0500\n"
10 "POT-Creation-Date: 2018-02-02 12:55-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"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=1; plural=0;\n"
1919
20 #: account/adapter.py:48
20 #: account/adapter.py:45
2121 msgid "Username can not be used. Please use other username."
2222 msgstr "此用户名不能使用,请改用其他用户名。"
2323
24 #: account/adapter.py:52
24 #: account/adapter.py:49
2525 msgid "Too many failed login attempts. Try again later."
2626 msgstr "登录失败次数过多,请稍后重试。"
2727
28 #: account/adapter.py:54
28 #: account/adapter.py:51
2929 msgid "A user is already registered with this e-mail address."
3030 msgstr "此e-mail地址已被其他用户注册。"
3131
32 #: account/adapter.py:291
32 #: account/adapter.py:288
3333 #, python-brace-format
3434 msgid "Password must be a minimum of {0} characters."
3535 msgstr "密码长度不得少于 {0} 个字符。"
3939 msgid "Accounts"
4040 msgstr "账号"
4141
42 #: account/forms.py:41 account/forms.py:378
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:71 account/forms.py:345 account/forms.py:456
46 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4747 msgid "Password"
4848 msgstr "密码"
4949
50 #: account/forms.py:72
50 #: account/forms.py:92
5151 msgid "Remember Me"
5252 msgstr "记住我"
5353
54 #: account/forms.py:78
54 #: account/forms.py:98
5555 msgid "This account is currently inactive."
5656 msgstr "此账号当前未激活。"
5757
58 #: account/forms.py:81
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:84
62 #: account/forms.py:104
6363 msgid "The username and/or password you specified are not correct."
6464 msgstr "您提供的用户名或密码不正确。"
6565
66 #: account/forms.py:93 account/forms.py:248 account/forms.py:406
67 #: account/forms.py:475
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:95 account/forms.py:281 account/forms.py:401
72 #: account/forms.py:470
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:100 account/forms.py:103 account/forms.py:240
77 #: account/forms.py:244
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:110
81 #: account/forms.py:130
8282 msgid "Username or e-mail"
8383 msgstr "用户名或e-mail"
8484
85 #: account/forms.py:113
85 #: account/forms.py:133
8686 msgctxt "field label"
8787 msgid "Login"
8888 msgstr "账号"
8989
90 #: account/forms.py:272
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:276
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:284
102 #: account/forms.py:304
103103 msgid "E-mail (optional)"
104104 msgstr "E-mail (选填项)"
105105
106 #: account/forms.py:325
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:348 account/forms.py:457
112 #: account/forms.py:368 account/forms.py:477
113113 msgid "Password (again)"
114114 msgstr "密码(重复)"
115115
116 #: account/forms.py:412
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:414
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:436
124 #: account/forms.py:456
125125 msgid "Current Password"
126126 msgstr "当前密码"
127127
128 #: account/forms.py:437 account/forms.py:526
128 #: account/forms.py:457 account/forms.py:546
129129 msgid "New Password"
130130 msgstr "新密码"
131131
132 #: account/forms.py:438 account/forms.py:527
132 #: account/forms.py:458 account/forms.py:547
133133 msgid "New Password (again)"
134134 msgstr "新密码(重复)"
135135
136 #: account/forms.py:446
136 #: account/forms.py:466
137137 msgid "Please type your current password."
138138 msgstr "请输入您的当前密码"
139139
140 #: account/forms.py:484
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:548
144 #: account/forms.py:568
145145 msgid "The password reset token was invalid."
146146 msgstr ""
147147
179179 msgid "sent"
180180 msgstr "已发送"
181181
182 #: account/models.py:86 socialaccount/models.py:61
182 #: account/models.py:86 socialaccount/models.py:55
183183 msgid "key"
184184 msgstr "key"
185185
211211 msgid "Social Accounts"
212212 msgstr "账号"
213213
214 #: socialaccount/models.py:49 socialaccount/models.py:83
214 #: socialaccount/models.py:43 socialaccount/models.py:77
215215 msgid "provider"
216216 msgstr ""
217217
218 #: socialaccount/models.py:52
218 #: socialaccount/models.py:46
219219 #, fuzzy
220220 msgid "name"
221221 msgstr "用户名"
222222
223 #: socialaccount/models.py:54
223 #: socialaccount/models.py:48
224224 msgid "client id"
225225 msgstr ""
226226
227 #: socialaccount/models.py:56
227 #: socialaccount/models.py:50
228228 msgid "App ID, or consumer key"
229229 msgstr ""
230230
231 #: socialaccount/models.py:57
231 #: socialaccount/models.py:51
232232 msgid "secret key"
233233 msgstr ""
234234
235 #: socialaccount/models.py:59
235 #: socialaccount/models.py:53
236236 msgid "API secret, client secret, or consumer secret"
237237 msgstr ""
238238
239 #: socialaccount/models.py:64
239 #: socialaccount/models.py:58
240240 #, fuzzy
241241 msgid "Key"
242242 msgstr "key"
243243
244 #: socialaccount/models.py:72
244 #: socialaccount/models.py:66
245245 msgid "social application"
246246 msgstr ""
247247
248 #: socialaccount/models.py:73
248 #: socialaccount/models.py:67
249249 msgid "social applications"
250250 msgstr ""
251251
252 #: socialaccount/models.py:96
253 msgid "uid"
254 msgstr ""
255
256 #: socialaccount/models.py:98
257 msgid "last login"
258 msgstr ""
259
260 #: socialaccount/models.py:100
261 msgid "date joined"
262 msgstr ""
263
252264 #: socialaccount/models.py:102
253 msgid "uid"
254 msgstr ""
255
256 #: socialaccount/models.py:104
257 msgid "last login"
265 msgid "extra data"
258266 msgstr ""
259267
260268 #: socialaccount/models.py:106
261 msgid "date joined"
262 msgstr ""
263
264 #: socialaccount/models.py:108
265 msgid "extra data"
266 msgstr ""
267
268 #: socialaccount/models.py:112
269269 msgid "social account"
270270 msgstr ""
271271
272 #: socialaccount/models.py:113
272 #: socialaccount/models.py:107
273273 msgid "social accounts"
274274 msgstr ""
275275
276 #: socialaccount/models.py:139
276 #: socialaccount/models.py:133
277277 msgid "token"
278278 msgstr ""
279279
280 #: socialaccount/models.py:141
280 #: socialaccount/models.py:135
281281 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
282282 msgstr ""
283283
284 #: socialaccount/models.py:144
284 #: socialaccount/models.py:138
285285 msgid "token secret"
286286 msgstr ""
287287
288 #: socialaccount/models.py:140
289 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
290 msgstr ""
291
292 #: socialaccount/models.py:142
293 msgid "expires at"
294 msgstr ""
295
288296 #: socialaccount/models.py:146
289 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
290 msgstr ""
291
292 #: socialaccount/models.py:148
293 msgid "expires at"
294 msgstr ""
295
296 #: socialaccount/models.py:152
297297 msgid "social application token"
298298 msgstr ""
299299
300 #: socialaccount/models.py:153
300 #: socialaccount/models.py:147
301301 msgid "social application tokens"
302302 msgstr ""
303303
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2017-10-29 09:56-0500\n"
10 "POT-Creation-Date: 2018-02-02 12:55-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"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=1; plural=0;\n"
1919
20 #: account/adapter.py:48
20 #: account/adapter.py:45
2121 msgid "Username can not be used. Please use other username."
2222 msgstr "無法使用此使用者名稱,請使用其他名稱。"
2323
24 #: account/adapter.py:52
24 #: account/adapter.py:49
2525 msgid "Too many failed login attempts. Try again later."
2626 msgstr ""
2727
28 #: account/adapter.py:54
28 #: account/adapter.py:51
2929 msgid "A user is already registered with this e-mail address."
3030 msgstr "已經有人使用這一個電子郵件註冊了。"
3131
32 #: account/adapter.py:291
32 #: account/adapter.py:288
3333 #, python-brace-format
3434 msgid "Password must be a minimum of {0} characters."
3535 msgstr "密碼長度至少要有 {0} 個字元。"
3838 msgid "Accounts"
3939 msgstr "帳號"
4040
41 #: account/forms.py:41 account/forms.py:378
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:71 account/forms.py:345 account/forms.py:456
45 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4646 msgid "Password"
4747 msgstr "密碼"
4848
49 #: account/forms.py:72
49 #: account/forms.py:92
5050 msgid "Remember Me"
5151 msgstr "記住我"
5252
53 #: account/forms.py:78
53 #: account/forms.py:98
5454 msgid "This account is currently inactive."
5555 msgstr "此帳號目前沒有啟用。"
5656
57 #: account/forms.py:81
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:84
61 #: account/forms.py:104
6262 msgid "The username and/or password you specified are not correct."
6363 msgstr "您提供的使用者名稱或密碼不正確。"
6464
65 #: account/forms.py:93 account/forms.py:248 account/forms.py:406
66 #: account/forms.py:475
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:95 account/forms.py:281 account/forms.py:401
71 #: account/forms.py:470
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:100 account/forms.py:103 account/forms.py:240
76 #: account/forms.py:244
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:110
80 #: account/forms.py:130
8181 msgid "Username or e-mail"
8282 msgstr "使用者名稱或電子郵件"
8383
84 #: account/forms.py:113
84 #: account/forms.py:133
8585 msgctxt "field label"
8686 msgid "Login"
8787 msgstr "登入"
8888
89 #: account/forms.py:272
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:276
95 #: account/forms.py:296
9696 #, fuzzy
9797 #| msgid "email confirmation"
9898 msgid "E-mail address confirmation"
9999 msgstr "電子郵件確認"
100100
101 #: account/forms.py:284
101 #: account/forms.py:304
102102 msgid "E-mail (optional)"
103103 msgstr "E-mail (可不填)"
104104
105 #: account/forms.py:325
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:348 account/forms.py:457
111 #: account/forms.py:368 account/forms.py:477
112112 msgid "Password (again)"
113113 msgstr "密碼 (再一次)"
114114
115 #: account/forms.py:412
115 #: account/forms.py:432
116116 msgid "This e-mail address is already associated with this account."
117117 msgstr "此電子郵件已與這個帳號連結了。"
118118
119 #: account/forms.py:414
119 #: account/forms.py:434
120120 msgid "This e-mail address is already associated with another account."
121121 msgstr "此電子郵件已經與別的帳號連結了。"
122122
123 #: account/forms.py:436
123 #: account/forms.py:456
124124 msgid "Current Password"
125125 msgstr "目前密碼"
126126
127 #: account/forms.py:437 account/forms.py:526
127 #: account/forms.py:457 account/forms.py:546
128128 msgid "New Password"
129129 msgstr "新密碼"
130130
131 #: account/forms.py:438 account/forms.py:527
131 #: account/forms.py:458 account/forms.py:547
132132 msgid "New Password (again)"
133133 msgstr "新密碼 (再一次)"
134134
135 #: account/forms.py:446
135 #: account/forms.py:466
136136 msgid "Please type your current password."
137137 msgstr "請輸入您目前的密碼"
138138
139 #: account/forms.py:484
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:548
143 #: account/forms.py:568
144144 msgid "The password reset token was invalid."
145145 msgstr ""
146146
177177 msgid "sent"
178178 msgstr "已送出"
179179
180 #: account/models.py:86 socialaccount/models.py:61
180 #: account/models.py:86 socialaccount/models.py:55
181181 msgid "key"
182182 msgstr "key"
183183
209209 msgid "Social Accounts"
210210 msgstr "社群帳號"
211211
212 #: socialaccount/models.py:49 socialaccount/models.py:83
212 #: socialaccount/models.py:43 socialaccount/models.py:77
213213 msgid "provider"
214214 msgstr "提供者"
215215
216 #: socialaccount/models.py:52
216 #: socialaccount/models.py:46
217217 msgid "name"
218218 msgstr "名稱"
219219
220 #: socialaccount/models.py:54
220 #: socialaccount/models.py:48
221221 msgid "client id"
222222 msgstr "client id"
223223
224 #: socialaccount/models.py:56
224 #: socialaccount/models.py:50
225225 msgid "App ID, or consumer key"
226226 msgstr "App ID, or consumer key"
227227
228 #: socialaccount/models.py:57
228 #: socialaccount/models.py:51
229229 msgid "secret key"
230230 msgstr "secret key"
231231
232 #: socialaccount/models.py:59
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:64
236 #: socialaccount/models.py:58
237237 msgid "Key"
238238 msgstr "Key"
239239
240 #: socialaccount/models.py:72
240 #: socialaccount/models.py:66
241241 msgid "social application"
242242 msgstr "社群應用程式"
243243
244 #: socialaccount/models.py:73
244 #: socialaccount/models.py:67
245245 msgid "social applications"
246246 msgstr "社群應用程式"
247247
248 #: socialaccount/models.py:102
248 #: socialaccount/models.py:96
249249 msgid "uid"
250250 msgstr "uid"
251251
252 #: socialaccount/models.py:104
252 #: socialaccount/models.py:98
253253 msgid "last login"
254254 msgstr "最後一次登入"
255255
256 #: socialaccount/models.py:106
256 #: socialaccount/models.py:100
257257 msgid "date joined"
258258 msgstr "加入日期"
259259
260 #: socialaccount/models.py:108
260 #: socialaccount/models.py:102
261261 msgid "extra data"
262262 msgstr "額外資料"
263263
264 #: socialaccount/models.py:112
264 #: socialaccount/models.py:106
265265 msgid "social account"
266266 msgstr "社群帳號"
267267
268 #: socialaccount/models.py:113
268 #: socialaccount/models.py:107
269269 msgid "social accounts"
270270 msgstr "社群帳號"
271271
272 #: socialaccount/models.py:139
272 #: socialaccount/models.py:133
273273 msgid "token"
274274 msgstr ""
275275
276 #: socialaccount/models.py:141
276 #: socialaccount/models.py:135
277277 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
278278 msgstr ""
279279
280 #: socialaccount/models.py:144
280 #: socialaccount/models.py:138
281281 msgid "token secret"
282282 msgstr ""
283283
284 #: socialaccount/models.py:146
284 #: socialaccount/models.py:140
285285 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
286286 msgstr ""
287287
288 #: socialaccount/models.py:148
288 #: socialaccount/models.py:142
289289 msgid "expires at"
290290 msgstr "過期日"
291291
292 #: socialaccount/models.py:152
292 #: socialaccount/models.py:146
293293 msgid "social application token"
294294 msgstr "社群應用程式 Token"
295295
296 #: socialaccount/models.py:153
296 #: socialaccount/models.py:147
297297 msgid "social application tokens"
298298 msgstr "社群應用程式 Token"
299299
55 msgstr ""
66 "Project-Id-Version: django-allauth\n"
77 "Report-Msgid-Bugs-To: \n"
8 "POT-Creation-Date: 2017-10-29 09:56-0500\n"
8 "POT-Creation-Date: 2018-02-02 12:55-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"
1414 "Content-Type: text/plain; charset=UTF-8\n"
1515 "Content-Transfer-Encoding: 8bit\n"
1616
17 #: account/adapter.py:48
17 #: account/adapter.py:45
1818 msgid "Username can not be used. Please use other username."
1919 msgstr "無法使用此使用者名稱,請使用其他名稱。"
2020
21 #: account/adapter.py:52
21 #: account/adapter.py:49
2222 msgid "Too many failed login attempts. Try again later."
2323 msgstr ""
2424
25 #: account/adapter.py:54
25 #: account/adapter.py:51
2626 msgid "A user is already registered with this e-mail address."
2727 msgstr "已經有人使用這一個電子郵件註冊了。"
2828
29 #: account/adapter.py:291
29 #: account/adapter.py:288
3030 #, python-brace-format
3131 msgid "Password must be a minimum of {0} characters."
3232 msgstr "密碼長度至少要有 {0} 個字元。"
3535 msgid "Accounts"
3636 msgstr "帳號"
3737
38 #: account/forms.py:41 account/forms.py:378
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:71 account/forms.py:345 account/forms.py:456
42 #: account/forms.py:91 account/forms.py:365 account/forms.py:476
4343 msgid "Password"
4444 msgstr "密碼"
4545
46 #: account/forms.py:72
46 #: account/forms.py:92
4747 msgid "Remember Me"
4848 msgstr "記住我"
4949
50 #: account/forms.py:78
50 #: account/forms.py:98
5151 msgid "This account is currently inactive."
5252 msgstr "此帳號目前沒有啟用。"
5353
54 #: account/forms.py:81
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:84
58 #: account/forms.py:104
5959 msgid "The username and/or password you specified are not correct."
6060 msgstr "您提供的使用者名稱或密碼不正確。"
6161
62 #: account/forms.py:93 account/forms.py:248 account/forms.py:406
63 #: account/forms.py:475
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:95 account/forms.py:281 account/forms.py:401
68 #: account/forms.py:470
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:100 account/forms.py:103 account/forms.py:240
73 #: account/forms.py:244
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:110
77 #: account/forms.py:130
7878 msgid "Username or e-mail"
7979 msgstr "使用者名稱或電子郵件"
8080
81 #: account/forms.py:113
81 #: account/forms.py:133
8282 msgctxt "field label"
8383 msgid "Login"
8484 msgstr "登入"
8585
86 #: account/forms.py:272
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:276
92 #: account/forms.py:296
9393 #, fuzzy
9494 #| msgid "email confirmation"
9595 msgid "E-mail address confirmation"
9696 msgstr "電子郵件確認"
9797
98 #: account/forms.py:284
98 #: account/forms.py:304
9999 msgid "E-mail (optional)"
100100 msgstr "E-mail (可不填)"
101101
102 #: account/forms.py:325
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:348 account/forms.py:457
108 #: account/forms.py:368 account/forms.py:477
109109 msgid "Password (again)"
110110 msgstr "密碼 (再一次)"
111111
112 #: account/forms.py:412
112 #: account/forms.py:432
113113 msgid "This e-mail address is already associated with this account."
114114 msgstr "此電子郵件已與這個帳號連結了。"
115115
116 #: account/forms.py:414
116 #: account/forms.py:434
117117 msgid "This e-mail address is already associated with another account."
118118 msgstr "此電子郵件已經與別的帳號連結了。"
119119
120 #: account/forms.py:436
120 #: account/forms.py:456
121121 msgid "Current Password"
122122 msgstr "目前密碼"
123123
124 #: account/forms.py:437 account/forms.py:526
124 #: account/forms.py:457 account/forms.py:546
125125 msgid "New Password"
126126 msgstr "新密碼"
127127
128 #: account/forms.py:438 account/forms.py:527
128 #: account/forms.py:458 account/forms.py:547
129129 msgid "New Password (again)"
130130 msgstr "新密碼 (再一次)"
131131
132 #: account/forms.py:446
132 #: account/forms.py:466
133133 msgid "Please type your current password."
134134 msgstr "請輸入您目前的密碼"
135135
136 #: account/forms.py:484
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:548
140 #: account/forms.py:568
141141 msgid "The password reset token was invalid."
142142 msgstr ""
143143
174174 msgid "sent"
175175 msgstr "已送出"
176176
177 #: account/models.py:86 socialaccount/models.py:61
177 #: account/models.py:86 socialaccount/models.py:55
178178 msgid "key"
179179 msgstr "key"
180180
206206 msgid "Social Accounts"
207207 msgstr "社群帳號"
208208
209 #: socialaccount/models.py:49 socialaccount/models.py:83
209 #: socialaccount/models.py:43 socialaccount/models.py:77
210210 msgid "provider"
211211 msgstr "提供者"
212212
213 #: socialaccount/models.py:52
213 #: socialaccount/models.py:46
214214 msgid "name"
215215 msgstr "名稱"
216216
217 #: socialaccount/models.py:54
217 #: socialaccount/models.py:48
218218 msgid "client id"
219219 msgstr "client id"
220220
221 #: socialaccount/models.py:56
221 #: socialaccount/models.py:50
222222 msgid "App ID, or consumer key"
223223 msgstr "App ID, or consumer key"
224224
225 #: socialaccount/models.py:57
225 #: socialaccount/models.py:51
226226 msgid "secret key"
227227 msgstr "secret key"
228228
229 #: socialaccount/models.py:59
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:64
233 #: socialaccount/models.py:58
234234 msgid "Key"
235235 msgstr "Key"
236236
237 #: socialaccount/models.py:72
237 #: socialaccount/models.py:66
238238 msgid "social application"
239239 msgstr "社群應用程式"
240240
241 #: socialaccount/models.py:73
241 #: socialaccount/models.py:67
242242 msgid "social applications"
243243 msgstr "社群應用程式"
244244
245 #: socialaccount/models.py:102
245 #: socialaccount/models.py:96
246246 msgid "uid"
247247 msgstr "uid"
248248
249 #: socialaccount/models.py:104
249 #: socialaccount/models.py:98
250250 msgid "last login"
251251 msgstr "最後一次登入"
252252
253 #: socialaccount/models.py:106
253 #: socialaccount/models.py:100
254254 msgid "date joined"
255255 msgstr "加入日期"
256256
257 #: socialaccount/models.py:108
257 #: socialaccount/models.py:102
258258 msgid "extra data"
259259 msgstr "額外資料"
260260
261 #: socialaccount/models.py:112
261 #: socialaccount/models.py:106
262262 msgid "social account"
263263 msgstr "社群帳號"
264264
265 #: socialaccount/models.py:113
265 #: socialaccount/models.py:107
266266 msgid "social accounts"
267267 msgstr "社群帳號"
268268
269 #: socialaccount/models.py:139
269 #: socialaccount/models.py:133
270270 msgid "token"
271271 msgstr ""
272272
273 #: socialaccount/models.py:141
273 #: socialaccount/models.py:135
274274 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)"
275275 msgstr ""
276276
277 #: socialaccount/models.py:144
277 #: socialaccount/models.py:138
278278 msgid "token secret"
279279 msgstr ""
280280
281 #: socialaccount/models.py:146
281 #: socialaccount/models.py:140
282282 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)"
283283 msgstr ""
284284
285 #: socialaccount/models.py:148
285 #: socialaccount/models.py:142
286286 msgid "expires at"
287287 msgstr "過期日"
288288
289 #: socialaccount/models.py:152
289 #: socialaccount/models.py:146
290290 msgid "social application token"
291291 msgstr "社群應用程式 Token"
292292
293 #: socialaccount/models.py:153
293 #: socialaccount/models.py:147
294294 msgid "social application tokens"
295295 msgstr "社群應用程式 Token"
296296
00 from __future__ import absolute_import
11
22 from django.core.exceptions import ValidationError
3 from django.urls import reverse
34 from django.utils.translation import ugettext_lazy as _
45
56 from . import app_settings
89 from ..account.app_settings import EmailVerificationMethod
910 from ..account.models import EmailAddress
1011 from ..account.utils import user_email, user_field, user_username
11 from ..compat import is_authenticated, reverse
1212 from ..utils import (
1313 deserialize_instance,
1414 email_address_exists,
115115 Returns the default URL to redirect to after successfully
116116 connecting a social account.
117117 """
118 assert is_authenticated(request.user)
118 assert request.user.is_authenticated
119119 url = reverse('socialaccount_connections')
120120 return url
121121
0 import django
10 from django import forms
21 from django.contrib import admin
32
2928 list_display = ('user', 'uid', 'provider')
3029 list_filter = ('provider',)
3130
32 def __init__(self, *args, **kwargs):
33 super(SocialAccountAdmin, self).__init__(*args, **kwargs)
34 if not self.search_fields and django.VERSION[:2] < (1, 7):
35 self.search_fields = self.get_search_fields(None)
36
3731 def get_search_fields(self, request):
3832 base_fields = get_adapter().get_user_search_fields()
3933 return list(map(lambda a: 'user__' + a, base_fields))
00 # Courtesy of django-social-auth
11 import json
22
3 import django
34 from django.core.exceptions import ValidationError
45 from django.db import models
56 from django.utils import six
6
7
8 try:
9 from django.utils.encoding import smart_unicode as smart_text
10 except ImportError:
11 from django.utils.encoding import smart_text
127
138
149 class JSONField(models.TextField):
1510 """Simple JSON field that stores python structures as JSON strings
1611 on database.
1712 """
18 def from_db_value(self, value, expression, connection, context):
19 return self.to_python(value)
13 if django.VERSION < (2, 0):
14 def from_db_value(self, value, expression, connection, context):
15 return self.to_python(value)
16 else:
17 def from_db_value(self, value, expression, connection):
18 return self.to_python(value)
2019
2120 def to_python(self, value):
2221 """
5049 except Exception as e:
5150 raise ValidationError(str(e))
5251
53 def value_to_string(self, obj):
54 """Return value from object converted to string properly"""
55 return smart_text(self.get_prep_value(self._get_val_from_obj(obj)))
56
5752 def value_from_object(self, obj):
5853 """Return value dumped to string."""
59 return self.get_prep_value(self._get_val_from_obj(obj))
60
61
62 try:
63 from south.modelsinspector import add_introspection_rules
64 add_introspection_rules([], ["^allauth\.socialaccount\.fields\.JSONField"])
65 except:
66 pass
54 val = super(JSONField, self).value_from_object(obj)
55 return self.get_prep_value(val)
11 from django.forms import ValidationError
22 from django.http import HttpResponseRedirect
33 from django.shortcuts import render
4 from django.urls import reverse
45
56 from allauth.account import app_settings as account_settings
67 from allauth.account.adapter import get_adapter as get_account_adapter
89 from allauth.exceptions import ImmediateHttpResponse
910
1011 from . import app_settings, signals
11 from ..compat import is_anonymous, is_authenticated, reverse
1212 from .adapter import get_adapter
1313 from .models import SocialLogin
1414 from .providers.base import AuthError, AuthProcess
8989
9090
9191 def _add_social_account(request, sociallogin):
92 if is_anonymous(request.user):
92 if request.user.is_anonymous:
9393 # This should not happen. Simply redirect to the connections
9494 # view (which has a login required)
9595 return HttpResponseRedirect(reverse('socialaccount_connections'))
160160
161161
162162 def _complete_social_login(request, sociallogin):
163 if is_authenticated(request.user):
163 if request.user.is_authenticated:
164164 get_account_adapter(request).logout(request)
165165 if sociallogin.is_existing:
166166 # Login existing user
0 try:
1 from django.db import migrations # noqa
2 except ImportError:
3 from django.core.exceptions import ImproperlyConfigured
4 raise ImproperlyConfigured('Please upgrade to south >= 1.0')
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 python_2_unicode_compatible
8 from django.utils.encoding import force_text, python_2_unicode_compatible
99 from django.utils.translation import ugettext_lazy as _
1010
1111 import allauth.app_settings
1717 from ..utils import get_request_param
1818 from .adapter import get_adapter
1919 from .fields import JSONField
20
21
22 try:
23 from django.utils.encoding import force_text
24 except ImportError:
25 from django.utils.encoding import force_unicode as force_text
2620
2721
2822 class SocialAppManager(models.Manager):
+0
-1
allauth/socialaccount/providers/amazon/models.py less more
0 # Create your models here.
+0
-1
allauth/socialaccount/providers/angellist/models.py less more
0 # Create your models here.
+0
-1
allauth/socialaccount/providers/auth0/models.py less more
0 # Create your models here.
+0
-1
allauth/socialaccount/providers/authentiq/models.py less more
0 # Create your models here.
0 from __future__ import unicode_literals
1
2 from allauth.socialaccount.providers.base import ProviderAccount
3 from allauth.socialaccount.providers.oauth2.provider import OAuth2Provider
4
5
6 class AzureAccount(ProviderAccount):
7
8 # TODO:
9 # - avatar_url:
10 # https://developer.microsoft.com/en-us/graph/docs/api-reference/beta/api/profilephoto_get # noqa
11 def get_username(self):
12 return self.account.extra_data['email']
13
14 def to_str(self):
15 name = '{0} {1}'.format(self.account.extra_data.get('first_name', ''),
16 self.account.extra_data.get('last_name', ''))
17 if name.strip() != '':
18 return name
19 return super(AzureAccount, self).to_str()
20
21
22 class AzureProvider(OAuth2Provider):
23 id = str('azure')
24 name = 'Azure'
25 account_class = AzureAccount
26
27 def get_default_scope(self):
28 """
29 Doc on scopes available at
30 https://docs.microsoft.com/en-us/azure/active-directory/develop/active-directory-v2-scopes # noqa
31 """
32 return ['User.Read', 'openid']
33
34 def extract_uid(self, data):
35 return str(data['id'])
36
37 def extract_common_fields(self, data):
38 email = data.get('mail')
39 return dict(email=email,
40 username=email,
41 last_name=data.get('surname'),
42 first_name=data.get('givenName'))
43
44
45 provider_classes = [AzureProvider]
0 from allauth.socialaccount.tests import OAuth2TestsMixin
1 from allauth.tests import MockedResponse, TestCase
2
3 from .provider import AzureProvider
4
5
6 class AzureTests(OAuth2TestsMixin, TestCase):
7 provider_id = AzureProvider.id
8
9 def get_mocked_response(self):
10 return MockedResponse(200, """
11 {"displayName": "John Smith", "mobilePhone": null,
12 "preferredLanguage": "en-US", "jobTitle": "Director",
13 "userPrincipalName": "john@smith.com",
14 "@odata.context":
15 "https://graph.microsoft.com/v1.0/$metadata#users/$entity",
16 "officeLocation": "Paris", "businessPhones": [],
17 "mail": "john@smith.com", "surname": "Smith",
18 "givenName": "John", "id": "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee"}
19 """)
0 from allauth.socialaccount.providers.oauth2.urls import default_urlpatterns
1
2 from .provider import AzureProvider
3
4
5 urlpatterns = default_urlpatterns(AzureProvider)
0 from __future__ import unicode_literals
1
2 import requests
3
4 from allauth.socialaccount.providers.oauth2.views import (
5 OAuth2Adapter,
6 OAuth2CallbackView,
7 OAuth2LoginView,
8 )
9
10 from .provider import AzureProvider
11
12
13 LOGIN_URL = 'https://login.microsoftonline.com/common/oauth2/v2.0'
14 GRAPH_URL = 'https://graph.microsoft.com/v1.0'
15
16
17 class AzureOAuth2Adapter(OAuth2Adapter):
18 """
19 Docs available at:
20 https://docs.microsoft.com/en-us/azure/active-directory/develop/active-directory-v2-protocols
21 """
22 provider_id = AzureProvider.id
23 access_token_url = LOGIN_URL + '/token'
24 authorize_url = LOGIN_URL + '/authorize'
25 profile_url = 'https://graph.microsoft.com/v1.0/me'
26 # Can be used later to obtain group data. Needs 'Group.Read.All' or
27 # similar.
28 #
29 # See https://developer.microsoft.com/en-us/graph/docs/api-reference/beta/api/user_list_memberof # noqa
30 groups_url = GRAPH_URL + '/me/memberOf?$select=displayName'
31
32 def complete_login(self, request, app, token, **kwargs):
33 headers = {'Authorization': 'Bearer {0}'.format(token.token)}
34 extra_data = {}
35
36 resp = requests.get(self.profile_url, headers=headers)
37
38 # See:
39 #
40 # https://developer.microsoft.com/en-us/graph/docs/api-reference/v1.0/api/user_get # noqa
41 #
42 # example of what's returned (in python format)
43 #
44 # {u'displayName': u'John Smith', u'mobilePhone': None,
45 # u'preferredLanguage': u'en-US', u'jobTitle': u'Director',
46 # u'userPrincipalName': u'john@smith.com',
47 # u'@odata.context':
48 # u'https://graph.microsoft.com/v1.0/$metadata#users/$entity',
49 # u'officeLocation': u'Paris', u'businessPhones': [],
50 # u'mail': u'john@smith.com', u'surname': u'Smith',
51 # u'givenName': u'John', u'id': u'aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee'}
52
53 profile_data = resp.json()
54 extra_data.update(profile_data)
55
56 return self.get_provider().sociallogin_from_response(request,
57 extra_data)
58
59
60 oauth2_login = OAuth2LoginView.adapter_view(AzureOAuth2Adapter)
61 oauth2_callback = OAuth2CallbackView.adapter_view(AzureOAuth2Adapter)
+0
-1
allauth/socialaccount/providers/baidu/models.py less more
0 # Create your models here.
+0
-1
allauth/socialaccount/providers/basecamp/models.py less more
0 # Create your models here.
+0
-1
allauth/socialaccount/providers/bitbucket/models.py less more
0 # Create your models here.
+0
-1
allauth/socialaccount/providers/bitbucket_oauth2/models.py less more
0 # Create your models here.
+0
-1
allauth/socialaccount/providers/bitly/models.py less more
0 # Create your models here.
+0
-1
allauth/socialaccount/providers/box/models.py less more
0 # Create your models here.
+0
-1
allauth/socialaccount/providers/coinbase/models.py less more
0 # Create your models here.
+0
-1
allauth/socialaccount/providers/digitalocean/models.py less more
0 # Create your models here.
+0
-1
allauth/socialaccount/providers/discord/models.py less more
0 # Create your models here.
+0
-1
allauth/socialaccount/providers/douban/models.py less more
0 # Create your models here.
+0
-1
allauth/socialaccount/providers/doximity/models.py less more
0 # Create your models here.
+0
-1
allauth/socialaccount/providers/draugiem/models.py less more
0 # Create your models here.
0 from django.urls import reverse
01 from django.utils.http import urlencode
12
2 from allauth.compat import reverse
33 from allauth.socialaccount.providers.base import Provider, ProviderAccount
44
55
11
22 from django.contrib.auth.models import User
33 from django.contrib.sites.models import Site
4 from django.urls import reverse
45 from django.utils.http import urlencode
56
6 from allauth.compat import reverse
77 from allauth.socialaccount import providers
88 from allauth.socialaccount.models import SocialApp, SocialToken
99 from allauth.tests import Mock, TestCase, patch
11 from hashlib import md5
22
33 from django.http import HttpResponseRedirect
4 from django.urls import reverse
45 from django.utils.http import urlencode
56 from django.views.decorators.csrf import csrf_exempt
67
7 from allauth.compat import reverse
88 from allauth.socialaccount import providers
99 from allauth.socialaccount.helpers import (
1010 complete_social_login,
+0
-1
allauth/socialaccount/providers/dropbox/models.py less more
0 # Create your models here.
+0
-7
allauth/socialaccount/providers/dropbox_oauth2/__init__.py less more
0 import warnings
1
2 warnings.warn("The 'dropbox_oauth2' provider is deprecated "
3 "and will no longer work after September 28, 2017 when "
4 "the Dropbox v1 API and URL endpoints are removed. "
5 "Upgrade to the 'dropbox' provider which has been updated "
6 "to use OAuth2 and the Dropbox v2 API.", DeprecationWarning)
+0
-1
allauth/socialaccount/providers/dropbox_oauth2/models.py less more
0 # Create your models here.
+0
-22
allauth/socialaccount/providers/dropbox_oauth2/provider.py less more
0 from allauth.socialaccount.providers.base import ProviderAccount
1 from allauth.socialaccount.providers.oauth2.provider import OAuth2Provider
2
3
4 class DropboxOAuth2Account(ProviderAccount):
5 pass
6
7
8 class DropboxOAuth2Provider(OAuth2Provider):
9 id = 'dropbox_oauth2'
10 name = 'Dropbox'
11 account_class = DropboxOAuth2Account
12
13 def extract_uid(self, data):
14 return data['uid']
15
16 def extract_common_fields(self, data):
17 return dict(name=data.get('display_name'),
18 email=data.get('email'))
19
20
21 provider_classes = [DropboxOAuth2Provider]
+0
-35
allauth/socialaccount/providers/dropbox_oauth2/tests.py less more
0 # -*- coding: utf-8 -*-
1 from __future__ import unicode_literals
2
3 from allauth.socialaccount.tests import OAuth2TestsMixin
4 from allauth.tests import MockedResponse, TestCase
5
6 from .provider import DropboxOAuth2Provider
7
8
9 class DropboxOAuth2Tests(OAuth2TestsMixin, TestCase):
10 provider_id = DropboxOAuth2Provider.id
11
12 def get_mocked_response(self):
13 return [MockedResponse(200, """{
14 "display_name": "Björn Andersson",
15 "name_details": {
16 "surname": "Andersson",
17 "familiar_name": "Björn",
18 "given_name": "Björn"
19 },
20 "locale": "en",
21 "email": "test@example.com",
22 "uid": 1234567890,
23 "email_verified": true,
24 "quota_info": {
25 "shared": 3195052017,
26 "datastores": 0,
27 "quota": 61337501696,
28 "normal": 15455059441
29 },
30 "is_paired": true,
31 "team": null,
32 "referral_link": "https://db.tt/UzhBTVjU",
33 "country": "SE"
34 }""")]
+0
-6
allauth/socialaccount/providers/dropbox_oauth2/urls.py less more
0 from allauth.socialaccount.providers.oauth.urls import default_urlpatterns
1
2 from .provider import DropboxOAuth2Provider
3
4
5 urlpatterns = default_urlpatterns(DropboxOAuth2Provider)
+0
-35
allauth/socialaccount/providers/dropbox_oauth2/views.py less more
0 import requests
1
2 from allauth.socialaccount.providers.oauth2.views import (
3 OAuth2Adapter,
4 OAuth2CallbackView,
5 OAuth2LoginView,
6 )
7
8 from .provider import DropboxOAuth2Provider
9
10
11 class DropboxOAuth2Adapter(OAuth2Adapter):
12 provider_id = DropboxOAuth2Provider.id
13 access_token_url = 'https://api.dropbox.com/1/oauth2/token'
14 authorize_url = 'https://www.dropbox.com/1/oauth2/authorize'
15 profile_url = 'https://api.dropbox.com/1/account/info'
16 redirect_uri_protocol = 'https'
17
18 def complete_login(self, request, app, token, **kwargs):
19 extra_data = requests.get(self.profile_url, params={
20 'access_token': token.token
21 })
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
27 return self.get_provider().sociallogin_from_response(
28 request,
29 extra_data.json()
30 )
31
32
33 oauth_login = OAuth2LoginView.adapter_view(DropboxOAuth2Adapter)
34 oauth_callback = OAuth2CallbackView.adapter_view(DropboxOAuth2Adapter)
0 """URLs for Dwolla Provider"""
1
20 from allauth.socialaccount.providers.oauth2.urls import default_urlpatterns
31
42 from .provider import DwollaProvider
0 """Views for DwollaProvider"""
1
20 import requests
31
42 from django.conf import settings
+0
-1
allauth/socialaccount/providers/edmodo/models.py less more
0 # Create your models here.
+0
-1
allauth/socialaccount/providers/eveonline/models.py less more
0 # Create your models here.
+0
-1
allauth/socialaccount/providers/evernote/models.py less more
0 # Create your models here.
+0
-1
allauth/socialaccount/providers/facebook/models.py less more
0 # Create your models here.
33 from django.core.exceptions import ImproperlyConfigured
44 from django.middleware.csrf import get_token
55 from django.template.loader import render_to_string
6 from django.urls import reverse
67 from django.utils.crypto import get_random_string
78 from django.utils.html import escapejs, mark_safe
89 from django.utils.http import urlquote
910
1011 from allauth.account.models import EmailAddress
11 from allauth.compat import reverse
1212 from allauth.socialaccount.app_settings import QUERY_EMAIL
1313 from allauth.socialaccount.providers.base import (
1414 AuthAction,
11
22 from django.test.client import RequestFactory
33 from django.test.utils import override_settings
4 from django.urls import reverse
45
56 from allauth.account import app_settings as account_settings
67 from allauth.account.models import EmailAddress
7 from allauth.compat import reverse
88 from allauth.socialaccount import providers
99 from allauth.socialaccount.models import SocialAccount
1010 from allauth.socialaccount.tests import OAuth2TestsMixin
+0
-1
allauth/socialaccount/providers/feedly/models.py less more
0 # Create your models here.
+0
-1
allauth/socialaccount/providers/flickr/models.py less more
0 # Create your models here.
+0
-1
allauth/socialaccount/providers/foursquare/models.py less more
0 # Create your models here.
+0
-1
allauth/socialaccount/providers/github/models.py less more
0 # Create your models here.
+0
-1
allauth/socialaccount/providers/gitlab/models.py less more
0 # Create your models here.
+0
-1
allauth/socialaccount/providers/google/models.py less more
0 # Create your models here.
88 from django.core import mail
99 from django.test.client import RequestFactory
1010 from django.test.utils import override_settings
11 from django.urls import reverse
1112
1213 from allauth.account import app_settings as account_settings
1314 from allauth.account.adapter import get_adapter
1415 from allauth.account.models import EmailAddress, EmailConfirmation
1516 from allauth.account.signals import user_signed_up
16 from allauth.compat import reverse
1717 from allauth.socialaccount.models import SocialAccount, SocialToken
1818 from allauth.socialaccount.tests import OAuth2TestsMixin
1919 from allauth.tests import MockedResponse, TestCase, patch
+0
-1
allauth/socialaccount/providers/hubic/models.py less more
0 # Create your models here.
+0
-1
allauth/socialaccount/providers/instagram/models.py less more
0 # Create your models here.
+0
-1
allauth/socialaccount/providers/linkedin/models.py less more
0 # Create your models here.
1313 'picture-url'):
1414 return self.account.extra_data.get('picture-urls', {}).get(
1515 'picture-url')
16 except:
16 except Exception:
1717 # if we can't get higher res for any reason, we'll just return the
1818 # low res
1919 pass
+0
-1
allauth/socialaccount/providers/linkedin_oauth2/models.py less more
0 # Create your models here.
1010 # try to return the higher res picture-urls::(original) first
1111 try:
1212 return self.account.extra_data['pictureUrls']['values'][0]
13 except:
13 except Exception:
1414 # if we can't get higher res for any reason, we'll just return the
1515 # low res
1616 pass
+0
-1
allauth/socialaccount/providers/mailru/models.py less more
0 # Create your models here.
0 from __future__ import unicode_literals
1
2 from allauth.socialaccount.providers.base import ProviderAccount
3 from allauth.socialaccount.providers.oauth2.provider import OAuth2Provider
4
5
6 class MicrosoftGraphAccount(ProviderAccount):
7
8 def to_str(self):
9 name = self.account.extra_data.get('displayName')
10 if name.strip() != '':
11 return name
12 return super(MicrosoftGraphAccount, self).to_str()
13
14
15 class MicrosoftGraphProvider(OAuth2Provider):
16 id = str('microsoft')
17 name = 'Microsoft Graph'
18 account_class = MicrosoftGraphAccount
19
20 def get_default_scope(self):
21 """
22 Doc on scopes available at
23 https://developer.microsoft.com/en-us/graph/docs/concepts/permissions_reference
24 """
25 return ['User.Read']
26
27 def extract_uid(self, data):
28 return str(data['id'])
29
30 def extract_common_fields(self, data):
31 email = data.get('mail') or data.get('userPrincipalName')
32 return dict(email=email,
33 last_name=data.get('surname'),
34 first_name=data.get('givenName'))
35
36
37 provider_classes = [MicrosoftGraphProvider]
0 from allauth.socialaccount.tests import OAuth2TestsMixin
1 from allauth.tests import MockedResponse, TestCase
2
3 from .provider import MicrosoftGraphProvider
4
5
6 class MicrosoftGraphTests(OAuth2TestsMixin, TestCase):
7 provider_id = MicrosoftGraphProvider.id
8
9 def get_mocked_response(self):
10 response_data = """
11 {
12 "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#users/$entity",
13 "id": "16f5a7b6-5a15-4568-aa5a-31bb117e9967",
14 "businessPhones": [],
15 "displayName": "Anne Weiler",
16 "givenName": "Anne",
17 "jobTitle": "Manufacturing Lead",
18 "mail": "annew@CIE493742.onmicrosoft.com",
19 "mobilePhone": "+1 3528700812",
20 "officeLocation": null,
21 "preferredLanguage": "en-US",
22 "surname": "Weiler",
23 "userPrincipalName": "annew@CIE493742.onmicrosoft.com"
24 }
25 """ # noqa
26 return MockedResponse(200, response_data)
0 from allauth.socialaccount.providers.oauth2.urls import default_urlpatterns
1
2 from .provider import MicrosoftGraphProvider
3
4
5 urlpatterns = default_urlpatterns(MicrosoftGraphProvider)
0 from __future__ import unicode_literals
1
2 import requests
3
4 from allauth.socialaccount.providers.oauth2.views import (
5 OAuth2Adapter,
6 OAuth2CallbackView,
7 OAuth2LoginView,
8 )
9
10 from .provider import MicrosoftGraphProvider
11
12
13 class MicrosoftGraphOAuth2Adapter(OAuth2Adapter):
14 provider_id = MicrosoftGraphProvider.id
15
16 def __init__(self, request):
17 super(MicrosoftGraphOAuth2Adapter, self).__init__(request)
18 provider = self.get_provider()
19 tenant = provider.get_settings().get('tenant') or 'common'
20 base_url = 'https://login.microsoftonline.com/{0}'.format(tenant)
21 self.access_token_url = '{0}/oauth2/v2.0/token'.format(base_url)
22 self.authorize_url = '{0}/oauth2/v2.0/authorize'.format(base_url)
23 self.profile_url = 'https://graph.microsoft.com/v1.0/me/'
24
25 def complete_login(self, request, app, token, **kwargs):
26 headers = {'Authorization': 'Bearer {0}'.format(token.token)}
27 resp = requests.get(self.profile_url, headers=headers)
28 extra_data = resp.json()
29 return self.get_provider().sociallogin_from_response(request,
30 extra_data)
31
32
33 oauth2_login = OAuth2LoginView.adapter_view(MicrosoftGraphOAuth2Adapter)
34 oauth2_callback = OAuth2CallbackView.adapter_view(MicrosoftGraphOAuth2Adapter)
+0
-1
allauth/socialaccount/providers/oauth/models.py less more
0 # Create your models here.
0 from django.urls import reverse
01 from django.utils.http import urlencode
12
2 from allauth.compat import parse_qsl, reverse
3 from allauth.compat import parse_qsl
34 from allauth.socialaccount.providers.base import Provider
45
56
00 from __future__ import absolute_import
11
2 from allauth.compat import reverse
2 from django.urls import reverse
3
34 from allauth.socialaccount import providers
45 from allauth.socialaccount.helpers import (
56 complete_social_login,
+0
-1
allauth/socialaccount/providers/oauth2/models.py less more
0 # Create your models here.
0 from django.urls import reverse
01 from django.utils.http import urlencode
12
2 from allauth.compat import parse_qsl, reverse
3 from allauth.compat import parse_qsl
34 from allauth.socialaccount.providers.base import Provider
45
56
44
55 from django.core.exceptions import PermissionDenied
66 from django.http import HttpResponseRedirect
7 from django.urls import reverse
78 from django.utils import timezone
89
9 from allauth.compat import reverse
1010 from allauth.exceptions import ImmediateHttpResponse
1111 from allauth.socialaccount import providers
1212 from allauth.socialaccount.helpers import (
+0
-1
allauth/socialaccount/providers/odnoklassniki/models.py less more
0 # Create your models here.
0 from django.urls import reverse
01 from django.utils.http import urlencode
12
2 from allauth.compat import reverse, urlparse
3 from allauth.compat import urlparse
34 from allauth.socialaccount.providers.base import Provider, ProviderAccount
45
56 from .utils import (
00 from django.test import override_settings
1 from django.urls import reverse
12
23 from openid.consumer import consumer
34
4 from allauth.compat import reverse
55 from allauth.socialaccount.models import SocialAccount
66 from allauth.tests import Mock, TestCase, patch
77 from allauth.utils import get_user_model
00 from django.http import HttpResponseRedirect
11 from django.shortcuts import render
2 from django.urls import reverse
23 from django.views.decorators.csrf import csrf_exempt
34
45 from openid.consumer import consumer
67 from openid.extensions.ax import AttrInfo, FetchRequest
78 from openid.extensions.sreg import SRegRequest
89
9 from allauth.compat import reverse
1010 from allauth.socialaccount import providers
1111 from allauth.socialaccount.app_settings import QUERY_EMAIL
1212 from allauth.socialaccount.helpers import (
+0
-1
allauth/socialaccount/providers/orcid/models.py less more
0 # Create your models here.
+0
-1
allauth/socialaccount/providers/paypal/models.py less more
0 # Create your models here.
00 from django.test.utils import override_settings
1 from django.urls import reverse
12
2 from allauth.compat import reverse
33 from allauth.tests import TestCase, patch
44 from allauth.utils import get_user_model
55
+0
-1
allauth/socialaccount/providers/pinterest/models.py less more
0 # Create your models here.
+0
-1
allauth/socialaccount/providers/reddit/models.py less more
0 # Create your models here.
+0
-1
allauth/socialaccount/providers/robinhood/models.py less more
0 # Create your models here.
0 from allauth.account.models import EmailAddress
1 from allauth.socialaccount import providers
2 from allauth.socialaccount.providers.base import AuthAction, ProviderAccount
3 from allauth.socialaccount.providers.oauth2.provider import OAuth2Provider
4
5
6 class SalesforceAccount(ProviderAccount):
7 def get_profile_url(self):
8 return self.account.extra_data.get('link')
9
10 def get_avatar_url(self):
11 return self.account.extra_data.get('picture')
12
13 def to_str(self):
14 dflt = super(SalesforceAccount, self).to_str()
15 return self.account.extra_data.get('name', dflt)
16
17
18 class SalesforceProvider(OAuth2Provider):
19 id = 'salesforce'
20 name = 'Salesforce'
21 package = 'allauth.socialaccount.providers.salesforce'
22 account_class = SalesforceAccount
23
24 def get_default_scope(self):
25 return ['id', 'openid']
26
27 def get_auth_params(self, request, action):
28 ret = super(SalesforceProvider, self).get_auth_params(request, action)
29 if action == AuthAction.REAUTHENTICATE:
30 ret['approval_prompt'] = 'force'
31 return ret
32
33 def extract_uid(self, data):
34 return str(data['user_id'])
35
36 def extract_common_fields(self, data):
37 return dict(email=data.get('email'),
38 last_name=data.get('family_name'),
39 first_name=data.get('given_name'),
40 username=data.get('preferred_username'))
41
42 def extract_email_addresses(self, data):
43 # a salesforce user must have an email, but it might not be verified
44 email = EmailAddress(email=data.get('email'),
45 primary=True,
46 verified=data.get('email_verified'))
47 return [email]
48
49
50 providers.registry.register(SalesforceProvider)
0 # -*- coding: utf-8 -*-
1 from __future__ import absolute_import, unicode_literals
2
3 from allauth.socialaccount.providers import registry
4 from allauth.socialaccount.tests import create_oauth2_tests
5 from allauth.tests import MockedResponse
6
7 from .provider import SalesforceProvider
8
9
10 class SalesforceTests(create_oauth2_tests(registry.by_id(
11 SalesforceProvider.id))):
12
13 def get_mocked_response(self,
14 last_name='Penners',
15 first_name='Raymond',
16 name='Raymond Penners',
17 email='raymond.penners@gmail.com',
18 verified_email=True):
19 userinfo = USERINFO_RESPONSE.format(
20 org_id="00Dxx00000000000A0",
21 user_id="005xx000000aWwRQAU",
22 vip="https://test.salesforce.com",
23 nickname="test-ooi2xhmjteep",
24 first_name=first_name,
25 last_name=last_name,
26 my_domain="https://fun.cs46.my.salesforce.com",
27 content_domain="https://fun--c.cs46.content.force.com",
28 verified_email=repr(verified_email).lower(),
29 email=email,
30 active="true",
31 is_app_installed="true"
32 )
33 return MockedResponse(200, userinfo)
34
35
36 USERINFO_RESPONSE = """
37 {{
38 "sub": "{vip}/id/{org_id}/{user_id}",
39 "user_id": "{user_id}",
40 "organization_id": "{org_id}",
41 "preferred_username": "{nickname}@sample_-_dev_workspace.net",
42 "nickname": "{nickname}",
43 "name": "{first_name} {last_name}",
44 "email": "{email}",
45 "email_verified": {verified_email},
46 "given_name": "{first_name}",
47 "family_name": "{last_name}",
48 "zoneinfo": "America/Los_Angeles",
49 "photos": {{
50 "picture": "{content_domain}/profilephoto/005/F",
51 "thumbnail": "{content_domain}/profilephoto/005/T"
52 }},
53 "profile": "{my_domain}/{user_id}",
54 "picture": "{content_domain}/profilephoto/005/F",
55 "address": {{"country": "US"}},
56 "urls": {{"custom_domain": "{my_domain}"}},
57 "active": {active},
58 "user_type": "STANDARD",
59 "language": "en_US",
60 "locale": "en_US",
61 "utcOffset": -28800000,
62 "updated_at": "2017-10-05T20:39:02.000+0000",
63 "is_app_installed": {is_app_installed}
64 }}
65 """
0 from allauth.socialaccount.providers.oauth2.urls import default_urlpatterns
1
2 from .provider import SalesforceProvider
3
4
5 urlpatterns = default_urlpatterns(SalesforceProvider)
0 import requests
1
2 from allauth.socialaccount.providers.oauth2.views import (
3 OAuth2Adapter,
4 OAuth2CallbackView,
5 OAuth2LoginView,
6 )
7
8 from .provider import SalesforceProvider
9
10
11 class SalesforceOAuth2Adapter(OAuth2Adapter):
12 provider_id = SalesforceProvider.id
13
14 @property
15 def base_url(self):
16 return self.get_provider().get_app(self.request).key
17
18 @property
19 def authorize_url(self):
20 return '{}/services/oauth2/authorize'.format(self.base_url)
21
22 @property
23 def access_token_url(self):
24 return '{}/services/oauth2/token'.format(self.base_url)
25
26 @property
27 def userinfo_url(self):
28 return '{}/services/oauth2/userinfo'.format(self.base_url)
29
30 def complete_login(self, request, app, token, **kwargs):
31 resp = requests.get(self.userinfo_url, params={'oauth_token': token})
32 resp.raise_for_status()
33 extra_data = resp.json()
34 return self.get_provider().sociallogin_from_response(request,
35 extra_data)
36
37
38 oauth2_login = OAuth2LoginView.adapter_view(SalesforceOAuth2Adapter)
39 oauth2_callback = OAuth2CallbackView.adapter_view(SalesforceOAuth2Adapter)
+0
-1
allauth/socialaccount/providers/shopify/models.py less more
0 # Create your models here.
00 import json
11
22 from django.test.utils import override_settings
3 from django.urls import reverse
34
4 from allauth.compat import parse_qs, reverse, urlparse
5 from allauth.compat import parse_qs, urlparse
56 from allauth.socialaccount.models import SocialAccount
67 from allauth.socialaccount.providers import registry
78 from allauth.socialaccount.tests import create_oauth2_tests
99 def get_mocked_response(self):
1010 return MockedResponse(200, """{
1111 "ok": true,
12 "url": "https:\/\/myteam.slack.com\/",
12 "url": "https:\\/\\/myteam.slack.com\\/",
1313 "team": "My Team",
1414 "user": "cal",
1515 "team_id": "T12345",
+0
-1
allauth/socialaccount/providers/soundcloud/models.py less more
0 # Create your models here.
+0
-1
allauth/socialaccount/providers/spotify/models.py less more
0 # Create your models here.
+0
-1
allauth/socialaccount/providers/stackexchange/models.py less more
0 # Create your models here.
+0
-1
allauth/socialaccount/providers/stripe/models.py less more
0 # Create your models here.
22
33
44 class StripeAccount(ProviderAccount):
5 pass
5 def to_str(self):
6 default = super(StripeAccount, self).to_str()
7 return self.account.extra_data.get('business_name', default)
68
79
810 class StripeProvider(OAuth2Provider):
+0
-1
allauth/socialaccount/providers/trello/models.py less more
0 # Create your models here.
+0
-1
allauth/socialaccount/providers/tumblr/models.py less more
0 # Create your models here.
+0
-1
allauth/socialaccount/providers/twentythreeandme/models.py less more
0 # Create your models here.
+0
-1
allauth/socialaccount/providers/twitch/models.py less more
0 # Create your models here.
+0
-1
allauth/socialaccount/providers/twitter/models.py less more
0 # Create your models here.
0 from django.urls import reverse
1
02 from allauth.account.models import EmailAddress
1 from allauth.compat import reverse
23 from allauth.socialaccount.providers.base import ProviderAccount
34 from allauth.socialaccount.providers.oauth2.provider import OAuth2Provider
45
+0
-1
allauth/socialaccount/providers/vimeo/models.py less more
0 # Create your models here.
+0
-1
allauth/socialaccount/providers/vk/models.py less more
0 # Create your models here.
44
55 class VKAccount(ProviderAccount):
66 def get_profile_url(self):
7 return self.account.extra_data.get('link')
7 return 'https://vk.com/id%s' % self.account.extra_data.get('uid')
88
99 def get_avatar_url(self):
1010 ret = None
+0
-1
allauth/socialaccount/providers/weibo/models.py less more
0 # Create your models here.
+0
-1
allauth/socialaccount/providers/weixin/models.py less more
0 # Create your models here.
00 import requests
11
2 from django.urls import reverse
3
24 from allauth.account import app_settings
3 from allauth.compat import reverse
45 from allauth.socialaccount.providers.oauth2.views import (
56 OAuth2Adapter,
67 OAuth2CallbackView,
+0
-1
allauth/socialaccount/providers/windowslive/models.py less more
0 # Create your models here.
3131 def extract_common_fields(self, data):
3232 try:
3333 email = data.get('emails').get('preferred')
34 except:
34 except AttributeError:
3535 email = None
3636
3737 return dict(email=email,
2020 headers = {'Authorization': 'Bearer {0}'.format(token.token)}
2121 resp = requests.get(self.profile_url, headers=headers)
2222
23 # example of whats returned (in python format):
24 # {'first_name': 'James', 'last_name': 'Smith',
25 # 'name': 'James Smith', 'locale': 'en_US', 'gender': None,
26 # 'emails': {'personal': None, 'account': 'jsmith@example.com',
27 # 'business': None, 'preferred': 'jsmith@example.com'},
28 # 'link': 'https://profile.live.com/',
29 # 'updated_time': '2014-02-07T00:35:27+0000',
30 # 'id': '83605e110af6ff98'}
23 # example of whats returned (in python format):
24 # {'first_name': 'James', 'last_name': 'Smith',
25 # 'name': 'James Smith', 'locale': 'en_US', 'gender': None,
26 # 'emails': {'personal': None, 'account': 'jsmith@example.com',
27 # 'business': None, 'preferred': 'jsmith@example.com'},
28 # 'link': 'https://profile.live.com/',
29 # 'updated_time': '2014-02-07T00:35:27+0000',
30 # 'id': '83605e110af6ff98'}
3131
32 resp.raise_for_status()
3233 extra_data = resp.json()
3334 return self.get_provider().sociallogin_from_response(request,
3435 extra_data)
+0
-1
allauth/socialaccount/providers/xing/models.py less more
0 # Create your models here.
0 from __future__ import unicode_literals
1
2 from allauth.socialaccount.providers.base import ProviderAccount
3 from allauth.socialaccount.providers.oauth2.provider import OAuth2Provider
4
5
6 class YahooAccount(ProviderAccount):
7
8 def to_str(self):
9 name = '{0} {1}'.format(
10 self.account.extra_data['profile'].get('givenName', ''),
11 self.account.extra_data['profile'].get('familyName', '')
12 )
13 if name.strip() != '':
14 return name
15 return super(YahooAccount, self).to_str()
16
17
18 class YahooProvider(OAuth2Provider):
19 id = str('yahoo')
20 name = 'Yahoo'
21 account_class = YahooAccount
22
23 def get_default_scope(self):
24 """
25 Doc on scopes available at
26 https://developer.yahoo.com/oauth2/guide/yahoo_scopes/
27 """
28 return ['sdps-r']
29
30 def extract_uid(self, data):
31 return str(data['profile']['guid'])
32
33 def extract_common_fields(self, data):
34 emails = data['profile'].get('emails')
35 if emails:
36 email = emails[0]['handle']
37 else:
38 email = None
39
40 return dict(email=email,
41 last_name=data['profile'].get('familyName'),
42 first_name=data['profile'].get('givenName'))
43
44
45 provider_classes = [YahooProvider]
0 from allauth.socialaccount.tests import OAuth2TestsMixin
1 from allauth.tests import MockedResponse, TestCase
2
3 from .provider import YahooProvider
4
5
6 class YahooTests(OAuth2TestsMixin, TestCase):
7 provider_id = YahooProvider.id
8
9 def get_mocked_response(self):
10 response_data = """
11 {
12 "profile": {
13 "guid": "HZP2G4VBSQBVATWWTNO3CRKVP8",
14 "addresses": [
15 {
16 "city": "Timbuktu",
17 "country": "US",
18 "current": true,
19 "id": 1,
20 "postalCode": "100013",
21 "state": "New York",
22 "street": "",
23 "type": "HOME"
24 },
25 {
26 "city": "",
27 "country": "US",
28 "current": true,
29 "id": 2,
30 "postalCode": "",
31 "state": "",
32 "street": "",
33 "type": "WORK"
34 }
35 ],
36 "ageCategory": "A",
37 "birthYear": 1982,
38 "birthdate": "2/15",
39 "created": "2017-09-09T13:45:29Z",
40 "displayAge": 28,
41 "emails": [
42 {
43 "handle": "john.doe@yahoo.com",
44 "id": 2,
45 "primary": false,
46 "type": "HOME"
47 }
48 ],
49 "familyName": "Doe",
50 "gender": "M",
51 "givenName": "John",
52 "image": {
53 "height": 192,
54 "imageUrl": "https://s.yimg.com/wm/modern/images/default_user_profile_pic_192.png",
55 "size": "192x192",
56 "width": 192
57 },
58 "ims": [
59 {
60 "handle": "john.doe",
61 "id": 1,
62 "type": "YAHOO"
63 }
64 ],
65 "intl": "us",
66 "jurisdiction": "us",
67 "lang": "en-US",
68 "memberSince": "2000-08-18T12:28:31Z",
69 "migrationSource": 1,
70 "nickname": "john.doe",
71 "notStored": true,
72 "nux": "0",
73 "profileMode": "PUBLIC",
74 "profileStatus": "ACTIVE",
75 "profileUrl": "http://profile.yahoo.com/HZP2G4VBSQBVATWWTNO3CRKVP8",
76 "timeZone": "Asia/Calcutta",
77 "isConnected": true,
78 "profileHidden": false,
79 "profilePermission": "PRIVATE",
80 "uri": "https://social.yahooapis.com/v1/user/HZP2G4VBSQBVATWWTNO3CRKVP8/profile"
81 }
82 }
83 """ # noqa
84 return MockedResponse(200, response_data)
0 from allauth.socialaccount.providers.oauth2.urls import default_urlpatterns
1
2 from .provider import YahooProvider
3
4
5 urlpatterns = default_urlpatterns(YahooProvider)
0 from __future__ import unicode_literals
1
2 import requests
3
4 from allauth.socialaccount.providers.oauth2.views import (
5 OAuth2Adapter,
6 OAuth2CallbackView,
7 OAuth2LoginView,
8 )
9
10 from .provider import YahooProvider
11
12
13 class YahooOAuth2Adapter(OAuth2Adapter):
14 provider_id = YahooProvider.id
15 access_token_url = 'https://api.login.yahoo.com/oauth2/get_token'
16 authorize_url = 'https://api.login.yahoo.com/oauth2/request_auth'
17 profile_url = 'https://social.yahooapis.com/v1/user/me/profile?format=json'
18
19 def complete_login(self, request, app, token, **kwargs):
20 headers = {'Authorization': 'Bearer {0}'.format(token.token)}
21 resp = requests.get(self.profile_url, headers=headers)
22
23 extra_data = resp.json()
24 return self.get_provider().sociallogin_from_response(request,
25 extra_data)
26
27
28 oauth2_login = OAuth2LoginView.adapter_view(YahooOAuth2Adapter)
29 oauth2_callback = OAuth2CallbackView.adapter_view(YahooOAuth2Adapter)
0 from django import VERSION as DJANGO_VERSION, template
0 from django import template
11 from django.template.defaulttags import token_kwargs
22
3 from allauth.compat import template_context_value
43 from allauth.socialaccount import providers
54 from allauth.utils import get_request_param
65
76
87 register = template.Library()
9
10
11 if DJANGO_VERSION < (1, 9):
12 simple_tag = register.assignment_tag
13 else:
14 simple_tag = register.simple_tag
158
169
1710 class ProviderLoginURLNode(template.Node):
2114
2215 def render(self, context):
2316 provider_id = self.provider_id_var.resolve(context)
24 request = template_context_value(context, 'request')
17 request = context['request']
2518 provider = providers.registry.by_id(provider_id, request)
2619 query = dict([(str(name), var.resolve(context)) for name, var
2720 in self.params.items()])
5952
6053 class ProvidersMediaJSNode(template.Node):
6154 def render(self, context):
62 request = template_context_value(context, 'request')
55 request = context['request']
6356 ret = '\n'.join([p.media_js(request)
6457 for p in providers.registry.get_list(request)])
6558 return ret
7063 return ProvidersMediaJSNode()
7164
7265
73 @simple_tag
66 @register.simple_tag
7467 def get_social_accounts(user):
7568 """
7669 {% get_social_accounts user as accounts %}
8780 return accounts
8881
8982
90 @simple_tag
83 @register.simple_tag
9184 def get_providers():
9285 """
9386 Returns a list of social authentication providers.
88 from django.contrib.sites.models import Site
99 from django.test.client import RequestFactory
1010 from django.test.utils import override_settings
11 from django.urls import reverse
1112
1213 from . import providers
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, reverse, urlparse
17 from ..compat import parse_qs, urlparse
1718 from ..tests import MockedResponse, TestCase, mocked_response
1819 from ..utils import get_user_model
1920 from .helpers import complete_social_login
163164
164165 def test_account_tokens(self, multiple_login=False):
165166 email = "user@example.com"
166 user = get_user_model().objects.create(
167 username='user',
168 is_active=True,
169 email=email)
167 user = get_user_model()(is_active=True)
168 user_email(user, email)
169 user_username(user, 'user')
170170 user.set_password('test')
171171 user.save()
172172 EmailAddress.objects.create(user=user,
11 from django.contrib.auth.decorators import login_required
22 from django.contrib.sites.shortcuts import get_current_site
33 from django.http import HttpResponseRedirect
4 from django.urls import reverse, reverse_lazy
45 from django.views.generic.base import TemplateView
56 from django.views.generic.edit import FormView
67
1213 CloseableSignupMixin,
1314 RedirectAuthenticatedUserMixin,
1415 )
15 from ..compat import reverse, reverse_lazy
1616 from ..utils import get_form_class
1717 from .adapter import get_adapter
1818 from .forms import DisconnectForm, SignupForm
44 import requests
55 from datetime import date, datetime
66
7 import django
87 from django.core.files.base import ContentFile
98 from django.db import models
10 from django.test import TestCase as DjangoTestCase
9 from django.test import TestCase
1110
12 from allauth.account.utils import user_username
1311 from allauth.compat import base36_to_int, int_to_base36
1412
1513 from . import utils
1917 from unittest.mock import Mock, patch
2018 except ImportError:
2119 from mock import Mock, patch # noqa
22
23
24 class TestCase(DjangoTestCase):
25
26 def assertRedirects(self, response, expected_url,
27 fetch_redirect_response=True,
28 **kwargs):
29 super(TestCase, self).assertRedirects(
30 response,
31 expected_url,
32 fetch_redirect_response=fetch_redirect_response,
33 **kwargs)
34
35 def client_force_login(self, user):
36 if django.VERSION >= (1, 9):
37 self.client.force_login(
38 user,
39 'django.contrib.auth.backends.ModelBackend')
40 else:
41 old_password = user.password
42 user.set_password('doe')
43 user.save()
44 self.client.login(
45 username=user_username(user),
46 password='doe')
47 user.password = old_password
48 user.save()
4920
5021
5122 class MockedResponse(object):
2020 TimeField,
2121 )
2222 from django.utils import dateparse, six
23 from django.utils.encoding import force_bytes, force_text
2324 from django.utils.six.moves.urllib.parse import urlsplit
24
25
26 try:
27 from django.utils.encoding import force_text, force_bytes
28 except ImportError:
29 from django.utils.encoding import force_unicode as force_text
3025
3126
3227 # Magic number 7: if you run into collisions with this number, then you are
4136 from .account.adapter import get_adapter
4237 adapter = get_adapter()
4338 username = None
44 regex = regex or '[^\w\s@+.-]'
39 regex = regex or r'[^\w\s@+.-]'
4540 for txt in txts:
4641 if not txt:
4742 continue
5550 # address and only take the part leading up to the '@'.
5651 username = username.split('@')[0]
5752 username = username.strip()
58 username = re.sub('\s+', '_', username)
53 username = re.sub(r'\s+', '_', username)
5954 # Finally, validating base username without database lookups etc.
6055 try:
6156 username = adapter.clean_username(username, shallow=True)
219214 # This is quite an ugly hack, but will cover most
220215 # use cases...
221216 v = f.from_db_value(v, None, None, None)
222 except:
217 except Exception:
223218 raise ImproperlyConfigured(
224219 "Unable to auto serialize field '{}', custom"
225220 " serialization override required".format(k)
00 Metadata-Version: 1.1
11 Name: django-allauth
2 Version: 0.34.0
2 Version: 0.35.0
33 Summary: Integrated set of Django applications addressing authentication, registration, account management as well as 3rd party (social) account authentication.
44 Home-page: http://github.com/pennersr/django-allauth
55 Author: Raymond Penners
99 Welcome to django-allauth!
1010 ==========================
1111
12 .. image:: https://badge.fury.io/py/django-allauth.png
12 .. image:: https://badge.fury.io/py/django-allauth.svg
1313 :target: http://badge.fury.io/py/django-allauth
1414
15 .. image:: https://travis-ci.org/pennersr/django-allauth.png
15 .. image:: https://travis-ci.org/pennersr/django-allauth.svg
1616 :target: http://travis-ci.org/pennersr/django-allauth
1717
1818 .. image:: https://img.shields.io/pypi/v/django-allauth.svg
1919 :target: https://pypi.python.org/pypi/django-allauth
2020
21 .. image:: https://coveralls.io/repos/pennersr/django-allauth/badge.png?branch=master
21 .. image:: https://coveralls.io/repos/pennersr/django-allauth/badge.svg?branch=master
2222 :alt: Coverage Status
2323 :target: https://coveralls.io/r/pennersr/django-allauth
2424
102102 Classifier: Operating System :: OS Independent
103103 Classifier: Programming Language :: Python
104104 Classifier: Programming Language :: Python :: 2.7
105 Classifier: Programming Language :: Python :: 3.3
106105 Classifier: Programming Language :: Python :: 3.4
107106 Classifier: Programming Language :: Python :: 3.5
108107 Classifier: Programming Language :: Python :: 3.6
109108 Classifier: Framework :: Django
110 Classifier: Framework :: Django :: 1.8
111 Classifier: Framework :: Django :: 1.10
112109 Classifier: Framework :: Django :: 1.11
110 Classifier: Framework :: Django :: 2.0
121121 allauth/socialaccount/providers/__init__.py
122122 allauth/socialaccount/providers/base.py
123123 allauth/socialaccount/providers/amazon/__init__.py
124 allauth/socialaccount/providers/amazon/models.py
125124 allauth/socialaccount/providers/amazon/provider.py
126125 allauth/socialaccount/providers/amazon/tests.py
127126 allauth/socialaccount/providers/amazon/urls.py
128127 allauth/socialaccount/providers/amazon/views.py
129128 allauth/socialaccount/providers/angellist/__init__.py
130 allauth/socialaccount/providers/angellist/models.py
131129 allauth/socialaccount/providers/angellist/provider.py
132130 allauth/socialaccount/providers/angellist/tests.py
133131 allauth/socialaccount/providers/angellist/urls.py
139137 allauth/socialaccount/providers/asana/urls.py
140138 allauth/socialaccount/providers/asana/views.py
141139 allauth/socialaccount/providers/auth0/__init__.py
142 allauth/socialaccount/providers/auth0/models.py
143140 allauth/socialaccount/providers/auth0/provider.py
144141 allauth/socialaccount/providers/auth0/tests.py
145142 allauth/socialaccount/providers/auth0/urls.py
146143 allauth/socialaccount/providers/auth0/views.py
147144 allauth/socialaccount/providers/authentiq/__init__.py
148 allauth/socialaccount/providers/authentiq/models.py
149145 allauth/socialaccount/providers/authentiq/provider.py
150146 allauth/socialaccount/providers/authentiq/tests.py
151147 allauth/socialaccount/providers/authentiq/urls.py
152148 allauth/socialaccount/providers/authentiq/views.py
149 allauth/socialaccount/providers/azure/__init__.py
150 allauth/socialaccount/providers/azure/models.py
151 allauth/socialaccount/providers/azure/provider.py
152 allauth/socialaccount/providers/azure/tests.py
153 allauth/socialaccount/providers/azure/urls.py
154 allauth/socialaccount/providers/azure/views.py
153155 allauth/socialaccount/providers/baidu/__init__.py
154 allauth/socialaccount/providers/baidu/models.py
155156 allauth/socialaccount/providers/baidu/provider.py
156157 allauth/socialaccount/providers/baidu/tests.py
157158 allauth/socialaccount/providers/baidu/urls.py
158159 allauth/socialaccount/providers/baidu/views.py
159160 allauth/socialaccount/providers/basecamp/__init__.py
160 allauth/socialaccount/providers/basecamp/models.py
161161 allauth/socialaccount/providers/basecamp/provider.py
162162 allauth/socialaccount/providers/basecamp/tests.py
163163 allauth/socialaccount/providers/basecamp/urls.py
170170 allauth/socialaccount/providers/battlenet/validators.py
171171 allauth/socialaccount/providers/battlenet/views.py
172172 allauth/socialaccount/providers/bitbucket/__init__.py
173 allauth/socialaccount/providers/bitbucket/models.py
174173 allauth/socialaccount/providers/bitbucket/provider.py
175174 allauth/socialaccount/providers/bitbucket/tests.py
176175 allauth/socialaccount/providers/bitbucket/urls.py
177176 allauth/socialaccount/providers/bitbucket/views.py
178177 allauth/socialaccount/providers/bitbucket_oauth2/__init__.py
179 allauth/socialaccount/providers/bitbucket_oauth2/models.py
180178 allauth/socialaccount/providers/bitbucket_oauth2/provider.py
181179 allauth/socialaccount/providers/bitbucket_oauth2/tests.py
182180 allauth/socialaccount/providers/bitbucket_oauth2/urls.py
183181 allauth/socialaccount/providers/bitbucket_oauth2/views.py
184182 allauth/socialaccount/providers/bitly/__init__.py
185 allauth/socialaccount/providers/bitly/models.py
186183 allauth/socialaccount/providers/bitly/provider.py
187184 allauth/socialaccount/providers/bitly/tests.py
188185 allauth/socialaccount/providers/bitly/urls.py
189186 allauth/socialaccount/providers/bitly/views.py
190187 allauth/socialaccount/providers/box/__init__.py
191 allauth/socialaccount/providers/box/models.py
192188 allauth/socialaccount/providers/box/provider.py
193189 allauth/socialaccount/providers/box/tests.py
194190 allauth/socialaccount/providers/box/urls.py
195191 allauth/socialaccount/providers/box/views.py
196192 allauth/socialaccount/providers/coinbase/__init__.py
197 allauth/socialaccount/providers/coinbase/models.py
198193 allauth/socialaccount/providers/coinbase/provider.py
199194 allauth/socialaccount/providers/coinbase/tests.py
200195 allauth/socialaccount/providers/coinbase/urls.py
212207 allauth/socialaccount/providers/daum/urls.py
213208 allauth/socialaccount/providers/daum/views.py
214209 allauth/socialaccount/providers/digitalocean/__init__.py
215 allauth/socialaccount/providers/digitalocean/models.py
216210 allauth/socialaccount/providers/digitalocean/provider.py
217211 allauth/socialaccount/providers/digitalocean/tests.py
218212 allauth/socialaccount/providers/digitalocean/urls.py
219213 allauth/socialaccount/providers/digitalocean/views.py
220214 allauth/socialaccount/providers/discord/__init__.py
221 allauth/socialaccount/providers/discord/models.py
222215 allauth/socialaccount/providers/discord/provider.py
223216 allauth/socialaccount/providers/discord/tests.py
224217 allauth/socialaccount/providers/discord/urls.py
225218 allauth/socialaccount/providers/discord/views.py
226219 allauth/socialaccount/providers/douban/__init__.py
227 allauth/socialaccount/providers/douban/models.py
228220 allauth/socialaccount/providers/douban/provider.py
229221 allauth/socialaccount/providers/douban/tests.py
230222 allauth/socialaccount/providers/douban/urls.py
231223 allauth/socialaccount/providers/douban/views.py
232224 allauth/socialaccount/providers/doximity/__init__.py
233 allauth/socialaccount/providers/doximity/models.py
234225 allauth/socialaccount/providers/doximity/provider.py
235226 allauth/socialaccount/providers/doximity/tests.py
236227 allauth/socialaccount/providers/doximity/urls.py
237228 allauth/socialaccount/providers/doximity/views.py
238229 allauth/socialaccount/providers/draugiem/__init__.py
239 allauth/socialaccount/providers/draugiem/models.py
240230 allauth/socialaccount/providers/draugiem/provider.py
241231 allauth/socialaccount/providers/draugiem/tests.py
242232 allauth/socialaccount/providers/draugiem/urls.py
243233 allauth/socialaccount/providers/draugiem/views.py
244234 allauth/socialaccount/providers/dropbox/__init__.py
245 allauth/socialaccount/providers/dropbox/models.py
246235 allauth/socialaccount/providers/dropbox/provider.py
247236 allauth/socialaccount/providers/dropbox/tests.py
248237 allauth/socialaccount/providers/dropbox/urls.py
249238 allauth/socialaccount/providers/dropbox/views.py
250 allauth/socialaccount/providers/dropbox_oauth2/__init__.py
251 allauth/socialaccount/providers/dropbox_oauth2/models.py
252 allauth/socialaccount/providers/dropbox_oauth2/provider.py
253 allauth/socialaccount/providers/dropbox_oauth2/tests.py
254 allauth/socialaccount/providers/dropbox_oauth2/urls.py
255 allauth/socialaccount/providers/dropbox_oauth2/views.py
256239 allauth/socialaccount/providers/dwolla/__init__.py
257240 allauth/socialaccount/providers/dwolla/models.py
258241 allauth/socialaccount/providers/dwolla/provider.py
260243 allauth/socialaccount/providers/dwolla/urls.py
261244 allauth/socialaccount/providers/dwolla/views.py
262245 allauth/socialaccount/providers/edmodo/__init__.py
263 allauth/socialaccount/providers/edmodo/models.py
264246 allauth/socialaccount/providers/edmodo/provider.py
265247 allauth/socialaccount/providers/edmodo/tests.py
266248 allauth/socialaccount/providers/edmodo/urls.py
271253 allauth/socialaccount/providers/eventbrite/urls.py
272254 allauth/socialaccount/providers/eventbrite/views.py
273255 allauth/socialaccount/providers/eveonline/__init__.py
274 allauth/socialaccount/providers/eveonline/models.py
275256 allauth/socialaccount/providers/eveonline/provider.py
276257 allauth/socialaccount/providers/eveonline/tests.py
277258 allauth/socialaccount/providers/eveonline/urls.py
278259 allauth/socialaccount/providers/eveonline/views.py
279260 allauth/socialaccount/providers/evernote/__init__.py
280 allauth/socialaccount/providers/evernote/models.py
281261 allauth/socialaccount/providers/evernote/provider.py
282262 allauth/socialaccount/providers/evernote/tests.py
283263 allauth/socialaccount/providers/evernote/urls.py
285265 allauth/socialaccount/providers/facebook/__init__.py
286266 allauth/socialaccount/providers/facebook/forms.py
287267 allauth/socialaccount/providers/facebook/locale.py
288 allauth/socialaccount/providers/facebook/models.py
289268 allauth/socialaccount/providers/facebook/provider.py
290269 allauth/socialaccount/providers/facebook/tests.py
291270 allauth/socialaccount/providers/facebook/urls.py
294273 allauth/socialaccount/providers/facebook/static/facebook/js/fbconnect.js
295274 allauth/socialaccount/providers/facebook/templates/facebook/fbconnect.html
296275 allauth/socialaccount/providers/feedly/__init__.py
297 allauth/socialaccount/providers/feedly/models.py
298276 allauth/socialaccount/providers/feedly/provider.py
299277 allauth/socialaccount/providers/feedly/tests.py
300278 allauth/socialaccount/providers/feedly/urls.py
306284 allauth/socialaccount/providers/fivehundredpx/urls.py
307285 allauth/socialaccount/providers/fivehundredpx/views.py
308286 allauth/socialaccount/providers/flickr/__init__.py
309 allauth/socialaccount/providers/flickr/models.py
310287 allauth/socialaccount/providers/flickr/provider.py
311288 allauth/socialaccount/providers/flickr/tests.py
312289 allauth/socialaccount/providers/flickr/urls.py
313290 allauth/socialaccount/providers/flickr/views.py
314291 allauth/socialaccount/providers/foursquare/__init__.py
315 allauth/socialaccount/providers/foursquare/models.py
316292 allauth/socialaccount/providers/foursquare/provider.py
317293 allauth/socialaccount/providers/foursquare/tests.py
318294 allauth/socialaccount/providers/foursquare/urls.py
324300 allauth/socialaccount/providers/fxa/urls.py
325301 allauth/socialaccount/providers/fxa/views.py
326302 allauth/socialaccount/providers/github/__init__.py
327 allauth/socialaccount/providers/github/models.py
328303 allauth/socialaccount/providers/github/provider.py
329304 allauth/socialaccount/providers/github/tests.py
330305 allauth/socialaccount/providers/github/urls.py
331306 allauth/socialaccount/providers/github/views.py
332307 allauth/socialaccount/providers/gitlab/__init__.py
333 allauth/socialaccount/providers/gitlab/models.py
334308 allauth/socialaccount/providers/gitlab/provider.py
335309 allauth/socialaccount/providers/gitlab/tests.py
336310 allauth/socialaccount/providers/gitlab/urls.py
337311 allauth/socialaccount/providers/gitlab/views.py
338312 allauth/socialaccount/providers/google/__init__.py
339 allauth/socialaccount/providers/google/models.py
340313 allauth/socialaccount/providers/google/provider.py
341314 allauth/socialaccount/providers/google/tests.py
342315 allauth/socialaccount/providers/google/urls.py
343316 allauth/socialaccount/providers/google/views.py
344317 allauth/socialaccount/providers/hubic/__init__.py
345 allauth/socialaccount/providers/hubic/models.py
346318 allauth/socialaccount/providers/hubic/provider.py
347319 allauth/socialaccount/providers/hubic/tests.py
348320 allauth/socialaccount/providers/hubic/urls.py
349321 allauth/socialaccount/providers/hubic/views.py
350322 allauth/socialaccount/providers/instagram/__init__.py
351 allauth/socialaccount/providers/instagram/models.py
352323 allauth/socialaccount/providers/instagram/provider.py
353324 allauth/socialaccount/providers/instagram/tests.py
354325 allauth/socialaccount/providers/instagram/urls.py
366337 allauth/socialaccount/providers/line/urls.py
367338 allauth/socialaccount/providers/line/views.py
368339 allauth/socialaccount/providers/linkedin/__init__.py
369 allauth/socialaccount/providers/linkedin/models.py
370340 allauth/socialaccount/providers/linkedin/provider.py
371341 allauth/socialaccount/providers/linkedin/tests.py
372342 allauth/socialaccount/providers/linkedin/urls.py
373343 allauth/socialaccount/providers/linkedin/views.py
374344 allauth/socialaccount/providers/linkedin_oauth2/__init__.py
375 allauth/socialaccount/providers/linkedin_oauth2/models.py
376345 allauth/socialaccount/providers/linkedin_oauth2/provider.py
377346 allauth/socialaccount/providers/linkedin_oauth2/tests.py
378347 allauth/socialaccount/providers/linkedin_oauth2/urls.py
383352 allauth/socialaccount/providers/mailchimp/urls.py
384353 allauth/socialaccount/providers/mailchimp/views.py
385354 allauth/socialaccount/providers/mailru/__init__.py
386 allauth/socialaccount/providers/mailru/models.py
387355 allauth/socialaccount/providers/mailru/provider.py
388356 allauth/socialaccount/providers/mailru/tests.py
389357 allauth/socialaccount/providers/mailru/urls.py
394362 allauth/socialaccount/providers/meetup/tests.py
395363 allauth/socialaccount/providers/meetup/urls.py
396364 allauth/socialaccount/providers/meetup/views.py
365 allauth/socialaccount/providers/microsoft/__init__.py
366 allauth/socialaccount/providers/microsoft/models.py
367 allauth/socialaccount/providers/microsoft/provider.py
368 allauth/socialaccount/providers/microsoft/tests.py
369 allauth/socialaccount/providers/microsoft/urls.py
370 allauth/socialaccount/providers/microsoft/views.py
397371 allauth/socialaccount/providers/naver/__init__.py
398372 allauth/socialaccount/providers/naver/models.py
399373 allauth/socialaccount/providers/naver/provider.py
402376 allauth/socialaccount/providers/naver/views.py
403377 allauth/socialaccount/providers/oauth/__init__.py
404378 allauth/socialaccount/providers/oauth/client.py
405 allauth/socialaccount/providers/oauth/models.py
406379 allauth/socialaccount/providers/oauth/provider.py
407380 allauth/socialaccount/providers/oauth/urls.py
408381 allauth/socialaccount/providers/oauth/views.py
409382 allauth/socialaccount/providers/oauth2/__init__.py
410383 allauth/socialaccount/providers/oauth2/client.py
411 allauth/socialaccount/providers/oauth2/models.py
412384 allauth/socialaccount/providers/oauth2/provider.py
413385 allauth/socialaccount/providers/oauth2/urls.py
414386 allauth/socialaccount/providers/oauth2/views.py
415387 allauth/socialaccount/providers/odnoklassniki/__init__.py
416 allauth/socialaccount/providers/odnoklassniki/models.py
417388 allauth/socialaccount/providers/odnoklassniki/provider.py
418389 allauth/socialaccount/providers/odnoklassniki/tests.py
419390 allauth/socialaccount/providers/odnoklassniki/urls.py
430401 allauth/socialaccount/providers/openid/migrations/0001_initial.py
431402 allauth/socialaccount/providers/openid/migrations/__init__.py
432403 allauth/socialaccount/providers/orcid/__init__.py
433 allauth/socialaccount/providers/orcid/models.py
434404 allauth/socialaccount/providers/orcid/provider.py
435405 allauth/socialaccount/providers/orcid/tests.py
436406 allauth/socialaccount/providers/orcid/urls.py
442412 allauth/socialaccount/providers/patreon/urls.py
443413 allauth/socialaccount/providers/patreon/views.py
444414 allauth/socialaccount/providers/paypal/__init__.py
445 allauth/socialaccount/providers/paypal/models.py
446415 allauth/socialaccount/providers/paypal/provider.py
447416 allauth/socialaccount/providers/paypal/tests.py
448417 allauth/socialaccount/providers/paypal/urls.py
455424 allauth/socialaccount/providers/persona/views.py
456425 allauth/socialaccount/providers/persona/templates/persona/auth.html
457426 allauth/socialaccount/providers/pinterest/__init__.py
458 allauth/socialaccount/providers/pinterest/models.py
459427 allauth/socialaccount/providers/pinterest/provider.py
460428 allauth/socialaccount/providers/pinterest/tests.py
461429 allauth/socialaccount/providers/pinterest/urls.py
462430 allauth/socialaccount/providers/pinterest/views.py
463431 allauth/socialaccount/providers/reddit/__init__.py
464 allauth/socialaccount/providers/reddit/models.py
465432 allauth/socialaccount/providers/reddit/provider.py
466433 allauth/socialaccount/providers/reddit/tests.py
467434 allauth/socialaccount/providers/reddit/urls.py
468435 allauth/socialaccount/providers/reddit/views.py
469436 allauth/socialaccount/providers/robinhood/__init__.py
470 allauth/socialaccount/providers/robinhood/models.py
471437 allauth/socialaccount/providers/robinhood/provider.py
472438 allauth/socialaccount/providers/robinhood/tests.py
473439 allauth/socialaccount/providers/robinhood/urls.py
474440 allauth/socialaccount/providers/robinhood/views.py
441 allauth/socialaccount/providers/salesforce/__init__.py
442 allauth/socialaccount/providers/salesforce/provider.py
443 allauth/socialaccount/providers/salesforce/tests.py
444 allauth/socialaccount/providers/salesforce/urls.py
445 allauth/socialaccount/providers/salesforce/views.py
475446 allauth/socialaccount/providers/shopify/__init__.py
476 allauth/socialaccount/providers/shopify/models.py
477447 allauth/socialaccount/providers/shopify/provider.py
478448 allauth/socialaccount/providers/shopify/tests.py
479449 allauth/socialaccount/providers/shopify/urls.py
485455 allauth/socialaccount/providers/slack/urls.py
486456 allauth/socialaccount/providers/slack/views.py
487457 allauth/socialaccount/providers/soundcloud/__init__.py
488 allauth/socialaccount/providers/soundcloud/models.py
489458 allauth/socialaccount/providers/soundcloud/provider.py
490459 allauth/socialaccount/providers/soundcloud/tests.py
491460 allauth/socialaccount/providers/soundcloud/urls.py
492461 allauth/socialaccount/providers/soundcloud/views.py
493462 allauth/socialaccount/providers/spotify/__init__.py
494 allauth/socialaccount/providers/spotify/models.py
495463 allauth/socialaccount/providers/spotify/provider.py
496464 allauth/socialaccount/providers/spotify/tests.py
497465 allauth/socialaccount/providers/spotify/urls.py
498466 allauth/socialaccount/providers/spotify/views.py
499467 allauth/socialaccount/providers/stackexchange/__init__.py
500 allauth/socialaccount/providers/stackexchange/models.py
501468 allauth/socialaccount/providers/stackexchange/provider.py
502469 allauth/socialaccount/providers/stackexchange/tests.py
503470 allauth/socialaccount/providers/stackexchange/urls.py
504471 allauth/socialaccount/providers/stackexchange/views.py
505472 allauth/socialaccount/providers/stripe/__init__.py
506 allauth/socialaccount/providers/stripe/models.py
507473 allauth/socialaccount/providers/stripe/provider.py
508474 allauth/socialaccount/providers/stripe/tests.py
509475 allauth/socialaccount/providers/stripe/urls.py
510476 allauth/socialaccount/providers/stripe/views.py
511477 allauth/socialaccount/providers/trello/__init__.py
512 allauth/socialaccount/providers/trello/models.py
513478 allauth/socialaccount/providers/trello/provider.py
514479 allauth/socialaccount/providers/trello/tests.py
515480 allauth/socialaccount/providers/trello/urls.py
516481 allauth/socialaccount/providers/trello/views.py
517482 allauth/socialaccount/providers/tumblr/__init__.py
518 allauth/socialaccount/providers/tumblr/models.py
519483 allauth/socialaccount/providers/tumblr/provider.py
520484 allauth/socialaccount/providers/tumblr/tests.py
521485 allauth/socialaccount/providers/tumblr/urls.py
522486 allauth/socialaccount/providers/tumblr/views.py
523487 allauth/socialaccount/providers/twentythreeandme/__init__.py
524 allauth/socialaccount/providers/twentythreeandme/models.py
525488 allauth/socialaccount/providers/twentythreeandme/provider.py
526489 allauth/socialaccount/providers/twentythreeandme/tests.py
527490 allauth/socialaccount/providers/twentythreeandme/urls.py
528491 allauth/socialaccount/providers/twentythreeandme/views.py
529492 allauth/socialaccount/providers/twitch/__init__.py
530 allauth/socialaccount/providers/twitch/models.py
531493 allauth/socialaccount/providers/twitch/provider.py
532494 allauth/socialaccount/providers/twitch/tests.py
533495 allauth/socialaccount/providers/twitch/urls.py
534496 allauth/socialaccount/providers/twitch/views.py
535497 allauth/socialaccount/providers/twitter/__init__.py
536 allauth/socialaccount/providers/twitter/models.py
537498 allauth/socialaccount/providers/twitter/provider.py
538499 allauth/socialaccount/providers/twitter/tests.py
539500 allauth/socialaccount/providers/twitter/urls.py
545506 allauth/socialaccount/providers/untappd/urls.py
546507 allauth/socialaccount/providers/untappd/views.py
547508 allauth/socialaccount/providers/vimeo/__init__.py
548 allauth/socialaccount/providers/vimeo/models.py
549509 allauth/socialaccount/providers/vimeo/provider.py
550510 allauth/socialaccount/providers/vimeo/tests.py
551511 allauth/socialaccount/providers/vimeo/urls.py
552512 allauth/socialaccount/providers/vimeo/views.py
553513 allauth/socialaccount/providers/vk/__init__.py
554 allauth/socialaccount/providers/vk/models.py
555514 allauth/socialaccount/providers/vk/provider.py
556515 allauth/socialaccount/providers/vk/tests.py
557516 allauth/socialaccount/providers/vk/urls.py
558517 allauth/socialaccount/providers/vk/views.py
559518 allauth/socialaccount/providers/weibo/__init__.py
560 allauth/socialaccount/providers/weibo/models.py
561519 allauth/socialaccount/providers/weibo/provider.py
562520 allauth/socialaccount/providers/weibo/tests.py
563521 allauth/socialaccount/providers/weibo/urls.py
564522 allauth/socialaccount/providers/weibo/views.py
565523 allauth/socialaccount/providers/weixin/__init__.py
566524 allauth/socialaccount/providers/weixin/client.py
567 allauth/socialaccount/providers/weixin/models.py
568525 allauth/socialaccount/providers/weixin/provider.py
569526 allauth/socialaccount/providers/weixin/tests.py
570527 allauth/socialaccount/providers/weixin/urls.py
571528 allauth/socialaccount/providers/weixin/views.py
572529 allauth/socialaccount/providers/windowslive/__init__.py
573 allauth/socialaccount/providers/windowslive/models.py
574530 allauth/socialaccount/providers/windowslive/provider.py
575531 allauth/socialaccount/providers/windowslive/tests.py
576532 allauth/socialaccount/providers/windowslive/urls.py
577533 allauth/socialaccount/providers/windowslive/views.py
578534 allauth/socialaccount/providers/xing/__init__.py
579 allauth/socialaccount/providers/xing/models.py
580535 allauth/socialaccount/providers/xing/provider.py
581536 allauth/socialaccount/providers/xing/tests.py
582537 allauth/socialaccount/providers/xing/urls.py
583538 allauth/socialaccount/providers/xing/views.py
539 allauth/socialaccount/providers/yahoo/__init__.py
540 allauth/socialaccount/providers/yahoo/models.py
541 allauth/socialaccount/providers/yahoo/provider.py
542 allauth/socialaccount/providers/yahoo/tests.py
543 allauth/socialaccount/providers/yahoo/urls.py
544 allauth/socialaccount/providers/yahoo/views.py
584545 allauth/socialaccount/templatetags/__init__.py
585546 allauth/socialaccount/templatetags/socialaccount.py
586547 allauth/templates/base.html
0 Django >= 1.8
1 python3-openid >= 3.0.8
0 Django >= 1.11
1 python-openid >= 2.2.5
22 requests-oauthlib >= 0.3.0
33 requests
77 This app currently provides no functionality for enforcing views to be
88 HTTPS only, or switching from HTTP to HTTPS (and back) on demand.
99 There are third party packages aimed at providing precisely this,
10 please use these .
10 so please use these.
1111
1212 What is provided is the following:
1313
2626
2727 If you use a custom user model you need to specify what field
2828 represents the ``username``, if any. Here, ``username`` really refers to
29 the field representing the nick name the user uses to login, and not
29 the field representing the nickname that the user uses to login, and not to
3030 some unique identifier (possibly including an e-mail address) as is
3131 the case for Django's ``AbstractBaseUser.USERNAME_FIELD``.
3232
33 Meaning, if your custom user model does not have a ``username`` field
33 Therefore, if your custom user model does not have a ``username`` field
3434 (again, not to be mistaken with an e-mail address or user id), you
3535 will need to set ``ACCOUNT_USER_MODEL_USERNAME_FIELD`` to ``None``. This
3636 will disable username related functionality in ``allauth``. Remember to
37 also to set ``ACCOUNT_USERNAME_REQUIRED`` to ``False``.
37 also set ``ACCOUNT_USERNAME_REQUIRED`` to ``False``.
3838
3939 Similarly, you will need to set ``ACCOUNT_USER_MODEL_EMAIL_FIELD`` to
40 ``None``, or the proper field (if other than ``email``).
40 ``None`` or to the proper field (if other than ``email``).
4141
4242 For example, if you want to use a custom user model that has ``email``
4343 as the identifying field, and you don't want to collect usernames, you
5353 --------------------------------------
5454
5555 The following adapter methods can be used to intervene in how User
56 instances are created, and populated with data
56 instances are created and populated with data
5757
5858 - ``allauth.account.adapter.DefaultAccountAdapter``:
5959
6868
6969 - ``populate_username(self, request, user)``:
7070 Fills in a valid username, if required and missing. If the
71 username is already present it is assumed to be valid (unique).
71 username is already present, then it is assumed to be valid (unique).
7272
7373 - ``confirm_email(self, request, email_address)``: Marks the email address as
7474 confirmed and saves to the db.
117117 example, inspect the session to check if an invitation was accepted.
118118
119119 - ``stash_verified_email(self, request, email)``. If an invitation was
120 accepted by following a link in a mail, then there is no need to
121 send e-mail verification mails after the signup is completed. Use
122 this method to record the fact that an e-mail address was verified.
123
124
125 Sending E-mail
120 accepted by following a link in an email, then there is no need to
121 send email verification mails after the signup is completed. Use
122 this method to record the fact that an email address was verified.
123
124
125 Sending Email
126126 --------------
127127
128 E-mails sent (e.g. in case of password forgotten, or e-mail
128 Emails sent (e.g. in case of password forgotten or email
129129 confirmation) can be altered by providing your own
130130 templates. Templates are named as follows::
131131
187187 The Django messages framework (``django.contrib.messages``) is used if
188188 it is listed in ``settings.INSTALLED_APPS``. All messages (as in
189189 ``django.contrib.messages``) are configurable by overriding their
190 respective template. If you want to disable a message simply override
190 respective template. If you want to disable a message, simply override
191191 the message template with a blank one.
192192
193193 Admin
208208 login method will not be applied.
209209
210210 An easy workaround for this is to require users to login before going to the
211 Django admin site's login page (note that following would need to be applied to
211 Django admin site's login page (note that the following would need to be applied to
212212 every instance of ``AdminSite``):
213213
214214 .. code-block:: python
226226
227227 This can be achieved by subclassing an existing provider and making your changes
228228 there. Providers are defined as django applications, so typically customizing one
229 will mean creating a django application in your project, containing your customized
230 urls.py, views.py and provider.py files. What behaviour you can customize is beyond
229 will mean creating a django application in your project. This application will contain your customized
230 urls.py, views.py and provider.py files. The behaviour that can be customized is beyond
231231 the scope of this documentation.
232232
233233 .. warning::
6969 ACCOUNT_EMAIL_CONFIRMATION_COOLDOWN (=180)
7070 The cooldown period (in seconds) after a confirmation email is sent,
7171 during which further emails are not sent.
72
73 ACCOUNT_EMAIL_MAX_LENGTH(=254)
74 Maximum length of the email field. You won't need to alter this unless using
75 MySQL with the InnoDB storage engine and the ``utf8mb4`` charset, and only in
76 versions lower than 5.7.7, because the default InnoDB settings don't allow
77 indexes bigger than 767 bytes. When using ``utf8mb4``, characters are 4-bytes
78 wide, so at maximum column indexes can be 191 characters long (767/4).
79 Unfortunately Django doesn't allow specifying index lengths, so the solution
80 is to reduce the length in characters of indexed text fields.
81 More information can be found at `MySQL's documentation on converting between
82 3-byte and 4-byte Unicode character sets
83 <https://dev.mysql.com/doc/refman/5.5/en/charset-unicode-conversion.html>`_.
7284
7385 ACCOUNT_FORMS (={})
7486 Used to override forms, for example:
55
66 Even when email verification is not mandatory during signup, there
77 may be circumstances during which you really want to prevent
8 unverified users to proceed. For this purpose you can use the
8 unverified users from proceeding. For this purpose you can use the
99 following decorator::
1010
1111 from allauth.account.decorators import verified_email_required
1616
1717 The behavior is as follows:
1818
19 - If the user isn't logged in, it acts identical to the
19 - If the user isn't logged in, it acts identically to the
2020 ``login_required`` decorator.
2121
2222 - If the user is logged in but has no verified e-mail address, an
6464 'allauth.socialaccount.providers.douban',
6565 'allauth.socialaccount.providers.draugiem',
6666 'allauth.socialaccount.providers.dropbox',
67 'allauth.socialaccount.providers.dropbox_oauth2',
6867 'allauth.socialaccount.providers.dwolla',
6968 'allauth.socialaccount.providers.edmodo',
7069 'allauth.socialaccount.providers.eveonline',
55
66 - Python 2.7, 3.3, 3.4, or 3.5
77
8 - Django (1.8+)
8 - Django (1.10+)
99
1010 - python-openid or python3-openid (depending on your Python version)
1111
4646
4747 - Authentiq (OAuth2)
4848
49 - Azure (OAuth2)
50
4951 - Basecamp (OAuth2)
5052
5153 - Baidu (OAuth2)
108110
109111 - Meetup (OAuth2)
110112
113 - Microsoft (Graph) (OAuth2)
114
111115 - Naver (OAuth2)
112116
113117 - Odnoklassniki (OAuth2)
126130
127131 - Reddit (OAuth2)
128132
133 - Salesforce (OAuth2)
134
129135 - Shopify (OAuth2)
130136
131137 - Slack (OAuth2)
159165 - Windows Live (OAuth2)
160166
161167 - Xing (OAuth)
168
169 - Yahoo (OAuth2)
162170
163171
164172 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...
268268 Development callback URL
269269 http://localhost:8000/accounts/dropbox/login/callback/
270270
271 Note that Dropbox has deprecated version 1 of their API as of 28 June 2016. The original OAuth1 `dropbox` provider has been updated to OAuth2 and the newer URL endpoints for OAuth2 authentication and authorization.
272
273 The `dropbox_oauth2` provider is deprecated and will be removed after September 28, 2017.
271 Dwolla
272 ------------
273
274 App registration (get your key and secret here)
275 https://dashboard-uat.dwolla.com/applications
276
277 Development callback URL
278 http://127.0.0.1:8000/accounts/dwolla/login/callback/
279
280
281 .. code-block:: python
282
283 SOCIALACCOUNT_PROVIDERS = {
284 'dwolla': {
285 'SCOPE': [
286 'Send',
287 'Transactions',
288 'Funding',
289 'AccountInfoFull',
290 ],
291 'ENVIROMENT':'sandbox',
292 }
293 }
274294
275295 Dwolla
276296 ------------
608628 Override endpoint to request an authorization and access token. For your
609629 private GitLab server you use: ``https://your.gitlab.server.tld``
610630
631 SCOPE:
632 The ``read_user`` scope is required for the login procedure.
633
611634 Example:
612635
613636 .. code-block:: python
615638 SOCIALACCOUNT_PROVIDERS = {
616639 'gitlab': {
617640 'GITLAB_URL': 'https://your.gitlab.server.tld',
618 }
641 'SCOPE': ['read_user'],
642 },
619643 }
620644
621645
834858 ask for permission.
835859
836860
861 Microsoft Graph
862 -----------------
863
864 Microsoft Graph API is the gateway to connect to mail, calendar, contacts,
865 documents, directory, devices and more.
866
867 Apps can be registered (for consumer key and secret) here
868 https://apps.dev.microsoft.com/
869
870 By default, `common` (`organizations` and `consumers`) tenancy is configured
871 for the login. To restrict it, change the `tenant` setting as shown below.
872
873 .. code-block:: python
874
875 SOCIALACCOUNT_PROVIDERS = {
876 'microsoft': {
877 'tenant': 'organizations',
878 }
879 }
880
881
837882 Naver
838883 -----
839884
10571102 }
10581103
10591104
1105 Salesforce
1106 ----------
1107
1108 The Salesforce provider requires you to set the login VIP as the provider
1109 model's 'key' (in addition to client id and secret). Production environments
1110 use https://login.salesforce.com/. Sandboxes use https://test.salesforce.com/.
1111
1112 HTTPS is required for the callback.
1113
1114 Development callback URL
1115 https://localhost:8000/accounts/salesforce/login/callback/
1116
1117 Salesforce OAuth2 documentation
1118 https://developer.salesforce.com/page/Digging_Deeper_into_OAuth_2.0_on_Force.com
1119
1120 To Use:
1121
1122 - Include allauth.socialaccount.providers.salesforce in INSTALLED_APPS
1123 - In a new Salesforce Developer Org, create a Connected App
1124 with OAuth (minimum scope id, openid), and a callback URL
1125 - Create a Social application in Django admin, with client id,
1126 client key, and login_url (in "key" field)
1127
1128
10601129 Shopify
10611130 -------
10621131
11541223 Stripe
11551224 ------
11561225
1157 You can register your OAuth2 app via the admin interface
1226 You register your OAUth2 app via the Connect->Settings page of the Stripe
1227 dashboard:
1228 https://dashboard.stripe.com/account/applications/settings
1229
1230 This page will provide you with both a Development and Production `client_id`.
1231
1232 You can also register your OAuth2 app callback on the Settings page in the
1233 "Website URL" box, e.g.:
11581234 http://example.com/accounts/stripe/login/callback/
1235
1236 However, the OAuth2 secret key is not on this page. The secret key is the same
1237 secret key that you use with the Stripe API generally. This can be found on the
1238 Stripe dashboard API page:
1239 https://dashboard.stripe.com/account/apikeys
11591240
11601241 See more in documentation
11611242 https://stripe.com/docs/connect/standalone-accounts
13091390 ``https://open.weixin.qq.com/connect/qrconnect``.
13101391
13111392 You can optionally specify additional scope to use. If no ``SCOPE`` value
1312 is set, will use ``snsapi_login`` by default.
1393 is set, will use ``snsapi_login`` by default(for Open Platform Account, need
1394 registration). Other ``SCOPE`` options are: snsapi_base, snsapi_userinfo.
13131395
13141396 .. code-block:: python
13151397
13161398 SOCIALACCOUNT_PROVIDERS = {
13171399 'weixin': {
13181400 'AUTHORIZE_URL': 'https://open.weixin.qq.com/connect/oauth2/authorize', # for media platform
1401 'SCOPE': ['snsapi_base'],
13191402 }
13201403 }
13211404
13281411
13291412 Development callback URL
13301413 http://localhost:8000
1414
1415
1416 Yahoo
1417 ------
1418
1419 Register your OAuth2 app below and enter the resultant client id and secret into admin
1420 https://developer.yahoo.com/apps/create/
44 from fnmatch import fnmatchcase
55
66 from setuptools import convert_path, find_packages, setup
7
78
89 # Provided as an attribute, so you can append to these instead
910 # of replicating them:
125126 keywords='django auth account social openid twitter facebook oauth'
126127 ' registration',
127128 tests_require=test_requirements,
128 install_requires=['Django >= 1.8',
129 install_requires=['Django >= 1.11',
129130 openid_package,
130131 'requests-oauthlib >= 0.3.0',
131132 "requests"],
140141 'Operating System :: OS Independent',
141142 'Programming Language :: Python',
142143 'Programming Language :: Python :: 2.7',
143 'Programming Language :: Python :: 3.3',
144144 'Programming Language :: Python :: 3.4',
145145 'Programming Language :: Python :: 3.5',
146146 'Programming Language :: Python :: 3.6',
147147 'Framework :: Django',
148 'Framework :: Django :: 1.8',
149 'Framework :: Django :: 1.10',
150148 'Framework :: Django :: 1.11',
149 'Framework :: Django :: 2.0',
151150 ],
152151 packages=find_packages(exclude=['example']),
153152 package_data=package_data,
2929 },
3030 ]
3131
32 MIDDLEWARE = MIDDLEWARE_CLASSES = (
32 MIDDLEWARE = (
3333 'django.contrib.sessions.middleware.SessionMiddleware',
3434 'django.middleware.common.CommonMiddleware',
3535 'django.middleware.csrf.CsrfViewMiddleware',
5454 'allauth.socialaccount.providers.asana',
5555 'allauth.socialaccount.providers.auth0',
5656 'allauth.socialaccount.providers.authentiq',
57 'allauth.socialaccount.providers.azure',
5758 'allauth.socialaccount.providers.baidu',
5859 'allauth.socialaccount.providers.basecamp',
5960 'allauth.socialaccount.providers.battlenet',
7071 'allauth.socialaccount.providers.doximity',
7172 'allauth.socialaccount.providers.draugiem',
7273 'allauth.socialaccount.providers.dropbox',
73 'allauth.socialaccount.providers.dropbox_oauth2',
7474 'allauth.socialaccount.providers.dwolla',
7575 'allauth.socialaccount.providers.edmodo',
7676 'allauth.socialaccount.providers.eveonline',
9494 'allauth.socialaccount.providers.mailchimp',
9595 'allauth.socialaccount.providers.mailru',
9696 'allauth.socialaccount.providers.meetup',
97 'allauth.socialaccount.providers.microsoft',
9798 'allauth.socialaccount.providers.naver',
9899 'allauth.socialaccount.providers.odnoklassniki',
99100 'allauth.socialaccount.providers.openid',
104105 'allauth.socialaccount.providers.pinterest',
105106 'allauth.socialaccount.providers.reddit',
106107 'allauth.socialaccount.providers.robinhood',
108 'allauth.socialaccount.providers.salesforce',
107109 'allauth.socialaccount.providers.shopify',
108110 'allauth.socialaccount.providers.slack',
109111 'allauth.socialaccount.providers.soundcloud',
121123 'allauth.socialaccount.providers.weibo',
122124 'allauth.socialaccount.providers.weixin',
123125 'allauth.socialaccount.providers.windowslive',
124 'allauth.socialaccount.providers.xing'
126 'allauth.socialaccount.providers.xing',
127 'allauth.socialaccount.providers.yahoo',
125128 )
126129
127130 AUTHENTICATION_BACKENDS = (