diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index de344b06ca..0fade679d4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,7 +37,7 @@ jobs: django-version: 'main' steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 with: @@ -65,7 +65,7 @@ jobs: matrix: extra-env: ['docs', 'black', 'isort', 'flake8', 'standardjs'] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-node@v3 if: ${{ matrix.extra-env == 'standardjs' }} with: diff --git a/AUTHORS b/AUTHORS index e9b2c3f6f2..f832425a4f 100644 --- a/AUTHORS +++ b/AUTHORS @@ -71,6 +71,7 @@ Guoyu Hao Haesung Park Hatem Nassrat Hyunwoo Shim +Ian R-P Ignacio Ocampo Illia Volochii J. Erm diff --git a/ChangeLog.rst b/ChangeLog.rst index c444bae22d..bd7596e3ba 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -1,4 +1,26 @@ -0.56.0 (unreleased) +0.57.0 (unreleased) +******************* + +Note worthy changes +------------------- + +- Added django password validation help text to password1 on set/change/signup forms. +- ... + + +0.56.1 (2023-09-08) +******************* + +Security notice +--------------- + +- ``ImmediateHttpResponse`` exceptions were not handled properly when raised + inside ``adapter.pre_login()``. If you relied on aborting the login using + this mechanism, that would not work. Most notably, django-allauth-2fa uses + this approach, resulting in 2FA not being triggered. + + +0.56.0 (2023-09-07) ******************* Note worthy changes @@ -16,6 +38,10 @@ Note worthy changes from allauth.core import context context.request +- Previously, ``SOCIALACCOUNT_STORE_TOKENS = True`` did not work when the social + app was configured in the settings instead of in the database. Now, this + functionality works regardless of how you configure the app. + Backwards incompatible changes ------------------------------ @@ -46,6 +72,28 @@ Backwards incompatible changes } } +- The Keycloak provider was added before the OpenID Connect functionality + landed. Afterwards, the Keycloak implementation was refactored to reuse the + regular OIDC provider. As this approach led to bugs (see 0.55.1), it was + decided to remove the Keycloak implementation altogether. Instead, use the + regular OpenID Connect configuration:: + + SOCIALACCOUNT_PROVIDERS = { + "openid_connect": { + "APPS": [ + { + "provider_id": "keycloak", + "name": "Keycloak", + "client_id": "", + "secret": "", + "settings": { + "server_url": "http://keycloak:8080/realms/master/.well-known/openid-configuration", + }, + } + ] + } + } + 0.55.2 (2023-08-30) ******************* diff --git a/README.rst b/README.rst index 97b72c8349..88ad3d927c 100644 --- a/README.rst +++ b/README.rst @@ -32,7 +32,7 @@ registration, account management as well as 3rd party (social) account authentication. Home page - http://www.intenct.nl/projects/django-allauth/ + https://allauth.org/ Source code http://github.com/pennersr/django-allauth diff --git a/allauth/__init__.py b/allauth/__init__.py index b060195bc5..f3b3864925 100644 --- a/allauth/__init__.py +++ b/allauth/__init__.py @@ -8,7 +8,7 @@ """ -VERSION = (0, 56, 0, "dev", 0) +VERSION = (0, 57, 0, "dev", 0) __title__ = "django-allauth" __version_info__ = VERSION diff --git a/allauth/account/forms.py b/allauth/account/forms.py index fa44cf3fa8..eb396f0395 100644 --- a/allauth/account/forms.py +++ b/allauth/account/forms.py @@ -3,6 +3,7 @@ from importlib import import_module from django import forms +from django.contrib.auth import password_validation from django.contrib.auth.tokens import PasswordResetTokenGenerator from django.contrib.sites.shortcuts import get_current_site from django.core import exceptions, validators @@ -394,7 +395,9 @@ class SignupForm(BaseSignupForm): def __init__(self, *args, **kwargs): super(SignupForm, self).__init__(*args, **kwargs) self.fields["password1"] = PasswordField( - label=_("Password"), autocomplete="new-password" + label=_("Password"), + autocomplete="new-password", + help_text=password_validation.password_validators_help_text_html(), ) if app_settings.SIGNUP_PASSWORD_ENTER_TWICE: self.fields["password2"] = PasswordField( @@ -502,7 +505,10 @@ class ChangePasswordForm(PasswordVerificationMixin, UserForm): oldpassword = PasswordField( label=_("Current Password"), autocomplete="current-password" ) - password1 = SetPasswordField(label=_("New Password")) + password1 = SetPasswordField( + label=_("New Password"), + help_text=password_validation.password_validators_help_text_html(), + ) password2 = PasswordField(label=_("New Password (again)")) def __init__(self, *args, **kwargs): @@ -519,7 +525,10 @@ def save(self): class SetPasswordForm(PasswordVerificationMixin, UserForm): - password1 = SetPasswordField(label=_("Password")) + password1 = SetPasswordField( + label=_("Password"), + help_text=password_validation.password_validators_help_text_html(), + ) password2 = PasswordField(label=_("Password (again)")) def __init__(self, *args, **kwargs): diff --git a/allauth/account/migrations/0004_alter_emailaddress_drop_unique_email.py b/allauth/account/migrations/0004_alter_emailaddress_drop_unique_email.py index 305f386452..122a5692a4 100644 --- a/allauth/account/migrations/0004_alter_emailaddress_drop_unique_email.py +++ b/allauth/account/migrations/0004_alter_emailaddress_drop_unique_email.py @@ -1,8 +1,10 @@ -# Generated by Django 4.2.2 on 2023-06-14 12:59 - +from django.conf import settings from django.db import migrations, models +EMAIL_MAX_LENGTH = getattr(settings, "ACCOUNT_EMAIL_MAX_LENGTH", 254) + + class Migration(migrations.Migration): dependencies = [ ("account", "0003_alter_emailaddress_create_unique_verified_email"), @@ -12,6 +14,8 @@ class Migration(migrations.Migration): migrations.AlterField( model_name="emailaddress", name="email", - field=models.EmailField(max_length=254, verbose_name="email address"), + field=models.EmailField( + max_length=EMAIL_MAX_LENGTH, verbose_name="email address" + ), ), ] diff --git a/allauth/account/tests/test_adapter.py b/allauth/account/tests/test_adapter.py new file mode 100644 index 0000000000..3d1f4b7977 --- /dev/null +++ b/allauth/account/tests/test_adapter.py @@ -0,0 +1,20 @@ +from django.http import HttpResponseRedirect +from django.urls import reverse + +from allauth.account.adapter import DefaultAccountAdapter +from allauth.core.exceptions import ImmediateHttpResponse + + +class TestAccountAdapter(DefaultAccountAdapter): + def pre_login(self, *args, **kwargs): + raise ImmediateHttpResponse(HttpResponseRedirect("/foo")) + + +def test_adapter_pre_login(settings, user, user_password, client): + settings.ACCOUNT_ADAPTER = "allauth.account.tests.test_adapter.TestAccountAdapter" + resp = client.post( + reverse("account_login"), + {"login": user.username, "password": user_password}, + ) + assert resp.status_code == 302 + assert resp["location"] == "/foo" diff --git a/allauth/account/utils.py b/allauth/account/utils.py index 5777f4cf4a..f60905920c 100644 --- a/allauth/account/utils.py +++ b/allauth/account/utils.py @@ -173,13 +173,10 @@ def _perform_login(request, login): # `user_signed_up` signal. Furthermore, social users should be # stopped anyway. adapter = get_adapter() - try: - hook_kwargs = _get_login_hook_kwargs(login) - response = adapter.pre_login(request, login.user, **hook_kwargs) - if response: - return response - except ImmediateHttpResponse as e: - response = e.response + hook_kwargs = _get_login_hook_kwargs(login) + response = adapter.pre_login(request, login.user, **hook_kwargs) + if response: + return response return resume_login(request, login) diff --git a/allauth/locale/ar/LC_MESSAGES/django.po b/allauth/locale/ar/LC_MESSAGES/django.po index e8262bde6b..4dc9b1bc4e 100644 --- a/allauth/locale/ar/LC_MESSAGES/django.po +++ b/allauth/locale/ar/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-30 16:00-0500\n" +"POT-Creation-Date: 2023-09-07 04:22-0500\n" "PO-Revision-Date: 2023-08-15 04:00+0300\n" "Last-Translator: Abdo \n" "Language-Team: Arabic\n" @@ -19,25 +19,25 @@ msgstr "" "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" "X-Generator: Poedit 3.3.2\n" -#: account/adapter.py:47 +#: account/adapter.py:48 msgid "Username can not be used. Please use other username." msgstr "اسم المستخدم غير مسموح به. الرجاء اختيار اسم آخر‪." -#: account/adapter.py:53 +#: account/adapter.py:54 msgid "Too many failed login attempts. Try again later." msgstr "تجاوزت الحد المسموح لمحاولة تسجيل الدخول. حاول في وقت لاحق." -#: account/adapter.py:55 +#: account/adapter.py:56 msgid "A user is already registered with this email address." msgstr "هنالك مستخدم مسجل سابقا يستخدم عنوان البريد الإلكتروني نفسه." -#: account/adapter.py:56 +#: account/adapter.py:57 #, fuzzy #| msgid "Current Password" msgid "Incorrect password." msgstr "كلمة المرور الحالية" -#: account/adapter.py:305 +#: account/adapter.py:308 #, python-brace-format msgid "Password must be a minimum of {0} characters." msgstr "كلمة المرور يجب أن لا تقل عن {0} حروف." @@ -51,7 +51,7 @@ msgid "You must type the same password each time." msgstr "يجب عليك كتابة كلمة المرور نفسها في كل مرة‪." #: account/forms.py:90 account/forms.py:397 account/forms.py:522 -#: account/forms.py:660 +#: account/forms.py:658 msgid "Password" msgstr "كلمة المرور" @@ -128,11 +128,11 @@ msgstr "لا يمكنك إضافة أكثر من %d بريد إلكتروني." msgid "Current Password" msgstr "كلمة المرور الحالية" -#: account/forms.py:505 account/forms.py:609 +#: account/forms.py:505 account/forms.py:607 msgid "New Password" msgstr "كلمة المرور الجديدة" -#: account/forms.py:506 account/forms.py:610 +#: account/forms.py:506 account/forms.py:608 msgid "New Password (again)" msgstr "كلمة المرور الجديدة (مجددا)" @@ -144,7 +144,7 @@ msgstr "الرجاء كتابة كلمة المرور الحالية." msgid "The email address is not assigned to any user account" msgstr "لم يتم ربط عنوان البريد الإلكتروني مع أي حساب مستخدم" -#: account/forms.py:630 +#: account/forms.py:628 msgid "The password reset token was invalid." msgstr "كود إعادة تعيين كلمة المرور غير صالح." @@ -176,7 +176,7 @@ msgstr "تمّ إنشاؤه" msgid "sent" msgstr "تم ارساله" -#: account/models.py:143 socialaccount/models.py:60 +#: account/models.py:143 socialaccount/models.py:62 msgid "key" msgstr "مفتاح" @@ -188,19 +188,19 @@ msgstr "تأكيد البريد الإلكتروني" msgid "email confirmations" msgstr "تأكيدات البريد الإلكتروني" -#: mfa/adapter.py:18 +#: mfa/adapter.py:19 msgid "" "You cannot activate two-factor authentication until you have verified your " "email address." msgstr "" -#: mfa/adapter.py:21 +#: mfa/adapter.py:22 msgid "" "You cannot add an email address to an account protected by two-factor " "authentication." msgstr "" -#: mfa/adapter.py:23 +#: mfa/adapter.py:24 msgid "Incorrect code." msgstr "" @@ -224,7 +224,7 @@ msgstr "" msgid "TOTP Authenticator" msgstr "" -#: socialaccount/adapter.py:28 +#: socialaccount/adapter.py:30 #, python-format msgid "" "An account already exists with this email address. Please sign in to that " @@ -233,11 +233,11 @@ msgstr "" "يوجد حساب بالفعل مربوط مع هذا البريد الإلكتروني. يرجى الدخول إلى ذاك الحساب " "أولا، ثم ربط حسابك في %s." -#: socialaccount/adapter.py:132 +#: socialaccount/adapter.py:136 msgid "Your account has no password set up." msgstr "حسابك ليست له كلمة مرور مضبوطة." -#: socialaccount/adapter.py:139 +#: socialaccount/adapter.py:143 msgid "Your account has no verified email address." msgstr "حسابك ليس لديه عنوان بريد إلكتروني موثقف." @@ -245,95 +245,95 @@ msgstr "حسابك ليس لديه عنوان بريد إلكتروني موثق msgid "Social Accounts" msgstr "حسابات التواصل الاجتماعي" -#: socialaccount/models.py:34 socialaccount/models.py:95 +#: socialaccount/models.py:36 socialaccount/models.py:97 msgid "provider" msgstr "مزود" -#: socialaccount/models.py:43 +#: socialaccount/models.py:45 msgid "provider ID" msgstr "معرف المزود" -#: socialaccount/models.py:47 +#: socialaccount/models.py:49 msgid "name" msgstr "اسم" -#: socialaccount/models.py:49 +#: socialaccount/models.py:51 msgid "client id" msgstr "معرف العميل" -#: socialaccount/models.py:51 +#: socialaccount/models.py:53 msgid "App ID, or consumer key" msgstr "معرف آبل، أو مفتاح المستهلك" -#: socialaccount/models.py:54 +#: socialaccount/models.py:56 msgid "secret key" msgstr "مفتاح سري" -#: socialaccount/models.py:57 +#: socialaccount/models.py:59 msgid "API secret, client secret, or consumer secret" msgstr "مفتاح واجهة برمجية سري أو مفتاح مستهلك" -#: socialaccount/models.py:60 +#: socialaccount/models.py:62 msgid "Key" msgstr "مفتاح" -#: socialaccount/models.py:79 +#: socialaccount/models.py:81 msgid "social application" msgstr "تطبيق اجتماعي" -#: socialaccount/models.py:80 +#: socialaccount/models.py:82 msgid "social applications" msgstr "تطبيقات اجتماعية" -#: socialaccount/models.py:115 +#: socialaccount/models.py:117 msgid "uid" msgstr "معرف المستخدم" -#: socialaccount/models.py:117 +#: socialaccount/models.py:119 msgid "last login" msgstr "أخر دخول" -#: socialaccount/models.py:118 +#: socialaccount/models.py:120 msgid "date joined" msgstr "تاريخ الانضمام" -#: socialaccount/models.py:119 +#: socialaccount/models.py:121 msgid "extra data" msgstr "بيانات إضافية" -#: socialaccount/models.py:123 +#: socialaccount/models.py:125 msgid "social account" msgstr "حساب تواصل اجتماعي" -#: socialaccount/models.py:124 +#: socialaccount/models.py:126 msgid "social accounts" msgstr "حسابات تواصل اجتماعي" -#: socialaccount/models.py:158 +#: socialaccount/models.py:160 msgid "token" msgstr "كود" -#: socialaccount/models.py:159 +#: socialaccount/models.py:161 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)" msgstr "\"oauth_token\" (OAuth1) أو مفتاح وصول (OAuth2)" -#: socialaccount/models.py:163 +#: socialaccount/models.py:165 msgid "token secret" msgstr "كود سري" -#: socialaccount/models.py:164 +#: socialaccount/models.py:166 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)" msgstr "\"oauth_token_secret\" (OAuth1) أو رمز تحديث (OAuth2)" -#: socialaccount/models.py:167 +#: socialaccount/models.py:169 msgid "expires at" msgstr "ينتهي في" -#: socialaccount/models.py:172 +#: socialaccount/models.py:174 msgid "social application token" msgstr "كود تطبيق اجتماعي" -#: socialaccount/models.py:173 +#: socialaccount/models.py:175 msgid "social application tokens" msgstr "أكواد التطبيقات الاجتماعية" diff --git a/allauth/locale/bg/LC_MESSAGES/django.po b/allauth/locale/bg/LC_MESSAGES/django.po index 9567536311..602ec6f8a2 100644 --- a/allauth/locale/bg/LC_MESSAGES/django.po +++ b/allauth/locale/bg/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-30 16:00-0500\n" +"POT-Creation-Date: 2023-09-07 04:22-0500\n" "PO-Revision-Date: 2023-07-24 22:25+0200\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,26 +18,26 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: account/adapter.py:47 +#: account/adapter.py:48 msgid "Username can not be used. Please use other username." msgstr "" "Това потребителско име не може да бъде използвано. Моля, изберете друго." -#: account/adapter.py:53 +#: account/adapter.py:54 msgid "Too many failed login attempts. Try again later." msgstr "Твърде много неуспешни опити за влизане. Опитайте отново по-късно." -#: account/adapter.py:55 +#: account/adapter.py:56 msgid "A user is already registered with this email address." msgstr "Вече има регистриран потребител с този e-mail адрес." -#: account/adapter.py:56 +#: account/adapter.py:57 #, fuzzy #| msgid "Current Password" msgid "Incorrect password." msgstr "Текуща парола" -#: account/adapter.py:305 +#: account/adapter.py:308 #, python-brace-format msgid "Password must be a minimum of {0} characters." msgstr "Паролата трябва да бъде поне {0} символа." @@ -51,7 +51,7 @@ msgid "You must type the same password each time." msgstr "Трябва да въведете една и съща парола." #: account/forms.py:90 account/forms.py:397 account/forms.py:522 -#: account/forms.py:660 +#: account/forms.py:658 msgid "Password" msgstr "Парола" @@ -128,11 +128,11 @@ msgstr "Не можете да добавяте повече от %d e-mail ад msgid "Current Password" msgstr "Текуща парола" -#: account/forms.py:505 account/forms.py:609 +#: account/forms.py:505 account/forms.py:607 msgid "New Password" msgstr "Нова парола" -#: account/forms.py:506 account/forms.py:610 +#: account/forms.py:506 account/forms.py:608 msgid "New Password (again)" msgstr "Нова парола (отново)" @@ -144,7 +144,7 @@ msgstr "Моля, въведете вашата текуща парола." msgid "The email address is not assigned to any user account" msgstr "Няма потребител с този e-mail адрес." -#: account/forms.py:630 +#: account/forms.py:628 msgid "The password reset token was invalid." msgstr "Невалиден код за възстановяване на парола." @@ -176,7 +176,7 @@ msgstr "създадено" msgid "sent" msgstr "изпратено" -#: account/models.py:143 socialaccount/models.py:60 +#: account/models.py:143 socialaccount/models.py:62 msgid "key" msgstr "ключ" @@ -188,19 +188,19 @@ msgstr "email потвърждение" msgid "email confirmations" msgstr "email потвърждения" -#: mfa/adapter.py:18 +#: mfa/adapter.py:19 msgid "" "You cannot activate two-factor authentication until you have verified your " "email address." msgstr "" -#: mfa/adapter.py:21 +#: mfa/adapter.py:22 msgid "" "You cannot add an email address to an account protected by two-factor " "authentication." msgstr "" -#: mfa/adapter.py:23 +#: mfa/adapter.py:24 msgid "Incorrect code." msgstr "" @@ -224,7 +224,7 @@ msgstr "" msgid "TOTP Authenticator" msgstr "" -#: socialaccount/adapter.py:28 +#: socialaccount/adapter.py:30 #, fuzzy, python-format #| msgid "" #| "An account already exists with this e-mail address. Please sign in to " @@ -236,11 +236,11 @@ msgstr "" "Вече съществува акаунт с този e-mail адрес. Моля, първо влезте в този акаунт " "и тогава свържете вашия %s акаунт." -#: socialaccount/adapter.py:132 +#: socialaccount/adapter.py:136 msgid "Your account has no password set up." msgstr "Вашият акаунт няма парола." -#: socialaccount/adapter.py:139 +#: socialaccount/adapter.py:143 msgid "Your account has no verified email address." msgstr "Вашият акаунт няма потвърден e-mail адрес." @@ -248,97 +248,97 @@ msgstr "Вашият акаунт няма потвърден e-mail адрес. msgid "Social Accounts" msgstr "Социални акаунти" -#: socialaccount/models.py:34 socialaccount/models.py:95 +#: socialaccount/models.py:36 socialaccount/models.py:97 msgid "provider" msgstr "доставчик" -#: socialaccount/models.py:43 +#: socialaccount/models.py:45 #, fuzzy #| msgid "provider" msgid "provider ID" msgstr "доставчик" -#: socialaccount/models.py:47 +#: socialaccount/models.py:49 msgid "name" msgstr "име" -#: socialaccount/models.py:49 +#: socialaccount/models.py:51 msgid "client id" msgstr "id на клиент" -#: socialaccount/models.py:51 +#: socialaccount/models.py:53 msgid "App ID, or consumer key" msgstr "ID на приложение, или ключ на консуматор" -#: socialaccount/models.py:54 +#: socialaccount/models.py:56 msgid "secret key" msgstr "таен ключ" -#: socialaccount/models.py:57 +#: socialaccount/models.py:59 msgid "API secret, client secret, or consumer secret" msgstr "таен ключ на API, клиент или консуматор" -#: socialaccount/models.py:60 +#: socialaccount/models.py:62 msgid "Key" msgstr "Ключ" -#: socialaccount/models.py:79 +#: socialaccount/models.py:81 msgid "social application" msgstr "социално приложение" -#: socialaccount/models.py:80 +#: socialaccount/models.py:82 msgid "social applications" msgstr "социални приложения" -#: socialaccount/models.py:115 +#: socialaccount/models.py:117 msgid "uid" msgstr "uid" -#: socialaccount/models.py:117 +#: socialaccount/models.py:119 msgid "last login" msgstr "последно влизане" -#: socialaccount/models.py:118 +#: socialaccount/models.py:120 msgid "date joined" msgstr "дата на регистрация" -#: socialaccount/models.py:119 +#: socialaccount/models.py:121 msgid "extra data" msgstr "допълнителни данни" -#: socialaccount/models.py:123 +#: socialaccount/models.py:125 msgid "social account" msgstr "социален акаунт" -#: socialaccount/models.py:124 +#: socialaccount/models.py:126 msgid "social accounts" msgstr "социални акаунти" -#: socialaccount/models.py:158 +#: socialaccount/models.py:160 msgid "token" msgstr "код" -#: socialaccount/models.py:159 +#: socialaccount/models.py:161 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)" msgstr "\"oauth_token\" (OAuth1) или access token (OAuth2)" -#: socialaccount/models.py:163 +#: socialaccount/models.py:165 msgid "token secret" msgstr "таен код" -#: socialaccount/models.py:164 +#: socialaccount/models.py:166 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)" msgstr "\"oauth_token_secret\" (OAuth1) или refresh token (OAuth2)" -#: socialaccount/models.py:167 +#: socialaccount/models.py:169 msgid "expires at" msgstr "изтича" -#: socialaccount/models.py:172 +#: socialaccount/models.py:174 msgid "social application token" msgstr "код на социално приложение" -#: socialaccount/models.py:173 +#: socialaccount/models.py:175 msgid "social application tokens" msgstr "кодове на социални приложения" diff --git a/allauth/locale/ca/LC_MESSAGES/django.po b/allauth/locale/ca/LC_MESSAGES/django.po index c1f8765813..0157f4fd72 100644 --- a/allauth/locale/ca/LC_MESSAGES/django.po +++ b/allauth/locale/ca/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: django-allauth\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-30 16:00-0500\n" +"POT-Creation-Date: 2023-09-07 04:22-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Marc Seguí Coll \n" "Language-Team: Català \n" @@ -19,27 +19,27 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: account/adapter.py:47 +#: account/adapter.py:48 msgid "Username can not be used. Please use other username." msgstr "" "Aquest nom d'usuari no pot ser emprat. Si us plau utilitzeu-ne un altre." -#: account/adapter.py:53 +#: account/adapter.py:54 msgid "Too many failed login attempts. Try again later." msgstr "Massa intents fallits. Intenteu-ho de nou més tard." -#: account/adapter.py:55 +#: account/adapter.py:56 msgid "A user is already registered with this email address." msgstr "" "Un usuari ja ha estat registrat amb aquesta direcció de correu electrònic." -#: account/adapter.py:56 +#: account/adapter.py:57 #, fuzzy #| msgid "Current Password" msgid "Incorrect password." msgstr "Contrasenya actual" -#: account/adapter.py:305 +#: account/adapter.py:308 #, python-brace-format msgid "Password must be a minimum of {0} characters." msgstr "La contrasenya ha de contenir al menys {0} caràcters." @@ -53,7 +53,7 @@ msgid "You must type the same password each time." msgstr "Heu d'escriure la mateixa contrasenya cada cop." #: account/forms.py:90 account/forms.py:397 account/forms.py:522 -#: account/forms.py:660 +#: account/forms.py:658 msgid "Password" msgstr "Contrasenya" @@ -131,11 +131,11 @@ msgstr "No es poden afegit més de %d adreces de correu electrònic." msgid "Current Password" msgstr "Contrasenya actual" -#: account/forms.py:505 account/forms.py:609 +#: account/forms.py:505 account/forms.py:607 msgid "New Password" msgstr "Nova contrasenya" -#: account/forms.py:506 account/forms.py:610 +#: account/forms.py:506 account/forms.py:608 msgid "New Password (again)" msgstr "Nova contrasenya (de nou)" @@ -147,7 +147,7 @@ msgstr "Si us plau, escriviu la vostra contrasenya actual." msgid "The email address is not assigned to any user account" msgstr "El correu electrònic no està assignat a cap compte d'usuari" -#: account/forms.py:630 +#: account/forms.py:628 msgid "The password reset token was invalid." msgstr "El token per reiniciar la contrasenya no és vàlid." @@ -179,7 +179,7 @@ msgstr "creat" msgid "sent" msgstr "enviat" -#: account/models.py:143 socialaccount/models.py:60 +#: account/models.py:143 socialaccount/models.py:62 msgid "key" msgstr "clau" @@ -191,19 +191,19 @@ msgstr "confirmació de correu electrònic" msgid "email confirmations" msgstr "confirmacions de correu electrònic" -#: mfa/adapter.py:18 +#: mfa/adapter.py:19 msgid "" "You cannot activate two-factor authentication until you have verified your " "email address." msgstr "" -#: mfa/adapter.py:21 +#: mfa/adapter.py:22 msgid "" "You cannot add an email address to an account protected by two-factor " "authentication." msgstr "" -#: mfa/adapter.py:23 +#: mfa/adapter.py:24 msgid "Incorrect code." msgstr "" @@ -227,7 +227,7 @@ msgstr "" msgid "TOTP Authenticator" msgstr "" -#: socialaccount/adapter.py:28 +#: socialaccount/adapter.py:30 #, fuzzy, python-format #| msgid "" #| "An account already exists with this e-mail address. Please sign in to " @@ -240,11 +240,11 @@ msgstr "" "plau, primer identifiqueu-vos utilitzant aquest compte, i després vinculeu " "el vostre compte %s." -#: socialaccount/adapter.py:132 +#: socialaccount/adapter.py:136 msgid "Your account has no password set up." msgstr "El vostre compte no té una contrasenya definida." -#: socialaccount/adapter.py:139 +#: socialaccount/adapter.py:143 msgid "Your account has no verified email address." msgstr "El vostre compte no té un correu electrònic verificat." @@ -252,98 +252,98 @@ msgstr "El vostre compte no té un correu electrònic verificat." msgid "Social Accounts" msgstr "Comptes de xarxes socials" -#: socialaccount/models.py:34 socialaccount/models.py:95 +#: socialaccount/models.py:36 socialaccount/models.py:97 msgid "provider" msgstr "proveïdor" -#: socialaccount/models.py:43 +#: socialaccount/models.py:45 #, fuzzy #| msgid "provider" msgid "provider ID" msgstr "proveïdor" -#: socialaccount/models.py:47 +#: socialaccount/models.py:49 msgid "name" msgstr "nom" -#: socialaccount/models.py:49 +#: socialaccount/models.py:51 msgid "client id" msgstr "identificador client" -#: socialaccount/models.py:51 +#: socialaccount/models.py:53 msgid "App ID, or consumer key" msgstr "Identificador de App o clau de consumidor" -#: socialaccount/models.py:54 +#: socialaccount/models.py:56 msgid "secret key" msgstr "clau secreta" -#: socialaccount/models.py:57 +#: socialaccount/models.py:59 msgid "API secret, client secret, or consumer secret" msgstr "" "frase secrete de API, frase secreta client o frase secreta de consumidor" -#: socialaccount/models.py:60 +#: socialaccount/models.py:62 msgid "Key" msgstr "Clau" -#: socialaccount/models.py:79 +#: socialaccount/models.py:81 msgid "social application" msgstr "aplicació de xarxa social" -#: socialaccount/models.py:80 +#: socialaccount/models.py:82 msgid "social applications" msgstr "aplicacions de xarxes socials" -#: socialaccount/models.py:115 +#: socialaccount/models.py:117 msgid "uid" msgstr "" -#: socialaccount/models.py:117 +#: socialaccount/models.py:119 msgid "last login" msgstr "darrer inici de sessió" -#: socialaccount/models.py:118 +#: socialaccount/models.py:120 msgid "date joined" msgstr "data d'incorporació" -#: socialaccount/models.py:119 +#: socialaccount/models.py:121 msgid "extra data" msgstr "dades extra" -#: socialaccount/models.py:123 +#: socialaccount/models.py:125 msgid "social account" msgstr "compte de xarxa social" -#: socialaccount/models.py:124 +#: socialaccount/models.py:126 msgid "social accounts" msgstr "comptes de xarxes socials" -#: socialaccount/models.py:158 +#: socialaccount/models.py:160 msgid "token" msgstr "" -#: socialaccount/models.py:159 +#: socialaccount/models.py:161 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)" msgstr "\"oauth_token\" (OAuth1) o token d'accés (OAuth2)" -#: socialaccount/models.py:163 +#: socialaccount/models.py:165 msgid "token secret" msgstr "frase secreta de token" -#: socialaccount/models.py:164 +#: socialaccount/models.py:166 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)" msgstr "\"oauth_token_secret\" (OAuth1) o token de refrescament (OAuth2)" -#: socialaccount/models.py:167 +#: socialaccount/models.py:169 msgid "expires at" msgstr "expira el" -#: socialaccount/models.py:172 +#: socialaccount/models.py:174 msgid "social application token" msgstr "token d'aplicació de xarxa social" -#: socialaccount/models.py:173 +#: socialaccount/models.py:175 msgid "social application tokens" msgstr "tokens d'aplicació de xarxa social" diff --git a/allauth/locale/cs/LC_MESSAGES/django.po b/allauth/locale/cs/LC_MESSAGES/django.po index fbbe2e62a6..040fca3c89 100644 --- a/allauth/locale/cs/LC_MESSAGES/django.po +++ b/allauth/locale/cs/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.55\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-30 16:00-0500\n" +"POT-Creation-Date: 2023-09-07 04:22-0500\n" "PO-Revision-Date: 2023-09-06 14:00+0200\n" "Last-Translator: Filip Dobrovolny \n" "Language-Team: Czech <>\n" @@ -21,23 +21,23 @@ msgstr "" "<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" "X-Generator: Gtranslator 2.91.7\n" -#: account/adapter.py:47 +#: account/adapter.py:48 msgid "Username can not be used. Please use other username." msgstr "Toto uživatelské jméno nemůže být zvoleno. Prosím, zvolte si jiné." -#: account/adapter.py:53 +#: account/adapter.py:54 msgid "Too many failed login attempts. Try again later." msgstr "Příliš mnoho pokusů o přihlášení. Zkuste to prosím později." -#: account/adapter.py:55 +#: account/adapter.py:56 msgid "A user is already registered with this email address." msgstr "Uživatel s tímto e-mailem je již registrován." -#: account/adapter.py:56 +#: account/adapter.py:57 msgid "Incorrect password." msgstr "Nesprávné heslo." -#: account/adapter.py:305 +#: account/adapter.py:308 #, python-brace-format msgid "Password must be a minimum of {0} characters." msgstr "Heslo musí obsahovat minimálně {0} znaků." @@ -51,7 +51,7 @@ msgid "You must type the same password each time." msgstr "Hesla se musí shodovat." #: account/forms.py:90 account/forms.py:397 account/forms.py:522 -#: account/forms.py:660 +#: account/forms.py:658 msgid "Password" msgstr "Heslo" @@ -127,11 +127,11 @@ msgstr "Nelze přidat více než %d e-mailových adres." msgid "Current Password" msgstr "Současné heslo" -#: account/forms.py:505 account/forms.py:609 +#: account/forms.py:505 account/forms.py:607 msgid "New Password" msgstr "Nové heslo" -#: account/forms.py:506 account/forms.py:610 +#: account/forms.py:506 account/forms.py:608 msgid "New Password (again)" msgstr "Nové heslo (znovu)" @@ -143,7 +143,7 @@ msgstr "Prosím, zadejte svoje současné heslo." msgid "The email address is not assigned to any user account" msgstr "E-mail není přiřazen k žádnému účtu" -#: account/forms.py:630 +#: account/forms.py:628 msgid "The password reset token was invalid." msgstr "Token pro reset hesla není platný." @@ -175,7 +175,7 @@ msgstr "vytvořeno" msgid "sent" msgstr "odeslaný" -#: account/models.py:143 socialaccount/models.py:60 +#: account/models.py:143 socialaccount/models.py:62 msgid "key" msgstr "klíč" @@ -187,21 +187,21 @@ msgstr "Potvrzovací e-mail" msgid "email confirmations" msgstr "Ověřovací e-maily" -#: mfa/adapter.py:18 +#: mfa/adapter.py:19 msgid "" "You cannot activate two-factor authentication until you have verified your " "email address." msgstr "Nemůžete aktivovat dvoufaktorovou autentizaci, dokud nepotvrdíte svou" "e-mailovou adresu." -#: mfa/adapter.py:21 +#: mfa/adapter.py:22 msgid "" "You cannot add an email address to an account protected by two-factor " "authentication." msgstr "Nelze přidat e-mailovou adresu k účtu chráněnému dvoufaktorovou" "autentizací." -#: mfa/adapter.py:23 +#: mfa/adapter.py:24 msgid "Incorrect code." msgstr "Nesprávný kód." @@ -225,7 +225,7 @@ msgstr "Záchranné kódy" msgid "TOTP Authenticator" msgstr "TOTP Autentifikátor" -#: socialaccount/adapter.py:28 +#: socialaccount/adapter.py:30 #, python-format msgid "" "An account already exists with this email address. Please sign in to that " @@ -234,11 +234,11 @@ msgstr "" "Účet s touto e-mailovou adresou již existuje. Prosím přihlaste se nejdříve " "pod tímto účtem a potom připojte svůj %s účet." -#: socialaccount/adapter.py:132 +#: socialaccount/adapter.py:136 msgid "Your account has no password set up." msgstr "Váš účet nemá nastavené heslo." -#: socialaccount/adapter.py:139 +#: socialaccount/adapter.py:143 msgid "Your account has no verified email address." msgstr "Váš účet nemá žádný ověřený e-mail." @@ -246,95 +246,95 @@ msgstr "Váš účet nemá žádný ověřený e-mail." msgid "Social Accounts" msgstr "Účty sociálních sítí" -#: socialaccount/models.py:34 socialaccount/models.py:95 +#: socialaccount/models.py:36 socialaccount/models.py:97 msgid "provider" msgstr "poskytovatel" -#: socialaccount/models.py:43 +#: socialaccount/models.py:45 msgid "provider ID" msgstr "ID poskytovatele" -#: socialaccount/models.py:47 +#: socialaccount/models.py:49 msgid "name" msgstr "jméno" -#: socialaccount/models.py:49 +#: socialaccount/models.py:51 msgid "client id" msgstr "id klienta" -#: socialaccount/models.py:51 +#: socialaccount/models.py:53 msgid "App ID, or consumer key" msgstr "App ID nebo uživatelský klíč" -#: socialaccount/models.py:54 +#: socialaccount/models.py:56 msgid "secret key" msgstr "tajný klíč" -#: socialaccount/models.py:57 +#: socialaccount/models.py:59 msgid "API secret, client secret, or consumer secret" msgstr "tajný API klíč, tajný klientský klíč nebo uživatelský tajný klíč" -#: socialaccount/models.py:60 +#: socialaccount/models.py:62 msgid "Key" msgstr "Klíč" -#: socialaccount/models.py:79 +#: socialaccount/models.py:81 msgid "social application" msgstr "sociální aplikace" -#: socialaccount/models.py:80 +#: socialaccount/models.py:82 msgid "social applications" msgstr "sociální aplikace" -#: socialaccount/models.py:115 +#: socialaccount/models.py:117 msgid "uid" msgstr "uid" -#: socialaccount/models.py:117 +#: socialaccount/models.py:119 msgid "last login" msgstr "poslední přihlášení" -#: socialaccount/models.py:118 +#: socialaccount/models.py:120 msgid "date joined" msgstr "datum registrace" -#: socialaccount/models.py:119 +#: socialaccount/models.py:121 msgid "extra data" msgstr "extra data" -#: socialaccount/models.py:123 +#: socialaccount/models.py:125 msgid "social account" msgstr "účet sociální sítě" -#: socialaccount/models.py:124 +#: socialaccount/models.py:126 msgid "social accounts" msgstr "účty sociálních sítí" -#: socialaccount/models.py:158 +#: socialaccount/models.py:160 msgid "token" msgstr "token" -#: socialaccount/models.py:159 +#: socialaccount/models.py:161 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)" msgstr "\"oauth_token\" (OAuth1) nebo přístupový token (OAuth2)" -#: socialaccount/models.py:163 +#: socialaccount/models.py:165 msgid "token secret" msgstr "tajný token" -#: socialaccount/models.py:164 +#: socialaccount/models.py:166 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)" msgstr "\"oauth_token_secret\" (OAuth1) nebo token pro obnovu (OAuth2)" -#: socialaccount/models.py:167 +#: socialaccount/models.py:169 msgid "expires at" msgstr "vyprší" -#: socialaccount/models.py:172 +#: socialaccount/models.py:174 msgid "social application token" msgstr "token sociální aplikace" -#: socialaccount/models.py:173 +#: socialaccount/models.py:175 msgid "social application tokens" msgstr "tokeny sociálních aplikací" diff --git a/allauth/locale/da/LC_MESSAGES/django.po b/allauth/locale/da/LC_MESSAGES/django.po index 130c8ae800..2fcfbbef7e 100644 --- a/allauth/locale/da/LC_MESSAGES/django.po +++ b/allauth/locale/da/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-30 16:00-0500\n" +"POT-Creation-Date: 2023-09-07 04:22-0500\n" "PO-Revision-Date: 2018-09-03 16:04+0200\n" "Last-Translator: b'Tuk Bredsdorff '\n" "Language-Team: \n" @@ -18,27 +18,27 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 2.1.1\n" -#: account/adapter.py:47 +#: account/adapter.py:48 msgid "Username can not be used. Please use other username." msgstr "Brugernavn kan ikke bruges. Brug venligst et andet brugernavn." -#: account/adapter.py:53 +#: account/adapter.py:54 msgid "Too many failed login attempts. Try again later." msgstr "Der er for mange mislykkede logonforsøg. Prøv igen senere." -#: account/adapter.py:55 +#: account/adapter.py:56 #, fuzzy #| msgid "A user is already registered with this address." msgid "A user is already registered with this email address." msgstr "En bruger er allerede registreret med denne emailadresse." -#: account/adapter.py:56 +#: account/adapter.py:57 #, fuzzy #| msgid "Current Password" msgid "Incorrect password." msgstr "Nuværende adgangskode" -#: account/adapter.py:305 +#: account/adapter.py:308 #, python-brace-format msgid "Password must be a minimum of {0} characters." msgstr "Adgangskoden skal være på mindst {0} tegn." @@ -52,7 +52,7 @@ msgid "You must type the same password each time." msgstr "Du skal skrive den samme adgangskode hver gang." #: account/forms.py:90 account/forms.py:397 account/forms.py:522 -#: account/forms.py:660 +#: account/forms.py:658 msgid "Password" msgstr "Adgangskode" @@ -130,11 +130,11 @@ msgstr "Din konto har ikke nogen bekræftet emailadresse." msgid "Current Password" msgstr "Nuværende adgangskode" -#: account/forms.py:505 account/forms.py:609 +#: account/forms.py:505 account/forms.py:607 msgid "New Password" msgstr "Ny adgangskode" -#: account/forms.py:506 account/forms.py:610 +#: account/forms.py:506 account/forms.py:608 msgid "New Password (again)" msgstr "Ny adgangskode (igen)" @@ -146,7 +146,7 @@ msgstr "Indtast din nuværende adgangskode." msgid "The email address is not assigned to any user account" msgstr "Emailadressen er ikke tildelt til nogen brugerkonto" -#: account/forms.py:630 +#: account/forms.py:628 msgid "The password reset token was invalid." msgstr "Token for nulstilling af adgangskode var ugyldig." @@ -178,7 +178,7 @@ msgstr "oprettet" msgid "sent" msgstr "sendt" -#: account/models.py:143 socialaccount/models.py:60 +#: account/models.py:143 socialaccount/models.py:62 msgid "key" msgstr "nøgle" @@ -190,19 +190,19 @@ msgstr "emailbekræfelse" msgid "email confirmations" msgstr "emailbekræftelse" -#: mfa/adapter.py:18 +#: mfa/adapter.py:19 msgid "" "You cannot activate two-factor authentication until you have verified your " "email address." msgstr "" -#: mfa/adapter.py:21 +#: mfa/adapter.py:22 msgid "" "You cannot add an email address to an account protected by two-factor " "authentication." msgstr "" -#: mfa/adapter.py:23 +#: mfa/adapter.py:24 msgid "Incorrect code." msgstr "" @@ -226,7 +226,7 @@ msgstr "" msgid "TOTP Authenticator" msgstr "" -#: socialaccount/adapter.py:28 +#: socialaccount/adapter.py:30 #, fuzzy, python-format #| msgid "" #| "An account already exists with this e-mail address. Please sign in to " @@ -238,11 +238,11 @@ msgstr "" "En konto med denne emailadresse eksisterer allerede. Log venligst ind med " "den konto først og tilknyt din %s konto derefter." -#: socialaccount/adapter.py:132 +#: socialaccount/adapter.py:136 msgid "Your account has no password set up." msgstr "Der er ikke oprettet noget password til din konto." -#: socialaccount/adapter.py:139 +#: socialaccount/adapter.py:143 msgid "Your account has no verified email address." msgstr "Din konto har ikke nogen bekræftet emailadresse." @@ -250,97 +250,97 @@ msgstr "Din konto har ikke nogen bekræftet emailadresse." msgid "Social Accounts" msgstr "Sociale konti" -#: socialaccount/models.py:34 socialaccount/models.py:95 +#: socialaccount/models.py:36 socialaccount/models.py:97 msgid "provider" msgstr "udbyder" -#: socialaccount/models.py:43 +#: socialaccount/models.py:45 #, fuzzy #| msgid "provider" msgid "provider ID" msgstr "udbyder" -#: socialaccount/models.py:47 +#: socialaccount/models.py:49 msgid "name" msgstr "navn" -#: socialaccount/models.py:49 +#: socialaccount/models.py:51 msgid "client id" msgstr "klient id" -#: socialaccount/models.py:51 +#: socialaccount/models.py:53 msgid "App ID, or consumer key" msgstr "App ID, eller konsumer nøgle" -#: socialaccount/models.py:54 +#: socialaccount/models.py:56 msgid "secret key" msgstr "hemmelig nøgle" -#: socialaccount/models.py:57 +#: socialaccount/models.py:59 msgid "API secret, client secret, or consumer secret" msgstr "API hemmelighed, klient hemmelighed eller konsumet hemmelighed" -#: socialaccount/models.py:60 +#: socialaccount/models.py:62 msgid "Key" msgstr "Nøgle" -#: socialaccount/models.py:79 +#: socialaccount/models.py:81 msgid "social application" msgstr "social applikation" -#: socialaccount/models.py:80 +#: socialaccount/models.py:82 msgid "social applications" msgstr "sociale applikationer" -#: socialaccount/models.py:115 +#: socialaccount/models.py:117 msgid "uid" msgstr "uid" -#: socialaccount/models.py:117 +#: socialaccount/models.py:119 msgid "last login" msgstr "sidste log ind" -#: socialaccount/models.py:118 +#: socialaccount/models.py:120 msgid "date joined" msgstr "dato oprettet" -#: socialaccount/models.py:119 +#: socialaccount/models.py:121 msgid "extra data" msgstr "ekstra data" -#: socialaccount/models.py:123 +#: socialaccount/models.py:125 msgid "social account" msgstr "social konto" -#: socialaccount/models.py:124 +#: socialaccount/models.py:126 msgid "social accounts" msgstr "sociale konti" -#: socialaccount/models.py:158 +#: socialaccount/models.py:160 msgid "token" msgstr "token" -#: socialaccount/models.py:159 +#: socialaccount/models.py:161 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)" msgstr "“oauth_token” (OAuth1) eller adgangstoken (OAuth2)" -#: socialaccount/models.py:163 +#: socialaccount/models.py:165 msgid "token secret" msgstr "token hemmelighed" -#: socialaccount/models.py:164 +#: socialaccount/models.py:166 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)" msgstr "“oauth_token_secret” (OAuth1) eller fornyelsestoken (OAuth2)" -#: socialaccount/models.py:167 +#: socialaccount/models.py:169 msgid "expires at" msgstr "udløber den" -#: socialaccount/models.py:172 +#: socialaccount/models.py:174 msgid "social application token" msgstr "socialt applikationstoken" -#: socialaccount/models.py:173 +#: socialaccount/models.py:175 msgid "social application tokens" msgstr "sociale applikationstokener" diff --git a/allauth/locale/de/LC_MESSAGES/django.po b/allauth/locale/de/LC_MESSAGES/django.po index bbd84a6d61..baa5ffcf94 100644 --- a/allauth/locale/de/LC_MESSAGES/django.po +++ b/allauth/locale/de/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: django-allauth\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-30 16:00-0500\n" +"POT-Creation-Date: 2023-09-07 04:22-0500\n" "PO-Revision-Date: 2020-10-15 19:48+0200\n" "Last-Translator: Jannis Vajen \n" "Language-Team: German (http://www.transifex.com/projects/p/django-allauth/" @@ -20,27 +20,27 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 2.2.1\n" -#: account/adapter.py:47 +#: account/adapter.py:48 msgid "Username can not be used. Please use other username." msgstr "" "Anmeldename kann nicht verwendet werden. Bitte wähle einen anderen Namen." -#: account/adapter.py:53 +#: account/adapter.py:54 msgid "Too many failed login attempts. Try again later." msgstr "" "Zu viele gescheiterte Anmeldeversuche. Bitte versuche es später erneut." -#: account/adapter.py:55 +#: account/adapter.py:56 msgid "A user is already registered with this email address." msgstr "Es ist bereits jemand mit dieser E-Mail-Adresse registriert." -#: account/adapter.py:56 +#: account/adapter.py:57 #, fuzzy #| msgid "Current Password" msgid "Incorrect password." msgstr "Aktuelles Passwort" -#: account/adapter.py:305 +#: account/adapter.py:308 #, python-brace-format msgid "Password must be a minimum of {0} characters." msgstr "Das Passwort muss aus mindestens {0} Zeichen bestehen." @@ -54,7 +54,7 @@ msgid "You must type the same password each time." msgstr "Du musst zweimal das selbe Passwort eingeben." #: account/forms.py:90 account/forms.py:397 account/forms.py:522 -#: account/forms.py:660 +#: account/forms.py:658 msgid "Password" msgstr "Passwort" @@ -131,11 +131,11 @@ msgstr "Du kannst nicht mehr als %d E-Mail-Adressen hinzufügen." msgid "Current Password" msgstr "Aktuelles Passwort" -#: account/forms.py:505 account/forms.py:609 +#: account/forms.py:505 account/forms.py:607 msgid "New Password" msgstr "Neues Passwort" -#: account/forms.py:506 account/forms.py:610 +#: account/forms.py:506 account/forms.py:608 msgid "New Password (again)" msgstr "Neues Passwort (Wiederholung)" @@ -147,7 +147,7 @@ msgstr "Bitte gib dein aktuelles Passwort ein." msgid "The email address is not assigned to any user account" msgstr "Diese E-Mail-Adresse ist keinem Konto zugeordnet" -#: account/forms.py:630 +#: account/forms.py:628 msgid "The password reset token was invalid." msgstr "Das Sicherheits-Token zum Zurücksetzen des Passwortes war ungültig." @@ -179,7 +179,7 @@ msgstr "Erstellt" msgid "sent" msgstr "Gesendet" -#: account/models.py:143 socialaccount/models.py:60 +#: account/models.py:143 socialaccount/models.py:62 msgid "key" msgstr "Schlüssel" @@ -191,19 +191,19 @@ msgstr "E-Mail-Bestätigung" msgid "email confirmations" msgstr "E-Mail-Bestätigungen" -#: mfa/adapter.py:18 +#: mfa/adapter.py:19 msgid "" "You cannot activate two-factor authentication until you have verified your " "email address." msgstr "" -#: mfa/adapter.py:21 +#: mfa/adapter.py:22 msgid "" "You cannot add an email address to an account protected by two-factor " "authentication." msgstr "" -#: mfa/adapter.py:23 +#: mfa/adapter.py:24 msgid "Incorrect code." msgstr "" @@ -227,7 +227,7 @@ msgstr "" msgid "TOTP Authenticator" msgstr "" -#: socialaccount/adapter.py:28 +#: socialaccount/adapter.py:30 #, fuzzy, python-format #| msgid "" #| "An account already exists with this e-mail address. Please sign in to " @@ -239,11 +239,11 @@ msgstr "" "Es existiert bereits ein Konto mit dieser E-Mail-Adresse. Bitte melde dich " "zuerst mit diesem Konto an, und verknüpfe es dann mit deinem %s-Konto." -#: socialaccount/adapter.py:132 +#: socialaccount/adapter.py:136 msgid "Your account has no password set up." msgstr "Für dein Konto wurde noch kein Passwort festgelegt." -#: socialaccount/adapter.py:139 +#: socialaccount/adapter.py:143 msgid "Your account has no verified email address." msgstr "Dein Konto hat keine bestätigte E-Mail-Adresse." @@ -251,97 +251,97 @@ msgstr "Dein Konto hat keine bestätigte E-Mail-Adresse." msgid "Social Accounts" msgstr "Konto" -#: socialaccount/models.py:34 socialaccount/models.py:95 +#: socialaccount/models.py:36 socialaccount/models.py:97 msgid "provider" msgstr "Anbieter" -#: socialaccount/models.py:43 +#: socialaccount/models.py:45 #, fuzzy #| msgid "provider" msgid "provider ID" msgstr "Anbieter" -#: socialaccount/models.py:47 +#: socialaccount/models.py:49 msgid "name" msgstr "Anmeldename" -#: socialaccount/models.py:49 +#: socialaccount/models.py:51 msgid "client id" msgstr "Client-ID" -#: socialaccount/models.py:51 +#: socialaccount/models.py:53 msgid "App ID, or consumer key" msgstr "App-ID oder 'Consumer key'" -#: socialaccount/models.py:54 +#: socialaccount/models.py:56 msgid "secret key" msgstr "Geheimer Schlüssel" -#: socialaccount/models.py:57 +#: socialaccount/models.py:59 msgid "API secret, client secret, or consumer secret" msgstr "'API secret', 'client secret' oder 'consumer secret'" -#: socialaccount/models.py:60 +#: socialaccount/models.py:62 msgid "Key" msgstr "Schlüssel" -#: socialaccount/models.py:79 +#: socialaccount/models.py:81 msgid "social application" msgstr "Soziale Anwendung" -#: socialaccount/models.py:80 +#: socialaccount/models.py:82 msgid "social applications" msgstr "Soziale Anwendungen" -#: socialaccount/models.py:115 +#: socialaccount/models.py:117 msgid "uid" msgstr "UID" -#: socialaccount/models.py:117 +#: socialaccount/models.py:119 msgid "last login" msgstr "Letzte Anmeldung" -#: socialaccount/models.py:118 +#: socialaccount/models.py:120 msgid "date joined" msgstr "Registrierdatum" -#: socialaccount/models.py:119 +#: socialaccount/models.py:121 msgid "extra data" msgstr "Weitere Daten" -#: socialaccount/models.py:123 +#: socialaccount/models.py:125 msgid "social account" msgstr "Soziales Konto" -#: socialaccount/models.py:124 +#: socialaccount/models.py:126 msgid "social accounts" msgstr "Soziale Konten" -#: socialaccount/models.py:158 +#: socialaccount/models.py:160 msgid "token" msgstr "Token" -#: socialaccount/models.py:159 +#: socialaccount/models.py:161 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)" msgstr "\"oauth_token\" (OAuth1) oder \"access token\" (OAuth2)" -#: socialaccount/models.py:163 +#: socialaccount/models.py:165 msgid "token secret" msgstr "Geheimes Token" -#: socialaccount/models.py:164 +#: socialaccount/models.py:166 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)" msgstr "\"oauth_token_secret\" (OAuth1) oder \"refresh token\" (OAuth2)" -#: socialaccount/models.py:167 +#: socialaccount/models.py:169 msgid "expires at" msgstr "Läuft ab" -#: socialaccount/models.py:172 +#: socialaccount/models.py:174 msgid "social application token" msgstr "Token für soziale Anwendung" -#: socialaccount/models.py:173 +#: socialaccount/models.py:175 msgid "social application tokens" msgstr "Tokens für soziale Anwendungen" diff --git a/allauth/locale/el/LC_MESSAGES/django.po b/allauth/locale/el/LC_MESSAGES/django.po index 14c6c78490..f48a912d1c 100644 --- a/allauth/locale/el/LC_MESSAGES/django.po +++ b/allauth/locale/el/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-30 16:00-0500\n" +"POT-Creation-Date: 2023-09-07 04:22-0500\n" "PO-Revision-Date: 2014-08-12 00:29+0200\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,25 +18,25 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: account/adapter.py:47 +#: account/adapter.py:48 msgid "Username can not be used. Please use other username." msgstr "Δεν μπορεί να χρησιμοποιηθεί αυτό το όνομα χρήστη. Δοκιμάστε άλλο." -#: account/adapter.py:53 +#: account/adapter.py:54 msgid "Too many failed login attempts. Try again later." msgstr "Πολλές αποτυχημένες προσπάθειες σύνδεσης. Προσπαθήστε ξανά αργότερα." -#: account/adapter.py:55 +#: account/adapter.py:56 msgid "A user is already registered with this email address." msgstr "Υπάρχει ήδη εγγεγραμμένος χρήστης με αυτό το e-mail." -#: account/adapter.py:56 +#: account/adapter.py:57 #, fuzzy #| msgid "Current Password" msgid "Incorrect password." msgstr "Τρέχον συνθηματικό" -#: account/adapter.py:305 +#: account/adapter.py:308 #, python-brace-format msgid "Password must be a minimum of {0} characters." msgstr "Το συνθηματικό πρέπει να περιέχει τουλάχιστον {0} χαρακτήρες." @@ -50,7 +50,7 @@ msgid "You must type the same password each time." msgstr "Πρέπει να δοθεί το ίδιο συνθηματικό κάθε φορά." #: account/forms.py:90 account/forms.py:397 account/forms.py:522 -#: account/forms.py:660 +#: account/forms.py:658 msgid "Password" msgstr "Συνθηματικό" @@ -134,11 +134,11 @@ msgstr "Δεν έχει επιβεβαιωθεί κανένα e-mail του λο msgid "Current Password" msgstr "Τρέχον συνθηματικό" -#: account/forms.py:505 account/forms.py:609 +#: account/forms.py:505 account/forms.py:607 msgid "New Password" msgstr "Νέο συνθηματικό" -#: account/forms.py:506 account/forms.py:610 +#: account/forms.py:506 account/forms.py:608 msgid "New Password (again)" msgstr "Νέο συνθηματικό (επιβεβαίωση)" @@ -150,7 +150,7 @@ msgstr "Παρακαλώ γράψτε το τρέχον συνθηματικό msgid "The email address is not assigned to any user account" msgstr "Το e-mail δεν χρησιμοποιείται από κανέναν λογαριασμό" -#: account/forms.py:630 +#: account/forms.py:628 msgid "The password reset token was invalid." msgstr "Το κουπόνι επαναφοράς του συνθηματικού δεν ήταν έγκυρο." @@ -182,7 +182,7 @@ msgstr "δημιουργήθηκε" msgid "sent" msgstr "απστάλει" -#: account/models.py:143 socialaccount/models.py:60 +#: account/models.py:143 socialaccount/models.py:62 msgid "key" msgstr "κλειδί" @@ -194,19 +194,19 @@ msgstr "e-mail επιβεβαίωσης" msgid "email confirmations" msgstr "e-mail επιβεβαίωσης" -#: mfa/adapter.py:18 +#: mfa/adapter.py:19 msgid "" "You cannot activate two-factor authentication until you have verified your " "email address." msgstr "" -#: mfa/adapter.py:21 +#: mfa/adapter.py:22 msgid "" "You cannot add an email address to an account protected by two-factor " "authentication." msgstr "" -#: mfa/adapter.py:23 +#: mfa/adapter.py:24 msgid "Incorrect code." msgstr "" @@ -230,7 +230,7 @@ msgstr "" msgid "TOTP Authenticator" msgstr "" -#: socialaccount/adapter.py:28 +#: socialaccount/adapter.py:30 #, fuzzy, python-format #| msgid "" #| "An account already exists with this e-mail address. Please sign in to " @@ -242,11 +242,11 @@ msgstr "" "Υπάρχει ήδη ένας λογαριασμός με αυτό το e-mail. Συνδεθείτε πρώτα με αυτόνκαι " "μετά συνδέστε τον λογαριασμό %s." -#: socialaccount/adapter.py:132 +#: socialaccount/adapter.py:136 msgid "Your account has no password set up." msgstr "Δεν έχει οριστεί συνθηματικό στον λογαριασμό σας." -#: socialaccount/adapter.py:139 +#: socialaccount/adapter.py:143 msgid "Your account has no verified email address." msgstr "Δεν έχει επιβεβαιωθεί κανένα e-mail του λογαριασμού σας." @@ -254,97 +254,97 @@ msgstr "Δεν έχει επιβεβαιωθεί κανένα e-mail του λο msgid "Social Accounts" msgstr "Λογαριασμοί Κοινωνικών Μέσων" -#: socialaccount/models.py:34 socialaccount/models.py:95 +#: socialaccount/models.py:36 socialaccount/models.py:97 msgid "provider" msgstr "πάροχος" -#: socialaccount/models.py:43 +#: socialaccount/models.py:45 #, fuzzy #| msgid "provider" msgid "provider ID" msgstr "πάροχος" -#: socialaccount/models.py:47 +#: socialaccount/models.py:49 msgid "name" msgstr "όνομα" -#: socialaccount/models.py:49 +#: socialaccount/models.py:51 msgid "client id" msgstr "id πελάτη" -#: socialaccount/models.py:51 +#: socialaccount/models.py:53 msgid "App ID, or consumer key" msgstr "App ID ή consumer key(κλειδί καταναλωτή)" -#: socialaccount/models.py:54 +#: socialaccount/models.py:56 msgid "secret key" msgstr "μυστικό κλειδί" -#: socialaccount/models.py:57 +#: socialaccount/models.py:59 msgid "API secret, client secret, or consumer secret" msgstr "API secret, client secret, ή consumer secret" -#: socialaccount/models.py:60 +#: socialaccount/models.py:62 msgid "Key" msgstr "Κλειδί" -#: socialaccount/models.py:79 +#: socialaccount/models.py:81 msgid "social application" msgstr "εφαρμογή κοινωνικών μέσων" -#: socialaccount/models.py:80 +#: socialaccount/models.py:82 msgid "social applications" msgstr "εφαρμογές κοινωνικών μέσων" -#: socialaccount/models.py:115 +#: socialaccount/models.py:117 msgid "uid" msgstr "uid" -#: socialaccount/models.py:117 +#: socialaccount/models.py:119 msgid "last login" msgstr "τελευταία σύνδεση" -#: socialaccount/models.py:118 +#: socialaccount/models.py:120 msgid "date joined" msgstr "ημερομηνία εγγραφής" -#: socialaccount/models.py:119 +#: socialaccount/models.py:121 msgid "extra data" msgstr "έξτρα δεδομένα" -#: socialaccount/models.py:123 +#: socialaccount/models.py:125 msgid "social account" msgstr "λογαριασμός κοινωνικών μέσων" -#: socialaccount/models.py:124 +#: socialaccount/models.py:126 msgid "social accounts" msgstr "λογαριασμοί κοινωνικών μέσων" -#: socialaccount/models.py:158 +#: socialaccount/models.py:160 msgid "token" msgstr "κουπόνι" -#: socialaccount/models.py:159 +#: socialaccount/models.py:161 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)" msgstr "\"oauth_token\" (OAuth1) ή access token (OAuth2)" -#: socialaccount/models.py:163 +#: socialaccount/models.py:165 msgid "token secret" msgstr "token secret" -#: socialaccount/models.py:164 +#: socialaccount/models.py:166 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)" msgstr "\"oauth_token_secret\" (OAuth1) ή refresh token (OAuth2)" -#: socialaccount/models.py:167 +#: socialaccount/models.py:169 msgid "expires at" msgstr "λήγει στις" -#: socialaccount/models.py:172 +#: socialaccount/models.py:174 msgid "social application token" msgstr "token (κουπόνι) εφαρμογής κοινωνικών μέσων" -#: socialaccount/models.py:173 +#: socialaccount/models.py:175 msgid "social application tokens" msgstr "tokens (κουπόνια) εφαρμογής κοινωνικών μέσων" diff --git a/allauth/locale/en/LC_MESSAGES/django.po b/allauth/locale/en/LC_MESSAGES/django.po index 97bf99201c..40234dc71a 100644 --- a/allauth/locale/en/LC_MESSAGES/django.po +++ b/allauth/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-30 16:00-0500\n" +"POT-Creation-Date: 2023-09-07 04:22-0500\n" "PO-Revision-Date: 2023-07-24 22:28+0200\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,23 +18,23 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: account/adapter.py:47 +#: account/adapter.py:48 msgid "Username can not be used. Please use other username." msgstr "" -#: account/adapter.py:53 +#: account/adapter.py:54 msgid "Too many failed login attempts. Try again later." msgstr "" -#: account/adapter.py:55 +#: account/adapter.py:56 msgid "A user is already registered with this email address." msgstr "" -#: account/adapter.py:56 +#: account/adapter.py:57 msgid "Incorrect password." msgstr "" -#: account/adapter.py:305 +#: account/adapter.py:308 #, python-brace-format msgid "Password must be a minimum of {0} characters." msgstr "" @@ -48,7 +48,7 @@ msgid "You must type the same password each time." msgstr "" #: account/forms.py:90 account/forms.py:397 account/forms.py:522 -#: account/forms.py:660 +#: account/forms.py:658 msgid "Password" msgstr "" @@ -125,11 +125,11 @@ msgstr "" msgid "Current Password" msgstr "" -#: account/forms.py:505 account/forms.py:609 +#: account/forms.py:505 account/forms.py:607 msgid "New Password" msgstr "" -#: account/forms.py:506 account/forms.py:610 +#: account/forms.py:506 account/forms.py:608 msgid "New Password (again)" msgstr "" @@ -141,7 +141,7 @@ msgstr "" msgid "The email address is not assigned to any user account" msgstr "" -#: account/forms.py:630 +#: account/forms.py:628 msgid "The password reset token was invalid." msgstr "" @@ -173,7 +173,7 @@ msgstr "" msgid "sent" msgstr "" -#: account/models.py:143 socialaccount/models.py:60 +#: account/models.py:143 socialaccount/models.py:62 msgid "key" msgstr "" @@ -185,19 +185,19 @@ msgstr "" msgid "email confirmations" msgstr "" -#: mfa/adapter.py:18 +#: mfa/adapter.py:19 msgid "" "You cannot activate two-factor authentication until you have verified your " "email address." msgstr "" -#: mfa/adapter.py:21 +#: mfa/adapter.py:22 msgid "" "You cannot add an email address to an account protected by two-factor " "authentication." msgstr "" -#: mfa/adapter.py:23 +#: mfa/adapter.py:24 msgid "Incorrect code." msgstr "" @@ -221,18 +221,18 @@ msgstr "" msgid "TOTP Authenticator" msgstr "" -#: socialaccount/adapter.py:28 +#: socialaccount/adapter.py:30 #, python-format msgid "" "An account already exists with this email address. Please sign in to that " "account first, then connect your %s account." msgstr "" -#: socialaccount/adapter.py:132 +#: socialaccount/adapter.py:136 msgid "Your account has no password set up." msgstr "" -#: socialaccount/adapter.py:139 +#: socialaccount/adapter.py:143 msgid "Your account has no verified email address." msgstr "" @@ -240,95 +240,95 @@ msgstr "" msgid "Social Accounts" msgstr "" -#: socialaccount/models.py:34 socialaccount/models.py:95 +#: socialaccount/models.py:36 socialaccount/models.py:97 msgid "provider" msgstr "" -#: socialaccount/models.py:43 +#: socialaccount/models.py:45 msgid "provider ID" msgstr "" -#: socialaccount/models.py:47 +#: socialaccount/models.py:49 msgid "name" msgstr "" -#: socialaccount/models.py:49 +#: socialaccount/models.py:51 msgid "client id" msgstr "" -#: socialaccount/models.py:51 +#: socialaccount/models.py:53 msgid "App ID, or consumer key" msgstr "" -#: socialaccount/models.py:54 +#: socialaccount/models.py:56 msgid "secret key" msgstr "" -#: socialaccount/models.py:57 +#: socialaccount/models.py:59 msgid "API secret, client secret, or consumer secret" msgstr "" -#: socialaccount/models.py:60 +#: socialaccount/models.py:62 msgid "Key" msgstr "" -#: socialaccount/models.py:79 +#: socialaccount/models.py:81 msgid "social application" msgstr "" -#: socialaccount/models.py:80 +#: socialaccount/models.py:82 msgid "social applications" msgstr "" -#: socialaccount/models.py:115 +#: socialaccount/models.py:117 msgid "uid" msgstr "" -#: socialaccount/models.py:117 +#: socialaccount/models.py:119 msgid "last login" msgstr "" -#: socialaccount/models.py:118 +#: socialaccount/models.py:120 msgid "date joined" msgstr "" -#: socialaccount/models.py:119 +#: socialaccount/models.py:121 msgid "extra data" msgstr "" -#: socialaccount/models.py:123 +#: socialaccount/models.py:125 msgid "social account" msgstr "" -#: socialaccount/models.py:124 +#: socialaccount/models.py:126 msgid "social accounts" msgstr "" -#: socialaccount/models.py:158 +#: socialaccount/models.py:160 msgid "token" msgstr "" -#: socialaccount/models.py:159 +#: socialaccount/models.py:161 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)" msgstr "" -#: socialaccount/models.py:163 +#: socialaccount/models.py:165 msgid "token secret" msgstr "" -#: socialaccount/models.py:164 +#: socialaccount/models.py:166 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)" msgstr "" -#: socialaccount/models.py:167 +#: socialaccount/models.py:169 msgid "expires at" msgstr "" -#: socialaccount/models.py:172 +#: socialaccount/models.py:174 msgid "social application token" msgstr "" -#: socialaccount/models.py:173 +#: socialaccount/models.py:175 msgid "social application tokens" msgstr "" diff --git a/allauth/locale/es/LC_MESSAGES/django.po b/allauth/locale/es/LC_MESSAGES/django.po index 50b4664564..88d1fc66a0 100644 --- a/allauth/locale/es/LC_MESSAGES/django.po +++ b/allauth/locale/es/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: django-allauth\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-30 16:00-0500\n" +"POT-Creation-Date: 2023-09-07 04:22-0500\n" "PO-Revision-Date: 2018-02-14 17:46-0600\n" "Last-Translator: Jannis Š\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/django-allauth/" @@ -19,26 +19,26 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 1.8.7.1\n" -#: account/adapter.py:47 +#: account/adapter.py:48 msgid "Username can not be used. Please use other username." msgstr "Este nombre de usuario no puede ser usado. Por favor utilice otro." -#: account/adapter.py:53 +#: account/adapter.py:54 msgid "Too many failed login attempts. Try again later." msgstr "Demasiados intentos fallidos, inténtelo más tarde." -#: account/adapter.py:55 +#: account/adapter.py:56 msgid "A user is already registered with this email address." msgstr "" "Un usuario ya ha sido registrado con esta dirección de correo electrónico." -#: account/adapter.py:56 +#: account/adapter.py:57 #, fuzzy #| msgid "Current Password" msgid "Incorrect password." msgstr "Contraseña actual" -#: account/adapter.py:305 +#: account/adapter.py:308 #, python-brace-format msgid "Password must be a minimum of {0} characters." msgstr "La contraseña necesita al menos {0} caracteres." @@ -52,7 +52,7 @@ msgid "You must type the same password each time." msgstr "Debe escribir la misma contraseña cada vez." #: account/forms.py:90 account/forms.py:397 account/forms.py:522 -#: account/forms.py:660 +#: account/forms.py:658 msgid "Password" msgstr "Contraseña" @@ -132,11 +132,11 @@ msgstr "No se pueden añadir más de %d direcciones de correo electrónico." msgid "Current Password" msgstr "Contraseña actual" -#: account/forms.py:505 account/forms.py:609 +#: account/forms.py:505 account/forms.py:607 msgid "New Password" msgstr "Nueva contraseña" -#: account/forms.py:506 account/forms.py:610 +#: account/forms.py:506 account/forms.py:608 msgid "New Password (again)" msgstr "Nueva contraseña (de nuevo)" @@ -148,7 +148,7 @@ msgstr "Por favor, escriba su contraseña actual." msgid "The email address is not assigned to any user account" msgstr "El correo electrónico no está asignado a ninguna cuenta de usuario" -#: account/forms.py:630 +#: account/forms.py:628 msgid "The password reset token was invalid." msgstr "El token para restablecer la contraseña no es válido" @@ -180,7 +180,7 @@ msgstr "creado" msgid "sent" msgstr "enviado" -#: account/models.py:143 socialaccount/models.py:60 +#: account/models.py:143 socialaccount/models.py:62 msgid "key" msgstr "clave" @@ -192,19 +192,19 @@ msgstr "confirmación de correo electrónico" msgid "email confirmations" msgstr "confirmaciones de correo electrónico" -#: mfa/adapter.py:18 +#: mfa/adapter.py:19 msgid "" "You cannot activate two-factor authentication until you have verified your " "email address." msgstr "" -#: mfa/adapter.py:21 +#: mfa/adapter.py:22 msgid "" "You cannot add an email address to an account protected by two-factor " "authentication." msgstr "" -#: mfa/adapter.py:23 +#: mfa/adapter.py:24 msgid "Incorrect code." msgstr "" @@ -228,7 +228,7 @@ msgstr "" msgid "TOTP Authenticator" msgstr "" -#: socialaccount/adapter.py:28 +#: socialaccount/adapter.py:30 #, fuzzy, python-format #| msgid "" #| "An account already exists with this e-mail address. Please sign in to " @@ -240,11 +240,11 @@ msgstr "" "Ya existe una cuenta asociada a esta dirección de correo electrónico. Por " "favor, primero identifíquese usando esa cuenta, y luego vincule su cuenta %s." -#: socialaccount/adapter.py:132 +#: socialaccount/adapter.py:136 msgid "Your account has no password set up." msgstr "Su cuenta no tiene una contraseña definida." -#: socialaccount/adapter.py:139 +#: socialaccount/adapter.py:143 msgid "Your account has no verified email address." msgstr "Su cuenta no tiene un correo electrónico verificado." @@ -252,98 +252,98 @@ msgstr "Su cuenta no tiene un correo electrónico verificado." msgid "Social Accounts" msgstr "Cuentas de redes sociales" -#: socialaccount/models.py:34 socialaccount/models.py:95 +#: socialaccount/models.py:36 socialaccount/models.py:97 msgid "provider" msgstr "proveedor" -#: socialaccount/models.py:43 +#: socialaccount/models.py:45 #, fuzzy #| msgid "provider" msgid "provider ID" msgstr "proveedor" -#: socialaccount/models.py:47 +#: socialaccount/models.py:49 msgid "name" msgstr "nombre" -#: socialaccount/models.py:49 +#: socialaccount/models.py:51 msgid "client id" msgstr "identificador cliente" -#: socialaccount/models.py:51 +#: socialaccount/models.py:53 msgid "App ID, or consumer key" msgstr "Identificador de App o clave de consumidor" -#: socialaccount/models.py:54 +#: socialaccount/models.py:56 msgid "secret key" msgstr "clave secreta" -#: socialaccount/models.py:57 +#: socialaccount/models.py:59 msgid "API secret, client secret, or consumer secret" msgstr "" "frase secreta de API, frase secreta cliente o frase secreta de consumidor" -#: socialaccount/models.py:60 +#: socialaccount/models.py:62 msgid "Key" msgstr "clave" -#: socialaccount/models.py:79 +#: socialaccount/models.py:81 msgid "social application" msgstr "aplicación de redes sociales" -#: socialaccount/models.py:80 +#: socialaccount/models.py:82 msgid "social applications" msgstr "aplicaciones de redes sociales" -#: socialaccount/models.py:115 +#: socialaccount/models.py:117 msgid "uid" msgstr "" -#: socialaccount/models.py:117 +#: socialaccount/models.py:119 msgid "last login" msgstr "último inicio de sesión" -#: socialaccount/models.py:118 +#: socialaccount/models.py:120 msgid "date joined" msgstr "fecha de incorporación" -#: socialaccount/models.py:119 +#: socialaccount/models.py:121 msgid "extra data" msgstr "datos extra" -#: socialaccount/models.py:123 +#: socialaccount/models.py:125 msgid "social account" msgstr "cuenta de redes sociales" -#: socialaccount/models.py:124 +#: socialaccount/models.py:126 msgid "social accounts" msgstr "cuentas de redes sociales" -#: socialaccount/models.py:158 +#: socialaccount/models.py:160 msgid "token" msgstr "" -#: socialaccount/models.py:159 +#: socialaccount/models.py:161 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)" msgstr "\"oauth_token\" (OAuth1) o token de acceso (OAuth2)" -#: socialaccount/models.py:163 +#: socialaccount/models.py:165 msgid "token secret" msgstr "frase secreta de token" -#: socialaccount/models.py:164 +#: socialaccount/models.py:166 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)" msgstr "\"oauth_token_secret\" (OAuth1) o token de refresco (OAuth2)" -#: socialaccount/models.py:167 +#: socialaccount/models.py:169 msgid "expires at" msgstr "expira el" -#: socialaccount/models.py:172 +#: socialaccount/models.py:174 msgid "social application token" msgstr "token de aplicación de redes sociales" -#: socialaccount/models.py:173 +#: socialaccount/models.py:175 msgid "social application tokens" msgstr "tokens de aplicación de redes sociales" diff --git a/allauth/locale/eu/LC_MESSAGES/django.po b/allauth/locale/eu/LC_MESSAGES/django.po index a48034ed22..83c7e6932e 100644 --- a/allauth/locale/eu/LC_MESSAGES/django.po +++ b/allauth/locale/eu/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: django-allauth\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-30 16:00-0500\n" +"POT-Creation-Date: 2023-09-07 04:22-0500\n" "PO-Revision-Date: 2018-08-29 08:16+0200\n" "Last-Translator: Eneko Illarramendi \n" "Language-Team: Basque \n" @@ -18,27 +18,27 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 2.1.1\n" -#: account/adapter.py:47 +#: account/adapter.py:48 msgid "Username can not be used. Please use other username." msgstr "" "Erabiltzaile izen hau ezin da erabili. Aukeratu beste erabiltzaile izen bat." -#: account/adapter.py:53 +#: account/adapter.py:54 msgid "Too many failed login attempts. Try again later." msgstr "Huts egite gehiegi saioa hasterakoan. Saiatu berriro beranduago." -#: account/adapter.py:55 +#: account/adapter.py:56 msgid "A user is already registered with this email address." msgstr "" "Erabiltzaile batek kontu bat sortu du iada helbide elektroniko honekin." -#: account/adapter.py:56 +#: account/adapter.py:57 #, fuzzy #| msgid "Current Password" msgid "Incorrect password." msgstr "Oraingo pasahitza" -#: account/adapter.py:305 +#: account/adapter.py:308 #, python-brace-format msgid "Password must be a minimum of {0} characters." msgstr "Pasahitzak gutxienez {0} karaktere izan behar ditu." @@ -52,7 +52,7 @@ msgid "You must type the same password each time." msgstr "Pasahitz berdina idatzi behar duzu aldi bakoitzean." #: account/forms.py:90 account/forms.py:397 account/forms.py:522 -#: account/forms.py:660 +#: account/forms.py:658 msgid "Password" msgstr "Pasahitza" @@ -129,11 +129,11 @@ msgstr "Ezin dituzu %d email helbide baino gehiago erabili." msgid "Current Password" msgstr "Oraingo pasahitza" -#: account/forms.py:505 account/forms.py:609 +#: account/forms.py:505 account/forms.py:607 msgid "New Password" msgstr "Pasahitz berria" -#: account/forms.py:506 account/forms.py:610 +#: account/forms.py:506 account/forms.py:608 msgid "New Password (again)" msgstr "Pasahitz berria (berriro)" @@ -145,7 +145,7 @@ msgstr "Mesedez idatzi zure oraingo pasahitza." msgid "The email address is not assigned to any user account" msgstr "Helbide elektroniko hau ez dago kontu bati lotuta" -#: account/forms.py:630 +#: account/forms.py:628 msgid "The password reset token was invalid." msgstr "Pasahitza berrezartzeko \"token\"-a baliogabea da." @@ -177,7 +177,7 @@ msgstr "sortuta" msgid "sent" msgstr "bidalita" -#: account/models.py:143 socialaccount/models.py:60 +#: account/models.py:143 socialaccount/models.py:62 msgid "key" msgstr "giltza" @@ -189,19 +189,19 @@ msgstr "email egiaztapena" msgid "email confirmations" msgstr "email egiaztapenak" -#: mfa/adapter.py:18 +#: mfa/adapter.py:19 msgid "" "You cannot activate two-factor authentication until you have verified your " "email address." msgstr "" -#: mfa/adapter.py:21 +#: mfa/adapter.py:22 msgid "" "You cannot add an email address to an account protected by two-factor " "authentication." msgstr "" -#: mfa/adapter.py:23 +#: mfa/adapter.py:24 msgid "Incorrect code." msgstr "" @@ -225,7 +225,7 @@ msgstr "" msgid "TOTP Authenticator" msgstr "" -#: socialaccount/adapter.py:28 +#: socialaccount/adapter.py:30 #, fuzzy, python-format #| msgid "" #| "An account already exists with this e-mail address. Please sign in to " @@ -237,11 +237,11 @@ msgstr "" "Kontu bat sortu da iada helbide elektroniko honekin. Mesedez hasi saio berri " "bat kontu honekin eta gero zure %s kontua honi lotu." -#: socialaccount/adapter.py:132 +#: socialaccount/adapter.py:136 msgid "Your account has no password set up." msgstr "Zure kontuak ez du pasahitzik zehaztuta." -#: socialaccount/adapter.py:139 +#: socialaccount/adapter.py:143 msgid "Your account has no verified email address." msgstr "Zure kontuak ez du egiaztatutako emailik." @@ -249,97 +249,97 @@ msgstr "Zure kontuak ez du egiaztatutako emailik." msgid "Social Accounts" msgstr "Sare sozial kontuak" -#: socialaccount/models.py:34 socialaccount/models.py:95 +#: socialaccount/models.py:36 socialaccount/models.py:97 msgid "provider" msgstr "zerbitzua" -#: socialaccount/models.py:43 +#: socialaccount/models.py:45 #, fuzzy #| msgid "provider" msgid "provider ID" msgstr "zerbitzua" -#: socialaccount/models.py:47 +#: socialaccount/models.py:49 msgid "name" msgstr "izena" -#: socialaccount/models.py:49 +#: socialaccount/models.py:51 msgid "client id" msgstr "client id" -#: socialaccount/models.py:51 +#: socialaccount/models.py:53 msgid "App ID, or consumer key" msgstr "Aplikazioaren ID-a, edo \"consumer key\"-a" -#: socialaccount/models.py:54 +#: socialaccount/models.py:56 msgid "secret key" msgstr "\"secret key\"-a" -#: socialaccount/models.py:57 +#: socialaccount/models.py:59 msgid "API secret, client secret, or consumer secret" msgstr "\"API secret\"-a, \"client secret\"-a edo \"consumer secret\"-a" -#: socialaccount/models.py:60 +#: socialaccount/models.py:62 msgid "Key" msgstr "Giltza" -#: socialaccount/models.py:79 +#: socialaccount/models.py:81 msgid "social application" msgstr "aplikazio soziala" -#: socialaccount/models.py:80 +#: socialaccount/models.py:82 msgid "social applications" msgstr "aplikazio sozialak" -#: socialaccount/models.py:115 +#: socialaccount/models.py:117 msgid "uid" msgstr "uid" -#: socialaccount/models.py:117 +#: socialaccount/models.py:119 msgid "last login" msgstr "azken logina" -#: socialaccount/models.py:118 +#: socialaccount/models.py:120 msgid "date joined" msgstr "erregistro eguna" -#: socialaccount/models.py:119 +#: socialaccount/models.py:121 msgid "extra data" msgstr "datu gehigarriak" -#: socialaccount/models.py:123 +#: socialaccount/models.py:125 msgid "social account" msgstr "sare sozial kontua" -#: socialaccount/models.py:124 +#: socialaccount/models.py:126 msgid "social accounts" msgstr "sare sozial kontuak" -#: socialaccount/models.py:158 +#: socialaccount/models.py:160 msgid "token" msgstr "\"token\"-a" -#: socialaccount/models.py:159 +#: socialaccount/models.py:161 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)" msgstr "\"oauth_token\"-a (OAuth1) edo \"access token\"-a (OAuth2)" -#: socialaccount/models.py:163 +#: socialaccount/models.py:165 msgid "token secret" msgstr "\"token secret\"-a" -#: socialaccount/models.py:164 +#: socialaccount/models.py:166 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)" msgstr "\"oauth_token_secret\"-a (OAuth1) edo \"refresh token\"-a (OAuth2)" -#: socialaccount/models.py:167 +#: socialaccount/models.py:169 msgid "expires at" msgstr "iraungitze data" -#: socialaccount/models.py:172 +#: socialaccount/models.py:174 msgid "social application token" msgstr "aplikazio sozial \"token\"-a" -#: socialaccount/models.py:173 +#: socialaccount/models.py:175 msgid "social application tokens" msgstr "aplikazio sozial \"token\"-ak" diff --git a/allauth/locale/fa/LC_MESSAGES/django.po b/allauth/locale/fa/LC_MESSAGES/django.po index 00386fbf6c..6fb3dde1c0 100644 --- a/allauth/locale/fa/LC_MESSAGES/django.po +++ b/allauth/locale/fa/LC_MESSAGES/django.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-30 16:00-0500\n" +"POT-Creation-Date: 2023-09-07 04:22-0500\n" "PO-Revision-Date: 2020-06-14 17:00-0000\n" "Last-Translator: Mohammad Ali Amini \n" "Language-Team: \n" @@ -17,25 +17,25 @@ msgstr "" "X-Generator: Poedit 1.7.4\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: account/adapter.py:47 +#: account/adapter.py:48 msgid "Username can not be used. Please use other username." msgstr "نام‌کاربری قابل استفاده نیست. لطفا نام‌کاربری دیگری استفاده کن." -#: account/adapter.py:53 +#: account/adapter.py:54 msgid "Too many failed login attempts. Try again later." msgstr "خیلی زیاد تلاش ناموفق کردی، لطفا بعدا ازنو سعی کن." -#: account/adapter.py:55 +#: account/adapter.py:56 msgid "A user is already registered with this email address." msgstr "یک کاربر ازقبل با این نشانی رایانامه ثبت شده." -#: account/adapter.py:56 +#: account/adapter.py:57 #, fuzzy #| msgid "Current Password" msgid "Incorrect password." msgstr "گذرواژه کنونی" -#: account/adapter.py:305 +#: account/adapter.py:308 #, python-brace-format msgid "Password must be a minimum of {0} characters." msgstr "گذرواژه باید حداقل {0} کاراکتر باشد." @@ -50,7 +50,7 @@ msgid "You must type the same password each time." msgstr "هربار باید گذرواژه‌ی یکسانی وارد کنی." #: account/forms.py:90 account/forms.py:397 account/forms.py:522 -#: account/forms.py:660 +#: account/forms.py:658 msgid "Password" msgstr "گذرواژه" @@ -136,11 +136,11 @@ msgstr "حساب‌ات هیچ رایانامه‌ي تایید‌شده‌ای msgid "Current Password" msgstr "گذرواژه کنونی" -#: account/forms.py:505 account/forms.py:609 +#: account/forms.py:505 account/forms.py:607 msgid "New Password" msgstr "گذرواژه جدید" -#: account/forms.py:506 account/forms.py:610 +#: account/forms.py:506 account/forms.py:608 msgid "New Password (again)" msgstr "گذرواژه جدید (ازنو)" @@ -152,7 +152,7 @@ msgstr "لطفا گذرواژه کنونی‌‌ات را وارد کن." msgid "The email address is not assigned to any user account" msgstr "این نشانی رایانامه به هیچ حساب کاربری‌ای منتسب نشده." -#: account/forms.py:630 +#: account/forms.py:628 msgid "The password reset token was invalid." msgstr "توکن بازنشانی گذرواژه نامعتبر است." @@ -184,7 +184,7 @@ msgstr "ایجاد‌شده" msgid "sent" msgstr "ارسال شد" -#: account/models.py:143 socialaccount/models.py:60 +#: account/models.py:143 socialaccount/models.py:62 msgid "key" msgstr "کلید" @@ -196,19 +196,19 @@ msgstr "تاییدیه‌ی رایانامه" msgid "email confirmations" msgstr "تاییدیه‌های رایانامه" -#: mfa/adapter.py:18 +#: mfa/adapter.py:19 msgid "" "You cannot activate two-factor authentication until you have verified your " "email address." msgstr "" -#: mfa/adapter.py:21 +#: mfa/adapter.py:22 msgid "" "You cannot add an email address to an account protected by two-factor " "authentication." msgstr "" -#: mfa/adapter.py:23 +#: mfa/adapter.py:24 msgid "Incorrect code." msgstr "" @@ -232,7 +232,7 @@ msgstr "" msgid "TOTP Authenticator" msgstr "" -#: socialaccount/adapter.py:28 +#: socialaccount/adapter.py:30 #, fuzzy, python-format #| msgid "" #| "An account already exists with this e-mail address. Please sign in to " @@ -244,11 +244,11 @@ msgstr "" "یه حساب‌کاربری با این نشانی رایانامه وجود دارد. لطفا نخست وارد آن شو، سپس " "حساب %s ات را بهش وصل کن." -#: socialaccount/adapter.py:132 +#: socialaccount/adapter.py:136 msgid "Your account has no password set up." msgstr "هیچ گذرواژه‌ای برای حساب‌ات نهاده نشده." -#: socialaccount/adapter.py:139 +#: socialaccount/adapter.py:143 msgid "Your account has no verified email address." msgstr "حساب‌ات هیچ رایانامه‌ي تایید‌شده‌ای ندارد." @@ -257,99 +257,99 @@ msgstr "حساب‌ات هیچ رایانامه‌ي تایید‌شده‌ای msgid "Social Accounts" msgstr "حساب‌های اجتماعی" -#: socialaccount/models.py:34 socialaccount/models.py:95 +#: socialaccount/models.py:36 socialaccount/models.py:97 msgid "provider" msgstr "فراهم‌کننده" -#: socialaccount/models.py:43 +#: socialaccount/models.py:45 #, fuzzy #| msgid "provider" msgid "provider ID" msgstr "فراهم‌کننده" -#: socialaccount/models.py:47 +#: socialaccount/models.py:49 #, fuzzy msgid "name" msgstr "نام" -#: socialaccount/models.py:49 +#: socialaccount/models.py:51 msgid "client id" msgstr "شناسه مشتری" -#: socialaccount/models.py:51 +#: socialaccount/models.py:53 msgid "App ID, or consumer key" msgstr "شناسه اپ، یا کلید مصرف‌کننده" -#: socialaccount/models.py:54 +#: socialaccount/models.py:56 msgid "secret key" msgstr "کلید محرمانه" -#: socialaccount/models.py:57 +#: socialaccount/models.py:59 msgid "API secret, client secret, or consumer secret" msgstr "رمز رابک (رابط برنامه‌ی کاربردی API)، رمز مشتری، یا رمز مصرف‌کننده" -#: socialaccount/models.py:60 +#: socialaccount/models.py:62 #, fuzzy msgid "Key" msgstr "کلید" -#: socialaccount/models.py:79 +#: socialaccount/models.py:81 msgid "social application" msgstr "اپلیکیشن اجتماعی" -#: socialaccount/models.py:80 +#: socialaccount/models.py:82 msgid "social applications" msgstr "اپلیکیشن‌های اجتماعی" -#: socialaccount/models.py:115 +#: socialaccount/models.py:117 msgid "uid" msgstr "شناسه‌کاربری" -#: socialaccount/models.py:117 +#: socialaccount/models.py:119 msgid "last login" msgstr "آخرین ورود" -#: socialaccount/models.py:118 +#: socialaccount/models.py:120 msgid "date joined" msgstr "تاریخ پیوست‌شده" -#: socialaccount/models.py:119 +#: socialaccount/models.py:121 msgid "extra data" msgstr "داده اضافی" -#: socialaccount/models.py:123 +#: socialaccount/models.py:125 msgid "social account" msgstr "حساب اجتماعی" -#: socialaccount/models.py:124 +#: socialaccount/models.py:126 msgid "social accounts" msgstr "حساب‌های اجتماعی" -#: socialaccount/models.py:158 +#: socialaccount/models.py:160 msgid "token" msgstr "توکن" -#: socialaccount/models.py:159 +#: socialaccount/models.py:161 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)" msgstr "\"oauth_token\" (OAuth1) یا توکن دسترسی (OAuth2)" -#: socialaccount/models.py:163 +#: socialaccount/models.py:165 msgid "token secret" msgstr "رمز توکن" -#: socialaccount/models.py:164 +#: socialaccount/models.py:166 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)" msgstr "\"oauth_token_secret\" (OAuth1) یا توکن تازه‌سازی (OAuth2)" -#: socialaccount/models.py:167 +#: socialaccount/models.py:169 msgid "expires at" msgstr "انقضا" -#: socialaccount/models.py:172 +#: socialaccount/models.py:174 msgid "social application token" msgstr "توکن اپلیکشن اجتماعی" -#: socialaccount/models.py:173 +#: socialaccount/models.py:175 msgid "social application tokens" msgstr "توکن‌های اپلیکیشن اجتماعی" diff --git a/allauth/locale/fi/LC_MESSAGES/django.po b/allauth/locale/fi/LC_MESSAGES/django.po index 4cb0264db4..cfcb99b650 100644 --- a/allauth/locale/fi/LC_MESSAGES/django.po +++ b/allauth/locale/fi/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-30 16:00-0500\n" +"POT-Creation-Date: 2023-09-07 04:22-0500\n" "PO-Revision-Date: 2020-10-15 19:56+0200\n" "Last-Translator: Anonymous User \n" "Language-Team: LANGUAGE \n" @@ -19,26 +19,26 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Translated-Using: django-rosetta 0.7.6\n" -#: account/adapter.py:47 +#: account/adapter.py:48 msgid "Username can not be used. Please use other username." msgstr "Käyttäjänimeä ei voi käyttää. Valitse toinen käyttäjänimi." -#: account/adapter.py:53 +#: account/adapter.py:54 msgid "Too many failed login attempts. Try again later." msgstr "" "Liian monta virheellistä kirjautumisyritystä. Yritä myöhemmin uudelleen." -#: account/adapter.py:55 +#: account/adapter.py:56 msgid "A user is already registered with this email address." msgstr "Tämä sähköpostiosoite on jo käytössä." -#: account/adapter.py:56 +#: account/adapter.py:57 #, fuzzy #| msgid "Current Password" msgid "Incorrect password." msgstr "Nykyinen salasana" -#: account/adapter.py:305 +#: account/adapter.py:308 #, python-brace-format msgid "Password must be a minimum of {0} characters." msgstr "Salasanan tulee olla vähintään {0} merkkiä pitkä." @@ -52,7 +52,7 @@ msgid "You must type the same password each time." msgstr "Salasanojen tulee olla samat." #: account/forms.py:90 account/forms.py:397 account/forms.py:522 -#: account/forms.py:660 +#: account/forms.py:658 msgid "Password" msgstr "Salasana" @@ -136,11 +136,11 @@ msgstr "Tiliisi ei ole liitetty vahvistettua sähköpostiosoitetta." msgid "Current Password" msgstr "Nykyinen salasana" -#: account/forms.py:505 account/forms.py:609 +#: account/forms.py:505 account/forms.py:607 msgid "New Password" msgstr "Uusi salasana" -#: account/forms.py:506 account/forms.py:610 +#: account/forms.py:506 account/forms.py:608 msgid "New Password (again)" msgstr "Uusi salasana (uudestaan)" @@ -152,7 +152,7 @@ msgstr "Ole hyvä ja anna nykyinen salasanasi." msgid "The email address is not assigned to any user account" msgstr "Sähköpostiosoite ei vastaa yhtäkään käyttäjätiliä." -#: account/forms.py:630 +#: account/forms.py:628 msgid "The password reset token was invalid." msgstr "Salasanan uusimistarkiste ei kelpaa." @@ -184,7 +184,7 @@ msgstr "luotu" msgid "sent" msgstr "lähetetty" -#: account/models.py:143 socialaccount/models.py:60 +#: account/models.py:143 socialaccount/models.py:62 msgid "key" msgstr "avain" @@ -196,19 +196,19 @@ msgstr "sähköpostivarmistus" msgid "email confirmations" msgstr "sähköpostivarmistukset" -#: mfa/adapter.py:18 +#: mfa/adapter.py:19 msgid "" "You cannot activate two-factor authentication until you have verified your " "email address." msgstr "" -#: mfa/adapter.py:21 +#: mfa/adapter.py:22 msgid "" "You cannot add an email address to an account protected by two-factor " "authentication." msgstr "" -#: mfa/adapter.py:23 +#: mfa/adapter.py:24 msgid "Incorrect code." msgstr "" @@ -232,7 +232,7 @@ msgstr "" msgid "TOTP Authenticator" msgstr "" -#: socialaccount/adapter.py:28 +#: socialaccount/adapter.py:30 #, fuzzy, python-format #| msgid "" #| "An account already exists with this e-mail address. Please sign in to " @@ -244,11 +244,11 @@ msgstr "" "Sähköpostiosoite on jo liitetty olemassaolevaan tiliin. Kirjaudu ensin " "kyseiseen tiliin ja liitä %s-tilisi vasta sitten." -#: socialaccount/adapter.py:132 +#: socialaccount/adapter.py:136 msgid "Your account has no password set up." msgstr "Tilillesi ei ole asetettu salasanaa." -#: socialaccount/adapter.py:139 +#: socialaccount/adapter.py:143 msgid "Your account has no verified email address." msgstr "Tiliisi ei ole liitetty vahvistettua sähköpostiosoitetta." @@ -256,97 +256,97 @@ msgstr "Tiliisi ei ole liitetty vahvistettua sähköpostiosoitetta." msgid "Social Accounts" msgstr "Sosiaalisen median tilit" -#: socialaccount/models.py:34 socialaccount/models.py:95 +#: socialaccount/models.py:36 socialaccount/models.py:97 msgid "provider" msgstr "tarjoaja" -#: socialaccount/models.py:43 +#: socialaccount/models.py:45 #, fuzzy #| msgid "provider" msgid "provider ID" msgstr "tarjoaja" -#: socialaccount/models.py:47 +#: socialaccount/models.py:49 msgid "name" msgstr "nimi" -#: socialaccount/models.py:49 +#: socialaccount/models.py:51 msgid "client id" msgstr "asiakas id" -#: socialaccount/models.py:51 +#: socialaccount/models.py:53 msgid "App ID, or consumer key" msgstr "Sovellus ID tai kuluttajan avain" -#: socialaccount/models.py:54 +#: socialaccount/models.py:56 msgid "secret key" msgstr "salainen avain" -#: socialaccount/models.py:57 +#: socialaccount/models.py:59 msgid "API secret, client secret, or consumer secret" msgstr "API:n, asiakkaan tai kuluttajan salaisuus" -#: socialaccount/models.py:60 +#: socialaccount/models.py:62 msgid "Key" msgstr "Avain" -#: socialaccount/models.py:79 +#: socialaccount/models.py:81 msgid "social application" msgstr "sosiaalinen applikaatio" -#: socialaccount/models.py:80 +#: socialaccount/models.py:82 msgid "social applications" msgstr "sosiaaliset applikaatiot" -#: socialaccount/models.py:115 +#: socialaccount/models.py:117 msgid "uid" msgstr "uid" -#: socialaccount/models.py:117 +#: socialaccount/models.py:119 msgid "last login" msgstr "viimeisin sisäänkirjautuminen" -#: socialaccount/models.py:118 +#: socialaccount/models.py:120 msgid "date joined" msgstr "liittymispäivämäärä" -#: socialaccount/models.py:119 +#: socialaccount/models.py:121 msgid "extra data" msgstr "lisätiedot" -#: socialaccount/models.py:123 +#: socialaccount/models.py:125 msgid "social account" msgstr "sosiaalisen median tili" -#: socialaccount/models.py:124 +#: socialaccount/models.py:126 msgid "social accounts" msgstr "sosiaalisen median tilit" -#: socialaccount/models.py:158 +#: socialaccount/models.py:160 msgid "token" msgstr "" -#: socialaccount/models.py:159 +#: socialaccount/models.py:161 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)" msgstr "" -#: socialaccount/models.py:163 +#: socialaccount/models.py:165 msgid "token secret" msgstr "" -#: socialaccount/models.py:164 +#: socialaccount/models.py:166 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)" msgstr "" -#: socialaccount/models.py:167 +#: socialaccount/models.py:169 msgid "expires at" msgstr "vanhenee" -#: socialaccount/models.py:172 +#: socialaccount/models.py:174 msgid "social application token" msgstr "" -#: socialaccount/models.py:173 +#: socialaccount/models.py:175 msgid "social application tokens" msgstr "" diff --git a/allauth/locale/fr/LC_MESSAGES/django.po b/allauth/locale/fr/LC_MESSAGES/django.po index 516a25deb0..a30b52ac25 100644 --- a/allauth/locale/fr/LC_MESSAGES/django.po +++ b/allauth/locale/fr/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: django-allauth\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-30 16:00-0500\n" +"POT-Creation-Date: 2023-09-07 04:22-0500\n" "PO-Revision-Date: 2020-10-15 19:47+0200\n" "Last-Translator: Gilou \n" "Language-Team: français <>\n" @@ -21,26 +21,26 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Poedit 1.8.7.1\n" -#: account/adapter.py:47 +#: account/adapter.py:48 msgid "Username can not be used. Please use other username." msgstr "Ce pseudonyme ne peut pas être utilisé. Veuillez en choisir un autre." -#: account/adapter.py:53 +#: account/adapter.py:54 msgid "Too many failed login attempts. Try again later." msgstr "" "Trop de tentatives de connexion échouées. Veuillez réessayer ultérieurement." -#: account/adapter.py:55 +#: account/adapter.py:56 msgid "A user is already registered with this email address." msgstr "Un autre utilisateur utilise déjà cette adresse e-mail." -#: account/adapter.py:56 +#: account/adapter.py:57 #, fuzzy #| msgid "Current Password" msgid "Incorrect password." msgstr "Mot de passe actuel" -#: account/adapter.py:305 +#: account/adapter.py:308 #, python-brace-format msgid "Password must be a minimum of {0} characters." msgstr "Le mot de passe doit contenir au minimum {0} caractères." @@ -54,7 +54,7 @@ msgid "You must type the same password each time." msgstr "Vous devez saisir deux fois le même mot de passe." #: account/forms.py:90 account/forms.py:397 account/forms.py:522 -#: account/forms.py:660 +#: account/forms.py:658 msgid "Password" msgstr "Mot de passe" @@ -132,11 +132,11 @@ msgstr "Vous devez d'abord associer une adresse email à votre compte." msgid "Current Password" msgstr "Mot de passe actuel" -#: account/forms.py:505 account/forms.py:609 +#: account/forms.py:505 account/forms.py:607 msgid "New Password" msgstr "Nouveau mot de passe" -#: account/forms.py:506 account/forms.py:610 +#: account/forms.py:506 account/forms.py:608 msgid "New Password (again)" msgstr "Nouveau mot de passe (confirmation)" @@ -148,7 +148,7 @@ msgstr "Merci d'indiquer votre mot de passe actuel." msgid "The email address is not assigned to any user account" msgstr "Cette adresse email n'est pas associée à un compte utilisateur" -#: account/forms.py:630 +#: account/forms.py:628 msgid "The password reset token was invalid." msgstr "Le jeton de réinitialisation de mot de passe est invalide." @@ -180,7 +180,7 @@ msgstr "créé" msgid "sent" msgstr "envoyé" -#: account/models.py:143 socialaccount/models.py:60 +#: account/models.py:143 socialaccount/models.py:62 msgid "key" msgstr "clé" @@ -192,19 +192,19 @@ msgstr "confirmation par email" msgid "email confirmations" msgstr "confirmations par email" -#: mfa/adapter.py:18 +#: mfa/adapter.py:19 msgid "" "You cannot activate two-factor authentication until you have verified your " "email address." msgstr "" -#: mfa/adapter.py:21 +#: mfa/adapter.py:22 msgid "" "You cannot add an email address to an account protected by two-factor " "authentication." msgstr "" -#: mfa/adapter.py:23 +#: mfa/adapter.py:24 msgid "Incorrect code." msgstr "" @@ -228,7 +228,7 @@ msgstr "" msgid "TOTP Authenticator" msgstr "" -#: socialaccount/adapter.py:28 +#: socialaccount/adapter.py:30 #, fuzzy, python-format #| msgid "" #| "An account already exists with this e-mail address. Please sign in to " @@ -240,11 +240,11 @@ msgstr "" "Un compte existe déjà avec cette adresse email. Merci de vous connecter au " "préalable avec ce compte, et ensuite connecter votre compte %s." -#: socialaccount/adapter.py:132 +#: socialaccount/adapter.py:136 msgid "Your account has no password set up." msgstr "Vous devez d'abord définir le mot de passe de votre compte." -#: socialaccount/adapter.py:139 +#: socialaccount/adapter.py:143 msgid "Your account has no verified email address." msgstr "Vous devez d'abord associer une adresse email à votre compte." @@ -252,97 +252,97 @@ msgstr "Vous devez d'abord associer une adresse email à votre compte." msgid "Social Accounts" msgstr "Comptes sociaux" -#: socialaccount/models.py:34 socialaccount/models.py:95 +#: socialaccount/models.py:36 socialaccount/models.py:97 msgid "provider" msgstr "fournisseur" -#: socialaccount/models.py:43 +#: socialaccount/models.py:45 #, fuzzy #| msgid "provider" msgid "provider ID" msgstr "fournisseur" -#: socialaccount/models.py:47 +#: socialaccount/models.py:49 msgid "name" msgstr "nom" -#: socialaccount/models.py:49 +#: socialaccount/models.py:51 msgid "client id" msgstr "id client" -#: socialaccount/models.py:51 +#: socialaccount/models.py:53 msgid "App ID, or consumer key" msgstr "ID de l'app ou clé de l'utilisateur" -#: socialaccount/models.py:54 +#: socialaccount/models.py:56 msgid "secret key" msgstr "clé secrète" -#: socialaccount/models.py:57 +#: socialaccount/models.py:59 msgid "API secret, client secret, or consumer secret" msgstr "Secret de l'API, secret du client, ou secret de l'utilisateur" -#: socialaccount/models.py:60 +#: socialaccount/models.py:62 msgid "Key" msgstr "Clé" -#: socialaccount/models.py:79 +#: socialaccount/models.py:81 msgid "social application" msgstr "application sociale" -#: socialaccount/models.py:80 +#: socialaccount/models.py:82 msgid "social applications" msgstr "applications sociales" -#: socialaccount/models.py:115 +#: socialaccount/models.py:117 msgid "uid" msgstr "uid" -#: socialaccount/models.py:117 +#: socialaccount/models.py:119 msgid "last login" msgstr "dernière identification" -#: socialaccount/models.py:118 +#: socialaccount/models.py:120 msgid "date joined" msgstr "date d'inscription" -#: socialaccount/models.py:119 +#: socialaccount/models.py:121 msgid "extra data" msgstr "données supplémentaires" -#: socialaccount/models.py:123 +#: socialaccount/models.py:125 msgid "social account" msgstr "compte social" -#: socialaccount/models.py:124 +#: socialaccount/models.py:126 msgid "social accounts" msgstr "comptes sociaux" -#: socialaccount/models.py:158 +#: socialaccount/models.py:160 msgid "token" msgstr "jeton" -#: socialaccount/models.py:159 +#: socialaccount/models.py:161 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)" msgstr "\"oauth_token\" (OAuth1) ou jeton d'accès (OAuth2)" -#: socialaccount/models.py:163 +#: socialaccount/models.py:165 msgid "token secret" msgstr "jeton secret" -#: socialaccount/models.py:164 +#: socialaccount/models.py:166 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)" msgstr "\"oauth_token_secret\" (OAuth1) ou jeton d'actualisation (OAuth2)" -#: socialaccount/models.py:167 +#: socialaccount/models.py:169 msgid "expires at" msgstr "expire le" -#: socialaccount/models.py:172 +#: socialaccount/models.py:174 msgid "social application token" msgstr "jeton de l'application sociale" -#: socialaccount/models.py:173 +#: socialaccount/models.py:175 msgid "social application tokens" msgstr "jetons de l'application sociale" diff --git a/allauth/locale/he/LC_MESSAGES/django.po b/allauth/locale/he/LC_MESSAGES/django.po index 2d2ea710c4..a808f4021c 100644 --- a/allauth/locale/he/LC_MESSAGES/django.po +++ b/allauth/locale/he/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-30 16:00-0500\n" +"POT-Creation-Date: 2023-09-07 04:22-0500\n" "PO-Revision-Date: 2017-08-26 16:11+0300\n" "Last-Translator: Udi Oron \n" "Language-Team: Hebrew\n" @@ -18,25 +18,25 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 2.0.3\n" -#: account/adapter.py:47 +#: account/adapter.py:48 msgid "Username can not be used. Please use other username." msgstr "לא ניתן להשתמש בשם משתמש זה. אנא בחר שם משתמש אחר." -#: account/adapter.py:53 +#: account/adapter.py:54 msgid "Too many failed login attempts. Try again later." msgstr "יותר מדי ניסיונות התחברות כושלים. אנא נסה שוב מאוחר יותר." -#: account/adapter.py:55 +#: account/adapter.py:56 msgid "A user is already registered with this email address." msgstr "משתמש אחר כבר רשום עם כתובת אימייל זו." -#: account/adapter.py:56 +#: account/adapter.py:57 #, fuzzy #| msgid "Current Password" msgid "Incorrect password." msgstr "סיסמה נוכחית" -#: account/adapter.py:305 +#: account/adapter.py:308 #, python-brace-format msgid "Password must be a minimum of {0} characters." msgstr "הסיסמה חייבת להיות באורך של לפחות {0} תווים." @@ -50,7 +50,7 @@ msgid "You must type the same password each time." msgstr "יש להזין את אותה הסיסמה פעמיים." #: account/forms.py:90 account/forms.py:397 account/forms.py:522 -#: account/forms.py:660 +#: account/forms.py:658 msgid "Password" msgstr "סיסמה" @@ -128,11 +128,11 @@ msgstr "לא נמצאו כתובות אימייל מאומתות לחשבונך. msgid "Current Password" msgstr "סיסמה נוכחית" -#: account/forms.py:505 account/forms.py:609 +#: account/forms.py:505 account/forms.py:607 msgid "New Password" msgstr "סיסמה חדשה" -#: account/forms.py:506 account/forms.py:610 +#: account/forms.py:506 account/forms.py:608 msgid "New Password (again)" msgstr "סיסמה חדשה (שוב)" @@ -144,7 +144,7 @@ msgstr "אנא הזן את הסיסמה הנוכחית." msgid "The email address is not assigned to any user account" msgstr "כתובת אימייל זו אינה משויכת לאף חשבון" -#: account/forms.py:630 +#: account/forms.py:628 msgid "The password reset token was invalid." msgstr "אסימון איפוס הסיסמה אינו תקין." @@ -176,7 +176,7 @@ msgstr "נוצר" msgid "sent" msgstr "נשלח" -#: account/models.py:143 socialaccount/models.py:60 +#: account/models.py:143 socialaccount/models.py:62 msgid "key" msgstr "מפתח" @@ -188,19 +188,19 @@ msgstr "אישור באימייל" msgid "email confirmations" msgstr "אישורים בדואל" -#: mfa/adapter.py:18 +#: mfa/adapter.py:19 msgid "" "You cannot activate two-factor authentication until you have verified your " "email address." msgstr "" -#: mfa/adapter.py:21 +#: mfa/adapter.py:22 msgid "" "You cannot add an email address to an account protected by two-factor " "authentication." msgstr "" -#: mfa/adapter.py:23 +#: mfa/adapter.py:24 msgid "Incorrect code." msgstr "" @@ -224,7 +224,7 @@ msgstr "" msgid "TOTP Authenticator" msgstr "" -#: socialaccount/adapter.py:28 +#: socialaccount/adapter.py:30 #, fuzzy, python-format #| msgid "" #| "An account already exists with this e-mail address. Please sign in to " @@ -236,11 +236,11 @@ msgstr "" "קיים כבר חשבון עם כתובת אימייל זו. אנא התחבר לחשבון זה, ואז קשר את חשבון %s " "שלך." -#: socialaccount/adapter.py:132 +#: socialaccount/adapter.py:136 msgid "Your account has no password set up." msgstr "לא נבחרה סיסמה לחשבונך." -#: socialaccount/adapter.py:139 +#: socialaccount/adapter.py:143 msgid "Your account has no verified email address." msgstr "לא נמצאו כתובות אימייל מאומתות לחשבונך." @@ -248,95 +248,95 @@ msgstr "לא נמצאו כתובות אימייל מאומתות לחשבונך. msgid "Social Accounts" msgstr "חשבונות חברתיים" -#: socialaccount/models.py:34 socialaccount/models.py:95 +#: socialaccount/models.py:36 socialaccount/models.py:97 msgid "provider" msgstr "" -#: socialaccount/models.py:43 +#: socialaccount/models.py:45 msgid "provider ID" msgstr "" -#: socialaccount/models.py:47 +#: socialaccount/models.py:49 msgid "name" msgstr "שם" -#: socialaccount/models.py:49 +#: socialaccount/models.py:51 msgid "client id" msgstr "" -#: socialaccount/models.py:51 +#: socialaccount/models.py:53 msgid "App ID, or consumer key" msgstr "" -#: socialaccount/models.py:54 +#: socialaccount/models.py:56 msgid "secret key" msgstr "" -#: socialaccount/models.py:57 +#: socialaccount/models.py:59 msgid "API secret, client secret, or consumer secret" msgstr "" -#: socialaccount/models.py:60 +#: socialaccount/models.py:62 msgid "Key" msgstr "" -#: socialaccount/models.py:79 +#: socialaccount/models.py:81 msgid "social application" msgstr "" -#: socialaccount/models.py:80 +#: socialaccount/models.py:82 msgid "social applications" msgstr "" -#: socialaccount/models.py:115 +#: socialaccount/models.py:117 msgid "uid" msgstr "" -#: socialaccount/models.py:117 +#: socialaccount/models.py:119 msgid "last login" msgstr "התחברות אחרונה" -#: socialaccount/models.py:118 +#: socialaccount/models.py:120 msgid "date joined" msgstr "תאריך הצטרפות" -#: socialaccount/models.py:119 +#: socialaccount/models.py:121 msgid "extra data" msgstr "" -#: socialaccount/models.py:123 +#: socialaccount/models.py:125 msgid "social account" msgstr "חשבון חברתי" -#: socialaccount/models.py:124 +#: socialaccount/models.py:126 msgid "social accounts" msgstr "חשבונות חברתיים" -#: socialaccount/models.py:158 +#: socialaccount/models.py:160 msgid "token" msgstr "" -#: socialaccount/models.py:159 +#: socialaccount/models.py:161 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)" msgstr "" -#: socialaccount/models.py:163 +#: socialaccount/models.py:165 msgid "token secret" msgstr "" -#: socialaccount/models.py:164 +#: socialaccount/models.py:166 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)" msgstr "" -#: socialaccount/models.py:167 +#: socialaccount/models.py:169 msgid "expires at" msgstr "פג תוקף בתאריך" -#: socialaccount/models.py:172 +#: socialaccount/models.py:174 msgid "social application token" msgstr "" -#: socialaccount/models.py:173 +#: socialaccount/models.py:175 msgid "social application tokens" msgstr "" diff --git a/allauth/locale/hr/LC_MESSAGES/django.po b/allauth/locale/hr/LC_MESSAGES/django.po index eaf8223b45..2d317b6147 100644 --- a/allauth/locale/hr/LC_MESSAGES/django.po +++ b/allauth/locale/hr/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-30 16:00-0500\n" +"POT-Creation-Date: 2023-09-07 04:22-0500\n" "PO-Revision-Date: 2014-08-12 00:31+0200\n" "Last-Translator: \n" "Language-Team: Bojan Mihelac \n" @@ -23,25 +23,25 @@ msgstr "" "X-Generator: Poedit 1.5.4\n" "X-Translated-Using: django-rosetta 0.7.2\n" -#: account/adapter.py:47 +#: account/adapter.py:48 msgid "Username can not be used. Please use other username." msgstr "Nije moguće koristiti upisano korisničko ime. Molimo odaberite drugo." -#: account/adapter.py:53 +#: account/adapter.py:54 msgid "Too many failed login attempts. Try again later." msgstr "" -#: account/adapter.py:55 +#: account/adapter.py:56 msgid "A user is already registered with this email address." msgstr "Već postoji korisnik registriran s ovom e-mail adresom." -#: account/adapter.py:56 +#: account/adapter.py:57 #, fuzzy #| msgid "Current Password" msgid "Incorrect password." msgstr "Trenutna lozinka" -#: account/adapter.py:305 +#: account/adapter.py:308 #, python-brace-format msgid "Password must be a minimum of {0} characters." msgstr "Lozinka treba imati najmanje {0} znakova." @@ -55,7 +55,7 @@ msgid "You must type the same password each time." msgstr "Potrebno je upisati istu lozinku svaki put." #: account/forms.py:90 account/forms.py:397 account/forms.py:522 -#: account/forms.py:660 +#: account/forms.py:658 msgid "Password" msgstr "Lozinka" @@ -139,11 +139,11 @@ msgstr "Vaš korisnički račun nema potvrđenu e-mail adresu." msgid "Current Password" msgstr "Trenutna lozinka" -#: account/forms.py:505 account/forms.py:609 +#: account/forms.py:505 account/forms.py:607 msgid "New Password" msgstr "Nova lozinka" -#: account/forms.py:506 account/forms.py:610 +#: account/forms.py:506 account/forms.py:608 msgid "New Password (again)" msgstr "Nova lozinka (ponovno)" @@ -155,7 +155,7 @@ msgstr "Molimo unesite trenutnu lozinku." msgid "The email address is not assigned to any user account" msgstr "Upisana e-mail adresa nije dodijeljena niti jednom korisničkom računu" -#: account/forms.py:630 +#: account/forms.py:628 msgid "The password reset token was invalid." msgstr "" @@ -187,7 +187,7 @@ msgstr "" msgid "sent" msgstr "" -#: account/models.py:143 socialaccount/models.py:60 +#: account/models.py:143 socialaccount/models.py:62 msgid "key" msgstr "" @@ -199,19 +199,19 @@ msgstr "E-mail potvrda" msgid "email confirmations" msgstr "E-mail potvrde" -#: mfa/adapter.py:18 +#: mfa/adapter.py:19 msgid "" "You cannot activate two-factor authentication until you have verified your " "email address." msgstr "" -#: mfa/adapter.py:21 +#: mfa/adapter.py:22 msgid "" "You cannot add an email address to an account protected by two-factor " "authentication." msgstr "" -#: mfa/adapter.py:23 +#: mfa/adapter.py:24 msgid "Incorrect code." msgstr "" @@ -235,7 +235,7 @@ msgstr "" msgid "TOTP Authenticator" msgstr "" -#: socialaccount/adapter.py:28 +#: socialaccount/adapter.py:30 #, fuzzy, python-format #| msgid "" #| "An account already exists with this e-mail address. Please sign in to " @@ -247,11 +247,11 @@ msgstr "" "Korisnički račun s ovom e-mail adresom već postoji. Molimo da se prvo " "ulogirate pod tim korisničkim računom i spojite svoj %s račun" -#: socialaccount/adapter.py:132 +#: socialaccount/adapter.py:136 msgid "Your account has no password set up." msgstr "Vaš korisnički račun nema postavljenu lozinku." -#: socialaccount/adapter.py:139 +#: socialaccount/adapter.py:143 msgid "Your account has no verified email address." msgstr "Vaš korisnički račun nema potvrđenu e-mail adresu." @@ -259,95 +259,95 @@ msgstr "Vaš korisnički račun nema potvrđenu e-mail adresu." msgid "Social Accounts" msgstr "Korisnički računi" -#: socialaccount/models.py:34 socialaccount/models.py:95 +#: socialaccount/models.py:36 socialaccount/models.py:97 msgid "provider" msgstr "" -#: socialaccount/models.py:43 +#: socialaccount/models.py:45 msgid "provider ID" msgstr "" -#: socialaccount/models.py:47 +#: socialaccount/models.py:49 msgid "name" msgstr "naziv" -#: socialaccount/models.py:49 +#: socialaccount/models.py:51 msgid "client id" msgstr "" -#: socialaccount/models.py:51 +#: socialaccount/models.py:53 msgid "App ID, or consumer key" msgstr "" -#: socialaccount/models.py:54 +#: socialaccount/models.py:56 msgid "secret key" msgstr "" -#: socialaccount/models.py:57 +#: socialaccount/models.py:59 msgid "API secret, client secret, or consumer secret" msgstr "" -#: socialaccount/models.py:60 +#: socialaccount/models.py:62 msgid "Key" msgstr "" -#: socialaccount/models.py:79 +#: socialaccount/models.py:81 msgid "social application" msgstr "" -#: socialaccount/models.py:80 +#: socialaccount/models.py:82 msgid "social applications" msgstr "" -#: socialaccount/models.py:115 +#: socialaccount/models.py:117 msgid "uid" msgstr "" -#: socialaccount/models.py:117 +#: socialaccount/models.py:119 msgid "last login" msgstr "" -#: socialaccount/models.py:118 +#: socialaccount/models.py:120 msgid "date joined" msgstr "" -#: socialaccount/models.py:119 +#: socialaccount/models.py:121 msgid "extra data" msgstr "" -#: socialaccount/models.py:123 +#: socialaccount/models.py:125 msgid "social account" msgstr "" -#: socialaccount/models.py:124 +#: socialaccount/models.py:126 msgid "social accounts" msgstr "" -#: socialaccount/models.py:158 +#: socialaccount/models.py:160 msgid "token" msgstr "" -#: socialaccount/models.py:159 +#: socialaccount/models.py:161 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)" msgstr "" -#: socialaccount/models.py:163 +#: socialaccount/models.py:165 msgid "token secret" msgstr "" -#: socialaccount/models.py:164 +#: socialaccount/models.py:166 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)" msgstr "" -#: socialaccount/models.py:167 +#: socialaccount/models.py:169 msgid "expires at" msgstr "" -#: socialaccount/models.py:172 +#: socialaccount/models.py:174 msgid "social application token" msgstr "" -#: socialaccount/models.py:173 +#: socialaccount/models.py:175 msgid "social application tokens" msgstr "" diff --git a/allauth/locale/hu/LC_MESSAGES/django.po b/allauth/locale/hu/LC_MESSAGES/django.po index 5dab3c5715..b1f6be5faf 100644 --- a/allauth/locale/hu/LC_MESSAGES/django.po +++ b/allauth/locale/hu/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-30 16:00-0500\n" +"POT-Creation-Date: 2023-09-07 04:22-0500\n" "PO-Revision-Date: 2015-05-08 22:42+0100\n" "Last-Translator: Tamás Makó \n" "Language-Team: \n" @@ -18,25 +18,25 @@ msgstr "" "X-Generator: Poedit 1.7.6\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: account/adapter.py:47 +#: account/adapter.py:48 msgid "Username can not be used. Please use other username." msgstr "Ez a felhasználói azonosító nem használható. Kérlek válassz másikat!" -#: account/adapter.py:53 +#: account/adapter.py:54 msgid "Too many failed login attempts. Try again later." msgstr "" -#: account/adapter.py:55 +#: account/adapter.py:56 msgid "A user is already registered with this email address." msgstr "Egy felhasználó már regisztrált ezzel az email címmel." -#: account/adapter.py:56 +#: account/adapter.py:57 #, fuzzy #| msgid "Current Password" msgid "Incorrect password." msgstr "Jelenlegi jelszó" -#: account/adapter.py:305 +#: account/adapter.py:308 #, python-brace-format msgid "Password must be a minimum of {0} characters." msgstr "A jelszónak minimum {0} hosszúnak kell lennnie." @@ -50,7 +50,7 @@ msgid "You must type the same password each time." msgstr "Ugyanazt a jelszót kell megadni mindannyiszor." #: account/forms.py:90 account/forms.py:397 account/forms.py:522 -#: account/forms.py:660 +#: account/forms.py:658 msgid "Password" msgstr "Jelszó" @@ -134,11 +134,11 @@ msgstr "A felhasználódnak nincs ellenőrzött email címe." msgid "Current Password" msgstr "Jelenlegi jelszó" -#: account/forms.py:505 account/forms.py:609 +#: account/forms.py:505 account/forms.py:607 msgid "New Password" msgstr "Új jelszó" -#: account/forms.py:506 account/forms.py:610 +#: account/forms.py:506 account/forms.py:608 msgid "New Password (again)" msgstr "Új jelszó (ismét)" @@ -150,7 +150,7 @@ msgstr "Kérlek add meg az aktuális jelszavadat!" msgid "The email address is not assigned to any user account" msgstr "Az email cím nincs hozzárendelve egyetlen felhasználóhoz sem" -#: account/forms.py:630 +#: account/forms.py:628 msgid "The password reset token was invalid." msgstr "" @@ -182,7 +182,7 @@ msgstr "" msgid "sent" msgstr "" -#: account/models.py:143 socialaccount/models.py:60 +#: account/models.py:143 socialaccount/models.py:62 msgid "key" msgstr "" @@ -194,19 +194,19 @@ msgstr "" msgid "email confirmations" msgstr "" -#: mfa/adapter.py:18 +#: mfa/adapter.py:19 msgid "" "You cannot activate two-factor authentication until you have verified your " "email address." msgstr "" -#: mfa/adapter.py:21 +#: mfa/adapter.py:22 msgid "" "You cannot add an email address to an account protected by two-factor " "authentication." msgstr "" -#: mfa/adapter.py:23 +#: mfa/adapter.py:24 msgid "Incorrect code." msgstr "" @@ -230,7 +230,7 @@ msgstr "" msgid "TOTP Authenticator" msgstr "" -#: socialaccount/adapter.py:28 +#: socialaccount/adapter.py:30 #, fuzzy, python-format #| msgid "" #| "An account already exists with this e-mail address. Please sign in to " @@ -242,11 +242,11 @@ msgstr "" "Ezzel az email címmel már létezik egy felhasználó . Először jelentkezz be, " "majd kapcsold össze a(z) %s felhasználóval." -#: socialaccount/adapter.py:132 +#: socialaccount/adapter.py:136 msgid "Your account has no password set up." msgstr "A felhasználódnak nincs beállított jelszava." -#: socialaccount/adapter.py:139 +#: socialaccount/adapter.py:143 msgid "Your account has no verified email address." msgstr "A felhasználódnak nincs ellenőrzött email címe." @@ -254,95 +254,95 @@ msgstr "A felhasználódnak nincs ellenőrzött email címe." msgid "Social Accounts" msgstr "Közösségi Felhasználók" -#: socialaccount/models.py:34 socialaccount/models.py:95 +#: socialaccount/models.py:36 socialaccount/models.py:97 msgid "provider" msgstr "" -#: socialaccount/models.py:43 +#: socialaccount/models.py:45 msgid "provider ID" msgstr "" -#: socialaccount/models.py:47 +#: socialaccount/models.py:49 msgid "name" msgstr "" -#: socialaccount/models.py:49 +#: socialaccount/models.py:51 msgid "client id" msgstr "" -#: socialaccount/models.py:51 +#: socialaccount/models.py:53 msgid "App ID, or consumer key" msgstr "" -#: socialaccount/models.py:54 +#: socialaccount/models.py:56 msgid "secret key" msgstr "" -#: socialaccount/models.py:57 +#: socialaccount/models.py:59 msgid "API secret, client secret, or consumer secret" msgstr "" -#: socialaccount/models.py:60 +#: socialaccount/models.py:62 msgid "Key" msgstr "" -#: socialaccount/models.py:79 +#: socialaccount/models.py:81 msgid "social application" msgstr "" -#: socialaccount/models.py:80 +#: socialaccount/models.py:82 msgid "social applications" msgstr "" -#: socialaccount/models.py:115 +#: socialaccount/models.py:117 msgid "uid" msgstr "" -#: socialaccount/models.py:117 +#: socialaccount/models.py:119 msgid "last login" msgstr "" -#: socialaccount/models.py:118 +#: socialaccount/models.py:120 msgid "date joined" msgstr "" -#: socialaccount/models.py:119 +#: socialaccount/models.py:121 msgid "extra data" msgstr "" -#: socialaccount/models.py:123 +#: socialaccount/models.py:125 msgid "social account" msgstr "" -#: socialaccount/models.py:124 +#: socialaccount/models.py:126 msgid "social accounts" msgstr "" -#: socialaccount/models.py:158 +#: socialaccount/models.py:160 msgid "token" msgstr "" -#: socialaccount/models.py:159 +#: socialaccount/models.py:161 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)" msgstr "" -#: socialaccount/models.py:163 +#: socialaccount/models.py:165 msgid "token secret" msgstr "" -#: socialaccount/models.py:164 +#: socialaccount/models.py:166 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)" msgstr "" -#: socialaccount/models.py:167 +#: socialaccount/models.py:169 msgid "expires at" msgstr "" -#: socialaccount/models.py:172 +#: socialaccount/models.py:174 msgid "social application token" msgstr "" -#: socialaccount/models.py:173 +#: socialaccount/models.py:175 msgid "social application tokens" msgstr "" diff --git a/allauth/locale/id/LC_MESSAGES/django.po b/allauth/locale/id/LC_MESSAGES/django.po index f159d616d8..66cfb3cc68 100644 --- a/allauth/locale/id/LC_MESSAGES/django.po +++ b/allauth/locale/id/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-30 16:00-0500\n" +"POT-Creation-Date: 2023-09-07 04:22-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,26 +18,26 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: account/adapter.py:47 +#: account/adapter.py:48 msgid "Username can not be used. Please use other username." msgstr "" "Name pengguna tidak dapat digunakan. Silahkan gunakan nama pengguna lain." -#: account/adapter.py:53 +#: account/adapter.py:54 msgid "Too many failed login attempts. Try again later." msgstr "Terlalu banyak percobaan masuk yang gagal. Coba lagi nanti." -#: account/adapter.py:55 +#: account/adapter.py:56 msgid "A user is already registered with this email address." msgstr "Seorang pengguna sudah terdaftar dengan alamat e-mail ini." -#: account/adapter.py:56 +#: account/adapter.py:57 #, fuzzy #| msgid "Current Password" msgid "Incorrect password." msgstr "Kata sandi saat ini" -#: account/adapter.py:305 +#: account/adapter.py:308 #, python-brace-format msgid "Password must be a minimum of {0} characters." msgstr "Kata sandi harus memiliki panjang minimal {0} karakter." @@ -51,7 +51,7 @@ msgid "You must type the same password each time." msgstr "Anda harus mengetikkan kata sandi yang sama setiap kali." #: account/forms.py:90 account/forms.py:397 account/forms.py:522 -#: account/forms.py:660 +#: account/forms.py:658 msgid "Password" msgstr "Kata sandi" @@ -128,11 +128,11 @@ msgstr "Anda tidak dapat menambahkan lebih dari %d alamat e-mail." msgid "Current Password" msgstr "Kata sandi saat ini" -#: account/forms.py:505 account/forms.py:609 +#: account/forms.py:505 account/forms.py:607 msgid "New Password" msgstr "Kata sandi baru" -#: account/forms.py:506 account/forms.py:610 +#: account/forms.py:506 account/forms.py:608 msgid "New Password (again)" msgstr "Kata sandi baru (lagi)" @@ -144,7 +144,7 @@ msgstr "Silahkan ketik kata sandi Anda saat ini." msgid "The email address is not assigned to any user account" msgstr "Alamat e-mail ini tidak terhubung dengan akun pengguna mana pun" -#: account/forms.py:630 +#: account/forms.py:628 msgid "The password reset token was invalid." msgstr "Token untuk mengatur ulang kata sandi tidak valid." @@ -176,7 +176,7 @@ msgstr "dibuat" msgid "sent" msgstr "dikirim" -#: account/models.py:143 socialaccount/models.py:60 +#: account/models.py:143 socialaccount/models.py:62 msgid "key" msgstr "kunci" @@ -188,19 +188,19 @@ msgstr "konfirmasi e-mail" msgid "email confirmations" msgstr "konfirmasi e-mail" -#: mfa/adapter.py:18 +#: mfa/adapter.py:19 msgid "" "You cannot activate two-factor authentication until you have verified your " "email address." msgstr "" -#: mfa/adapter.py:21 +#: mfa/adapter.py:22 msgid "" "You cannot add an email address to an account protected by two-factor " "authentication." msgstr "" -#: mfa/adapter.py:23 +#: mfa/adapter.py:24 msgid "Incorrect code." msgstr "" @@ -224,7 +224,7 @@ msgstr "" msgid "TOTP Authenticator" msgstr "" -#: socialaccount/adapter.py:28 +#: socialaccount/adapter.py:30 #, fuzzy, python-format #| msgid "" #| "An account already exists with this e-mail address. Please sign in to " @@ -236,11 +236,11 @@ msgstr "" "Sudah ada akun yang menggunakan alamat e-mail ini. Silahkan masuk ke akun " "itu terlebih dahulu, lalu sambungkan akun %s Anda." -#: socialaccount/adapter.py:132 +#: socialaccount/adapter.py:136 msgid "Your account has no password set up." msgstr "Akun Anda tidak memiliki kata sandi." -#: socialaccount/adapter.py:139 +#: socialaccount/adapter.py:143 msgid "Your account has no verified email address." msgstr "Akun Anda tidak memiliki alamat e-mail yang terverifikasi." @@ -248,97 +248,97 @@ msgstr "Akun Anda tidak memiliki alamat e-mail yang terverifikasi." msgid "Social Accounts" msgstr "Akun Sosial" -#: socialaccount/models.py:34 socialaccount/models.py:95 +#: socialaccount/models.py:36 socialaccount/models.py:97 msgid "provider" msgstr "pemberi" -#: socialaccount/models.py:43 +#: socialaccount/models.py:45 #, fuzzy #| msgid "provider" msgid "provider ID" msgstr "pemberi" -#: socialaccount/models.py:47 +#: socialaccount/models.py:49 msgid "name" msgstr "nama" -#: socialaccount/models.py:49 +#: socialaccount/models.py:51 msgid "client id" msgstr "id klien" -#: socialaccount/models.py:51 +#: socialaccount/models.py:53 msgid "App ID, or consumer key" msgstr "ID Aplikasi, atau kunci konsumen" -#: socialaccount/models.py:54 +#: socialaccount/models.py:56 msgid "secret key" msgstr "kunci rahasia" -#: socialaccount/models.py:57 +#: socialaccount/models.py:59 msgid "API secret, client secret, or consumer secret" msgstr "Kunci API, kunci klien, atau kunci konsumen" -#: socialaccount/models.py:60 +#: socialaccount/models.py:62 msgid "Key" msgstr "Kunci" -#: socialaccount/models.py:79 +#: socialaccount/models.py:81 msgid "social application" msgstr "aplikasi sosial" -#: socialaccount/models.py:80 +#: socialaccount/models.py:82 msgid "social applications" msgstr "aplikasi sosial" -#: socialaccount/models.py:115 +#: socialaccount/models.py:117 msgid "uid" msgstr "uid" -#: socialaccount/models.py:117 +#: socialaccount/models.py:119 msgid "last login" msgstr "masuk terakhir" -#: socialaccount/models.py:118 +#: socialaccount/models.py:120 msgid "date joined" msgstr "tanggal bergabung" -#: socialaccount/models.py:119 +#: socialaccount/models.py:121 msgid "extra data" msgstr "data tambahan" -#: socialaccount/models.py:123 +#: socialaccount/models.py:125 msgid "social account" msgstr "akun sosial" -#: socialaccount/models.py:124 +#: socialaccount/models.py:126 msgid "social accounts" msgstr "akun sosial" -#: socialaccount/models.py:158 +#: socialaccount/models.py:160 msgid "token" msgstr "token" -#: socialaccount/models.py:159 +#: socialaccount/models.py:161 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)" msgstr "\"oauth_token\" (OAuth1) atau token akses (OAuth2)" -#: socialaccount/models.py:163 +#: socialaccount/models.py:165 msgid "token secret" msgstr "rahasia token" -#: socialaccount/models.py:164 +#: socialaccount/models.py:166 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)" msgstr "\"oauth_token_secret\" (OAuth1) atau token refresh (OAuth2)" -#: socialaccount/models.py:167 +#: socialaccount/models.py:169 msgid "expires at" msgstr "kadaluarsa pada" -#: socialaccount/models.py:172 +#: socialaccount/models.py:174 msgid "social application token" msgstr "token aplikasi sosial" -#: socialaccount/models.py:173 +#: socialaccount/models.py:175 msgid "social application tokens" msgstr "token-token aplikasi sosial" diff --git a/allauth/locale/it/LC_MESSAGES/django.po b/allauth/locale/it/LC_MESSAGES/django.po index f1d23d7bc8..585b6aa17a 100644 --- a/allauth/locale/it/LC_MESSAGES/django.po +++ b/allauth/locale/it/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: django-allauth\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-30 16:00-0500\n" +"POT-Creation-Date: 2023-09-07 04:22-0500\n" "PO-Revision-Date: 2020-10-15 19:55+0200\n" "Last-Translator: Sandro \n" "Language: it\n" @@ -20,25 +20,25 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 1.8.7.1\n" -#: account/adapter.py:47 +#: account/adapter.py:48 msgid "Username can not be used. Please use other username." msgstr "Questo username non può essere usato. Per favore scegline un altro." -#: account/adapter.py:53 +#: account/adapter.py:54 msgid "Too many failed login attempts. Try again later." msgstr "Troppo tentativi di accesso. Riprova più tardi." -#: account/adapter.py:55 +#: account/adapter.py:56 msgid "A user is already registered with this email address." msgstr "Un altro utente si è già registrato con questo indirizzo e-mail." -#: account/adapter.py:56 +#: account/adapter.py:57 #, fuzzy #| msgid "Current Password" msgid "Incorrect password." msgstr "Password attuale" -#: account/adapter.py:305 +#: account/adapter.py:308 #, python-brace-format msgid "Password must be a minimum of {0} characters." msgstr "La password deve essere lunga almeno {0} caratteri." @@ -52,7 +52,7 @@ msgid "You must type the same password each time." msgstr "Devi digitare la stessa password." #: account/forms.py:90 account/forms.py:397 account/forms.py:522 -#: account/forms.py:660 +#: account/forms.py:658 msgid "Password" msgstr "Password" @@ -130,11 +130,11 @@ msgstr "Non hai ancora verificato il tuo indirizzo e-mail." msgid "Current Password" msgstr "Password attuale" -#: account/forms.py:505 account/forms.py:609 +#: account/forms.py:505 account/forms.py:607 msgid "New Password" msgstr "Nuova password" -#: account/forms.py:506 account/forms.py:610 +#: account/forms.py:506 account/forms.py:608 msgid "New Password (again)" msgstr "Nuova password (nuovamente)" @@ -146,7 +146,7 @@ msgstr "Per favore digita la tua password attuale." msgid "The email address is not assigned to any user account" msgstr "L'indirizzo e-mail non è assegnato a nessun account utente" -#: account/forms.py:630 +#: account/forms.py:628 msgid "The password reset token was invalid." msgstr "Il codice per il reset della password non è valido." @@ -180,7 +180,7 @@ msgstr "creato" msgid "sent" msgstr "inviato" -#: account/models.py:143 socialaccount/models.py:60 +#: account/models.py:143 socialaccount/models.py:62 msgid "key" msgstr "chiave" @@ -192,19 +192,19 @@ msgstr "email di conferma" msgid "email confirmations" msgstr "email di conferma" -#: mfa/adapter.py:18 +#: mfa/adapter.py:19 msgid "" "You cannot activate two-factor authentication until you have verified your " "email address." msgstr "" -#: mfa/adapter.py:21 +#: mfa/adapter.py:22 msgid "" "You cannot add an email address to an account protected by two-factor " "authentication." msgstr "" -#: mfa/adapter.py:23 +#: mfa/adapter.py:24 msgid "Incorrect code." msgstr "" @@ -228,7 +228,7 @@ msgstr "" msgid "TOTP Authenticator" msgstr "" -#: socialaccount/adapter.py:28 +#: socialaccount/adapter.py:30 #, fuzzy, python-format #| msgid "" #| "An account already exists with this e-mail address. Please sign in to " @@ -240,11 +240,11 @@ msgstr "" "Esiste già un account con questo indirizzo e-mail. Per favore entra con " "quell'account, e successivamente connetti il tuo account %s." -#: socialaccount/adapter.py:132 +#: socialaccount/adapter.py:136 msgid "Your account has no password set up." msgstr "Il tuo account non ha ancora nessuna password." -#: socialaccount/adapter.py:139 +#: socialaccount/adapter.py:143 msgid "Your account has no verified email address." msgstr "Non hai ancora verificato il tuo indirizzo e-mail." @@ -252,97 +252,97 @@ msgstr "Non hai ancora verificato il tuo indirizzo e-mail." msgid "Social Accounts" msgstr "Account" -#: socialaccount/models.py:34 socialaccount/models.py:95 +#: socialaccount/models.py:36 socialaccount/models.py:97 msgid "provider" msgstr "provider" -#: socialaccount/models.py:43 +#: socialaccount/models.py:45 #, fuzzy #| msgid "provider" msgid "provider ID" msgstr "provider" -#: socialaccount/models.py:47 +#: socialaccount/models.py:49 msgid "name" msgstr "nome" -#: socialaccount/models.py:49 +#: socialaccount/models.py:51 msgid "client id" msgstr "Id cliente" -#: socialaccount/models.py:51 +#: socialaccount/models.py:53 msgid "App ID, or consumer key" msgstr "App ID, o consumer key" -#: socialaccount/models.py:54 +#: socialaccount/models.py:56 msgid "secret key" msgstr "secret key" -#: socialaccount/models.py:57 +#: socialaccount/models.py:59 msgid "API secret, client secret, or consumer secret" msgstr "" -#: socialaccount/models.py:60 +#: socialaccount/models.py:62 msgid "Key" msgstr "Chiave" -#: socialaccount/models.py:79 +#: socialaccount/models.py:81 msgid "social application" msgstr "" -#: socialaccount/models.py:80 +#: socialaccount/models.py:82 msgid "social applications" msgstr "" -#: socialaccount/models.py:115 +#: socialaccount/models.py:117 msgid "uid" msgstr "" -#: socialaccount/models.py:117 +#: socialaccount/models.py:119 msgid "last login" msgstr "Ultimo accesso" -#: socialaccount/models.py:118 +#: socialaccount/models.py:120 msgid "date joined" msgstr "data iscrizione" -#: socialaccount/models.py:119 +#: socialaccount/models.py:121 msgid "extra data" msgstr "dati aggiuntivi" -#: socialaccount/models.py:123 +#: socialaccount/models.py:125 msgid "social account" msgstr "" -#: socialaccount/models.py:124 +#: socialaccount/models.py:126 msgid "social accounts" msgstr "" -#: socialaccount/models.py:158 +#: socialaccount/models.py:160 msgid "token" msgstr "" -#: socialaccount/models.py:159 +#: socialaccount/models.py:161 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)" msgstr "" -#: socialaccount/models.py:163 +#: socialaccount/models.py:165 msgid "token secret" msgstr "" -#: socialaccount/models.py:164 +#: socialaccount/models.py:166 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)" msgstr "" -#: socialaccount/models.py:167 +#: socialaccount/models.py:169 msgid "expires at" msgstr "scade il" -#: socialaccount/models.py:172 +#: socialaccount/models.py:174 msgid "social application token" msgstr "" -#: socialaccount/models.py:173 +#: socialaccount/models.py:175 msgid "social application tokens" msgstr "" diff --git a/allauth/locale/ja/LC_MESSAGES/django.po b/allauth/locale/ja/LC_MESSAGES/django.po index 2c5017a012..e573d95096 100644 --- a/allauth/locale/ja/LC_MESSAGES/django.po +++ b/allauth/locale/ja/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-30 16:00-0500\n" +"POT-Creation-Date: 2023-09-07 04:22-0500\n" "PO-Revision-Date: 2022-11-28 12:06+0900\n" "Last-Translator: Sora Yanai \n" "Language-Team: LANGUAGE \n" @@ -18,25 +18,25 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: account/adapter.py:47 +#: account/adapter.py:48 msgid "Username can not be used. Please use other username." msgstr "このユーザー名は使用できません。他のユーザー名を選んでください。" -#: account/adapter.py:53 +#: account/adapter.py:54 msgid "Too many failed login attempts. Try again later." msgstr "ログイン失敗が連続しています。時間が経ってからやり直してください。" -#: account/adapter.py:55 +#: account/adapter.py:56 msgid "A user is already registered with this email address." msgstr "他のユーザーがこのメールアドレスを使用しています。" -#: account/adapter.py:56 +#: account/adapter.py:57 #, fuzzy #| msgid "Current Password" msgid "Incorrect password." msgstr "現在のパスワード" -#: account/adapter.py:305 +#: account/adapter.py:308 #, python-brace-format msgid "Password must be a minimum of {0} characters." msgstr "パスワードは {0} 文字以上の長さが必要です。" @@ -50,7 +50,7 @@ msgid "You must type the same password each time." msgstr "同じパスワードを入力してください。" #: account/forms.py:90 account/forms.py:397 account/forms.py:522 -#: account/forms.py:660 +#: account/forms.py:658 msgid "Password" msgstr "パスワード" @@ -132,11 +132,11 @@ msgstr "確認済みのメールアドレスの登録が必要です。" msgid "Current Password" msgstr "現在のパスワード" -#: account/forms.py:505 account/forms.py:609 +#: account/forms.py:505 account/forms.py:607 msgid "New Password" msgstr "新しいパスワード" -#: account/forms.py:506 account/forms.py:610 +#: account/forms.py:506 account/forms.py:608 msgid "New Password (again)" msgstr "新しいパスワード(再入力)" @@ -148,7 +148,7 @@ msgstr "現在のパスワードを入力してください。" msgid "The email address is not assigned to any user account" msgstr "このメールアドレスで登録されたユーザーアカウントがありません。" -#: account/forms.py:630 +#: account/forms.py:628 msgid "The password reset token was invalid." msgstr "パスワードリセットトークンが無効です。" @@ -180,7 +180,7 @@ msgstr "作成日時" msgid "sent" msgstr "送信日時" -#: account/models.py:143 socialaccount/models.py:60 +#: account/models.py:143 socialaccount/models.py:62 msgid "key" msgstr "キー" @@ -192,19 +192,19 @@ msgstr "メールアドレスの確認" msgid "email confirmations" msgstr "メールアドレスの確認" -#: mfa/adapter.py:18 +#: mfa/adapter.py:19 msgid "" "You cannot activate two-factor authentication until you have verified your " "email address." msgstr "" -#: mfa/adapter.py:21 +#: mfa/adapter.py:22 msgid "" "You cannot add an email address to an account protected by two-factor " "authentication." msgstr "" -#: mfa/adapter.py:23 +#: mfa/adapter.py:24 msgid "Incorrect code." msgstr "" @@ -228,7 +228,7 @@ msgstr "" msgid "TOTP Authenticator" msgstr "" -#: socialaccount/adapter.py:28 +#: socialaccount/adapter.py:30 #, fuzzy, python-format #| msgid "" #| "An account already exists with this e-mail address. Please sign in to " @@ -240,11 +240,11 @@ msgstr "" "このメールアドレスを使用するアカウントが既にあります。そのアカウントにログイ" "ンしてから%sアカウントを接続してください" -#: socialaccount/adapter.py:132 +#: socialaccount/adapter.py:136 msgid "Your account has no password set up." msgstr "アカウントにパスワードを設定する必要があります。" -#: socialaccount/adapter.py:139 +#: socialaccount/adapter.py:143 msgid "Your account has no verified email address." msgstr "確認済みのメールアドレスの登録が必要です。" @@ -252,98 +252,98 @@ msgstr "確認済みのメールアドレスの登録が必要です。" msgid "Social Accounts" msgstr "外部アカウント" -#: socialaccount/models.py:34 socialaccount/models.py:95 +#: socialaccount/models.py:36 socialaccount/models.py:97 msgid "provider" msgstr "プロバイダー" -#: socialaccount/models.py:43 +#: socialaccount/models.py:45 #, fuzzy #| msgid "provider" msgid "provider ID" msgstr "プロバイダー" -#: socialaccount/models.py:47 +#: socialaccount/models.py:49 msgid "name" msgstr "ユーザー名" -#: socialaccount/models.py:49 +#: socialaccount/models.py:51 msgid "client id" msgstr "ユーザID" -#: socialaccount/models.py:51 +#: socialaccount/models.py:53 msgid "App ID, or consumer key" msgstr "App IDもしくはコンシューマキー" -#: socialaccount/models.py:54 +#: socialaccount/models.py:56 msgid "secret key" msgstr "シークレットキー" -#: socialaccount/models.py:57 +#: socialaccount/models.py:59 msgid "API secret, client secret, or consumer secret" msgstr "" "APIシークレット、クライアントシークレット、またはコンシューマーシークレット" -#: socialaccount/models.py:60 +#: socialaccount/models.py:62 msgid "Key" msgstr "キー" -#: socialaccount/models.py:79 +#: socialaccount/models.py:81 msgid "social application" msgstr "ソーシャルアプリケーション" -#: socialaccount/models.py:80 +#: socialaccount/models.py:82 msgid "social applications" msgstr "ソーシャルアプリケーション" -#: socialaccount/models.py:115 +#: socialaccount/models.py:117 msgid "uid" msgstr "" -#: socialaccount/models.py:117 +#: socialaccount/models.py:119 msgid "last login" msgstr "最終ログイン" -#: socialaccount/models.py:118 +#: socialaccount/models.py:120 msgid "date joined" msgstr "アカウント作成日" -#: socialaccount/models.py:119 +#: socialaccount/models.py:121 msgid "extra data" msgstr "エクストラデータ" -#: socialaccount/models.py:123 +#: socialaccount/models.py:125 msgid "social account" msgstr "ソーシャルアカウント" -#: socialaccount/models.py:124 +#: socialaccount/models.py:126 msgid "social accounts" msgstr "ソーシャルアカウント" -#: socialaccount/models.py:158 +#: socialaccount/models.py:160 msgid "token" msgstr "トークン" -#: socialaccount/models.py:159 +#: socialaccount/models.py:161 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)" msgstr "\"oauth_token\" (OAuth1) もしくは Access Token (OAuth2)" -#: socialaccount/models.py:163 +#: socialaccount/models.py:165 msgid "token secret" msgstr "トークンシークレット" -#: socialaccount/models.py:164 +#: socialaccount/models.py:166 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)" msgstr "\"oauth_token_secret\" (OAuth1) もしくは Refresh Token (OAuth2)" -#: socialaccount/models.py:167 +#: socialaccount/models.py:169 msgid "expires at" msgstr "失効期限" -#: socialaccount/models.py:172 +#: socialaccount/models.py:174 msgid "social application token" msgstr "ソーシャルアプリケーショントークン" -#: socialaccount/models.py:173 +#: socialaccount/models.py:175 msgid "social application tokens" msgstr "ソーシャルアプリケーショントークン" diff --git a/allauth/locale/ka/LC_MESSAGES/django.po b/allauth/locale/ka/LC_MESSAGES/django.po index af2216fb1a..59c36d1d34 100644 --- a/allauth/locale/ka/LC_MESSAGES/django.po +++ b/allauth/locale/ka/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-30 16:00-0500\n" +"POT-Creation-Date: 2023-09-07 04:22-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Nikoloz Naskidashvili \n" "Language-Team: LANGUAGE \n" @@ -18,26 +18,26 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n!=1);\n" -#: account/adapter.py:47 +#: account/adapter.py:48 msgid "Username can not be used. Please use other username." msgstr "" "ამ მომხმარებლის სახელის გამოყენება შეუძლებელია. გთხოვთ გამოიყენოთ სხვა." -#: account/adapter.py:53 +#: account/adapter.py:54 msgid "Too many failed login attempts. Try again later." msgstr "შესვლის ძალიან ბევრი წარუმატებელი მცდელობა. მოგვიანებით სცადეთ." -#: account/adapter.py:55 +#: account/adapter.py:56 msgid "A user is already registered with this email address." msgstr "მომხმარებელი ამ ელ. ფოსტით უკვე დარეგისტრირებულია." -#: account/adapter.py:56 +#: account/adapter.py:57 #, fuzzy #| msgid "Current Password" msgid "Incorrect password." msgstr "მიმდინარე პაროლი" -#: account/adapter.py:305 +#: account/adapter.py:308 #, python-brace-format msgid "Password must be a minimum of {0} characters." msgstr "პაროლი უნდა შეიცავდეს მინიმუმ {0} სიმბოლოს." @@ -51,7 +51,7 @@ msgid "You must type the same password each time." msgstr "თქვენ უნდა აკრიფოთ ერთი და იგივე პაროლი ყოველ ჯერზე." #: account/forms.py:90 account/forms.py:397 account/forms.py:522 -#: account/forms.py:660 +#: account/forms.py:658 msgid "Password" msgstr "პაროლი" @@ -128,11 +128,11 @@ msgstr "თქვენ არ შეგიძლიათ დაამატო msgid "Current Password" msgstr "მიმდინარე პაროლი" -#: account/forms.py:505 account/forms.py:609 +#: account/forms.py:505 account/forms.py:607 msgid "New Password" msgstr "ახალი პაროლი" -#: account/forms.py:506 account/forms.py:610 +#: account/forms.py:506 account/forms.py:608 msgid "New Password (again)" msgstr "ახალი პაროლი (გაამეორეთ)" @@ -146,7 +146,7 @@ msgstr "" "ეს ელექტრონული ფოსტის მისამართი არ არის მიბმული რომელიმე მომხმარებლის " "ანგარიშზე" -#: account/forms.py:630 +#: account/forms.py:628 msgid "The password reset token was invalid." msgstr "პაროლის აღდგენის კოდი არასწორია." @@ -178,7 +178,7 @@ msgstr "შექმნილი" msgid "sent" msgstr "გაგზავნილი" -#: account/models.py:143 socialaccount/models.py:60 +#: account/models.py:143 socialaccount/models.py:62 msgid "key" msgstr "კოდი" @@ -190,19 +190,19 @@ msgstr "ელ. ფოსტის დადასტურება" msgid "email confirmations" msgstr "ელ. ფოსტის დადასტურებები" -#: mfa/adapter.py:18 +#: mfa/adapter.py:19 msgid "" "You cannot activate two-factor authentication until you have verified your " "email address." msgstr "" -#: mfa/adapter.py:21 +#: mfa/adapter.py:22 msgid "" "You cannot add an email address to an account protected by two-factor " "authentication." msgstr "" -#: mfa/adapter.py:23 +#: mfa/adapter.py:24 msgid "Incorrect code." msgstr "" @@ -226,7 +226,7 @@ msgstr "" msgid "TOTP Authenticator" msgstr "" -#: socialaccount/adapter.py:28 +#: socialaccount/adapter.py:30 #, fuzzy, python-format #| msgid "" #| "An account already exists with this e-mail address. Please sign in to " @@ -238,11 +238,11 @@ msgstr "" "მომხმარებელი უკვე არსებობს ამ ელ.ფოსტის მისამართით.%s-ით შესვლა ვერ " "მოხერხდება." -#: socialaccount/adapter.py:132 +#: socialaccount/adapter.py:136 msgid "Your account has no password set up." msgstr "თქვენს ანგარიშს არ აქვს პაროლი დაყენებული." -#: socialaccount/adapter.py:139 +#: socialaccount/adapter.py:143 msgid "Your account has no verified email address." msgstr "თქვენს ანგარიშს არ აქვს დადასტურებული ელ. ფოსტა." @@ -250,98 +250,98 @@ msgstr "თქვენს ანგარიშს არ აქვს და msgid "Social Accounts" msgstr "სოციალური ანგარიშები" -#: socialaccount/models.py:34 socialaccount/models.py:95 +#: socialaccount/models.py:36 socialaccount/models.py:97 msgid "provider" msgstr "პროვაიდერი" -#: socialaccount/models.py:43 +#: socialaccount/models.py:45 #, fuzzy #| msgid "provider" msgid "provider ID" msgstr "პროვაიდერი" -#: socialaccount/models.py:47 +#: socialaccount/models.py:49 msgid "name" msgstr "სახელი" -#: socialaccount/models.py:49 +#: socialaccount/models.py:51 msgid "client id" msgstr "კლიენტის id" -#: socialaccount/models.py:51 +#: socialaccount/models.py:53 msgid "App ID, or consumer key" msgstr "აპლიკაციის ID ან მომხმარებლის კოდი" -#: socialaccount/models.py:54 +#: socialaccount/models.py:56 msgid "secret key" msgstr "საიდუმლო კოდი" -#: socialaccount/models.py:57 +#: socialaccount/models.py:59 msgid "API secret, client secret, or consumer secret" msgstr "" "API-ს საიდუმლო კოდი, კლიენტის საიდუმლო კოდი ან მომხმარებლის საიდუმლო კოდი" -#: socialaccount/models.py:60 +#: socialaccount/models.py:62 msgid "Key" msgstr "კოდი" -#: socialaccount/models.py:79 +#: socialaccount/models.py:81 msgid "social application" msgstr "სოციალური აპლიკაცია" -#: socialaccount/models.py:80 +#: socialaccount/models.py:82 msgid "social applications" msgstr "სოციალური აპლიკაციები" -#: socialaccount/models.py:115 +#: socialaccount/models.py:117 msgid "uid" msgstr "uid" -#: socialaccount/models.py:117 +#: socialaccount/models.py:119 msgid "last login" msgstr "ბოლო შესვლის თარიღი" -#: socialaccount/models.py:118 +#: socialaccount/models.py:120 msgid "date joined" msgstr "ანგარიშის შექმნის თარიღი" -#: socialaccount/models.py:119 +#: socialaccount/models.py:121 msgid "extra data" msgstr "სხვა მონაცემები" -#: socialaccount/models.py:123 +#: socialaccount/models.py:125 msgid "social account" msgstr "სოციალური ანგარიში" -#: socialaccount/models.py:124 +#: socialaccount/models.py:126 msgid "social accounts" msgstr "სოციალური ანგარიშები" -#: socialaccount/models.py:158 +#: socialaccount/models.py:160 msgid "token" msgstr "კოდი" -#: socialaccount/models.py:159 +#: socialaccount/models.py:161 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)" msgstr "\"oauth_token\" (OAuth1) ან access token (OAuth2)" -#: socialaccount/models.py:163 +#: socialaccount/models.py:165 msgid "token secret" msgstr "საიდუმლო კოდი" -#: socialaccount/models.py:164 +#: socialaccount/models.py:166 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)" msgstr "\"oauth_token_secret\" (OAuth1) ან refresh token (OAuth2)" -#: socialaccount/models.py:167 +#: socialaccount/models.py:169 msgid "expires at" msgstr "ვადა გაუსვლის თარიღი" -#: socialaccount/models.py:172 +#: socialaccount/models.py:174 msgid "social application token" msgstr "სოციალური ანგარიშის კოდი" -#: socialaccount/models.py:173 +#: socialaccount/models.py:175 msgid "social application tokens" msgstr "სოციალური ანგარიშების კოდი" diff --git a/allauth/locale/ko/LC_MESSAGES/django.po b/allauth/locale/ko/LC_MESSAGES/django.po index 7aa9880c80..015d3b76ae 100644 --- a/allauth/locale/ko/LC_MESSAGES/django.po +++ b/allauth/locale/ko/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-30 16:00-0500\n" +"POT-Creation-Date: 2023-09-07 04:22-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,25 +18,25 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: account/adapter.py:47 +#: account/adapter.py:48 msgid "Username can not be used. Please use other username." msgstr "해당 아이디는 이미 사용중입니다. 다른 사용자명을 이용해 주세요." -#: account/adapter.py:53 +#: account/adapter.py:54 msgid "Too many failed login attempts. Try again later." msgstr "너무 많은 로그인 실패가 감지되었습니다. 잠시 후에 다시 시도하세요." -#: account/adapter.py:55 +#: account/adapter.py:56 msgid "A user is already registered with this email address." msgstr "해당 이메일은 이미 사용되고 있습니다." -#: account/adapter.py:56 +#: account/adapter.py:57 #, fuzzy #| msgid "Current Password" msgid "Incorrect password." msgstr "현재 비밀번호" -#: account/adapter.py:305 +#: account/adapter.py:308 #, python-brace-format msgid "Password must be a minimum of {0} characters." msgstr "비밀번호는 최소 {0}자 이상이어야 합니다." @@ -50,7 +50,7 @@ msgid "You must type the same password each time." msgstr "동일한 비밀번호를 입력해야 합니다." #: account/forms.py:90 account/forms.py:397 account/forms.py:522 -#: account/forms.py:660 +#: account/forms.py:658 msgid "Password" msgstr "비밀번호" @@ -128,11 +128,11 @@ msgstr "당신의 계정에는 인증된 이메일이 없습니다." msgid "Current Password" msgstr "현재 비밀번호" -#: account/forms.py:505 account/forms.py:609 +#: account/forms.py:505 account/forms.py:607 msgid "New Password" msgstr "새 비밀번호" -#: account/forms.py:506 account/forms.py:610 +#: account/forms.py:506 account/forms.py:608 msgid "New Password (again)" msgstr "새 비밀번호 (확인)" @@ -144,7 +144,7 @@ msgstr "현재 비밀번호를 입력하세요." msgid "The email address is not assigned to any user account" msgstr "해당 이메일을 가지고 있는 사용자가 없습니다." -#: account/forms.py:630 +#: account/forms.py:628 msgid "The password reset token was invalid." msgstr "비밀번호 초기화 토큰이 올바르지 않습니다." @@ -176,7 +176,7 @@ msgstr "생성됨" msgid "sent" msgstr "전송됨" -#: account/models.py:143 socialaccount/models.py:60 +#: account/models.py:143 socialaccount/models.py:62 msgid "key" msgstr "키" @@ -188,19 +188,19 @@ msgstr "이메일 확인" msgid "email confirmations" msgstr "이메일 확인" -#: mfa/adapter.py:18 +#: mfa/adapter.py:19 msgid "" "You cannot activate two-factor authentication until you have verified your " "email address." msgstr "" -#: mfa/adapter.py:21 +#: mfa/adapter.py:22 msgid "" "You cannot add an email address to an account protected by two-factor " "authentication." msgstr "" -#: mfa/adapter.py:23 +#: mfa/adapter.py:24 msgid "Incorrect code." msgstr "" @@ -224,7 +224,7 @@ msgstr "" msgid "TOTP Authenticator" msgstr "" -#: socialaccount/adapter.py:28 +#: socialaccount/adapter.py:30 #, fuzzy, python-format #| msgid "" #| "An account already exists with this e-mail address. Please sign in to " @@ -236,11 +236,11 @@ msgstr "" "해당 이메일을 사용중인 계정이 이미 존재합니다. 해당 계정으로 로그인 후에 %s " "계정으로 연결하세요." -#: socialaccount/adapter.py:132 +#: socialaccount/adapter.py:136 msgid "Your account has no password set up." msgstr "당신의 계정에 비밀번호가 설정되어있지 않습니다." -#: socialaccount/adapter.py:139 +#: socialaccount/adapter.py:143 msgid "Your account has no verified email address." msgstr "당신의 계정에는 인증된 이메일이 없습니다." @@ -248,97 +248,97 @@ msgstr "당신의 계정에는 인증된 이메일이 없습니다." msgid "Social Accounts" msgstr "소셜 계정" -#: socialaccount/models.py:34 socialaccount/models.py:95 +#: socialaccount/models.py:36 socialaccount/models.py:97 msgid "provider" msgstr "제공자" -#: socialaccount/models.py:43 +#: socialaccount/models.py:45 #, fuzzy #| msgid "provider" msgid "provider ID" msgstr "제공자" -#: socialaccount/models.py:47 +#: socialaccount/models.py:49 msgid "name" msgstr "이름" -#: socialaccount/models.py:49 +#: socialaccount/models.py:51 msgid "client id" msgstr "클라이언트 아이디" -#: socialaccount/models.py:51 +#: socialaccount/models.py:53 msgid "App ID, or consumer key" msgstr "앱 아이디 또는 컨슈머 아이디" -#: socialaccount/models.py:54 +#: socialaccount/models.py:56 msgid "secret key" msgstr "비밀 키" -#: socialaccount/models.py:57 +#: socialaccount/models.py:59 msgid "API secret, client secret, or consumer secret" msgstr "API 비밀 키, 클라이언트 비밀 키, 또는 컨슈머 비밀 키" -#: socialaccount/models.py:60 +#: socialaccount/models.py:62 msgid "Key" msgstr "키" -#: socialaccount/models.py:79 +#: socialaccount/models.py:81 msgid "social application" msgstr "소셜 어플리케이션" -#: socialaccount/models.py:80 +#: socialaccount/models.py:82 msgid "social applications" msgstr "소셜 어플리케이션" -#: socialaccount/models.py:115 +#: socialaccount/models.py:117 msgid "uid" msgstr "" -#: socialaccount/models.py:117 +#: socialaccount/models.py:119 msgid "last login" msgstr "최종 로그인" -#: socialaccount/models.py:118 +#: socialaccount/models.py:120 msgid "date joined" msgstr "가입 날짜" -#: socialaccount/models.py:119 +#: socialaccount/models.py:121 msgid "extra data" msgstr "추가 정보" -#: socialaccount/models.py:123 +#: socialaccount/models.py:125 msgid "social account" msgstr "소셜 계정" -#: socialaccount/models.py:124 +#: socialaccount/models.py:126 msgid "social accounts" msgstr "소셜 계정" -#: socialaccount/models.py:158 +#: socialaccount/models.py:160 msgid "token" msgstr "토큰" -#: socialaccount/models.py:159 +#: socialaccount/models.py:161 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)" msgstr "\"oauth_token\" (OAuth1) 또는 access token (OAuth2)" -#: socialaccount/models.py:163 +#: socialaccount/models.py:165 msgid "token secret" msgstr "시크릿 토큰" -#: socialaccount/models.py:164 +#: socialaccount/models.py:166 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)" msgstr "\"oauth_token_secret\" (OAuth1) 또는 refresh token (OAuth2)" -#: socialaccount/models.py:167 +#: socialaccount/models.py:169 msgid "expires at" msgstr "만료일" -#: socialaccount/models.py:172 +#: socialaccount/models.py:174 msgid "social application token" msgstr "소셜 어플리케이션 토큰" -#: socialaccount/models.py:173 +#: socialaccount/models.py:175 msgid "social application tokens" msgstr "소셜 어플리케이션 토큰" diff --git a/allauth/locale/ky/LC_MESSAGES/django.po b/allauth/locale/ky/LC_MESSAGES/django.po index 81de7a41f2..92b29be85e 100644 --- a/allauth/locale/ky/LC_MESSAGES/django.po +++ b/allauth/locale/ky/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-30 16:00-0500\n" +"POT-Creation-Date: 2023-09-07 04:22-0500\n" "PO-Revision-Date: 2016-07-20 22:24+0600\n" "Last-Translator: Murat Jumashev \n" "Language-Team: LANGUAGE \n" @@ -18,25 +18,25 @@ msgstr "" "X-Generator: Poedit 1.5.4\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: account/adapter.py:47 +#: account/adapter.py:48 msgid "Username can not be used. Please use other username." msgstr "Бул атты колдонуу мүмкүн эмес. Башкасын тандаңыз." -#: account/adapter.py:53 +#: account/adapter.py:54 msgid "Too many failed login attempts. Try again later." msgstr "Өтө көп жолу кирүү аракеттери жасалды. Кайрадан аракеттениңиз." -#: account/adapter.py:55 +#: account/adapter.py:56 msgid "A user is already registered with this email address." msgstr "Мындай эмейл менен катталган колдонуучу бар." -#: account/adapter.py:56 +#: account/adapter.py:57 #, fuzzy #| msgid "Current Password" msgid "Incorrect password." msgstr "Азыркы купуя" -#: account/adapter.py:305 +#: account/adapter.py:308 #, python-brace-format msgid "Password must be a minimum of {0} characters." msgstr "Купуя жок дегенде {0} белгиден турушу керек." @@ -50,7 +50,7 @@ msgid "You must type the same password each time." msgstr "Сиз ошол эле купуяны кайрадан териңиз." #: account/forms.py:90 account/forms.py:397 account/forms.py:522 -#: account/forms.py:660 +#: account/forms.py:658 msgid "Password" msgstr "Купуя" @@ -134,11 +134,11 @@ msgstr "Сиздин эсебиңизде дурусталган эмейл да msgid "Current Password" msgstr "Азыркы купуя" -#: account/forms.py:505 account/forms.py:609 +#: account/forms.py:505 account/forms.py:607 msgid "New Password" msgstr "Жаңы купуя" -#: account/forms.py:506 account/forms.py:610 +#: account/forms.py:506 account/forms.py:608 msgid "New Password (again)" msgstr "Жаңы купуя (кайрадан)" @@ -150,7 +150,7 @@ msgstr "Учурдагы купуяңызды жазыңыз." msgid "The email address is not assigned to any user account" msgstr "Эмейл дарек эч бир колдонуучу эсебине байланган эмес" -#: account/forms.py:630 +#: account/forms.py:628 msgid "The password reset token was invalid." msgstr "Купуяны жаңыртуу токени туура эмес." @@ -182,7 +182,7 @@ msgstr "түзүлгөн" msgid "sent" msgstr "жөнөтүлгөн" -#: account/models.py:143 socialaccount/models.py:60 +#: account/models.py:143 socialaccount/models.py:62 msgid "key" msgstr "ачкыч" @@ -194,19 +194,19 @@ msgstr "эмейл ырастоо" msgid "email confirmations" msgstr "эмейл ырастоолор" -#: mfa/adapter.py:18 +#: mfa/adapter.py:19 msgid "" "You cannot activate two-factor authentication until you have verified your " "email address." msgstr "" -#: mfa/adapter.py:21 +#: mfa/adapter.py:22 msgid "" "You cannot add an email address to an account protected by two-factor " "authentication." msgstr "" -#: mfa/adapter.py:23 +#: mfa/adapter.py:24 msgid "Incorrect code." msgstr "" @@ -230,7 +230,7 @@ msgstr "" msgid "TOTP Authenticator" msgstr "" -#: socialaccount/adapter.py:28 +#: socialaccount/adapter.py:30 #, fuzzy, python-format #| msgid "" #| "An account already exists with this e-mail address. Please sign in to " @@ -242,11 +242,11 @@ msgstr "" "Бул эмейл менен башка эсеп катталган. Ошол эсеп аркылуу кирип, %s эсебиңизди " "туташтырып алыңыз." -#: socialaccount/adapter.py:132 +#: socialaccount/adapter.py:136 msgid "Your account has no password set up." msgstr "Сиздин эсебиңизде купуя орнотулган эмес." -#: socialaccount/adapter.py:139 +#: socialaccount/adapter.py:143 msgid "Your account has no verified email address." msgstr "Сиздин эсебиңизде дурусталган эмейл даректер жок." @@ -254,97 +254,97 @@ msgstr "Сиздин эсебиңизде дурусталган эмейл да msgid "Social Accounts" msgstr "Социалдык эсептер" -#: socialaccount/models.py:34 socialaccount/models.py:95 +#: socialaccount/models.py:36 socialaccount/models.py:97 msgid "provider" msgstr "провайдер" -#: socialaccount/models.py:43 +#: socialaccount/models.py:45 #, fuzzy #| msgid "provider" msgid "provider ID" msgstr "провайдер" -#: socialaccount/models.py:47 +#: socialaccount/models.py:49 msgid "name" msgstr "аты" -#: socialaccount/models.py:49 +#: socialaccount/models.py:51 msgid "client id" msgstr "кардар id'си" -#: socialaccount/models.py:51 +#: socialaccount/models.py:53 msgid "App ID, or consumer key" msgstr "Колдонмо ID'си, же керектөөчү ачкычы" -#: socialaccount/models.py:54 +#: socialaccount/models.py:56 msgid "secret key" msgstr "жашыруун ачкыч" -#: socialaccount/models.py:57 +#: socialaccount/models.py:59 msgid "API secret, client secret, or consumer secret" msgstr "API, кардар же керектөөчүнүн жашыруун ачкычы" -#: socialaccount/models.py:60 +#: socialaccount/models.py:62 msgid "Key" msgstr "Ачкыч" -#: socialaccount/models.py:79 +#: socialaccount/models.py:81 msgid "social application" msgstr "социалдык колдонмо" -#: socialaccount/models.py:80 +#: socialaccount/models.py:82 msgid "social applications" msgstr "социалдык колдонмолор" -#: socialaccount/models.py:115 +#: socialaccount/models.py:117 msgid "uid" msgstr "uid" -#: socialaccount/models.py:117 +#: socialaccount/models.py:119 msgid "last login" msgstr "акыркы кириши" -#: socialaccount/models.py:118 +#: socialaccount/models.py:120 msgid "date joined" msgstr "кошулган күнү" -#: socialaccount/models.py:119 +#: socialaccount/models.py:121 msgid "extra data" msgstr "кошумча маалымат" -#: socialaccount/models.py:123 +#: socialaccount/models.py:125 msgid "social account" msgstr "социалдык эсеп" -#: socialaccount/models.py:124 +#: socialaccount/models.py:126 msgid "social accounts" msgstr "социалдык эсептер" -#: socialaccount/models.py:158 +#: socialaccount/models.py:160 msgid "token" msgstr "токен" -#: socialaccount/models.py:159 +#: socialaccount/models.py:161 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)" msgstr "\"oauth_token\" (OAuth1) же жетки токени (OAuth2)" -#: socialaccount/models.py:163 +#: socialaccount/models.py:165 msgid "token secret" msgstr "токендин жашыруун ачкычы" -#: socialaccount/models.py:164 +#: socialaccount/models.py:166 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)" msgstr "\"oauth_token_secret\" (OAuth1) же жаңыртуу токени (OAuth2)" -#: socialaccount/models.py:167 +#: socialaccount/models.py:169 msgid "expires at" msgstr "мөөнөтү аяктайт" -#: socialaccount/models.py:172 +#: socialaccount/models.py:174 msgid "social application token" msgstr "социалдык колдонмо токени" -#: socialaccount/models.py:173 +#: socialaccount/models.py:175 msgid "social application tokens" msgstr "социалдык колдонмо токендери" diff --git a/allauth/locale/lt/LC_MESSAGES/django.po b/allauth/locale/lt/LC_MESSAGES/django.po index 484b28b8f7..91f1496ab3 100644 --- a/allauth/locale/lt/LC_MESSAGES/django.po +++ b/allauth/locale/lt/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-30 16:00-0500\n" +"POT-Creation-Date: 2023-09-07 04:22-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -20,26 +20,26 @@ msgstr "" "11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? " "1 : n % 1 != 0 ? 2: 3);\n" -#: account/adapter.py:47 +#: account/adapter.py:48 msgid "Username can not be used. Please use other username." msgstr "" "Šis naudotojo vardas negalimas. Prašome pasirinkti kitą naudotojo vardą." -#: account/adapter.py:53 +#: account/adapter.py:54 msgid "Too many failed login attempts. Try again later." msgstr "" -#: account/adapter.py:55 +#: account/adapter.py:56 msgid "A user is already registered with this email address." msgstr "Šiuo el. pašto adresu jau yra užsiregistravęs kitas naudotojas." -#: account/adapter.py:56 +#: account/adapter.py:57 #, fuzzy #| msgid "Current Password" msgid "Incorrect password." msgstr "Esamas slaptažodis" -#: account/adapter.py:305 +#: account/adapter.py:308 #, python-brace-format msgid "Password must be a minimum of {0} characters." msgstr "Slaptažodis turi būti sudarytas mažiausiai iš {0} simbolių." @@ -53,7 +53,7 @@ msgid "You must type the same password each time." msgstr "Turite įvesti tą patį slaptažodį kiekvieną kartą." #: account/forms.py:90 account/forms.py:397 account/forms.py:522 -#: account/forms.py:660 +#: account/forms.py:658 msgid "Password" msgstr "Slaptažodis" @@ -137,11 +137,11 @@ msgstr "Jūsų paskyra neturi patvirtinto el. pašto adreso." msgid "Current Password" msgstr "Esamas slaptažodis" -#: account/forms.py:505 account/forms.py:609 +#: account/forms.py:505 account/forms.py:607 msgid "New Password" msgstr "Naujas slaptažodis" -#: account/forms.py:506 account/forms.py:610 +#: account/forms.py:506 account/forms.py:608 msgid "New Password (again)" msgstr "Naujas slaptažodis (pakartoti)" @@ -153,7 +153,7 @@ msgstr "Prašome įvesti esamą jūsų slaptažodį." msgid "The email address is not assigned to any user account" msgstr "El. pašto adresas nėra susietas su jokia naudotojo paskyra" -#: account/forms.py:630 +#: account/forms.py:628 msgid "The password reset token was invalid." msgstr "Neteisingas slaptažodžio atstatymo atpažinimo ženklas." @@ -185,7 +185,7 @@ msgstr "sukurtas" msgid "sent" msgstr "išsiųstas" -#: account/models.py:143 socialaccount/models.py:60 +#: account/models.py:143 socialaccount/models.py:62 msgid "key" msgstr "raktas" @@ -197,19 +197,19 @@ msgstr "el. pašto patvirtinimas" msgid "email confirmations" msgstr "el. pašto patvirtinimai" -#: mfa/adapter.py:18 +#: mfa/adapter.py:19 msgid "" "You cannot activate two-factor authentication until you have verified your " "email address." msgstr "" -#: mfa/adapter.py:21 +#: mfa/adapter.py:22 msgid "" "You cannot add an email address to an account protected by two-factor " "authentication." msgstr "" -#: mfa/adapter.py:23 +#: mfa/adapter.py:24 msgid "Incorrect code." msgstr "" @@ -233,7 +233,7 @@ msgstr "" msgid "TOTP Authenticator" msgstr "" -#: socialaccount/adapter.py:28 +#: socialaccount/adapter.py:30 #, fuzzy, python-format #| msgid "" #| "An account already exists with this e-mail address. Please sign in to " @@ -245,11 +245,11 @@ msgstr "" "Paskyra su šiuo el. pašto adresu jau egzistuoja. Prašome pirmiausia " "prisijungti prie tos paskyros ir tada prijunkite %s paskyrą." -#: socialaccount/adapter.py:132 +#: socialaccount/adapter.py:136 msgid "Your account has no password set up." msgstr "Jūsų paskyra neturi nustatyto slaptažodžio." -#: socialaccount/adapter.py:139 +#: socialaccount/adapter.py:143 msgid "Your account has no verified email address." msgstr "Jūsų paskyra neturi patvirtinto el. pašto adreso." @@ -257,98 +257,98 @@ msgstr "Jūsų paskyra neturi patvirtinto el. pašto adreso." msgid "Social Accounts" msgstr "Socialinės paskyros" -#: socialaccount/models.py:34 socialaccount/models.py:95 +#: socialaccount/models.py:36 socialaccount/models.py:97 msgid "provider" msgstr "tiekėjas" -#: socialaccount/models.py:43 +#: socialaccount/models.py:45 #, fuzzy #| msgid "provider" msgid "provider ID" msgstr "tiekėjas" -#: socialaccount/models.py:47 +#: socialaccount/models.py:49 msgid "name" msgstr "pavadinimas" -#: socialaccount/models.py:49 +#: socialaccount/models.py:51 msgid "client id" msgstr "kliento id" -#: socialaccount/models.py:51 +#: socialaccount/models.py:53 msgid "App ID, or consumer key" msgstr "App ID arba consumer key" -#: socialaccount/models.py:54 +#: socialaccount/models.py:56 msgid "secret key" msgstr "secret key" -#: socialaccount/models.py:57 +#: socialaccount/models.py:59 msgid "API secret, client secret, or consumer secret" msgstr "API secret, client secret, arba consumer secret" -#: socialaccount/models.py:60 +#: socialaccount/models.py:62 msgid "Key" msgstr "Raktas" -#: socialaccount/models.py:79 +#: socialaccount/models.py:81 msgid "social application" msgstr "socialinė programėlė" -#: socialaccount/models.py:80 +#: socialaccount/models.py:82 msgid "social applications" msgstr "socialinės programėlės" -#: socialaccount/models.py:115 +#: socialaccount/models.py:117 msgid "uid" msgstr "uid" -#: socialaccount/models.py:117 +#: socialaccount/models.py:119 msgid "last login" msgstr "paskutinis prisijungimas" -#: socialaccount/models.py:118 +#: socialaccount/models.py:120 msgid "date joined" msgstr "registracijos data" -#: socialaccount/models.py:119 +#: socialaccount/models.py:121 msgid "extra data" msgstr "papildomi duomenys" -#: socialaccount/models.py:123 +#: socialaccount/models.py:125 msgid "social account" msgstr "socialinė paskyra" -#: socialaccount/models.py:124 +#: socialaccount/models.py:126 msgid "social accounts" msgstr "socialinės paskyros" -#: socialaccount/models.py:158 +#: socialaccount/models.py:160 msgid "token" msgstr "atpažinimo ženklas" -#: socialaccount/models.py:159 +#: socialaccount/models.py:161 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)" msgstr "\"oauth_token\" (OAuth1) arba prieigos atpažinimo ženklas (OAuth2)" -#: socialaccount/models.py:163 +#: socialaccount/models.py:165 msgid "token secret" msgstr "token secret" -#: socialaccount/models.py:164 +#: socialaccount/models.py:166 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)" msgstr "" "\"oauth_token_secret\" (OAuth1) arba atnaujintas atpažinimo ženklas (OAuth2)" -#: socialaccount/models.py:167 +#: socialaccount/models.py:169 msgid "expires at" msgstr "galiojimas" -#: socialaccount/models.py:172 +#: socialaccount/models.py:174 msgid "social application token" msgstr "socialinės programėlės atpažinimo ženklas" -#: socialaccount/models.py:173 +#: socialaccount/models.py:175 msgid "social application tokens" msgstr "socialinės programėlės atpažinimo ženklai" diff --git a/allauth/locale/lv/LC_MESSAGES/django.po b/allauth/locale/lv/LC_MESSAGES/django.po index 271585d4b0..19333fdcba 100644 --- a/allauth/locale/lv/LC_MESSAGES/django.po +++ b/allauth/locale/lv/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-30 16:00-0500\n" +"POT-Creation-Date: 2023-09-07 04:22-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -19,27 +19,27 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " "2);\n" -#: account/adapter.py:47 +#: account/adapter.py:48 msgid "Username can not be used. Please use other username." msgstr "" "Lietotājvārds nevar tikt izmantots. Lūdzu izvēlietis citu lietotājvārdu." -#: account/adapter.py:53 +#: account/adapter.py:54 msgid "Too many failed login attempts. Try again later." msgstr "" "Pārāk daudz neveiksmīgi pieslēgšanās mēģinājumi. Mēģiniet vēlreiz vēlāk." -#: account/adapter.py:55 +#: account/adapter.py:56 msgid "A user is already registered with this email address." msgstr "Lietotājs ar šādu e-pasta adresi jau ir reģistrēts." -#: account/adapter.py:56 +#: account/adapter.py:57 #, fuzzy #| msgid "Current Password" msgid "Incorrect password." msgstr "Šobrīdējā parole" -#: account/adapter.py:305 +#: account/adapter.py:308 #, python-brace-format msgid "Password must be a minimum of {0} characters." msgstr "Parolei jābūt vismaz {0} simbolus garai." @@ -53,7 +53,7 @@ msgid "You must type the same password each time." msgstr "Katru reizi jums ir jāievada tā pati parole." #: account/forms.py:90 account/forms.py:397 account/forms.py:522 -#: account/forms.py:660 +#: account/forms.py:658 msgid "Password" msgstr "Parole" @@ -137,11 +137,11 @@ msgstr "Jūsu kontam nav apstiprinātas e-pasta adreses." msgid "Current Password" msgstr "Šobrīdējā parole" -#: account/forms.py:505 account/forms.py:609 +#: account/forms.py:505 account/forms.py:607 msgid "New Password" msgstr "Jaunā parole" -#: account/forms.py:506 account/forms.py:610 +#: account/forms.py:506 account/forms.py:608 msgid "New Password (again)" msgstr "Jaunā parole (vēlreiz)" @@ -153,7 +153,7 @@ msgstr "Lūdzu ievadiet jūsu šobrīdējo paroli." msgid "The email address is not assigned to any user account" msgstr "E-pasta adrese nav piesaistīta nevienam lietotāja kontam" -#: account/forms.py:630 +#: account/forms.py:628 msgid "The password reset token was invalid." msgstr "Paroles atjaunošanas marķieris bija nederīgs." @@ -185,7 +185,7 @@ msgstr "izveidots" msgid "sent" msgstr "nosūtīts" -#: account/models.py:143 socialaccount/models.py:60 +#: account/models.py:143 socialaccount/models.py:62 msgid "key" msgstr "atslēga" @@ -197,19 +197,19 @@ msgstr "e-pasta apstiprinājums" msgid "email confirmations" msgstr "e-pasta apstiprinājumi" -#: mfa/adapter.py:18 +#: mfa/adapter.py:19 msgid "" "You cannot activate two-factor authentication until you have verified your " "email address." msgstr "" -#: mfa/adapter.py:21 +#: mfa/adapter.py:22 msgid "" "You cannot add an email address to an account protected by two-factor " "authentication." msgstr "" -#: mfa/adapter.py:23 +#: mfa/adapter.py:24 msgid "Incorrect code." msgstr "" @@ -233,7 +233,7 @@ msgstr "" msgid "TOTP Authenticator" msgstr "" -#: socialaccount/adapter.py:28 +#: socialaccount/adapter.py:30 #, fuzzy, python-format #| msgid "" #| "An account already exists with this e-mail address. Please sign in to " @@ -245,11 +245,11 @@ msgstr "" "Jau eksistē konts ar šo e-pasta adresi. Lūdzu sākumā ieejiet tajā kontā, tad " "pievienojiet %s kontu." -#: socialaccount/adapter.py:132 +#: socialaccount/adapter.py:136 msgid "Your account has no password set up." msgstr "Jūsu kontam nav uzstādīta parole." -#: socialaccount/adapter.py:139 +#: socialaccount/adapter.py:143 msgid "Your account has no verified email address." msgstr "Jūsu kontam nav apstiprinātas e-pasta adreses." @@ -257,97 +257,97 @@ msgstr "Jūsu kontam nav apstiprinātas e-pasta adreses." msgid "Social Accounts" msgstr "Sociālie konti" -#: socialaccount/models.py:34 socialaccount/models.py:95 +#: socialaccount/models.py:36 socialaccount/models.py:97 msgid "provider" msgstr "sniedzējs" -#: socialaccount/models.py:43 +#: socialaccount/models.py:45 #, fuzzy #| msgid "provider" msgid "provider ID" msgstr "sniedzējs" -#: socialaccount/models.py:47 +#: socialaccount/models.py:49 msgid "name" msgstr "vārds" -#: socialaccount/models.py:49 +#: socialaccount/models.py:51 msgid "client id" msgstr "klienta id" -#: socialaccount/models.py:51 +#: socialaccount/models.py:53 msgid "App ID, or consumer key" msgstr "App ID, vai consumer key" -#: socialaccount/models.py:54 +#: socialaccount/models.py:56 msgid "secret key" msgstr "secret key" -#: socialaccount/models.py:57 +#: socialaccount/models.py:59 msgid "API secret, client secret, or consumer secret" msgstr "API secret, client secret, vai consumer secret" -#: socialaccount/models.py:60 +#: socialaccount/models.py:62 msgid "Key" msgstr "Key" -#: socialaccount/models.py:79 +#: socialaccount/models.py:81 msgid "social application" msgstr "sociālā aplikācija" -#: socialaccount/models.py:80 +#: socialaccount/models.py:82 msgid "social applications" msgstr "sociālās aplikācijas" -#: socialaccount/models.py:115 +#: socialaccount/models.py:117 msgid "uid" msgstr "uid" -#: socialaccount/models.py:117 +#: socialaccount/models.py:119 msgid "last login" msgstr "pēdējā pieslēgšanās" -#: socialaccount/models.py:118 +#: socialaccount/models.py:120 msgid "date joined" msgstr "reģistrācijas datums" -#: socialaccount/models.py:119 +#: socialaccount/models.py:121 msgid "extra data" msgstr "papildus informācija" -#: socialaccount/models.py:123 +#: socialaccount/models.py:125 msgid "social account" msgstr "sociālais konts" -#: socialaccount/models.py:124 +#: socialaccount/models.py:126 msgid "social accounts" msgstr "sociālie konti" -#: socialaccount/models.py:158 +#: socialaccount/models.py:160 msgid "token" msgstr "token" -#: socialaccount/models.py:159 +#: socialaccount/models.py:161 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)" msgstr "\"oauth_token\" (OAuth1) vai piekļūt marķierim (OAuth2)" -#: socialaccount/models.py:163 +#: socialaccount/models.py:165 msgid "token secret" msgstr "token secret" -#: socialaccount/models.py:164 +#: socialaccount/models.py:166 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)" msgstr "\"oauth_token_secret\" (OAuth1) vai atjaunot marķieri (OAuth2)" -#: socialaccount/models.py:167 +#: socialaccount/models.py:169 msgid "expires at" msgstr "beidzas" -#: socialaccount/models.py:172 +#: socialaccount/models.py:174 msgid "social application token" msgstr "sociālās aplikācijas marķieris" -#: socialaccount/models.py:173 +#: socialaccount/models.py:175 msgid "social application tokens" msgstr "sociālās aplikācijas marķieri" diff --git a/allauth/locale/mn/LC_MESSAGES/django.po b/allauth/locale/mn/LC_MESSAGES/django.po index 5bca104e85..ea9bcc4b1b 100644 --- a/allauth/locale/mn/LC_MESSAGES/django.po +++ b/allauth/locale/mn/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-30 16:00-0500\n" +"POT-Creation-Date: 2023-09-07 04:22-0500\n" "PO-Revision-Date: 2021-11-12 09:54+0800\n" "Last-Translator: Bilgutei Erdenebayar \n" "Language-Team: Mongolian \n" @@ -18,25 +18,25 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: account/adapter.py:47 +#: account/adapter.py:48 msgid "Username can not be used. Please use other username." msgstr "Хэрэглэгчийн нэрийг ашиглах боломжгүй. Өөр нэр сонгоно уу." -#: account/adapter.py:53 +#: account/adapter.py:54 msgid "Too many failed login attempts. Try again later." msgstr "Хэт олон амжилтгүй нэвтрэх оролдлого. Дараа дахин оролдоорой." -#: account/adapter.py:55 +#: account/adapter.py:56 msgid "A user is already registered with this email address." msgstr "Өөр хэрэглэгч энэ имэйл хаягаар бүртгүүлсэн байна." -#: account/adapter.py:56 +#: account/adapter.py:57 #, fuzzy #| msgid "Current Password" msgid "Incorrect password." msgstr "Одоогын Нууц Үг" -#: account/adapter.py:305 +#: account/adapter.py:308 #, python-brace-format msgid "Password must be a minimum of {0} characters." msgstr "Нууц үг хамгийн багадаа {0} тэмдэгттэй байх ёстой." @@ -50,7 +50,7 @@ msgid "You must type the same password each time." msgstr "Та өмнө оруулсантай ижил нууц үг оруулах ёстой." #: account/forms.py:90 account/forms.py:397 account/forms.py:522 -#: account/forms.py:660 +#: account/forms.py:658 msgid "Password" msgstr "Нууц үг" @@ -127,11 +127,11 @@ msgstr "Та %d-с илүү имэйл хаяг нэмэх боломжгүй." msgid "Current Password" msgstr "Одоогын Нууц Үг" -#: account/forms.py:505 account/forms.py:609 +#: account/forms.py:505 account/forms.py:607 msgid "New Password" msgstr "Шинэ Нууц Үг" -#: account/forms.py:506 account/forms.py:610 +#: account/forms.py:506 account/forms.py:608 msgid "New Password (again)" msgstr "Шинэ Нууц Үг (дахин)" @@ -143,7 +143,7 @@ msgstr "Одоогийн нууц үгээ оруулна уу." msgid "The email address is not assigned to any user account" msgstr "Имэйл хаяг ямар ч хэрэглэгчийн бүртгэлтэй холбогдоогүй" -#: account/forms.py:630 +#: account/forms.py:628 msgid "The password reset token was invalid." msgstr "Нууц үг шинэчлэх токен буруу байна." @@ -175,7 +175,7 @@ msgstr "үүсгэсэн" msgid "sent" msgstr "илгээсэн" -#: account/models.py:143 socialaccount/models.py:60 +#: account/models.py:143 socialaccount/models.py:62 msgid "key" msgstr "түлхүүр" @@ -187,19 +187,19 @@ msgstr "имэйл баталгаажуулалт" msgid "email confirmations" msgstr "имэйл баталгаажуулалт" -#: mfa/adapter.py:18 +#: mfa/adapter.py:19 msgid "" "You cannot activate two-factor authentication until you have verified your " "email address." msgstr "" -#: mfa/adapter.py:21 +#: mfa/adapter.py:22 msgid "" "You cannot add an email address to an account protected by two-factor " "authentication." msgstr "" -#: mfa/adapter.py:23 +#: mfa/adapter.py:24 msgid "Incorrect code." msgstr "" @@ -223,7 +223,7 @@ msgstr "" msgid "TOTP Authenticator" msgstr "" -#: socialaccount/adapter.py:28 +#: socialaccount/adapter.py:30 #, fuzzy, python-format #| msgid "" #| "An account already exists with this e-mail address. Please sign in to " @@ -235,11 +235,11 @@ msgstr "" "Энэ имэйл хаягтай бүртгэл системд байна. Түүгээр нэвтэрнэ үүэхлээд бүртгэл, " "дараа нь %s бүртгэлээ холбоно уу" -#: socialaccount/adapter.py:132 +#: socialaccount/adapter.py:136 msgid "Your account has no password set up." msgstr "Таны бүртгэлд нууц үг тохируулаагүй байна." -#: socialaccount/adapter.py:139 +#: socialaccount/adapter.py:143 msgid "Your account has no verified email address." msgstr "Таны бүртгэлд баталгаажсан имэйл хаяг алга." @@ -247,97 +247,97 @@ msgstr "Таны бүртгэлд баталгаажсан имэйл хаяг msgid "Social Accounts" msgstr "Сошиал Бүртгэлүүд" -#: socialaccount/models.py:34 socialaccount/models.py:95 +#: socialaccount/models.py:36 socialaccount/models.py:97 msgid "provider" msgstr "үйлчилгээ үзүүлэгч" -#: socialaccount/models.py:43 +#: socialaccount/models.py:45 #, fuzzy #| msgid "provider" msgid "provider ID" msgstr "үйлчилгээ үзүүлэгч" -#: socialaccount/models.py:47 +#: socialaccount/models.py:49 msgid "name" msgstr "нэр" -#: socialaccount/models.py:49 +#: socialaccount/models.py:51 msgid "client id" msgstr "клиент ID" -#: socialaccount/models.py:51 +#: socialaccount/models.py:53 msgid "App ID, or consumer key" msgstr "Апп ID эсвэл хэрэглэгчийн түлхүүр" -#: socialaccount/models.py:54 +#: socialaccount/models.py:56 msgid "secret key" msgstr "нууц түлхүүр" -#: socialaccount/models.py:57 +#: socialaccount/models.py:59 msgid "API secret, client secret, or consumer secret" msgstr "API нууц, клиент нууц эсвэл хэрэглэгчийн нууц" -#: socialaccount/models.py:60 +#: socialaccount/models.py:62 msgid "Key" msgstr "Түлхүүр" -#: socialaccount/models.py:79 +#: socialaccount/models.py:81 msgid "social application" msgstr "сошиал апп" -#: socialaccount/models.py:80 +#: socialaccount/models.py:82 msgid "social applications" msgstr "сошиал апп-ууд" -#: socialaccount/models.py:115 +#: socialaccount/models.py:117 msgid "uid" msgstr "uid" -#: socialaccount/models.py:117 +#: socialaccount/models.py:119 msgid "last login" msgstr "сүүлд нэвтэрсэн" -#: socialaccount/models.py:118 +#: socialaccount/models.py:120 msgid "date joined" msgstr "бүртгүүлсэн огноо" -#: socialaccount/models.py:119 +#: socialaccount/models.py:121 msgid "extra data" msgstr "нэмэлт өгөгдөл" -#: socialaccount/models.py:123 +#: socialaccount/models.py:125 msgid "social account" msgstr "сошиал хаяг" -#: socialaccount/models.py:124 +#: socialaccount/models.py:126 msgid "social accounts" msgstr "сошиал хаягууд" -#: socialaccount/models.py:158 +#: socialaccount/models.py:160 msgid "token" msgstr "токен" -#: socialaccount/models.py:159 +#: socialaccount/models.py:161 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)" msgstr "\"oauth_token\" (OAuth1) эсвэл нэвтрэх токен (OAuth2)" -#: socialaccount/models.py:163 +#: socialaccount/models.py:165 msgid "token secret" msgstr "токен нууц" -#: socialaccount/models.py:164 +#: socialaccount/models.py:166 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)" msgstr "\"oauth_token_secret\" (OAuth1) эсвэл шинэчлэх токен (OAuth2)" -#: socialaccount/models.py:167 +#: socialaccount/models.py:169 msgid "expires at" msgstr "дуусах хугацаа" -#: socialaccount/models.py:172 +#: socialaccount/models.py:174 msgid "social application token" msgstr "сошиал апп токен" -#: socialaccount/models.py:173 +#: socialaccount/models.py:175 msgid "social application tokens" msgstr "сошиал апп токенууд" diff --git a/allauth/locale/nb/LC_MESSAGES/django.po b/allauth/locale/nb/LC_MESSAGES/django.po index a00170edd1..72c0d5b129 100644 --- a/allauth/locale/nb/LC_MESSAGES/django.po +++ b/allauth/locale/nb/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-30 16:00-0500\n" +"POT-Creation-Date: 2023-09-07 04:22-0500\n" "PO-Revision-Date: 2019-12-18 18:56+0100\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,25 +18,25 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: account/adapter.py:47 +#: account/adapter.py:48 msgid "Username can not be used. Please use other username." msgstr "Brukernavnet kan ikke benyttes. Vennligst velg et annet brukernavn." -#: account/adapter.py:53 +#: account/adapter.py:54 msgid "Too many failed login attempts. Try again later." msgstr "For mange innloggingsforsøk. Vennligst prøv igjen senere." -#: account/adapter.py:55 +#: account/adapter.py:56 msgid "A user is already registered with this email address." msgstr "En bruker med denne e-postadressen er allerede registrert." -#: account/adapter.py:56 +#: account/adapter.py:57 #, fuzzy #| msgid "Current Password" msgid "Incorrect password." msgstr "Nåværende passord" -#: account/adapter.py:305 +#: account/adapter.py:308 #, python-brace-format msgid "Password must be a minimum of {0} characters." msgstr "Passordet må være minst {0} tegn." @@ -50,7 +50,7 @@ msgid "You must type the same password each time." msgstr "Du må skrive det samme passordet hver gang." #: account/forms.py:90 account/forms.py:397 account/forms.py:522 -#: account/forms.py:660 +#: account/forms.py:658 msgid "Password" msgstr "Passord" @@ -128,11 +128,11 @@ msgstr "Din konto har ingen verifisert e-postadresse." msgid "Current Password" msgstr "Nåværende passord" -#: account/forms.py:505 account/forms.py:609 +#: account/forms.py:505 account/forms.py:607 msgid "New Password" msgstr "Nytt passord" -#: account/forms.py:506 account/forms.py:610 +#: account/forms.py:506 account/forms.py:608 msgid "New Password (again)" msgstr "Nytt passord (igjen)" @@ -144,7 +144,7 @@ msgstr "Vennligst skriv inn ditt passord." msgid "The email address is not assigned to any user account" msgstr "E-postadressen er ikke tilknyttet noen brukerkonto" -#: account/forms.py:630 +#: account/forms.py:628 msgid "The password reset token was invalid." msgstr "Nøkkelen for passordgjenopprettelse var ugyldig." @@ -176,7 +176,7 @@ msgstr "opprettet" msgid "sent" msgstr "sendt" -#: account/models.py:143 socialaccount/models.py:60 +#: account/models.py:143 socialaccount/models.py:62 msgid "key" msgstr "nøkkel" @@ -188,19 +188,19 @@ msgstr "e-postbekreftelse" msgid "email confirmations" msgstr "e-postbekreftelser" -#: mfa/adapter.py:18 +#: mfa/adapter.py:19 msgid "" "You cannot activate two-factor authentication until you have verified your " "email address." msgstr "" -#: mfa/adapter.py:21 +#: mfa/adapter.py:22 msgid "" "You cannot add an email address to an account protected by two-factor " "authentication." msgstr "" -#: mfa/adapter.py:23 +#: mfa/adapter.py:24 msgid "Incorrect code." msgstr "" @@ -224,7 +224,7 @@ msgstr "" msgid "TOTP Authenticator" msgstr "" -#: socialaccount/adapter.py:28 +#: socialaccount/adapter.py:30 #, fuzzy, python-format #| msgid "" #| "An account already exists with this e-mail address. Please sign in to " @@ -236,11 +236,11 @@ msgstr "" "En konto med denne e-postadressen eksisterer fra før. Vennligst logg inn på " "den kontoen først for så å koble til din %s konto." -#: socialaccount/adapter.py:132 +#: socialaccount/adapter.py:136 msgid "Your account has no password set up." msgstr "Kontoen din har ikke noe passord." -#: socialaccount/adapter.py:139 +#: socialaccount/adapter.py:143 msgid "Your account has no verified email address." msgstr "Din konto har ingen verifisert e-postadresse." @@ -248,97 +248,97 @@ msgstr "Din konto har ingen verifisert e-postadresse." msgid "Social Accounts" msgstr "Sosiale kontoer" -#: socialaccount/models.py:34 socialaccount/models.py:95 +#: socialaccount/models.py:36 socialaccount/models.py:97 msgid "provider" msgstr "tilbyder" -#: socialaccount/models.py:43 +#: socialaccount/models.py:45 #, fuzzy #| msgid "provider" msgid "provider ID" msgstr "tilbyder" -#: socialaccount/models.py:47 +#: socialaccount/models.py:49 msgid "name" msgstr "navn" -#: socialaccount/models.py:49 +#: socialaccount/models.py:51 msgid "client id" msgstr "klient-ID" -#: socialaccount/models.py:51 +#: socialaccount/models.py:53 msgid "App ID, or consumer key" msgstr "App-ID eller konsumentnøkkel" -#: socialaccount/models.py:54 +#: socialaccount/models.py:56 msgid "secret key" msgstr "hemmelig nøkkel" -#: socialaccount/models.py:57 +#: socialaccount/models.py:59 msgid "API secret, client secret, or consumer secret" msgstr "API-nøkkel, klient-nøkkel eller konsumentnøkkel" -#: socialaccount/models.py:60 +#: socialaccount/models.py:62 msgid "Key" msgstr "Nøkkel" -#: socialaccount/models.py:79 +#: socialaccount/models.py:81 msgid "social application" msgstr "sosial applikasjon" -#: socialaccount/models.py:80 +#: socialaccount/models.py:82 msgid "social applications" msgstr "sosiale applikasjoner" -#: socialaccount/models.py:115 +#: socialaccount/models.py:117 msgid "uid" msgstr "uid" -#: socialaccount/models.py:117 +#: socialaccount/models.py:119 msgid "last login" msgstr "siste innlogging" -#: socialaccount/models.py:118 +#: socialaccount/models.py:120 msgid "date joined" msgstr "ble med dato" -#: socialaccount/models.py:119 +#: socialaccount/models.py:121 msgid "extra data" msgstr "ekstra data" -#: socialaccount/models.py:123 +#: socialaccount/models.py:125 msgid "social account" msgstr "sosialkonto" -#: socialaccount/models.py:124 +#: socialaccount/models.py:126 msgid "social accounts" msgstr "sosialkontoer" -#: socialaccount/models.py:158 +#: socialaccount/models.py:160 msgid "token" msgstr "nøkkel" -#: socialaccount/models.py:159 +#: socialaccount/models.py:161 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)" msgstr "\"oauth_token\" (OAuth1) eller aksess token (OAuth2)" -#: socialaccount/models.py:163 +#: socialaccount/models.py:165 msgid "token secret" msgstr "hemmelig nøkkel" -#: socialaccount/models.py:164 +#: socialaccount/models.py:166 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)" msgstr "\"oauth_token_secret\" (OAuth1) eller oppdateringsnøkkel (OAuth2)" -#: socialaccount/models.py:167 +#: socialaccount/models.py:169 msgid "expires at" msgstr "utgår den" -#: socialaccount/models.py:172 +#: socialaccount/models.py:174 msgid "social application token" msgstr "sosial applikasjonsnøkkel" -#: socialaccount/models.py:173 +#: socialaccount/models.py:175 msgid "social application tokens" msgstr "sosial applikasjonsnøkler" diff --git a/allauth/locale/nl/LC_MESSAGES/django.po b/allauth/locale/nl/LC_MESSAGES/django.po index b0379dbc77..018d872ae1 100644 --- a/allauth/locale/nl/LC_MESSAGES/django.po +++ b/allauth/locale/nl/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: django-allauth\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-30 16:00-0500\n" -"PO-Revision-Date: 2023-08-06 20:51+0200\n" +"POT-Creation-Date: 2023-09-07 04:22-0500\n" +"PO-Revision-Date: 2023-09-07 10:53+0200\n" "Last-Translator: pennersr \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/django-allauth/" "language/nl/)\n" @@ -19,25 +19,23 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: account/adapter.py:47 +#: account/adapter.py:48 msgid "Username can not be used. Please use other username." msgstr "Deze gebruikersnaam mag je niet gebruiken, kies een andere." -#: account/adapter.py:53 +#: account/adapter.py:54 msgid "Too many failed login attempts. Try again later." msgstr "Te veel inlogpogingen. Probeer het later nogmaals." -#: account/adapter.py:55 +#: account/adapter.py:56 msgid "A user is already registered with this email address." msgstr "Er is al een gebruiker geregistreerd met dit e-mailadres." -#: account/adapter.py:56 -#, fuzzy -#| msgid "Current Password" +#: account/adapter.py:57 msgid "Incorrect password." -msgstr "Huidig wachtwoord" +msgstr "Ongeldig wachtwoord." -#: account/adapter.py:305 +#: account/adapter.py:308 #, python-brace-format msgid "Password must be a minimum of {0} characters." msgstr "Het wachtwoord moet minimaal {0} tekens bevatten." @@ -51,7 +49,7 @@ msgid "You must type the same password each time." msgstr "Je moet hetzelfde wachtwoord twee keer intoetsen." #: account/forms.py:90 account/forms.py:397 account/forms.py:522 -#: account/forms.py:660 +#: account/forms.py:658 msgid "Password" msgstr "Wachtwoord" @@ -128,11 +126,11 @@ msgstr "Je kunt niet meer dan %d e-mailadressen toevoegen." msgid "Current Password" msgstr "Huidig wachtwoord" -#: account/forms.py:505 account/forms.py:609 +#: account/forms.py:505 account/forms.py:607 msgid "New Password" msgstr "Nieuw wachtwoord" -#: account/forms.py:506 account/forms.py:610 +#: account/forms.py:506 account/forms.py:608 msgid "New Password (again)" msgstr "Nieuw wachtwoord (bevestigen)" @@ -144,7 +142,7 @@ msgstr "Geef je huidige wachtwoord op." msgid "The email address is not assigned to any user account" msgstr "Dit e-mailadres is niet bij ons bekend" -#: account/forms.py:630 +#: account/forms.py:628 msgid "The password reset token was invalid." msgstr "De wachtwoordherstel-sleutel is niet geldig." @@ -176,7 +174,7 @@ msgstr "aangemaakt" msgid "sent" msgstr "verstuurd" -#: account/models.py:143 socialaccount/models.py:60 +#: account/models.py:143 socialaccount/models.py:62 msgid "key" msgstr "sleutel" @@ -188,47 +186,48 @@ msgstr "e-mailadres bevestiging" msgid "email confirmations" msgstr "e-mailadres bevestigingen" -#: mfa/adapter.py:18 +#: mfa/adapter.py:19 msgid "" "You cannot activate two-factor authentication until you have verified your " "email address." msgstr "" +"Je moet eerst je e-mailadres verifiëren voordat je twee-factor-authenticatie " +"kunt activeren." -#: mfa/adapter.py:21 +#: mfa/adapter.py:22 msgid "" "You cannot add an email address to an account protected by two-factor " "authentication." msgstr "" +"Je kunt geen e-mailadres toevoegen aan een account dat beveiligd is met twee-" +"factor-authenticatie is." -#: mfa/adapter.py:23 +#: mfa/adapter.py:24 msgid "Incorrect code." -msgstr "" +msgstr "Ongeldige code." #: mfa/apps.py:7 msgid "MFA" -msgstr "" +msgstr "MFA" #: mfa/forms.py:12 msgid "Code" -msgstr "" +msgstr "Code" #: mfa/forms.py:29 msgid "Authenticator code" -msgstr "" +msgstr "Authenticator code" #: mfa/models.py:15 msgid "Recovery codes" -msgstr "" +msgstr "Herstelcodes" #: mfa/models.py:16 msgid "TOTP Authenticator" -msgstr "" +msgstr "TOTP Authenticator" -#: socialaccount/adapter.py:28 -#, fuzzy, python-format -#| msgid "" -#| "An account already exists with this e-mail address. Please sign in to " -#| "that account first, then connect your %s account." +#: socialaccount/adapter.py:30 +#, python-format msgid "" "An account already exists with this email address. Please sign in to that " "account first, then connect your %s account." @@ -236,11 +235,11 @@ msgstr "" "Er bestaat al een account met dit e-mailadres. Meld je eerst aan met dit " "account, verbind daarna je %s account." -#: socialaccount/adapter.py:132 +#: socialaccount/adapter.py:136 msgid "Your account has no password set up." msgstr "Je account heeft geen wachtwoord ingesteld." -#: socialaccount/adapter.py:139 +#: socialaccount/adapter.py:143 msgid "Your account has no verified email address." msgstr "Je account heeft geen geverifieerd e-mailadres." @@ -248,95 +247,95 @@ msgstr "Je account heeft geen geverifieerd e-mailadres." msgid "Social Accounts" msgstr "Sociale accounts" -#: socialaccount/models.py:34 socialaccount/models.py:95 +#: socialaccount/models.py:36 socialaccount/models.py:97 msgid "provider" -msgstr "" +msgstr "provider" -#: socialaccount/models.py:43 +#: socialaccount/models.py:45 msgid "provider ID" -msgstr "" +msgstr "provider ID" -#: socialaccount/models.py:47 +#: socialaccount/models.py:49 msgid "name" msgstr "naam" -#: socialaccount/models.py:49 +#: socialaccount/models.py:51 msgid "client id" -msgstr "" +msgstr "client id" -#: socialaccount/models.py:51 +#: socialaccount/models.py:53 msgid "App ID, or consumer key" -msgstr "" +msgstr "App ID, of consumer key" -#: socialaccount/models.py:54 +#: socialaccount/models.py:56 msgid "secret key" msgstr "geheime sleutel" -#: socialaccount/models.py:57 +#: socialaccount/models.py:59 msgid "API secret, client secret, or consumer secret" -msgstr "" +msgstr "API secret, client secret, of consumer secret" -#: socialaccount/models.py:60 +#: socialaccount/models.py:62 msgid "Key" msgstr "Sleutel" -#: socialaccount/models.py:79 +#: socialaccount/models.py:81 msgid "social application" -msgstr "" +msgstr "social application" -#: socialaccount/models.py:80 +#: socialaccount/models.py:82 msgid "social applications" -msgstr "" +msgstr "social applications" -#: socialaccount/models.py:115 +#: socialaccount/models.py:117 msgid "uid" msgstr "uid" -#: socialaccount/models.py:117 +#: socialaccount/models.py:119 msgid "last login" msgstr "laatst ingelogd" -#: socialaccount/models.py:118 +#: socialaccount/models.py:120 msgid "date joined" msgstr "datum toegetreden" -#: socialaccount/models.py:119 +#: socialaccount/models.py:121 msgid "extra data" msgstr "extra data" -#: socialaccount/models.py:123 +#: socialaccount/models.py:125 msgid "social account" -msgstr "" +msgstr "social account" -#: socialaccount/models.py:124 +#: socialaccount/models.py:126 msgid "social accounts" -msgstr "" +msgstr "social accounts" -#: socialaccount/models.py:158 +#: socialaccount/models.py:160 msgid "token" -msgstr "" +msgstr "token" -#: socialaccount/models.py:159 +#: socialaccount/models.py:161 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)" msgstr "" -#: socialaccount/models.py:163 +#: socialaccount/models.py:165 msgid "token secret" msgstr "" -#: socialaccount/models.py:164 +#: socialaccount/models.py:166 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)" msgstr "" -#: socialaccount/models.py:167 +#: socialaccount/models.py:169 msgid "expires at" msgstr "verloopt op" -#: socialaccount/models.py:172 +#: socialaccount/models.py:174 msgid "social application token" msgstr "" -#: socialaccount/models.py:173 +#: socialaccount/models.py:175 msgid "social application tokens" msgstr "" @@ -345,13 +344,12 @@ msgid "Invalid profile data" msgstr "Ongeldige profiel data" #: socialaccount/providers/oauth/client.py:85 -#, fuzzy, python-format -#| msgid "Invalid response while obtaining request token from \"%s\"." +#, python-format msgid "" "Invalid response while obtaining request token from \"%s\". Response was: %s." msgstr "" "Ongeldig antwoord ontvangen tijdens het ophalen van een verzoeksleutel van " -"\"%s\"." +"\"%s\", antwoord: \"%s\"." #: socialaccount/providers/oauth/client.py:119 #: socialaccount/providers/pocket/client.py:78 @@ -401,10 +399,8 @@ msgid "Menu:" msgstr "Menu:" #: templates/account/base.html:29 templates/account/email_change.html:31 -#, fuzzy -#| msgid "Email" msgid "Change Email" -msgstr "E-mail" +msgstr "E-mail wijzigen" #: templates/account/base.html:30 templates/account/logout.html:5 #: templates/account/logout.html:8 templates/account/logout.html:17 @@ -518,12 +514,7 @@ msgstr "" "%(site_domain)s" #: templates/account/email/email_confirmation_message.txt:5 -#, fuzzy, python-format -#| msgid "" -#| "You're receiving this e-mail because user %(user_display)s has given your " -#| "e-mail address to register an account on %(site_domain)s.\n" -#| "\n" -#| "To confirm this is correct, go to %(activate_url)s" +#, python-format msgid "" "You're receiving this email because user %(user_display)s has given your " "email address to register an account on %(site_domain)s.\n" @@ -541,22 +532,16 @@ msgid "Please Confirm Your Email Address" msgstr "Bevestig je e-mailadres" #: templates/account/email/password_reset_key_message.txt:4 -#, fuzzy -#| msgid "" -#| "You're receiving this e-mail because you or someone else has requested a " -#| "password for your user account.\n" -#| "It can be safely ignored if you did not request a password reset. Click " -#| "the link below to reset your password." msgid "" "You're receiving this email because you or someone else has requested a " "password reset for your user account.\n" "It can be safely ignored if you did not request a password reset. Click the " "link below to reset your password." msgstr "" -"Je ontvangt deze mail omdat er een verzoek is ingelegd om het\n" -"wachtwoord behorende bij je %(site_domain)s account opnieuw in te\n" -"stellen. Je kunt deze gerust mail negeren als je dit niet zelf gedaan\n" -"hebt. Anders, klik op de volgende link om je wachtwoord opnieuw in te\n" +"Je ontvangt deze mail omdat er een verzoek is ingelegd om je wachtwoord " +"opnieuw\n" +"in te stellen. Je kunt deze gerust mail negeren als je dit niet zelf gedaan\n" +"hebt. Anders, klik op de volgende link om je wachtwoord opnieuw in te " "stellen." #: templates/account/email/password_reset_key_message.txt:9 @@ -570,12 +555,7 @@ msgid "Password Reset Email" msgstr "Nieuw wachtwoord" #: templates/account/email/unknown_account_message.txt:4 -#, fuzzy, python-format -#| msgid "" -#| "You're receiving this e-mail because you or someone else has requested a " -#| "password for your user account.\n" -#| "It can be safely ignored if you did not request a password reset. Click " -#| "the link below to reset your password." +#, python-format msgid "" "You are receiving this email because you or someone else has requested a\n" "password for your user account. However, we do not have any record of a " @@ -586,35 +566,31 @@ msgid "" "\n" "If it was you, you can sign up for an account using the link below." msgstr "" -"Je ontvangt deze mail omdat er een verzoek is ingelegd om het\n" -"wachtwoord behorende bij je %(site_domain)s account opnieuw in te\n" -"stellen. Je kunt deze gerust mail negeren als je dit niet zelf gedaan\n" -"hebt. Anders, klik op de volgende link om je wachtwoord opnieuw in te\n" -"stellen." +"Je ontvang deze e-mail omdat er een verzoek is ingelegd om het wachtwoord " +"te\n" +"veranderen van account met e-mailadres %(email)s. Echter, dit account " +"bestaat\n" +"niet.\n" +"\n" +"Je kunt deze e-mail negeren als jij dit verzoek niet zelf hebt ingelegd.\n" +"\n" +"Als jij dit wel hebt gedaan, dan kun je je via de volgende link registreren." #: templates/account/email_change.html:4 templates/account/email_change.html:7 -#, fuzzy -#| msgid "Email Addresses" msgid "Email Address" -msgstr "E-mailadressen" +msgstr "E-mailadres" #: templates/account/email_change.html:11 -#, fuzzy -#| msgid "The following email addresses are associated with your account:" msgid "The following email address is associated with your account:" msgstr "De volgende e-mailadressen zijn gekoppeld aan jouw account:" #: templates/account/email_change.html:16 -#, fuzzy -#| msgid "Your primary email address must be verified." msgid "Your email address is still pending verification:" -msgstr "Je primaire e-mailadres moet geverifieerd zijn." +msgstr "Je primaire e-mailadres wacht op verificatie." #: templates/account/email_change.html:27 -#, fuzzy -#| msgid "Confirm Email Address" msgid "Change Email Address" -msgstr "Bevestig e-mailadres" +msgstr "Wijzig e-mailadres" #: templates/account/email_confirm.html:6 #: templates/account/email_confirm.html:10 @@ -622,10 +598,7 @@ msgid "Confirm Email Address" msgstr "Bevestig e-mailadres" #: templates/account/email_confirm.html:17 -#, fuzzy, python-format -#| msgid "" -#| "Please confirm that %(email)s is an e-" -#| "mail address for user %(user_display)s." +#, python-format msgid "" "Please confirm that %(email)s is an email " "address for user %(user_display)s." @@ -640,18 +613,16 @@ msgstr "Bevestigen" #: templates/account/email_confirm.html:24 #: templates/account/messages/email_confirmation_failed.txt:2 -#, fuzzy, python-format -#| msgid "The social account is already connected to a different account." +#, python-format msgid "" "Unable to confirm %(email)s because it is already confirmed by a different " "account." -msgstr "Dit externe account is al gekoppeld aan een ander account." +msgstr "" +"Het e-mail adres %(email)s kon niet worden geverifieerd omdat het gekoppeld " +"is aan een ander account." #: templates/account/email_confirm.html:31 -#, fuzzy, python-format -#| msgid "" -#| "This e-mail confirmation link expired or is invalid. Please issue a new e-mail confirmation request." +#, python-format msgid "" "This email confirmation link expired or is invalid. Please issue a new email confirmation request." @@ -755,10 +726,6 @@ msgid "Password Reset" msgstr "Nieuw wachtwoord" #: templates/account/password_reset.html:15 -#, fuzzy -#| msgid "" -#| "Forgotten your password? Enter your e-mail address below, and we'll send " -#| "you an e-mail allowing you to reset it." msgid "" "Forgotten your password? Enter your email address below, and we'll send you " "an email allowing you to reset it." @@ -777,11 +744,6 @@ msgstr "" "stellen." #: templates/account/password_reset_done.html:15 -#, fuzzy -#| msgid "" -#| "We have sent an e-mail to you for\n" -#| "verification. Please click on the link inside this e-mail. Please\n" -#| "contact us if you do not receive it within a few minutes." msgid "" "We have sent you an email. If you have not received it please check your " "spam folder. Otherwise contact us if you do not receive it in a few minutes." @@ -819,14 +781,13 @@ msgstr "Zet wachtwoord" #: templates/account/reauthenticate.html:5 #: templates/account/reauthenticate.html:9 -#, fuzzy -#| msgid "Confirm Email Address" msgid "Confirm Access" -msgstr "Bevestig e-mailadres" +msgstr "Toegang bevestigen" #: templates/account/reauthenticate.html:11 msgid "To safeguard the security of your account, please enter your password:" msgstr "" +"Om de beveiliging van je account te waarborgen, voert eerst je wachtwoord in:" #: templates/account/signup.html:5 templates/socialaccount/signup.html:5 msgid "Signup" @@ -861,11 +822,6 @@ msgid "Warning:" msgstr "Waarschuwing:" #: templates/account/snippets/warn_no_email.html:3 -#, fuzzy -#| msgid "" -#| "You currently do not have any e-mail address set up. You should really " -#| "add an e-mail address so you can receive notifications, reset your " -#| "password, etc." msgid "" "You currently do not have any email address set up. You should really add an " "email address so you can receive notifications, reset your password, etc." @@ -881,11 +837,6 @@ msgid "Verify Your Email Address" msgstr "Verifieer je e-mailadres" #: templates/account/verification_sent.html:10 -#, fuzzy -#| msgid "" -#| "We have sent an e-mail to you for verification. Follow the link provided " -#| "to finalize the signup process. Please contact us if you do not receive " -#| "it within a few minutes." msgid "" "We have sent an email to you for verification. Follow the link provided to " "finalize the signup process. If you do not see the verification email in " @@ -897,11 +848,6 @@ msgstr "" "mail niet binnen enkele minuten ontvangt." #: templates/account/verified_email_required.html:12 -#, fuzzy -#| msgid "" -#| "This part of the site requires us to verify that\n" -#| "you are who you claim to be. For this purpose, we require that you\n" -#| "verify ownership of your e-mail address. " msgid "" "This part of the site requires us to verify that\n" "you are who you claim to be. For this purpose, we require that you\n" @@ -912,11 +858,6 @@ msgstr "" "daadwerkelijk toegang hebt tot het opgegeven e-mailadres." #: templates/account/verified_email_required.html:16 -#, fuzzy -#| msgid "" -#| "We have sent an e-mail to you for\n" -#| "verification. Please click on the link inside this e-mail. Please\n" -#| "contact us if you do not receive it within a few minutes." msgid "" "We have sent an email to you for\n" "verification. Please click on the link inside that email. If you do not see " @@ -928,10 +869,7 @@ msgstr "" "b. contact met ons op als je de e-mail niet binnen enkele minuten ontvangt." #: templates/account/verified_email_required.html:20 -#, fuzzy, python-format -#| msgid "" -#| "Note: you can still change " -#| "your e-mail address." +#, python-format msgid "" "Note: you can still change your " "email address." @@ -942,39 +880,41 @@ msgstr "" #: templates/mfa/authenticate.html:7 templates/mfa/index.html:4 #: templates/mfa/index.html:7 msgid "Two-Factor Authentication" -msgstr "" +msgstr "Twee-factor-authenticatie" #: templates/mfa/authenticate.html:9 msgid "" "Your account is protected by two-factor authentication. Please enter an " "authenticator code:" msgstr "" +"Je account is beveiligd met twee-factor-authenticatie. Voer alstublieft een " +"authenticatiecode in:" #: templates/mfa/index.html:9 templates/mfa/totp/base.html:4 msgid "Authenticator App" -msgstr "" +msgstr "Authenticator-app" #: templates/mfa/index.html:11 msgid "Authentication using an authenticator app is active." -msgstr "" +msgstr "Authenticatie middels een authenticator-app is actief." #: templates/mfa/index.html:14 templates/mfa/totp/deactivate_form.html:11 msgid "Deactivate" -msgstr "" +msgstr "Deactiveer" #: templates/mfa/index.html:18 msgid "An authenticator app is not active." -msgstr "" +msgstr "Een authenticator-app is not actief." #: templates/mfa/index.html:21 templates/mfa/totp/activate_form.html:16 msgid "Activate" -msgstr "" +msgstr "Activeer" #: templates/mfa/index.html:27 templates/mfa/recovery_codes/base.html:4 #: templates/mfa/recovery_codes/generate.html:4 #: templates/mfa/recovery_codes/index.html:4 msgid "Recovery Codes" -msgstr "" +msgstr "Herstelcodes" #: templates/mfa/index.html:30 templates/mfa/recovery_codes/index.html:6 #, python-format @@ -983,63 +923,70 @@ msgid "" msgid_plural "" "There are %(unused_count)s out of %(total_count)s recovery codes available." msgstr[0] "" +"Er is nog %(unused_count)s van de %(total_count)s herstelcodes beschikbaar." msgstr[1] "" +"Er zijn nog %(unused_count)s van de %(total_count)s herstelcodes beschikbaar." #: templates/mfa/index.html:34 msgid "View codes" -msgstr "" +msgstr "Codes inzien" #: templates/mfa/index.html:37 templates/mfa/recovery_codes/index.html:16 msgid "Download codes" -msgstr "" +msgstr "Codes downloaden" #: templates/mfa/index.html:40 templates/mfa/recovery_codes/index.html:20 msgid "Generate new codes" -msgstr "" +msgstr "Nieuwe codes genereren" #: templates/mfa/index.html:44 msgid "No recovery codes set up." -msgstr "" +msgstr "Er zijn geen herstelcodes ingesteld." #: templates/mfa/messages/recovery_codes_generated.txt:2 msgid "A new set of recovery codes has been generated." -msgstr "" +msgstr "Er zijn nieuwe herstelcodes gegenereerd." #: templates/mfa/messages/totp_activated.txt:2 msgid "Authenticator app activated." -msgstr "" +msgstr "Authenticator-app geactiveerd." #: templates/mfa/messages/totp_deactivated.txt:2 msgid "Authenticator app deactivated." -msgstr "" +msgstr "Authenticator-app gedeactiveerd." #: templates/mfa/recovery_codes/generate.html:6 msgid "" "You are about to generate a new set of recovery codes for your account. This " "action will invalidate your existing codes. Are you sure?" msgstr "" +"Je staat op het punt nieuwe herstelcodes te genereren voor je account. " +"Hierdoor zullen eventuele eerdere herstelcodes niet langer werken. Wil je " +"dit echt?" #: templates/mfa/recovery_codes/generate.html:11 msgid "Generate" -msgstr "" +msgstr "Genereer" #: templates/mfa/totp/activate_form.html:4 msgid "Activate Authenticator App" -msgstr "" +msgstr "Activeer authenticator-app" #: templates/mfa/totp/activate_form.html:9 msgid "Authenticator secret" -msgstr "" +msgstr "Authenticator geheim" #: templates/mfa/totp/deactivate_form.html:4 msgid "Deactivate Authenticator App" -msgstr "" +msgstr "Deactiveer authenticator-app" #: templates/mfa/totp/deactivate_form.html:6 msgid "" "You are about to deactivate authenticator app based authentication. Are you " "sure?" msgstr "" +"Je staat op het punt authenticatie middels een authenticator-app te " +"deactiveren. Wil je dit echt?" #: templates/openid/login.html:9 msgid "OpenID Sign In" diff --git a/allauth/locale/pl/LC_MESSAGES/django.po b/allauth/locale/pl/LC_MESSAGES/django.po index 7bca960377..611b1330de 100644 --- a/allauth/locale/pl/LC_MESSAGES/django.po +++ b/allauth/locale/pl/LC_MESSAGES/django.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-30 16:00-0500\n" +"POT-Creation-Date: 2023-09-07 04:22-0500\n" "PO-Revision-Date: 2020-10-12 12:34+0200\n" "Last-Translator: Radek Czajka \n" "Language-Team: \n" @@ -19,25 +19,25 @@ msgstr "" "%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" "%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: account/adapter.py:47 +#: account/adapter.py:48 msgid "Username can not be used. Please use other username." msgstr "Nie możesz użyć tej nazwy użytkownika. Proszę wybierz inną." -#: account/adapter.py:53 +#: account/adapter.py:54 msgid "Too many failed login attempts. Try again later." msgstr "Zbyt wiele nieudanych prób logowania. Spróbuj ponownie później." -#: account/adapter.py:55 +#: account/adapter.py:56 msgid "A user is already registered with this email address." msgstr "W systemie jest już zarejestrowany użytkownik o tym adresie e-mail." -#: account/adapter.py:56 +#: account/adapter.py:57 #, fuzzy #| msgid "Current Password" msgid "Incorrect password." msgstr "Obecne hasło" -#: account/adapter.py:305 +#: account/adapter.py:308 #, python-brace-format msgid "Password must be a minimum of {0} characters." msgstr "Hasło musi składać się z co najmniej {0} znaków." @@ -51,7 +51,7 @@ msgid "You must type the same password each time." msgstr "Musisz wpisać za każdym razem to samo hasło." #: account/forms.py:90 account/forms.py:397 account/forms.py:522 -#: account/forms.py:660 +#: account/forms.py:658 msgid "Password" msgstr "Hasło" @@ -128,11 +128,11 @@ msgstr "Nie możesz dodać więcej niż %d adresów e-mail." msgid "Current Password" msgstr "Obecne hasło" -#: account/forms.py:505 account/forms.py:609 +#: account/forms.py:505 account/forms.py:607 msgid "New Password" msgstr "Nowe hasło" -#: account/forms.py:506 account/forms.py:610 +#: account/forms.py:506 account/forms.py:608 msgid "New Password (again)" msgstr "Nowe hasło (ponownie)" @@ -144,7 +144,7 @@ msgstr "Proszę wpisz swoje obecne hasło." msgid "The email address is not assigned to any user account" msgstr "Adres e-mail nie jest powiązany z żadnym kontem użytkownika" -#: account/forms.py:630 +#: account/forms.py:628 msgid "The password reset token was invalid." msgstr "Token resetowania hasła był nieprawidłowy." @@ -176,7 +176,7 @@ msgstr "utworzono" msgid "sent" msgstr "wysłano" -#: account/models.py:143 socialaccount/models.py:60 +#: account/models.py:143 socialaccount/models.py:62 msgid "key" msgstr "klucz" @@ -188,19 +188,19 @@ msgstr "potwierdzenie adresu e-mail" msgid "email confirmations" msgstr "potwierdzenia adresów e-mail" -#: mfa/adapter.py:18 +#: mfa/adapter.py:19 msgid "" "You cannot activate two-factor authentication until you have verified your " "email address." msgstr "" -#: mfa/adapter.py:21 +#: mfa/adapter.py:22 msgid "" "You cannot add an email address to an account protected by two-factor " "authentication." msgstr "" -#: mfa/adapter.py:23 +#: mfa/adapter.py:24 msgid "Incorrect code." msgstr "" @@ -224,7 +224,7 @@ msgstr "" msgid "TOTP Authenticator" msgstr "" -#: socialaccount/adapter.py:28 +#: socialaccount/adapter.py:30 #, fuzzy, python-format #| msgid "" #| "An account already exists with this e-mail address. Please sign in to " @@ -236,11 +236,11 @@ msgstr "" "Istnieje już konto dla tego adresu e-mail. Zaloguj się najpierw na to konto, " "a następnie połącz swoje konto %s." -#: socialaccount/adapter.py:132 +#: socialaccount/adapter.py:136 msgid "Your account has no password set up." msgstr "Twoje konto nie posiada hasła." -#: socialaccount/adapter.py:139 +#: socialaccount/adapter.py:143 msgid "Your account has no verified email address." msgstr "Twoje konto nie ma zweryfikowanego adresu e-mail." @@ -248,97 +248,97 @@ msgstr "Twoje konto nie ma zweryfikowanego adresu e-mail." msgid "Social Accounts" msgstr "Konta społecznościowe" -#: socialaccount/models.py:34 socialaccount/models.py:95 +#: socialaccount/models.py:36 socialaccount/models.py:97 msgid "provider" msgstr "dostawca usług" -#: socialaccount/models.py:43 +#: socialaccount/models.py:45 #, fuzzy #| msgid "provider" msgid "provider ID" msgstr "dostawca usług" -#: socialaccount/models.py:47 +#: socialaccount/models.py:49 msgid "name" msgstr "nazwa" -#: socialaccount/models.py:49 +#: socialaccount/models.py:51 msgid "client id" msgstr "id klienta" -#: socialaccount/models.py:51 +#: socialaccount/models.py:53 msgid "App ID, or consumer key" msgstr "ID aplikacji lub klucz odbiorcy" -#: socialaccount/models.py:54 +#: socialaccount/models.py:56 msgid "secret key" msgstr "klucz prywatny" -#: socialaccount/models.py:57 +#: socialaccount/models.py:59 msgid "API secret, client secret, or consumer secret" msgstr "Klucz prywatny API, klienta lub odbiorcy" -#: socialaccount/models.py:60 +#: socialaccount/models.py:62 msgid "Key" msgstr "Klucz" -#: socialaccount/models.py:79 +#: socialaccount/models.py:81 msgid "social application" msgstr "aplikacja społecznościowa" -#: socialaccount/models.py:80 +#: socialaccount/models.py:82 msgid "social applications" msgstr "aplikacje społecznościowe" -#: socialaccount/models.py:115 +#: socialaccount/models.py:117 msgid "uid" msgstr "uid" -#: socialaccount/models.py:117 +#: socialaccount/models.py:119 msgid "last login" msgstr "data ostatniego logowania" -#: socialaccount/models.py:118 +#: socialaccount/models.py:120 msgid "date joined" msgstr "data przyłączenia" -#: socialaccount/models.py:119 +#: socialaccount/models.py:121 msgid "extra data" msgstr "dodatkowe dane" -#: socialaccount/models.py:123 +#: socialaccount/models.py:125 msgid "social account" msgstr "konto społecznościowe" -#: socialaccount/models.py:124 +#: socialaccount/models.py:126 msgid "social accounts" msgstr "konta społecznościowe" -#: socialaccount/models.py:158 +#: socialaccount/models.py:160 msgid "token" msgstr "token" -#: socialaccount/models.py:159 +#: socialaccount/models.py:161 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)" msgstr "\"oauth_token\" (OAuth1) lub access token (OAuth2)" -#: socialaccount/models.py:163 +#: socialaccount/models.py:165 msgid "token secret" msgstr "token secret" -#: socialaccount/models.py:164 +#: socialaccount/models.py:166 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)" msgstr "\"oauth_token_secret\" (OAuth1) lub refresh token (OAuth2)" -#: socialaccount/models.py:167 +#: socialaccount/models.py:169 msgid "expires at" msgstr "wygasa" -#: socialaccount/models.py:172 +#: socialaccount/models.py:174 msgid "social application token" msgstr "token aplikacji społecznościowej" -#: socialaccount/models.py:173 +#: socialaccount/models.py:175 msgid "social application tokens" msgstr "tokeny aplikacji społecznościowych" diff --git a/allauth/locale/pt_BR/LC_MESSAGES/django.po b/allauth/locale/pt_BR/LC_MESSAGES/django.po index 7c565ede8e..252753b62d 100644 --- a/allauth/locale/pt_BR/LC_MESSAGES/django.po +++ b/allauth/locale/pt_BR/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: django-allauth\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-30 16:00-0500\n" +"POT-Creation-Date: 2023-09-07 04:22-0500\n" "PO-Revision-Date: 2014-12-01 01:20+0000\n" "Last-Translator: cacarrara \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/" @@ -23,26 +23,26 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: account/adapter.py:47 +#: account/adapter.py:48 msgid "Username can not be used. Please use other username." msgstr "Este nome de usuário não pode ser usado. É preciso escolher outro." -#: account/adapter.py:53 +#: account/adapter.py:54 msgid "Too many failed login attempts. Try again later." msgstr "" "Excedida a quantidade de tentativas de login. Tente novamente mais tarde." -#: account/adapter.py:55 +#: account/adapter.py:56 msgid "A user is already registered with this email address." msgstr "Um usuário já foi registrado com este endereço de e-mail." -#: account/adapter.py:56 +#: account/adapter.py:57 #, fuzzy #| msgid "Current Password" msgid "Incorrect password." msgstr "Senha Atual" -#: account/adapter.py:305 +#: account/adapter.py:308 #, python-brace-format msgid "Password must be a minimum of {0} characters." msgstr "A senha deve ter no mínimo {0} caracteres." @@ -56,7 +56,7 @@ msgid "You must type the same password each time." msgstr "A mesma senha deve ser escrita em ambos os campos." #: account/forms.py:90 account/forms.py:397 account/forms.py:522 -#: account/forms.py:660 +#: account/forms.py:658 msgid "Password" msgstr "Senha" @@ -133,11 +133,11 @@ msgstr "Não se pode adicionar mais de %d endereços de e-mail." msgid "Current Password" msgstr "Senha Atual" -#: account/forms.py:505 account/forms.py:609 +#: account/forms.py:505 account/forms.py:607 msgid "New Password" msgstr "Nova Senha" -#: account/forms.py:506 account/forms.py:610 +#: account/forms.py:506 account/forms.py:608 msgid "New Password (again)" msgstr "Nova Senha (novamente)" @@ -149,7 +149,7 @@ msgstr "Por favor insira a sua senha atual." msgid "The email address is not assigned to any user account" msgstr "Este endereço de e-mail não está associado a nenhuma conta de usuário" -#: account/forms.py:630 +#: account/forms.py:628 msgid "The password reset token was invalid." msgstr "Token de redefinição de senha inválido" @@ -181,7 +181,7 @@ msgstr "criado" msgid "sent" msgstr "enviado" -#: account/models.py:143 socialaccount/models.py:60 +#: account/models.py:143 socialaccount/models.py:62 msgid "key" msgstr "chave" @@ -193,19 +193,19 @@ msgstr "confirmação de e-mail" msgid "email confirmations" msgstr "confirmações de e-mail" -#: mfa/adapter.py:18 +#: mfa/adapter.py:19 msgid "" "You cannot activate two-factor authentication until you have verified your " "email address." msgstr "" -#: mfa/adapter.py:21 +#: mfa/adapter.py:22 msgid "" "You cannot add an email address to an account protected by two-factor " "authentication." msgstr "" -#: mfa/adapter.py:23 +#: mfa/adapter.py:24 msgid "Incorrect code." msgstr "" @@ -229,7 +229,7 @@ msgstr "" msgid "TOTP Authenticator" msgstr "" -#: socialaccount/adapter.py:28 +#: socialaccount/adapter.py:30 #, fuzzy, python-format #| msgid "" #| "An account already exists with this e-mail address. Please sign in to " @@ -241,11 +241,11 @@ msgstr "" "Já existe uma conta com esse endereço de e-mail. Por favor, faça login na " "conta existente e, em seguida, conecte com %s." -#: socialaccount/adapter.py:132 +#: socialaccount/adapter.py:136 msgid "Your account has no password set up." msgstr "Sua conta não tem uma senha definida." -#: socialaccount/adapter.py:139 +#: socialaccount/adapter.py:143 msgid "Your account has no verified email address." msgstr "Sua conta não tem um endereço de e-mail verificado." @@ -253,97 +253,97 @@ msgstr "Sua conta não tem um endereço de e-mail verificado." msgid "Social Accounts" msgstr "Contas Sociais" -#: socialaccount/models.py:34 socialaccount/models.py:95 +#: socialaccount/models.py:36 socialaccount/models.py:97 msgid "provider" msgstr "provedor" -#: socialaccount/models.py:43 +#: socialaccount/models.py:45 #, fuzzy #| msgid "provider" msgid "provider ID" msgstr "provedor" -#: socialaccount/models.py:47 +#: socialaccount/models.py:49 msgid "name" msgstr "nome" -#: socialaccount/models.py:49 +#: socialaccount/models.py:51 msgid "client id" msgstr "id do cliente" -#: socialaccount/models.py:51 +#: socialaccount/models.py:53 msgid "App ID, or consumer key" msgstr "App ID ou chave de consumidor" -#: socialaccount/models.py:54 +#: socialaccount/models.py:56 msgid "secret key" msgstr "Chave secreta" -#: socialaccount/models.py:57 +#: socialaccount/models.py:59 msgid "API secret, client secret, or consumer secret" msgstr "Segredo de API, segredo de cliente ou segredo de consumidor" -#: socialaccount/models.py:60 +#: socialaccount/models.py:62 msgid "Key" msgstr "Chave" -#: socialaccount/models.py:79 +#: socialaccount/models.py:81 msgid "social application" msgstr "aplicativo social" -#: socialaccount/models.py:80 +#: socialaccount/models.py:82 msgid "social applications" msgstr "aplicativos sociais" -#: socialaccount/models.py:115 +#: socialaccount/models.py:117 msgid "uid" msgstr "uid" -#: socialaccount/models.py:117 +#: socialaccount/models.py:119 msgid "last login" msgstr "último acesso" -#: socialaccount/models.py:118 +#: socialaccount/models.py:120 msgid "date joined" msgstr "data de adesão" -#: socialaccount/models.py:119 +#: socialaccount/models.py:121 msgid "extra data" msgstr "dados extras" -#: socialaccount/models.py:123 +#: socialaccount/models.py:125 msgid "social account" msgstr "conta social" -#: socialaccount/models.py:124 +#: socialaccount/models.py:126 msgid "social accounts" msgstr "contas sociais" -#: socialaccount/models.py:158 +#: socialaccount/models.py:160 msgid "token" msgstr "token" -#: socialaccount/models.py:159 +#: socialaccount/models.py:161 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)" msgstr "\"oauth_token\" (OAuth1) ou token de acesso (OAuth2)" -#: socialaccount/models.py:163 +#: socialaccount/models.py:165 msgid "token secret" msgstr "token secret" -#: socialaccount/models.py:164 +#: socialaccount/models.py:166 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)" msgstr "\"oauth_token_secret\" (OAuth1) ou token de atualização (OAuth2)" -#: socialaccount/models.py:167 +#: socialaccount/models.py:169 msgid "expires at" msgstr "expira em" -#: socialaccount/models.py:172 +#: socialaccount/models.py:174 msgid "social application token" msgstr "token de aplicativo social" -#: socialaccount/models.py:173 +#: socialaccount/models.py:175 msgid "social application tokens" msgstr "tokens de aplicativo social" diff --git a/allauth/locale/pt_PT/LC_MESSAGES/django.po b/allauth/locale/pt_PT/LC_MESSAGES/django.po index 8633e86389..f03dda8c82 100644 --- a/allauth/locale/pt_PT/LC_MESSAGES/django.po +++ b/allauth/locale/pt_PT/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: django-allauth\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-30 16:00-0500\n" +"POT-Creation-Date: 2023-09-07 04:22-0500\n" "PO-Revision-Date: 2019-02-26 19:48+0100\n" "Last-Translator: Jannis Š\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/" @@ -18,25 +18,25 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: account/adapter.py:47 +#: account/adapter.py:48 msgid "Username can not be used. Please use other username." msgstr "Nome de utilizador não pode ser utilizado. Por favor, use outro nome." -#: account/adapter.py:53 +#: account/adapter.py:54 msgid "Too many failed login attempts. Try again later." msgstr "Demasiadas tentativas para entrar. Tente novamente mais tarde." -#: account/adapter.py:55 +#: account/adapter.py:56 msgid "A user is already registered with this email address." msgstr "Um utilizador já foi registado com este endereço de e-mail." -#: account/adapter.py:56 +#: account/adapter.py:57 #, fuzzy #| msgid "Current Password" msgid "Incorrect password." msgstr "Palavra-passe atual" -#: account/adapter.py:305 +#: account/adapter.py:308 #, python-brace-format msgid "Password must be a minimum of {0} characters." msgstr "A palavra-passe deve ter no mínimo {0} caracteres." @@ -50,7 +50,7 @@ msgid "You must type the same password each time." msgstr "Deve escrever a mesma palavra-passe em ambos os campos." #: account/forms.py:90 account/forms.py:397 account/forms.py:522 -#: account/forms.py:660 +#: account/forms.py:658 msgid "Password" msgstr "Palavra-passe" @@ -130,11 +130,11 @@ msgstr "A sua conta não tem um endereço de e-mail verificado." msgid "Current Password" msgstr "Palavra-passe atual" -#: account/forms.py:505 account/forms.py:609 +#: account/forms.py:505 account/forms.py:607 msgid "New Password" msgstr "Nova Palavra-passe" -#: account/forms.py:506 account/forms.py:610 +#: account/forms.py:506 account/forms.py:608 msgid "New Password (again)" msgstr "Nova Palavra-passe (novamente)" @@ -146,7 +146,7 @@ msgstr "Por favor insira a sua palavra-passe atual." msgid "The email address is not assigned to any user account" msgstr "O endereço de e-mail não está associado a nenhuma conta de utilizador" -#: account/forms.py:630 +#: account/forms.py:628 msgid "The password reset token was invalid." msgstr "O token para redefinir a palavra-passe está inválido." @@ -178,7 +178,7 @@ msgstr "criado" msgid "sent" msgstr "enviado" -#: account/models.py:143 socialaccount/models.py:60 +#: account/models.py:143 socialaccount/models.py:62 msgid "key" msgstr "chave" @@ -190,19 +190,19 @@ msgstr "confirmação de e-mail" msgid "email confirmations" msgstr "confirmações de e-mail" -#: mfa/adapter.py:18 +#: mfa/adapter.py:19 msgid "" "You cannot activate two-factor authentication until you have verified your " "email address." msgstr "" -#: mfa/adapter.py:21 +#: mfa/adapter.py:22 msgid "" "You cannot add an email address to an account protected by two-factor " "authentication." msgstr "" -#: mfa/adapter.py:23 +#: mfa/adapter.py:24 msgid "Incorrect code." msgstr "" @@ -226,7 +226,7 @@ msgstr "" msgid "TOTP Authenticator" msgstr "" -#: socialaccount/adapter.py:28 +#: socialaccount/adapter.py:30 #, fuzzy, python-format #| msgid "" #| "An account already exists with this e-mail address. Please sign in to " @@ -238,11 +238,11 @@ msgstr "" "Já existe uma conta com este endereço de e-mail. Por favor entre com essa " "conta e depois associe a sua conta %s." -#: socialaccount/adapter.py:132 +#: socialaccount/adapter.py:136 msgid "Your account has no password set up." msgstr "A sua conta não tem palavra-passe definida." -#: socialaccount/adapter.py:139 +#: socialaccount/adapter.py:143 msgid "Your account has no verified email address." msgstr "A sua conta não tem um endereço de e-mail verificado." @@ -250,97 +250,97 @@ msgstr "A sua conta não tem um endereço de e-mail verificado." msgid "Social Accounts" msgstr "Contas de redes sociais" -#: socialaccount/models.py:34 socialaccount/models.py:95 +#: socialaccount/models.py:36 socialaccount/models.py:97 msgid "provider" msgstr "fornecedor" -#: socialaccount/models.py:43 +#: socialaccount/models.py:45 #, fuzzy #| msgid "provider" msgid "provider ID" msgstr "fornecedor" -#: socialaccount/models.py:47 +#: socialaccount/models.py:49 msgid "name" msgstr "nome" -#: socialaccount/models.py:49 +#: socialaccount/models.py:51 msgid "client id" msgstr "" -#: socialaccount/models.py:51 +#: socialaccount/models.py:53 msgid "App ID, or consumer key" msgstr "" -#: socialaccount/models.py:54 +#: socialaccount/models.py:56 msgid "secret key" msgstr "" -#: socialaccount/models.py:57 +#: socialaccount/models.py:59 msgid "API secret, client secret, or consumer secret" msgstr "" -#: socialaccount/models.py:60 +#: socialaccount/models.py:62 msgid "Key" msgstr "Chave" -#: socialaccount/models.py:79 +#: socialaccount/models.py:81 msgid "social application" msgstr "aplicação social" -#: socialaccount/models.py:80 +#: socialaccount/models.py:82 msgid "social applications" msgstr "aplicações sociais" -#: socialaccount/models.py:115 +#: socialaccount/models.py:117 msgid "uid" msgstr "" -#: socialaccount/models.py:117 +#: socialaccount/models.py:119 msgid "last login" msgstr "último login" -#: socialaccount/models.py:118 +#: socialaccount/models.py:120 msgid "date joined" msgstr "data de registo" -#: socialaccount/models.py:119 +#: socialaccount/models.py:121 msgid "extra data" msgstr "dados extra" -#: socialaccount/models.py:123 +#: socialaccount/models.py:125 msgid "social account" msgstr "conta social" -#: socialaccount/models.py:124 +#: socialaccount/models.py:126 msgid "social accounts" msgstr "contas sociais" -#: socialaccount/models.py:158 +#: socialaccount/models.py:160 msgid "token" msgstr "" -#: socialaccount/models.py:159 +#: socialaccount/models.py:161 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)" msgstr "" -#: socialaccount/models.py:163 +#: socialaccount/models.py:165 msgid "token secret" msgstr "" -#: socialaccount/models.py:164 +#: socialaccount/models.py:166 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)" msgstr "" -#: socialaccount/models.py:167 +#: socialaccount/models.py:169 msgid "expires at" msgstr "expira a" -#: socialaccount/models.py:172 +#: socialaccount/models.py:174 msgid "social application token" msgstr "token da aplicação social" -#: socialaccount/models.py:173 +#: socialaccount/models.py:175 msgid "social application tokens" msgstr "tokens das aplicações sociais" diff --git a/allauth/locale/ro/LC_MESSAGES/django.po b/allauth/locale/ro/LC_MESSAGES/django.po index 8f660ea23b..4b769f2fa6 100644 --- a/allauth/locale/ro/LC_MESSAGES/django.po +++ b/allauth/locale/ro/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: django-allauthrr\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-30 16:00-0500\n" +"POT-Creation-Date: 2023-09-07 04:22-0500\n" "PO-Revision-Date: 2021-11-08 19:23+0200\n" "Last-Translator: Gilou \n" "Language-Team: \n" @@ -22,27 +22,27 @@ msgstr "" "%100<=19) ? 1 : 2);\n" "X-Generator: Poedit 3.0\n" -#: account/adapter.py:47 +#: account/adapter.py:48 msgid "Username can not be used. Please use other username." msgstr "" "Numele de utilizator nu este disponibil. Te rugam alege alt nume de " "utilizator." -#: account/adapter.py:53 +#: account/adapter.py:54 msgid "Too many failed login attempts. Try again later." msgstr "Prea multe incercări de conectare esuate. Incearca mai tarziu." -#: account/adapter.py:55 +#: account/adapter.py:56 msgid "A user is already registered with this email address." msgstr "Un utilizator este deja inregistrat cu aceasta adresa de e-mail." -#: account/adapter.py:56 +#: account/adapter.py:57 #, fuzzy #| msgid "Current Password" msgid "Incorrect password." msgstr "Parola actuala" -#: account/adapter.py:305 +#: account/adapter.py:308 #, python-brace-format msgid "Password must be a minimum of {0} characters." msgstr "Parola trebuie să aibă minimum {0} caractere." @@ -56,7 +56,7 @@ msgid "You must type the same password each time." msgstr "Trebuie sa tastezi aceeași parolă de fiecare data." #: account/forms.py:90 account/forms.py:397 account/forms.py:522 -#: account/forms.py:660 +#: account/forms.py:658 msgid "Password" msgstr "Parola" @@ -133,11 +133,11 @@ msgstr "Nu poti adauga mai mult de %d adrese de e-mail." msgid "Current Password" msgstr "Parola actuala" -#: account/forms.py:505 account/forms.py:609 +#: account/forms.py:505 account/forms.py:607 msgid "New Password" msgstr "Parola noua" -#: account/forms.py:506 account/forms.py:610 +#: account/forms.py:506 account/forms.py:608 msgid "New Password (again)" msgstr "Parola noua (confirma)" @@ -149,7 +149,7 @@ msgstr "Te rugam tasteaza parola actuala." msgid "The email address is not assigned to any user account" msgstr "Adresa de e-mail nu este atribuita niciunui cont de utilizator" -#: account/forms.py:630 +#: account/forms.py:628 msgid "The password reset token was invalid." msgstr "Link-ul de resetare a parolei nu era valid." @@ -181,7 +181,7 @@ msgstr "creata" msgid "sent" msgstr "trimis" -#: account/models.py:143 socialaccount/models.py:60 +#: account/models.py:143 socialaccount/models.py:62 msgid "key" msgstr "cheie" @@ -193,19 +193,19 @@ msgstr "confirmare e-mail" msgid "email confirmations" msgstr "confirmari e-mail" -#: mfa/adapter.py:18 +#: mfa/adapter.py:19 msgid "" "You cannot activate two-factor authentication until you have verified your " "email address." msgstr "" -#: mfa/adapter.py:21 +#: mfa/adapter.py:22 msgid "" "You cannot add an email address to an account protected by two-factor " "authentication." msgstr "" -#: mfa/adapter.py:23 +#: mfa/adapter.py:24 msgid "Incorrect code." msgstr "" @@ -229,7 +229,7 @@ msgstr "" msgid "TOTP Authenticator" msgstr "" -#: socialaccount/adapter.py:28 +#: socialaccount/adapter.py:30 #, fuzzy, python-format #| msgid "" #| "An account already exists with this e-mail address. Please sign in to " @@ -241,11 +241,11 @@ msgstr "" "Exista deja un cont cu această adresa de e-mail. Te rugam sa vt conectați " "mai intai la acel cont, apoi sa conecteazi contul %s." -#: socialaccount/adapter.py:132 +#: socialaccount/adapter.py:136 msgid "Your account has no password set up." msgstr "Contul tau nu are o parola setata." -#: socialaccount/adapter.py:139 +#: socialaccount/adapter.py:143 msgid "Your account has no verified email address." msgstr "Contul tau nu are o adresa de e-mail confirmata." @@ -253,97 +253,97 @@ msgstr "Contul tau nu are o adresa de e-mail confirmata." msgid "Social Accounts" msgstr "Retele de socializare" -#: socialaccount/models.py:34 socialaccount/models.py:95 +#: socialaccount/models.py:36 socialaccount/models.py:97 msgid "provider" msgstr "furnizor" -#: socialaccount/models.py:43 +#: socialaccount/models.py:45 #, fuzzy #| msgid "provider" msgid "provider ID" msgstr "furnizor" -#: socialaccount/models.py:47 +#: socialaccount/models.py:49 msgid "name" msgstr "nume" -#: socialaccount/models.py:49 +#: socialaccount/models.py:51 msgid "client id" msgstr "id client" -#: socialaccount/models.py:51 +#: socialaccount/models.py:53 msgid "App ID, or consumer key" msgstr "ID-ul aplicatiei sau cheia consumatorului" -#: socialaccount/models.py:54 +#: socialaccount/models.py:56 msgid "secret key" msgstr "cheie secreta" -#: socialaccount/models.py:57 +#: socialaccount/models.py:59 msgid "API secret, client secret, or consumer secret" msgstr "API secret, client secret sau consumator secret" -#: socialaccount/models.py:60 +#: socialaccount/models.py:62 msgid "Key" msgstr "Cheie" -#: socialaccount/models.py:79 +#: socialaccount/models.py:81 msgid "social application" msgstr "aplicatie sociala" -#: socialaccount/models.py:80 +#: socialaccount/models.py:82 msgid "social applications" msgstr "aplicatii sociale" -#: socialaccount/models.py:115 +#: socialaccount/models.py:117 msgid "uid" msgstr "uid" -#: socialaccount/models.py:117 +#: socialaccount/models.py:119 msgid "last login" msgstr "ultima logare" -#: socialaccount/models.py:118 +#: socialaccount/models.py:120 msgid "date joined" msgstr "data inscrierii" -#: socialaccount/models.py:119 +#: socialaccount/models.py:121 msgid "extra data" msgstr "date suplimentare" -#: socialaccount/models.py:123 +#: socialaccount/models.py:125 msgid "social account" msgstr "retea de socializare" -#: socialaccount/models.py:124 +#: socialaccount/models.py:126 msgid "social accounts" msgstr "retele de socializare" -#: socialaccount/models.py:158 +#: socialaccount/models.py:160 msgid "token" msgstr "token" -#: socialaccount/models.py:159 +#: socialaccount/models.py:161 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)" msgstr "\"oauth_token\" (OAuth1) sau token de acces (OAuth2)" -#: socialaccount/models.py:163 +#: socialaccount/models.py:165 msgid "token secret" msgstr "token secret" -#: socialaccount/models.py:164 +#: socialaccount/models.py:166 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)" msgstr "\"oauth_token_secret\" (OAuth1) token de reimprospatare (OAuth2)" -#: socialaccount/models.py:167 +#: socialaccount/models.py:169 msgid "expires at" msgstr "expira la" -#: socialaccount/models.py:172 +#: socialaccount/models.py:174 msgid "social application token" msgstr "token pentru aplicatia de socializare" -#: socialaccount/models.py:173 +#: socialaccount/models.py:175 msgid "social application tokens" msgstr "token-uri pentru aplicatiile de socializare" diff --git a/allauth/locale/ru/LC_MESSAGES/django.po b/allauth/locale/ru/LC_MESSAGES/django.po index 46433907b8..e966490a3e 100644 --- a/allauth/locale/ru/LC_MESSAGES/django.po +++ b/allauth/locale/ru/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-30 16:00-0500\n" +"POT-Creation-Date: 2023-09-07 04:22-0500\n" "PO-Revision-Date: 2017-04-05 22:48+0300\n" "Last-Translator: \n" "Language-Team: \n" @@ -20,25 +20,25 @@ msgstr "" "%100>=11 && n%100<=14)? 2 : 3);\n" "X-Generator: Poedit 1.8.7.1\n" -#: account/adapter.py:47 +#: account/adapter.py:48 msgid "Username can not be used. Please use other username." msgstr "Такое имя пользователя не может быть использовано, выберите другое." -#: account/adapter.py:53 +#: account/adapter.py:54 msgid "Too many failed login attempts. Try again later." msgstr "Слишком много попыток входа в систему, попробуйте позже." -#: account/adapter.py:55 +#: account/adapter.py:56 msgid "A user is already registered with this email address." msgstr "Пользователь с таким e-mail адресом уже зарегистрирован." -#: account/adapter.py:56 +#: account/adapter.py:57 #, fuzzy #| msgid "Current Password" msgid "Incorrect password." msgstr "Текущий пароль" -#: account/adapter.py:305 +#: account/adapter.py:308 #, python-brace-format msgid "Password must be a minimum of {0} characters." msgstr "Минимальное количество символов в пароле: {0}." @@ -52,7 +52,7 @@ msgid "You must type the same password each time." msgstr "Вы должны ввести одинаковый пароль дважды." #: account/forms.py:90 account/forms.py:397 account/forms.py:522 -#: account/forms.py:660 +#: account/forms.py:658 msgid "Password" msgstr "Пароль" @@ -130,11 +130,11 @@ msgstr "Нет подтвержденных e-mail адресов для ваш msgid "Current Password" msgstr "Текущий пароль" -#: account/forms.py:505 account/forms.py:609 +#: account/forms.py:505 account/forms.py:607 msgid "New Password" msgstr "Новый пароль" -#: account/forms.py:506 account/forms.py:610 +#: account/forms.py:506 account/forms.py:608 msgid "New Password (again)" msgstr "Новый пароль (ещё раз)" @@ -146,7 +146,7 @@ msgstr "Пожалуйста, введите свой текущий парол msgid "The email address is not assigned to any user account" msgstr "Нет пользователя с таким e-mail" -#: account/forms.py:630 +#: account/forms.py:628 msgid "The password reset token was invalid." msgstr "Неправильный код для сброса пароля." @@ -178,7 +178,7 @@ msgstr "создано" msgid "sent" msgstr "отправлено" -#: account/models.py:143 socialaccount/models.py:60 +#: account/models.py:143 socialaccount/models.py:62 msgid "key" msgstr "ключ" @@ -190,19 +190,19 @@ msgstr "подтверждение email адреса" msgid "email confirmations" msgstr "подтверждения email адресов" -#: mfa/adapter.py:18 +#: mfa/adapter.py:19 msgid "" "You cannot activate two-factor authentication until you have verified your " "email address." msgstr "" -#: mfa/adapter.py:21 +#: mfa/adapter.py:22 msgid "" "You cannot add an email address to an account protected by two-factor " "authentication." msgstr "" -#: mfa/adapter.py:23 +#: mfa/adapter.py:24 msgid "Incorrect code." msgstr "" @@ -226,7 +226,7 @@ msgstr "" msgid "TOTP Authenticator" msgstr "" -#: socialaccount/adapter.py:28 +#: socialaccount/adapter.py:30 #, fuzzy, python-format #| msgid "" #| "An account already exists with this e-mail address. Please sign in to " @@ -238,11 +238,11 @@ msgstr "" "Пользователь с таким e-mail уже зарегистрирован. Чтобы подключить свой %s " "аккаунт, пожалуйста, авторизуйтесь." -#: socialaccount/adapter.py:132 +#: socialaccount/adapter.py:136 msgid "Your account has no password set up." msgstr "Для вашего аккаунта не установлен пароль." -#: socialaccount/adapter.py:139 +#: socialaccount/adapter.py:143 msgid "Your account has no verified email address." msgstr "Нет подтвержденных e-mail адресов для вашего аккаунта." @@ -250,97 +250,97 @@ msgstr "Нет подтвержденных e-mail адресов для ваш msgid "Social Accounts" msgstr "Социальные аккаунты" -#: socialaccount/models.py:34 socialaccount/models.py:95 +#: socialaccount/models.py:36 socialaccount/models.py:97 msgid "provider" msgstr "провайдер" -#: socialaccount/models.py:43 +#: socialaccount/models.py:45 #, fuzzy #| msgid "provider" msgid "provider ID" msgstr "провайдер" -#: socialaccount/models.py:47 +#: socialaccount/models.py:49 msgid "name" msgstr "имя" -#: socialaccount/models.py:49 +#: socialaccount/models.py:51 msgid "client id" msgstr "id клиента" -#: socialaccount/models.py:51 +#: socialaccount/models.py:53 msgid "App ID, or consumer key" msgstr "ID приложения или ключ потребителя" -#: socialaccount/models.py:54 +#: socialaccount/models.py:56 msgid "secret key" msgstr "секретный ключ" -#: socialaccount/models.py:57 +#: socialaccount/models.py:59 msgid "API secret, client secret, or consumer secret" msgstr "Секретный ключ API, клиента или потребителя" -#: socialaccount/models.py:60 +#: socialaccount/models.py:62 msgid "Key" msgstr "Ключ" -#: socialaccount/models.py:79 +#: socialaccount/models.py:81 msgid "social application" msgstr "социальное приложение" -#: socialaccount/models.py:80 +#: socialaccount/models.py:82 msgid "social applications" msgstr "социальные приложения" -#: socialaccount/models.py:115 +#: socialaccount/models.py:117 msgid "uid" msgstr "UID пользователя" -#: socialaccount/models.py:117 +#: socialaccount/models.py:119 msgid "last login" msgstr "дата последнего входа в систему" -#: socialaccount/models.py:118 +#: socialaccount/models.py:120 msgid "date joined" msgstr "дата регистрации" -#: socialaccount/models.py:119 +#: socialaccount/models.py:121 msgid "extra data" msgstr "дополнительные данные" -#: socialaccount/models.py:123 +#: socialaccount/models.py:125 msgid "social account" msgstr "аккаунт социальной сети" -#: socialaccount/models.py:124 +#: socialaccount/models.py:126 msgid "social accounts" msgstr "аккаунты социальных сетей" -#: socialaccount/models.py:158 +#: socialaccount/models.py:160 msgid "token" msgstr "токен" -#: socialaccount/models.py:159 +#: socialaccount/models.py:161 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)" msgstr "\"oauth_token\" (OAuth1) или access token (OAuth2)" -#: socialaccount/models.py:163 +#: socialaccount/models.py:165 msgid "token secret" msgstr "секретный токен" -#: socialaccount/models.py:164 +#: socialaccount/models.py:166 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)" msgstr "\"oauth_token_secret\" (OAuth1) или refresh token (OAuth2)" -#: socialaccount/models.py:167 +#: socialaccount/models.py:169 msgid "expires at" msgstr "истекает" -#: socialaccount/models.py:172 +#: socialaccount/models.py:174 msgid "social application token" msgstr "токен социального приложения" -#: socialaccount/models.py:173 +#: socialaccount/models.py:175 msgid "social application tokens" msgstr "токены социальных приложений" diff --git a/allauth/locale/sk/LC_MESSAGES/django.po b/allauth/locale/sk/LC_MESSAGES/django.po index c608f035d0..e72185f0b6 100644 --- a/allauth/locale/sk/LC_MESSAGES/django.po +++ b/allauth/locale/sk/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-30 16:00-0500\n" +"POT-Creation-Date: 2023-09-07 04:22-0500\n" "PO-Revision-Date: 2023-07-11 15:22+0200\n" "Last-Translator: b'Erik Telepovsky '\n" "Language-Team: \n" @@ -19,25 +19,25 @@ msgstr "" ">= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" "X-Translated-Using: django-rosetta 0.9.4\n" -#: account/adapter.py:47 +#: account/adapter.py:48 msgid "Username can not be used. Please use other username." msgstr "Užívateľské meno nemôže byť použité. Prosím, použite iné meno." -#: account/adapter.py:53 +#: account/adapter.py:54 msgid "Too many failed login attempts. Try again later." msgstr "Príliš veľa neúspešných pokusov o prihlásenie. Skúste neskôr." -#: account/adapter.py:55 +#: account/adapter.py:56 msgid "A user is already registered with this email address." msgstr "Používateľ s touto e-mailovou adresou už existuje." -#: account/adapter.py:56 +#: account/adapter.py:57 #, fuzzy #| msgid "Current Password" msgid "Incorrect password." msgstr "Súčasné heslo" -#: account/adapter.py:305 +#: account/adapter.py:308 #, python-brace-format msgid "Password must be a minimum of {0} characters." msgstr "Heslo musí mať aspoň {0} znakov." @@ -51,7 +51,7 @@ msgid "You must type the same password each time." msgstr "Heslá sa nezhodujú." #: account/forms.py:90 account/forms.py:397 account/forms.py:522 -#: account/forms.py:660 +#: account/forms.py:658 msgid "Password" msgstr "Heslo" @@ -128,11 +128,11 @@ msgstr "Nemôžte pridať viac než %d e-mailových adries." msgid "Current Password" msgstr "Súčasné heslo" -#: account/forms.py:505 account/forms.py:609 +#: account/forms.py:505 account/forms.py:607 msgid "New Password" msgstr "Nové heslo" -#: account/forms.py:506 account/forms.py:610 +#: account/forms.py:506 account/forms.py:608 msgid "New Password (again)" msgstr "Nové heslo (znovu)" @@ -145,7 +145,7 @@ msgid "The email address is not assigned to any user account" msgstr "" "Táto e-mailová adresa nie je pridelená k žiadnemu používateľskému kontu" -#: account/forms.py:630 +#: account/forms.py:628 msgid "The password reset token was invalid." msgstr "Token na obnovu hesla bol nesprávny." @@ -177,7 +177,7 @@ msgstr "vytvorený" msgid "sent" msgstr "odoslané" -#: account/models.py:143 socialaccount/models.py:60 +#: account/models.py:143 socialaccount/models.py:62 msgid "key" msgstr "kľúč" @@ -189,19 +189,19 @@ msgstr "potvrdenie e-mailu" msgid "email confirmations" msgstr "potvrdenia e-mailu" -#: mfa/adapter.py:18 +#: mfa/adapter.py:19 msgid "" "You cannot activate two-factor authentication until you have verified your " "email address." msgstr "" -#: mfa/adapter.py:21 +#: mfa/adapter.py:22 msgid "" "You cannot add an email address to an account protected by two-factor " "authentication." msgstr "" -#: mfa/adapter.py:23 +#: mfa/adapter.py:24 msgid "Incorrect code." msgstr "" @@ -225,7 +225,7 @@ msgstr "" msgid "TOTP Authenticator" msgstr "" -#: socialaccount/adapter.py:28 +#: socialaccount/adapter.py:30 #, fuzzy, python-format #| msgid "" #| "An account already exists with this e-mail address. Please sign in to " @@ -237,11 +237,11 @@ msgstr "" "Účet s touto e-mailovou adresou už existuje. Prosím, prihláste sa najprv na " "tento účet a potom pripojte svoj %s účet." -#: socialaccount/adapter.py:132 +#: socialaccount/adapter.py:136 msgid "Your account has no password set up." msgstr "Váš účet nemá nastavené heslo." -#: socialaccount/adapter.py:139 +#: socialaccount/adapter.py:143 msgid "Your account has no verified email address." msgstr "Váš účet nemá overenú e-mailovú adresu." @@ -249,100 +249,100 @@ msgstr "Váš účet nemá overenú e-mailovú adresu." msgid "Social Accounts" msgstr "Účty na sociálnych sieťach" -#: socialaccount/models.py:34 socialaccount/models.py:95 +#: socialaccount/models.py:36 socialaccount/models.py:97 msgid "provider" msgstr "poskytovateľ" -#: socialaccount/models.py:43 +#: socialaccount/models.py:45 #, fuzzy #| msgid "provider" msgid "provider ID" msgstr "poskytovateľ" -#: socialaccount/models.py:47 +#: socialaccount/models.py:49 msgid "name" msgstr "meno" -#: socialaccount/models.py:49 +#: socialaccount/models.py:51 msgid "client id" msgstr "identifikátor klienta" -#: socialaccount/models.py:51 +#: socialaccount/models.py:53 msgid "App ID, or consumer key" msgstr "ID aplikácie alebo zákaznícky kľúč" -#: socialaccount/models.py:54 +#: socialaccount/models.py:56 msgid "secret key" msgstr "tajný kľúč" -#: socialaccount/models.py:57 +#: socialaccount/models.py:59 msgid "API secret, client secret, or consumer secret" msgstr "Kľúč API, klienta alebo zákazníka" -#: socialaccount/models.py:60 +#: socialaccount/models.py:62 msgid "Key" msgstr "Kľúč" -#: socialaccount/models.py:79 +#: socialaccount/models.py:81 msgid "social application" msgstr "sociálna aplikácia" -#: socialaccount/models.py:80 +#: socialaccount/models.py:82 msgid "social applications" msgstr "sociálne aplikácie" -#: socialaccount/models.py:115 +#: socialaccount/models.py:117 msgid "uid" msgstr "uid" -#: socialaccount/models.py:117 +#: socialaccount/models.py:119 msgid "last login" msgstr "posledné prihlásenie" -#: socialaccount/models.py:118 +#: socialaccount/models.py:120 msgid "date joined" msgstr "dáum pripojenia" -#: socialaccount/models.py:119 +#: socialaccount/models.py:121 msgid "extra data" msgstr "ďalšie údaje" -#: socialaccount/models.py:123 +#: socialaccount/models.py:125 msgid "social account" msgstr "sociálny účet" -#: socialaccount/models.py:124 +#: socialaccount/models.py:126 msgid "social accounts" msgstr "sociálne účty" -#: socialaccount/models.py:158 +#: socialaccount/models.py:160 msgid "token" msgstr "token" -#: socialaccount/models.py:159 +#: socialaccount/models.py:161 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)" msgstr "" "\"Oauth_token\" (Podpora protokolu OAuth1) alebo prístup tokenu (OAuth2)" -#: socialaccount/models.py:163 +#: socialaccount/models.py:165 msgid "token secret" msgstr "heslo prístupového tokenu" -#: socialaccount/models.py:164 +#: socialaccount/models.py:166 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)" msgstr "" "\"Oauth_token_secret\" (Podpora protokolu OAuth1) alebo token obnovenie " "(OAuth2)" -#: socialaccount/models.py:167 +#: socialaccount/models.py:169 msgid "expires at" msgstr "vyexpiruje" -#: socialaccount/models.py:172 +#: socialaccount/models.py:174 msgid "social application token" msgstr "token sociálnej aplikácie" -#: socialaccount/models.py:173 +#: socialaccount/models.py:175 msgid "social application tokens" msgstr "tokeny sociálnej aplikácie" diff --git a/allauth/locale/sl/LC_MESSAGES/django.po b/allauth/locale/sl/LC_MESSAGES/django.po index 3867cb6553..e415a042da 100644 --- a/allauth/locale/sl/LC_MESSAGES/django.po +++ b/allauth/locale/sl/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-30 16:00-0500\n" +"POT-Creation-Date: 2023-09-07 04:22-0500\n" "PO-Revision-Date: 2020-06-27 12:21+0122\n" "Last-Translator: Klemen Štrajhar \n" "Language-Team: Bojan Mihelac , Lev Predan Kowarski, " @@ -21,26 +21,26 @@ msgstr "" "%100==4 ? 2 : 3);\n" "X-Translated-Using: django-rosetta 0.7.4\n" -#: account/adapter.py:47 +#: account/adapter.py:48 msgid "Username can not be used. Please use other username." msgstr "" "Uporabniško ime je neveljavno. Prosimo uporabite drugo uporabniško ime." -#: account/adapter.py:53 +#: account/adapter.py:54 msgid "Too many failed login attempts. Try again later." msgstr "Preveliko število neuspelih prijav. Poskusite znova kasneje." -#: account/adapter.py:55 +#: account/adapter.py:56 msgid "A user is already registered with this email address." msgstr "Za ta e-naslov že obstaja registriran uporabnik." -#: account/adapter.py:56 +#: account/adapter.py:57 #, fuzzy #| msgid "Current Password" msgid "Incorrect password." msgstr "Trenutno geslo" -#: account/adapter.py:305 +#: account/adapter.py:308 #, python-brace-format msgid "Password must be a minimum of {0} characters." msgstr "Geslo mora vsebovati najmanj {0} znakov. " @@ -54,7 +54,7 @@ msgid "You must type the same password each time." msgstr "Vnesti je potrebno isto geslo." #: account/forms.py:90 account/forms.py:397 account/forms.py:522 -#: account/forms.py:660 +#: account/forms.py:658 msgid "Password" msgstr "Geslo" @@ -132,11 +132,11 @@ msgstr "Vaš uporabniški račun nima preverjenega e-poštnega naslova." msgid "Current Password" msgstr "Trenutno geslo" -#: account/forms.py:505 account/forms.py:609 +#: account/forms.py:505 account/forms.py:607 msgid "New Password" msgstr "Novo geslo" -#: account/forms.py:506 account/forms.py:610 +#: account/forms.py:506 account/forms.py:608 msgid "New Password (again)" msgstr "Novo geslo (ponovno)" @@ -148,7 +148,7 @@ msgstr "Prosimo vpišite trenutno geslo." msgid "The email address is not assigned to any user account" msgstr "E-poštni naslov ne pripada nobenemu uporabniškemu računu." -#: account/forms.py:630 +#: account/forms.py:628 msgid "The password reset token was invalid." msgstr "Žeton za ponastavitev gesla je bil neveljaven." @@ -180,7 +180,7 @@ msgstr "ustvarjeno" msgid "sent" msgstr "poslano" -#: account/models.py:143 socialaccount/models.py:60 +#: account/models.py:143 socialaccount/models.py:62 msgid "key" msgstr "ključ" @@ -192,19 +192,19 @@ msgstr "E-poštna potrditev" msgid "email confirmations" msgstr "E-poštne potrditve" -#: mfa/adapter.py:18 +#: mfa/adapter.py:19 msgid "" "You cannot activate two-factor authentication until you have verified your " "email address." msgstr "" -#: mfa/adapter.py:21 +#: mfa/adapter.py:22 msgid "" "You cannot add an email address to an account protected by two-factor " "authentication." msgstr "" -#: mfa/adapter.py:23 +#: mfa/adapter.py:24 msgid "Incorrect code." msgstr "" @@ -228,7 +228,7 @@ msgstr "" msgid "TOTP Authenticator" msgstr "" -#: socialaccount/adapter.py:28 +#: socialaccount/adapter.py:30 #, fuzzy, python-format #| msgid "" #| "An account already exists with this e-mail address. Please sign in to " @@ -240,11 +240,11 @@ msgstr "" "Uporabniški račun s tem e-poštnim naslovom že obstaja. Prosimo vpišite se v " "tobstoječi račun, nato %s račune povežite." -#: socialaccount/adapter.py:132 +#: socialaccount/adapter.py:136 msgid "Your account has no password set up." msgstr "Vaš uporabniški račun nima nastavljenega gesla." -#: socialaccount/adapter.py:139 +#: socialaccount/adapter.py:143 msgid "Your account has no verified email address." msgstr "Vaš uporabniški račun nima preverjenega e-poštnega naslova." @@ -252,97 +252,97 @@ msgstr "Vaš uporabniški račun nima preverjenega e-poštnega naslova." msgid "Social Accounts" msgstr "Računi družbenih omrežij." -#: socialaccount/models.py:34 socialaccount/models.py:95 +#: socialaccount/models.py:36 socialaccount/models.py:97 msgid "provider" msgstr "ponudnik" -#: socialaccount/models.py:43 +#: socialaccount/models.py:45 #, fuzzy #| msgid "provider" msgid "provider ID" msgstr "ponudnik" -#: socialaccount/models.py:47 +#: socialaccount/models.py:49 msgid "name" msgstr "ime" -#: socialaccount/models.py:49 +#: socialaccount/models.py:51 msgid "client id" msgstr "id številka" -#: socialaccount/models.py:51 +#: socialaccount/models.py:53 msgid "App ID, or consumer key" msgstr "ID aplikacije ali uporoabniški ključ" -#: socialaccount/models.py:54 +#: socialaccount/models.py:56 msgid "secret key" msgstr "skrivni ključ" -#: socialaccount/models.py:57 +#: socialaccount/models.py:59 msgid "API secret, client secret, or consumer secret" msgstr "API skrivnost, skrivnost klienta ali uporabniška skrivnost" -#: socialaccount/models.py:60 +#: socialaccount/models.py:62 msgid "Key" msgstr "Ključ" -#: socialaccount/models.py:79 +#: socialaccount/models.py:81 msgid "social application" msgstr "družbena aplikacija" -#: socialaccount/models.py:80 +#: socialaccount/models.py:82 msgid "social applications" msgstr "družbene aplikacije" -#: socialaccount/models.py:115 +#: socialaccount/models.py:117 msgid "uid" msgstr "uid" -#: socialaccount/models.py:117 +#: socialaccount/models.py:119 msgid "last login" msgstr "zadnja prijava" -#: socialaccount/models.py:118 +#: socialaccount/models.py:120 msgid "date joined" msgstr "datum pridružitve" -#: socialaccount/models.py:119 +#: socialaccount/models.py:121 msgid "extra data" msgstr "dodatni podatki" -#: socialaccount/models.py:123 +#: socialaccount/models.py:125 msgid "social account" msgstr "uporabniški račun družbenih omerižij" -#: socialaccount/models.py:124 +#: socialaccount/models.py:126 msgid "social accounts" msgstr "uporabniški računi družbenih omerižij" -#: socialaccount/models.py:158 +#: socialaccount/models.py:160 msgid "token" msgstr "žeton" -#: socialaccount/models.py:159 +#: socialaccount/models.py:161 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)" msgstr "\"oauth_token\" (OAuth1) ali žeton za dostop (OAuth2)" -#: socialaccount/models.py:163 +#: socialaccount/models.py:165 msgid "token secret" msgstr "žeton skrivnost" -#: socialaccount/models.py:164 +#: socialaccount/models.py:166 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)" msgstr "\"oauth_token_secret\" (OAuth1) ali žeton za osvežitev (OAuth2)" -#: socialaccount/models.py:167 +#: socialaccount/models.py:169 msgid "expires at" msgstr "veljavnost poteče" -#: socialaccount/models.py:172 +#: socialaccount/models.py:174 msgid "social application token" msgstr "žeton družebnih omrežij" -#: socialaccount/models.py:173 +#: socialaccount/models.py:175 msgid "social application tokens" msgstr "žetoni družbenih omrežij" diff --git a/allauth/locale/sr/LC_MESSAGES/django.po b/allauth/locale/sr/LC_MESSAGES/django.po index 0504fe4102..33df206edc 100644 --- a/allauth/locale/sr/LC_MESSAGES/django.po +++ b/allauth/locale/sr/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-30 16:00-0500\n" +"POT-Creation-Date: 2023-09-07 04:22-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Nikola Vulovic \n" "Language-Team: NONE\n" @@ -19,26 +19,26 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: account/adapter.py:47 +#: account/adapter.py:48 msgid "Username can not be used. Please use other username." msgstr "" "Корисничко име се не може користити. Молимо користите друго корисничко име." -#: account/adapter.py:53 +#: account/adapter.py:54 msgid "Too many failed login attempts. Try again later." msgstr "Превише неуспелих покушаја пријављивања. Покушајте поново касније." -#: account/adapter.py:55 +#: account/adapter.py:56 msgid "A user is already registered with this email address." msgstr "Корисник је већ регистрован на овој адреси е-поште." -#: account/adapter.py:56 +#: account/adapter.py:57 #, fuzzy #| msgid "Current Password" msgid "Incorrect password." msgstr "Тренутна лозинка" -#: account/adapter.py:305 +#: account/adapter.py:308 #, python-brace-format msgid "Password must be a minimum of {0} characters." msgstr "Лозинка мора бити најмање {0} знакова." @@ -52,7 +52,7 @@ msgid "You must type the same password each time." msgstr "Морате унијети исту лозинку сваки пут" #: account/forms.py:90 account/forms.py:397 account/forms.py:522 -#: account/forms.py:660 +#: account/forms.py:658 msgid "Password" msgstr "Лозинка" @@ -130,11 +130,11 @@ msgstr "Ваш налог нема потврђену е-маил адресу." msgid "Current Password" msgstr "Тренутна лозинка" -#: account/forms.py:505 account/forms.py:609 +#: account/forms.py:505 account/forms.py:607 msgid "New Password" msgstr "Нова лозинка" -#: account/forms.py:506 account/forms.py:610 +#: account/forms.py:506 account/forms.py:608 msgid "New Password (again)" msgstr "Нова лозинка (поново)" @@ -146,7 +146,7 @@ msgstr "Молимо унесите тренутну лозинку." msgid "The email address is not assigned to any user account" msgstr "Адреса е-поште није додељена било ком корисничком налогу" -#: account/forms.py:630 +#: account/forms.py:628 msgid "The password reset token was invalid." msgstr "Токен ресетовања лозинке је неважећи." @@ -178,7 +178,7 @@ msgstr "створено" msgid "sent" msgstr "послат" -#: account/models.py:143 socialaccount/models.py:60 +#: account/models.py:143 socialaccount/models.py:62 msgid "key" msgstr "кључ" @@ -190,19 +190,19 @@ msgstr "потврда е-поште" msgid "email confirmations" msgstr "потврде е-поште" -#: mfa/adapter.py:18 +#: mfa/adapter.py:19 msgid "" "You cannot activate two-factor authentication until you have verified your " "email address." msgstr "" -#: mfa/adapter.py:21 +#: mfa/adapter.py:22 msgid "" "You cannot add an email address to an account protected by two-factor " "authentication." msgstr "" -#: mfa/adapter.py:23 +#: mfa/adapter.py:24 msgid "Incorrect code." msgstr "" @@ -226,7 +226,7 @@ msgstr "" msgid "TOTP Authenticator" msgstr "" -#: socialaccount/adapter.py:28 +#: socialaccount/adapter.py:30 #, fuzzy, python-format #| msgid "" #| "An account already exists with this e-mail address. Please sign in to " @@ -238,11 +238,11 @@ msgstr "" "Рачун постоји већ са овом адресом е-поште. Пријавите се на топрви налог, " "затим повежите свој %s налог." -#: socialaccount/adapter.py:132 +#: socialaccount/adapter.py:136 msgid "Your account has no password set up." msgstr "Ваш налог нема подешену лозинку." -#: socialaccount/adapter.py:139 +#: socialaccount/adapter.py:143 msgid "Your account has no verified email address." msgstr "Ваш налог нема потврђену е-маил адресу." @@ -250,97 +250,97 @@ msgstr "Ваш налог нема потврђену е-маил адресу." msgid "Social Accounts" msgstr "Друштвени рачуни" -#: socialaccount/models.py:34 socialaccount/models.py:95 +#: socialaccount/models.py:36 socialaccount/models.py:97 msgid "provider" msgstr "провидер" -#: socialaccount/models.py:43 +#: socialaccount/models.py:45 #, fuzzy #| msgid "provider" msgid "provider ID" msgstr "провидер" -#: socialaccount/models.py:47 +#: socialaccount/models.py:49 msgid "name" msgstr "име" -#: socialaccount/models.py:49 +#: socialaccount/models.py:51 msgid "client id" msgstr "ИД клијента" -#: socialaccount/models.py:51 +#: socialaccount/models.py:53 msgid "App ID, or consumer key" msgstr "ИД апликације или потрошачки кључ" -#: socialaccount/models.py:54 +#: socialaccount/models.py:56 msgid "secret key" msgstr "тајни кључ" -#: socialaccount/models.py:57 +#: socialaccount/models.py:59 msgid "API secret, client secret, or consumer secret" msgstr "Тајна АПИ-ја, тајна клијента или тајна потрошача" -#: socialaccount/models.py:60 +#: socialaccount/models.py:62 msgid "Key" msgstr "Кључ" -#: socialaccount/models.py:79 +#: socialaccount/models.py:81 msgid "social application" msgstr "друштвена апликација" -#: socialaccount/models.py:80 +#: socialaccount/models.py:82 msgid "social applications" msgstr "друштвена апликације" -#: socialaccount/models.py:115 +#: socialaccount/models.py:117 msgid "uid" msgstr "уид" -#: socialaccount/models.py:117 +#: socialaccount/models.py:119 msgid "last login" msgstr "Последње пријављивање" -#: socialaccount/models.py:118 +#: socialaccount/models.py:120 msgid "date joined" msgstr "Датум придружио" -#: socialaccount/models.py:119 +#: socialaccount/models.py:121 msgid "extra data" msgstr "додатни подаци" -#: socialaccount/models.py:123 +#: socialaccount/models.py:125 msgid "social account" msgstr "друштвени рачун" -#: socialaccount/models.py:124 +#: socialaccount/models.py:126 msgid "social accounts" msgstr "друштвени рачуни" -#: socialaccount/models.py:158 +#: socialaccount/models.py:160 msgid "token" msgstr "токен" -#: socialaccount/models.py:159 +#: socialaccount/models.py:161 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)" msgstr "\"oauth_token\" (OAuth1) или токен приступа (OAuth2)" -#: socialaccount/models.py:163 +#: socialaccount/models.py:165 msgid "token secret" msgstr "токен тајна" -#: socialaccount/models.py:164 +#: socialaccount/models.py:166 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)" msgstr "\"oauth_token_secret\" (OAuth1) или освежени токен (OAuth2)" -#: socialaccount/models.py:167 +#: socialaccount/models.py:169 msgid "expires at" msgstr "истиче у" -#: socialaccount/models.py:172 +#: socialaccount/models.py:174 msgid "social application token" msgstr "Токен друштвених апликација" -#: socialaccount/models.py:173 +#: socialaccount/models.py:175 msgid "social application tokens" msgstr "токени друштвених апликација" diff --git a/allauth/locale/sr_Latn/LC_MESSAGES/django.po b/allauth/locale/sr_Latn/LC_MESSAGES/django.po index b9d0a10df6..f42f43a331 100644 --- a/allauth/locale/sr_Latn/LC_MESSAGES/django.po +++ b/allauth/locale/sr_Latn/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-30 16:00-0500\n" +"POT-Creation-Date: 2023-09-07 04:22-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Nikola Vulovic \n" "Language-Team: NONE\n" @@ -19,26 +19,26 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: account/adapter.py:47 +#: account/adapter.py:48 msgid "Username can not be used. Please use other username." msgstr "" "Korisničko ime se ne može koristiti. Molimo koristite drugo korisničko ime." -#: account/adapter.py:53 +#: account/adapter.py:54 msgid "Too many failed login attempts. Try again later." msgstr "Previše neuspelih pokušaja prijavljivanja. Pokušajte ponovo kasnije." -#: account/adapter.py:55 +#: account/adapter.py:56 msgid "A user is already registered with this email address." msgstr "Korisnik je već registrovan na ovoj adresi e-pošte." -#: account/adapter.py:56 +#: account/adapter.py:57 #, fuzzy #| msgid "Current Password" msgid "Incorrect password." msgstr "Trenutna lozinka" -#: account/adapter.py:305 +#: account/adapter.py:308 #, python-brace-format msgid "Password must be a minimum of {0} characters." msgstr "Lozinka mora biti najmanje {0} znakova." @@ -52,7 +52,7 @@ msgid "You must type the same password each time." msgstr "Morate unijeti istu lozinku svaki put" #: account/forms.py:90 account/forms.py:397 account/forms.py:522 -#: account/forms.py:660 +#: account/forms.py:658 msgid "Password" msgstr "Lozinka" @@ -130,11 +130,11 @@ msgstr "Vaš nalog nema potvrđenu e-mail adresu." msgid "Current Password" msgstr "Trenutna lozinka" -#: account/forms.py:505 account/forms.py:609 +#: account/forms.py:505 account/forms.py:607 msgid "New Password" msgstr "Nova lozinka" -#: account/forms.py:506 account/forms.py:610 +#: account/forms.py:506 account/forms.py:608 msgid "New Password (again)" msgstr "Nova lozinka (ponovo)" @@ -146,7 +146,7 @@ msgstr "Molimo unesite trenutnu lozinku." msgid "The email address is not assigned to any user account" msgstr "Adresa e-pošte nije dodeljena bilo kom korisničkom nalogu" -#: account/forms.py:630 +#: account/forms.py:628 msgid "The password reset token was invalid." msgstr "Token resetovanja lozinke je nevažeći." @@ -178,7 +178,7 @@ msgstr "stvoreno" msgid "sent" msgstr "poslat" -#: account/models.py:143 socialaccount/models.py:60 +#: account/models.py:143 socialaccount/models.py:62 msgid "key" msgstr "ključ" @@ -190,19 +190,19 @@ msgstr "potvrda e-pošte" msgid "email confirmations" msgstr "potvrde e-pošte" -#: mfa/adapter.py:18 +#: mfa/adapter.py:19 msgid "" "You cannot activate two-factor authentication until you have verified your " "email address." msgstr "" -#: mfa/adapter.py:21 +#: mfa/adapter.py:22 msgid "" "You cannot add an email address to an account protected by two-factor " "authentication." msgstr "" -#: mfa/adapter.py:23 +#: mfa/adapter.py:24 msgid "Incorrect code." msgstr "" @@ -226,7 +226,7 @@ msgstr "" msgid "TOTP Authenticator" msgstr "" -#: socialaccount/adapter.py:28 +#: socialaccount/adapter.py:30 #, fuzzy, python-format #| msgid "" #| "An account already exists with this e-mail address. Please sign in to " @@ -238,11 +238,11 @@ msgstr "" "Račun postoji već sa ovom adresom e-pošte. Prijavite se na toprvi nalog, " "zatim povežite svoj %s nalog." -#: socialaccount/adapter.py:132 +#: socialaccount/adapter.py:136 msgid "Your account has no password set up." msgstr "Vaš nalog nema podešenu lozinku." -#: socialaccount/adapter.py:139 +#: socialaccount/adapter.py:143 msgid "Your account has no verified email address." msgstr "Vaš nalog nema potvrđenu e-mail adresu." @@ -250,97 +250,97 @@ msgstr "Vaš nalog nema potvrđenu e-mail adresu." msgid "Social Accounts" msgstr "Društveni računi" -#: socialaccount/models.py:34 socialaccount/models.py:95 +#: socialaccount/models.py:36 socialaccount/models.py:97 msgid "provider" msgstr "provider" -#: socialaccount/models.py:43 +#: socialaccount/models.py:45 #, fuzzy #| msgid "provider" msgid "provider ID" msgstr "provider" -#: socialaccount/models.py:47 +#: socialaccount/models.py:49 msgid "name" msgstr "ime" -#: socialaccount/models.py:49 +#: socialaccount/models.py:51 msgid "client id" msgstr "ID klijenta" -#: socialaccount/models.py:51 +#: socialaccount/models.py:53 msgid "App ID, or consumer key" msgstr "ID aplikacije ili potrošački ključ" -#: socialaccount/models.py:54 +#: socialaccount/models.py:56 msgid "secret key" msgstr "tajni ključ" -#: socialaccount/models.py:57 +#: socialaccount/models.py:59 msgid "API secret, client secret, or consumer secret" msgstr "Tajna API-ja, tajna klijenta ili tajna potrošača" -#: socialaccount/models.py:60 +#: socialaccount/models.py:62 msgid "Key" msgstr "Ključ" -#: socialaccount/models.py:79 +#: socialaccount/models.py:81 msgid "social application" msgstr "društvena aplikacija" -#: socialaccount/models.py:80 +#: socialaccount/models.py:82 msgid "social applications" msgstr "društvena aplikacije" -#: socialaccount/models.py:115 +#: socialaccount/models.py:117 msgid "uid" msgstr "uid" -#: socialaccount/models.py:117 +#: socialaccount/models.py:119 msgid "last login" msgstr "Poslednje prijavljivanje" -#: socialaccount/models.py:118 +#: socialaccount/models.py:120 msgid "date joined" msgstr "Datum pridružio" -#: socialaccount/models.py:119 +#: socialaccount/models.py:121 msgid "extra data" msgstr "dodatni podaci" -#: socialaccount/models.py:123 +#: socialaccount/models.py:125 msgid "social account" msgstr "društveni račun" -#: socialaccount/models.py:124 +#: socialaccount/models.py:126 msgid "social accounts" msgstr "društveni računi" -#: socialaccount/models.py:158 +#: socialaccount/models.py:160 msgid "token" msgstr "token" -#: socialaccount/models.py:159 +#: socialaccount/models.py:161 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)" msgstr "\"oauth_token\" (OAuth1) ili token pristupa (OAuth2)" -#: socialaccount/models.py:163 +#: socialaccount/models.py:165 msgid "token secret" msgstr "token tajna" -#: socialaccount/models.py:164 +#: socialaccount/models.py:166 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)" msgstr "\"oauth_token_secret\" (OAuth1) ili osveženi token (OAuth2)" -#: socialaccount/models.py:167 +#: socialaccount/models.py:169 msgid "expires at" msgstr "ističe u" -#: socialaccount/models.py:172 +#: socialaccount/models.py:174 msgid "social application token" msgstr "Token društvenih aplikacija" -#: socialaccount/models.py:173 +#: socialaccount/models.py:175 msgid "social application tokens" msgstr "tokeni društvenih aplikacija" diff --git a/allauth/locale/sv/LC_MESSAGES/django.po b/allauth/locale/sv/LC_MESSAGES/django.po index 2c3642dd1a..4cb53b6da7 100644 --- a/allauth/locale/sv/LC_MESSAGES/django.po +++ b/allauth/locale/sv/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: django-allauth\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-30 16:00-0500\n" +"POT-Creation-Date: 2023-09-07 04:22-0500\n" "PO-Revision-Date: 2014-08-12 00:35+0200\n" "Last-Translator: Jannis Š\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/django-allauth/" @@ -18,25 +18,25 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: account/adapter.py:47 +#: account/adapter.py:48 msgid "Username can not be used. Please use other username." msgstr "Användarnamnet kan ej användas. Välj ett annat användarnamn." -#: account/adapter.py:53 +#: account/adapter.py:54 msgid "Too many failed login attempts. Try again later." msgstr "" -#: account/adapter.py:55 +#: account/adapter.py:56 msgid "A user is already registered with this email address." msgstr "En användare är redan registrerad med den här epost-adressen" -#: account/adapter.py:56 +#: account/adapter.py:57 #, fuzzy #| msgid "Current Password" msgid "Incorrect password." msgstr "Nuvarande lösenord" -#: account/adapter.py:305 +#: account/adapter.py:308 #, python-brace-format msgid "Password must be a minimum of {0} characters." msgstr "Lösenordet måste vara minst {0} tecken långt" @@ -51,7 +51,7 @@ msgid "You must type the same password each time." msgstr "Du måste ange samma lösenord" #: account/forms.py:90 account/forms.py:397 account/forms.py:522 -#: account/forms.py:660 +#: account/forms.py:658 msgid "Password" msgstr "Lösenord" @@ -135,11 +135,11 @@ msgstr "Ditt konto har ingen verifierad epost-adress." msgid "Current Password" msgstr "Nuvarande lösenord" -#: account/forms.py:505 account/forms.py:609 +#: account/forms.py:505 account/forms.py:607 msgid "New Password" msgstr "Nytt lösenord" -#: account/forms.py:506 account/forms.py:610 +#: account/forms.py:506 account/forms.py:608 msgid "New Password (again)" msgstr "Nytt lösenord (igen)" @@ -151,7 +151,7 @@ msgstr "Skriv in ditt nuvarande lösenord." msgid "The email address is not assigned to any user account" msgstr "Epost-adressen är inte knuten till något konto" -#: account/forms.py:630 +#: account/forms.py:628 msgid "The password reset token was invalid." msgstr "" @@ -185,7 +185,7 @@ msgstr "" msgid "sent" msgstr "" -#: account/models.py:143 socialaccount/models.py:60 +#: account/models.py:143 socialaccount/models.py:62 msgid "key" msgstr "" @@ -197,19 +197,19 @@ msgstr "epost-bekräftelse" msgid "email confirmations" msgstr "epost-bekräftelser" -#: mfa/adapter.py:18 +#: mfa/adapter.py:19 msgid "" "You cannot activate two-factor authentication until you have verified your " "email address." msgstr "" -#: mfa/adapter.py:21 +#: mfa/adapter.py:22 msgid "" "You cannot add an email address to an account protected by two-factor " "authentication." msgstr "" -#: mfa/adapter.py:23 +#: mfa/adapter.py:24 msgid "Incorrect code." msgstr "" @@ -233,18 +233,18 @@ msgstr "" msgid "TOTP Authenticator" msgstr "" -#: socialaccount/adapter.py:28 +#: socialaccount/adapter.py:30 #, python-format msgid "" "An account already exists with this email address. Please sign in to that " "account first, then connect your %s account." msgstr "" -#: socialaccount/adapter.py:132 +#: socialaccount/adapter.py:136 msgid "Your account has no password set up." msgstr "Ditt konto har inget lösenord." -#: socialaccount/adapter.py:139 +#: socialaccount/adapter.py:143 msgid "Your account has no verified email address." msgstr "Ditt konto har ingen verifierad epost-adress." @@ -253,96 +253,96 @@ msgstr "Ditt konto har ingen verifierad epost-adress." msgid "Social Accounts" msgstr "Konto" -#: socialaccount/models.py:34 socialaccount/models.py:95 +#: socialaccount/models.py:36 socialaccount/models.py:97 msgid "provider" msgstr "" -#: socialaccount/models.py:43 +#: socialaccount/models.py:45 msgid "provider ID" msgstr "" -#: socialaccount/models.py:47 +#: socialaccount/models.py:49 #, fuzzy msgid "name" msgstr "Användarnamn" -#: socialaccount/models.py:49 +#: socialaccount/models.py:51 msgid "client id" msgstr "" -#: socialaccount/models.py:51 +#: socialaccount/models.py:53 msgid "App ID, or consumer key" msgstr "" -#: socialaccount/models.py:54 +#: socialaccount/models.py:56 msgid "secret key" msgstr "" -#: socialaccount/models.py:57 +#: socialaccount/models.py:59 msgid "API secret, client secret, or consumer secret" msgstr "" -#: socialaccount/models.py:60 +#: socialaccount/models.py:62 msgid "Key" msgstr "" -#: socialaccount/models.py:79 +#: socialaccount/models.py:81 msgid "social application" msgstr "" -#: socialaccount/models.py:80 +#: socialaccount/models.py:82 msgid "social applications" msgstr "" -#: socialaccount/models.py:115 +#: socialaccount/models.py:117 msgid "uid" msgstr "" -#: socialaccount/models.py:117 +#: socialaccount/models.py:119 msgid "last login" msgstr "" -#: socialaccount/models.py:118 +#: socialaccount/models.py:120 msgid "date joined" msgstr "" -#: socialaccount/models.py:119 +#: socialaccount/models.py:121 msgid "extra data" msgstr "" -#: socialaccount/models.py:123 +#: socialaccount/models.py:125 msgid "social account" msgstr "" -#: socialaccount/models.py:124 +#: socialaccount/models.py:126 msgid "social accounts" msgstr "" -#: socialaccount/models.py:158 +#: socialaccount/models.py:160 msgid "token" msgstr "" -#: socialaccount/models.py:159 +#: socialaccount/models.py:161 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)" msgstr "" -#: socialaccount/models.py:163 +#: socialaccount/models.py:165 msgid "token secret" msgstr "" -#: socialaccount/models.py:164 +#: socialaccount/models.py:166 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)" msgstr "" -#: socialaccount/models.py:167 +#: socialaccount/models.py:169 msgid "expires at" msgstr "" -#: socialaccount/models.py:172 +#: socialaccount/models.py:174 msgid "social application token" msgstr "" -#: socialaccount/models.py:173 +#: socialaccount/models.py:175 msgid "social application tokens" msgstr "" diff --git a/allauth/locale/th/LC_MESSAGES/django.po b/allauth/locale/th/LC_MESSAGES/django.po index 77ae2deb6a..277dfbb579 100644 --- a/allauth/locale/th/LC_MESSAGES/django.po +++ b/allauth/locale/th/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: django-allauth\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-30 16:00-0500\n" +"POT-Creation-Date: 2023-09-07 04:22-0500\n" "PO-Revision-Date: 2015-06-26 13:09+0700\n" "Last-Translator: Nattaphoom Chaipreecha \n" "Language-Team: Thai \n" @@ -20,25 +20,25 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: account/adapter.py:47 +#: account/adapter.py:48 msgid "Username can not be used. Please use other username." msgstr "ไม่สามารถใช้ชื่อผู้ใช้นี้ได้ กรุณาใช้ชื่อผู้ใช้อื่น" -#: account/adapter.py:53 +#: account/adapter.py:54 msgid "Too many failed login attempts. Try again later." msgstr "" -#: account/adapter.py:55 +#: account/adapter.py:56 msgid "A user is already registered with this email address." msgstr "ชื่อผู้ใช้ได้ถูกลงทะเบียนด้วยอีเมลนี้แล้ว" -#: account/adapter.py:56 +#: account/adapter.py:57 #, fuzzy #| msgid "Current Password" msgid "Incorrect password." msgstr "รหัสผ่านปัจจุบัน" -#: account/adapter.py:305 +#: account/adapter.py:308 #, python-brace-format msgid "Password must be a minimum of {0} characters." msgstr "รหัสผ่านต้องมีอย่างน้อย {0} ตัวอักษร" @@ -52,7 +52,7 @@ msgid "You must type the same password each time." msgstr "ต้องพิมพ์รหัสผ่านเดิมซ้ำอีกครั้ง" #: account/forms.py:90 account/forms.py:397 account/forms.py:522 -#: account/forms.py:660 +#: account/forms.py:658 msgid "Password" msgstr "รหัสผ่าน" @@ -136,11 +136,11 @@ msgstr "บัญชีของคุณไม่มีอีเมลที่ msgid "Current Password" msgstr "รหัสผ่านปัจจุบัน" -#: account/forms.py:505 account/forms.py:609 +#: account/forms.py:505 account/forms.py:607 msgid "New Password" msgstr "รหัสผ่านใหม่" -#: account/forms.py:506 account/forms.py:610 +#: account/forms.py:506 account/forms.py:608 msgid "New Password (again)" msgstr "รหัสผ่านใหม่ (อีกครั้ง)" @@ -152,7 +152,7 @@ msgstr "โปรดใส่รหัสผ่านปัจจุบัน" msgid "The email address is not assigned to any user account" msgstr "อีเมลนี้ไม่ได้เชื่อมกับบัญชีใดเลย" -#: account/forms.py:630 +#: account/forms.py:628 msgid "The password reset token was invalid." msgstr "token ที่ใช้รีเซ็ทรหัสผ่านไม่ถูกต้อง" @@ -184,7 +184,7 @@ msgstr "สร้างแล้ว" msgid "sent" msgstr "ส่งแล้ว" -#: account/models.py:143 socialaccount/models.py:60 +#: account/models.py:143 socialaccount/models.py:62 msgid "key" msgstr "คีย์" @@ -196,19 +196,19 @@ msgstr "การยืนยันอีเมล" msgid "email confirmations" msgstr "การยืนยันอีเมล" -#: mfa/adapter.py:18 +#: mfa/adapter.py:19 msgid "" "You cannot activate two-factor authentication until you have verified your " "email address." msgstr "" -#: mfa/adapter.py:21 +#: mfa/adapter.py:22 msgid "" "You cannot add an email address to an account protected by two-factor " "authentication." msgstr "" -#: mfa/adapter.py:23 +#: mfa/adapter.py:24 msgid "Incorrect code." msgstr "" @@ -232,7 +232,7 @@ msgstr "" msgid "TOTP Authenticator" msgstr "" -#: socialaccount/adapter.py:28 +#: socialaccount/adapter.py:30 #, fuzzy, python-format #| msgid "" #| "An account already exists with this e-mail address. Please sign in to " @@ -242,11 +242,11 @@ msgid "" "account first, then connect your %s account." msgstr "มีบัญชีที่ใช้อีเมลนี้แล้ว โปรดลงชื่อเข้าใช้ก่อนแล้วค่อยเชื่อมต่อกับบัญชี %s ของคุณ" -#: socialaccount/adapter.py:132 +#: socialaccount/adapter.py:136 msgid "Your account has no password set up." msgstr "บัญชีของคุณไม่ได้ตั้งรหัสผ่านไว้" -#: socialaccount/adapter.py:139 +#: socialaccount/adapter.py:143 msgid "Your account has no verified email address." msgstr "บัญชีของคุณไม่มีอีเมลที่ยืนยันแล้ว" @@ -254,97 +254,97 @@ msgstr "บัญชีของคุณไม่มีอีเมลที่ msgid "Social Accounts" msgstr "บัญชีโซเชียล" -#: socialaccount/models.py:34 socialaccount/models.py:95 +#: socialaccount/models.py:36 socialaccount/models.py:97 msgid "provider" msgstr "ผู้ให้บริการ" -#: socialaccount/models.py:43 +#: socialaccount/models.py:45 #, fuzzy #| msgid "provider" msgid "provider ID" msgstr "ผู้ให้บริการ" -#: socialaccount/models.py:47 +#: socialaccount/models.py:49 msgid "name" msgstr "ชื่อ" -#: socialaccount/models.py:49 +#: socialaccount/models.py:51 msgid "client id" msgstr "" -#: socialaccount/models.py:51 +#: socialaccount/models.py:53 msgid "App ID, or consumer key" msgstr "" -#: socialaccount/models.py:54 +#: socialaccount/models.py:56 msgid "secret key" msgstr "" -#: socialaccount/models.py:57 +#: socialaccount/models.py:59 msgid "API secret, client secret, or consumer secret" msgstr "" -#: socialaccount/models.py:60 +#: socialaccount/models.py:62 msgid "Key" msgstr "คีย์" -#: socialaccount/models.py:79 +#: socialaccount/models.py:81 msgid "social application" msgstr "" -#: socialaccount/models.py:80 +#: socialaccount/models.py:82 msgid "social applications" msgstr "" -#: socialaccount/models.py:115 +#: socialaccount/models.py:117 msgid "uid" msgstr "" -#: socialaccount/models.py:117 +#: socialaccount/models.py:119 msgid "last login" msgstr "" -#: socialaccount/models.py:118 +#: socialaccount/models.py:120 msgid "date joined" msgstr "" -#: socialaccount/models.py:119 +#: socialaccount/models.py:121 msgid "extra data" msgstr "" -#: socialaccount/models.py:123 +#: socialaccount/models.py:125 msgid "social account" msgstr "" -#: socialaccount/models.py:124 +#: socialaccount/models.py:126 msgid "social accounts" msgstr "" -#: socialaccount/models.py:158 +#: socialaccount/models.py:160 msgid "token" msgstr "token" -#: socialaccount/models.py:159 +#: socialaccount/models.py:161 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)" msgstr "" -#: socialaccount/models.py:163 +#: socialaccount/models.py:165 msgid "token secret" msgstr "" -#: socialaccount/models.py:164 +#: socialaccount/models.py:166 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)" msgstr "" -#: socialaccount/models.py:167 +#: socialaccount/models.py:169 msgid "expires at" msgstr "" -#: socialaccount/models.py:172 +#: socialaccount/models.py:174 msgid "social application token" msgstr "" -#: socialaccount/models.py:173 +#: socialaccount/models.py:175 msgid "social application tokens" msgstr "" diff --git a/allauth/locale/tr/LC_MESSAGES/django.po b/allauth/locale/tr/LC_MESSAGES/django.po index 4fdcc22d89..2c0727778c 100644 --- a/allauth/locale/tr/LC_MESSAGES/django.po +++ b/allauth/locale/tr/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: django-allauth\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-30 16:00-0500\n" +"POT-Creation-Date: 2023-09-07 04:22-0500\n" "PO-Revision-Date: 2023-07-24 22:28+0200\n" "Last-Translator: Jannis Š\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/django-allauth/" @@ -19,25 +19,25 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: account/adapter.py:47 +#: account/adapter.py:48 msgid "Username can not be used. Please use other username." msgstr "Bu kullanıcı adı kullanılamaz. Lütfen başka bir kullanıcı adı deneyin." -#: account/adapter.py:53 +#: account/adapter.py:54 msgid "Too many failed login attempts. Try again later." msgstr "Çok fazla hatalı giriş yapıldı. Lütfen daha sonra tekrar deneyin." -#: account/adapter.py:55 +#: account/adapter.py:56 msgid "A user is already registered with this email address." msgstr "Bu e-posta adresiyle bir kullanıcı zaten kayıtlı." -#: account/adapter.py:56 +#: account/adapter.py:57 #, fuzzy #| msgid "Current Password" msgid "Incorrect password." msgstr "Mevcut Parola" -#: account/adapter.py:305 +#: account/adapter.py:308 #, python-brace-format msgid "Password must be a minimum of {0} characters." msgstr "Parola en az {0} karakter olmalıdır." @@ -52,7 +52,7 @@ msgid "You must type the same password each time." msgstr "Her seferinde aynı parolayı girmelisiniz." #: account/forms.py:90 account/forms.py:397 account/forms.py:522 -#: account/forms.py:660 +#: account/forms.py:658 msgid "Password" msgstr "Parola" @@ -136,11 +136,11 @@ msgstr "Hesabınızın doğrulanmış e-posta adresi yok." msgid "Current Password" msgstr "Mevcut Parola" -#: account/forms.py:505 account/forms.py:609 +#: account/forms.py:505 account/forms.py:607 msgid "New Password" msgstr "Yeni Parola" -#: account/forms.py:506 account/forms.py:610 +#: account/forms.py:506 account/forms.py:608 msgid "New Password (again)" msgstr "Yeni Parola (tekrar)" @@ -152,7 +152,7 @@ msgstr "Mevcut parolanızı tekrar yazın." msgid "The email address is not assigned to any user account" msgstr "Bu e-posta adresi hiçbir kullanıcı hesabıyla ilişkili değil" -#: account/forms.py:630 +#: account/forms.py:628 msgid "The password reset token was invalid." msgstr "Şifre sıfırlama kodu hatalı." @@ -186,7 +186,7 @@ msgstr "oluşturuldu" msgid "sent" msgstr "gönderildi" -#: account/models.py:143 socialaccount/models.py:60 +#: account/models.py:143 socialaccount/models.py:62 msgid "key" msgstr "" @@ -198,19 +198,19 @@ msgstr "e-posta onayı" msgid "email confirmations" msgstr "e-posta onayları" -#: mfa/adapter.py:18 +#: mfa/adapter.py:19 msgid "" "You cannot activate two-factor authentication until you have verified your " "email address." msgstr "" -#: mfa/adapter.py:21 +#: mfa/adapter.py:22 msgid "" "You cannot add an email address to an account protected by two-factor " "authentication." msgstr "" -#: mfa/adapter.py:23 +#: mfa/adapter.py:24 msgid "Incorrect code." msgstr "" @@ -234,7 +234,7 @@ msgstr "" msgid "TOTP Authenticator" msgstr "" -#: socialaccount/adapter.py:28 +#: socialaccount/adapter.py:30 #, fuzzy, python-format #| msgid "" #| "An account already exists with this e-mail address. Please sign in to " @@ -246,11 +246,11 @@ msgstr "" "Bu e-posta ile kayıtlı bir hesap bulunmaktadır. Lütfen önce bu hesaba giriş " "yapıp daha sonra %s hesabınızı bağlayın." -#: socialaccount/adapter.py:132 +#: socialaccount/adapter.py:136 msgid "Your account has no password set up." msgstr "Hesabınız için parola belirlemediniz." -#: socialaccount/adapter.py:139 +#: socialaccount/adapter.py:143 msgid "Your account has no verified email address." msgstr "Hesabınızın doğrulanmış e-posta adresi yok." @@ -259,98 +259,98 @@ msgstr "Hesabınızın doğrulanmış e-posta adresi yok." msgid "Social Accounts" msgstr "Hesap" -#: socialaccount/models.py:34 socialaccount/models.py:95 +#: socialaccount/models.py:36 socialaccount/models.py:97 msgid "provider" msgstr "sağlayıcı" -#: socialaccount/models.py:43 +#: socialaccount/models.py:45 #, fuzzy #| msgid "provider" msgid "provider ID" msgstr "sağlayıcı" -#: socialaccount/models.py:47 +#: socialaccount/models.py:49 #, fuzzy msgid "name" msgstr "Kullanıcı adı" -#: socialaccount/models.py:49 +#: socialaccount/models.py:51 msgid "client id" msgstr "" -#: socialaccount/models.py:51 +#: socialaccount/models.py:53 msgid "App ID, or consumer key" msgstr "" -#: socialaccount/models.py:54 +#: socialaccount/models.py:56 msgid "secret key" msgstr "" -#: socialaccount/models.py:57 +#: socialaccount/models.py:59 msgid "API secret, client secret, or consumer secret" msgstr "" -#: socialaccount/models.py:60 +#: socialaccount/models.py:62 msgid "Key" msgstr "" -#: socialaccount/models.py:79 +#: socialaccount/models.py:81 msgid "social application" msgstr "" -#: socialaccount/models.py:80 +#: socialaccount/models.py:82 msgid "social applications" msgstr "" -#: socialaccount/models.py:115 +#: socialaccount/models.py:117 msgid "uid" msgstr "" -#: socialaccount/models.py:117 +#: socialaccount/models.py:119 msgid "last login" msgstr "son giriş" -#: socialaccount/models.py:118 +#: socialaccount/models.py:120 msgid "date joined" msgstr "katıldığı tarih" -#: socialaccount/models.py:119 +#: socialaccount/models.py:121 msgid "extra data" msgstr "" -#: socialaccount/models.py:123 +#: socialaccount/models.py:125 msgid "social account" msgstr "" -#: socialaccount/models.py:124 +#: socialaccount/models.py:126 msgid "social accounts" msgstr "" -#: socialaccount/models.py:158 +#: socialaccount/models.py:160 msgid "token" msgstr "" -#: socialaccount/models.py:159 +#: socialaccount/models.py:161 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)" msgstr "" -#: socialaccount/models.py:163 +#: socialaccount/models.py:165 msgid "token secret" msgstr "" -#: socialaccount/models.py:164 +#: socialaccount/models.py:166 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)" msgstr "" -#: socialaccount/models.py:167 +#: socialaccount/models.py:169 msgid "expires at" msgstr "" -#: socialaccount/models.py:172 +#: socialaccount/models.py:174 msgid "social application token" msgstr "" -#: socialaccount/models.py:173 +#: socialaccount/models.py:175 msgid "social application tokens" msgstr "" diff --git a/allauth/locale/uk/LC_MESSAGES/django.po b/allauth/locale/uk/LC_MESSAGES/django.po index 8ccc7fca9d..3871c623bd 100644 --- a/allauth/locale/uk/LC_MESSAGES/django.po +++ b/allauth/locale/uk/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-30 16:00-0500\n" +"POT-Creation-Date: 2023-09-07 04:22-0500\n" "PO-Revision-Date: 2020-10-15 19:53+0200\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -20,27 +20,27 @@ msgstr "" "100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || " "(n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" -#: account/adapter.py:47 +#: account/adapter.py:48 msgid "Username can not be used. Please use other username." msgstr "" "Ім'я користувача не може бути використаним. Будь ласка, оберіть інше ім'я " "користувача." -#: account/adapter.py:53 +#: account/adapter.py:54 msgid "Too many failed login attempts. Try again later." msgstr "Занадто багато спроб входу в систему, спробуйте пізніше." -#: account/adapter.py:55 +#: account/adapter.py:56 msgid "A user is already registered with this email address." msgstr "Користувач з такою e-mail адресою уже зареєстрований." -#: account/adapter.py:56 +#: account/adapter.py:57 #, fuzzy #| msgid "Current Password" msgid "Incorrect password." msgstr "Поточний пароль" -#: account/adapter.py:305 +#: account/adapter.py:308 #, python-brace-format msgid "Password must be a minimum of {0} characters." msgstr "Пароль повинен містити мінімум {0} символів." @@ -54,7 +54,7 @@ msgid "You must type the same password each time." msgstr "Ви повинні вводити однаковий пароль кожного разу." #: account/forms.py:90 account/forms.py:397 account/forms.py:522 -#: account/forms.py:660 +#: account/forms.py:658 msgid "Password" msgstr "Пароль" @@ -132,11 +132,11 @@ msgstr "Немає підтвердження по e-mail для Вашого а msgid "Current Password" msgstr "Поточний пароль" -#: account/forms.py:505 account/forms.py:609 +#: account/forms.py:505 account/forms.py:607 msgid "New Password" msgstr "Новий пароль" -#: account/forms.py:506 account/forms.py:610 +#: account/forms.py:506 account/forms.py:608 msgid "New Password (again)" msgstr "Новий пароль (ще раз)" @@ -148,7 +148,7 @@ msgstr "Будь ласка, вкажіть Ваш поточний пароль msgid "The email address is not assigned to any user account" msgstr "Немає користувача з такою e-mail адресою." -#: account/forms.py:630 +#: account/forms.py:628 msgid "The password reset token was invalid." msgstr "Токен відновлення паролю був невірним." @@ -180,7 +180,7 @@ msgstr "створено" msgid "sent" msgstr "відправлено" -#: account/models.py:143 socialaccount/models.py:60 +#: account/models.py:143 socialaccount/models.py:62 msgid "key" msgstr "ключ" @@ -192,19 +192,19 @@ msgstr "e-mail підтвердження" msgid "email confirmations" msgstr "e-mail підтвердження" -#: mfa/adapter.py:18 +#: mfa/adapter.py:19 msgid "" "You cannot activate two-factor authentication until you have verified your " "email address." msgstr "" -#: mfa/adapter.py:21 +#: mfa/adapter.py:22 msgid "" "You cannot add an email address to an account protected by two-factor " "authentication." msgstr "" -#: mfa/adapter.py:23 +#: mfa/adapter.py:24 msgid "Incorrect code." msgstr "" @@ -228,7 +228,7 @@ msgstr "" msgid "TOTP Authenticator" msgstr "" -#: socialaccount/adapter.py:28 +#: socialaccount/adapter.py:30 #, fuzzy, python-format #| msgid "" #| "An account already exists with this e-mail address. Please sign in to " @@ -240,11 +240,11 @@ msgstr "" "Акаунт з такою e-mail адресою уже існує. Будь ласка, спершу увійдіть у цей " "акаунт, потім приєднайте Ваш %s акаунт." -#: socialaccount/adapter.py:132 +#: socialaccount/adapter.py:136 msgid "Your account has no password set up." msgstr "Ваш акаунт не має встановленого паролю." -#: socialaccount/adapter.py:139 +#: socialaccount/adapter.py:143 msgid "Your account has no verified email address." msgstr "Немає підтвердження по e-mail для Вашого акаунту." @@ -252,98 +252,98 @@ msgstr "Немає підтвердження по e-mail для Вашого а msgid "Social Accounts" msgstr "Соціальні акаунти" -#: socialaccount/models.py:34 socialaccount/models.py:95 +#: socialaccount/models.py:36 socialaccount/models.py:97 msgid "provider" msgstr "постачальник" -#: socialaccount/models.py:43 +#: socialaccount/models.py:45 #, fuzzy #| msgid "provider" msgid "provider ID" msgstr "постачальник" -#: socialaccount/models.py:47 +#: socialaccount/models.py:49 msgid "name" msgstr "Ім'я" -#: socialaccount/models.py:49 +#: socialaccount/models.py:51 msgid "client id" msgstr "ідентифікатор клієнта" -#: socialaccount/models.py:51 +#: socialaccount/models.py:53 msgid "App ID, or consumer key" msgstr "ідентифікатор додатку або ключ користувача" -#: socialaccount/models.py:54 +#: socialaccount/models.py:56 msgid "secret key" msgstr "секретний ключ" -#: socialaccount/models.py:57 +#: socialaccount/models.py:59 msgid "API secret, client secret, or consumer secret" msgstr "" "секретний ключ додатку, секретний ключ клієнта або секретний ключ користувача" -#: socialaccount/models.py:60 +#: socialaccount/models.py:62 msgid "Key" msgstr "Ключ" -#: socialaccount/models.py:79 +#: socialaccount/models.py:81 msgid "social application" msgstr "соціальний додаток" -#: socialaccount/models.py:80 +#: socialaccount/models.py:82 msgid "social applications" msgstr "соціальні додатки" -#: socialaccount/models.py:115 +#: socialaccount/models.py:117 msgid "uid" msgstr "ID користувача" -#: socialaccount/models.py:117 +#: socialaccount/models.py:119 msgid "last login" msgstr "дата останнього входу" -#: socialaccount/models.py:118 +#: socialaccount/models.py:120 msgid "date joined" msgstr "дата реєстрації" -#: socialaccount/models.py:119 +#: socialaccount/models.py:121 msgid "extra data" msgstr "додаткові дані" -#: socialaccount/models.py:123 +#: socialaccount/models.py:125 msgid "social account" msgstr "аккаунт соціальної мережі" -#: socialaccount/models.py:124 +#: socialaccount/models.py:126 msgid "social accounts" msgstr "акаунти соціальних мереж" -#: socialaccount/models.py:158 +#: socialaccount/models.py:160 msgid "token" msgstr "токен" -#: socialaccount/models.py:159 +#: socialaccount/models.py:161 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)" msgstr "\"oauth_token\" (OAuth1) або access token (OAuth2)" -#: socialaccount/models.py:163 +#: socialaccount/models.py:165 msgid "token secret" msgstr "секретний токен" -#: socialaccount/models.py:164 +#: socialaccount/models.py:166 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)" msgstr "\"oauth_token_secret\" (OAuth1) або refresh token (OAuth2)" -#: socialaccount/models.py:167 +#: socialaccount/models.py:169 msgid "expires at" msgstr "закінчується" -#: socialaccount/models.py:172 +#: socialaccount/models.py:174 msgid "social application token" msgstr "токен соціального додатку" -#: socialaccount/models.py:173 +#: socialaccount/models.py:175 msgid "social application tokens" msgstr "токени соціальних додатків" diff --git a/allauth/locale/zh_CN/LC_MESSAGES/django.po b/allauth/locale/zh_CN/LC_MESSAGES/django.po index 4878041447..ad3b0238e8 100644 --- a/allauth/locale/zh_CN/LC_MESSAGES/django.po +++ b/allauth/locale/zh_CN/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: django-allauth\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-30 16:00-0500\n" +"POT-Creation-Date: 2023-09-07 04:22-0500\n" "PO-Revision-Date: 2023-07-24 22:25+0200\n" "Last-Translator: jresins \n" "Language-Team: LANGUAGE \n" @@ -16,25 +16,25 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: account/adapter.py:47 +#: account/adapter.py:48 msgid "Username can not be used. Please use other username." msgstr "此用户名不能使用,请改用其他用户名。" -#: account/adapter.py:53 +#: account/adapter.py:54 msgid "Too many failed login attempts. Try again later." msgstr "登录失败次数过多,请稍后重试。" -#: account/adapter.py:55 +#: account/adapter.py:56 msgid "A user is already registered with this email address." msgstr "此e-mail地址已被其他用户注册。" -#: account/adapter.py:56 +#: account/adapter.py:57 #, fuzzy #| msgid "Current Password" msgid "Incorrect password." msgstr "当前密码" -#: account/adapter.py:305 +#: account/adapter.py:308 #, python-brace-format msgid "Password must be a minimum of {0} characters." msgstr "密码长度不得少于 {0} 个字符。" @@ -49,7 +49,7 @@ msgid "You must type the same password each time." msgstr "每次输入的密码必须相同" #: account/forms.py:90 account/forms.py:397 account/forms.py:522 -#: account/forms.py:660 +#: account/forms.py:658 msgid "Password" msgstr "密码" @@ -133,11 +133,11 @@ msgstr "您的账号下无任何验证过的e-mail地址。" msgid "Current Password" msgstr "当前密码" -#: account/forms.py:505 account/forms.py:609 +#: account/forms.py:505 account/forms.py:607 msgid "New Password" msgstr "新密码" -#: account/forms.py:506 account/forms.py:610 +#: account/forms.py:506 account/forms.py:608 msgid "New Password (again)" msgstr "新密码(重复)" @@ -149,7 +149,7 @@ msgstr "请输入您的当前密码" msgid "The email address is not assigned to any user account" msgstr "此e-mail地址未分配给任何用户账号" -#: account/forms.py:630 +#: account/forms.py:628 msgid "The password reset token was invalid." msgstr "重设密码的token不合法。" @@ -182,7 +182,7 @@ msgstr "已建立" msgid "sent" msgstr "已发送" -#: account/models.py:143 socialaccount/models.py:60 +#: account/models.py:143 socialaccount/models.py:62 msgid "key" msgstr "key" @@ -194,19 +194,19 @@ msgstr "e-mail确认" msgid "email confirmations" msgstr "e-mail确认" -#: mfa/adapter.py:18 +#: mfa/adapter.py:19 msgid "" "You cannot activate two-factor authentication until you have verified your " "email address." msgstr "" -#: mfa/adapter.py:21 +#: mfa/adapter.py:22 msgid "" "You cannot add an email address to an account protected by two-factor " "authentication." msgstr "" -#: mfa/adapter.py:23 +#: mfa/adapter.py:24 msgid "Incorrect code." msgstr "" @@ -230,7 +230,7 @@ msgstr "" msgid "TOTP Authenticator" msgstr "" -#: socialaccount/adapter.py:28 +#: socialaccount/adapter.py:30 #, fuzzy, python-format #| msgid "" #| "An account already exists with this e-mail address. Please sign in to " @@ -240,11 +240,11 @@ msgid "" "account first, then connect your %s account." msgstr "已有一个账号与此e-mail地址关联,请先登录该账号,然后连接你的 %s 账号。" -#: socialaccount/adapter.py:132 +#: socialaccount/adapter.py:136 msgid "Your account has no password set up." msgstr "您的账号未设置密码。" -#: socialaccount/adapter.py:139 +#: socialaccount/adapter.py:143 msgid "Your account has no verified email address." msgstr "您的账号下无任何验证过的e-mail地址。" @@ -253,99 +253,99 @@ msgstr "您的账号下无任何验证过的e-mail地址。" msgid "Social Accounts" msgstr "账号" -#: socialaccount/models.py:34 socialaccount/models.py:95 +#: socialaccount/models.py:36 socialaccount/models.py:97 msgid "provider" msgstr "提供商" -#: socialaccount/models.py:43 +#: socialaccount/models.py:45 #, fuzzy #| msgid "provider" msgid "provider ID" msgstr "提供商" -#: socialaccount/models.py:47 +#: socialaccount/models.py:49 #, fuzzy msgid "name" msgstr "用户名" -#: socialaccount/models.py:49 +#: socialaccount/models.py:51 msgid "client id" msgstr "客户端 id" -#: socialaccount/models.py:51 +#: socialaccount/models.py:53 msgid "App ID, or consumer key" msgstr "" -#: socialaccount/models.py:54 +#: socialaccount/models.py:56 msgid "secret key" msgstr "" -#: socialaccount/models.py:57 +#: socialaccount/models.py:59 msgid "API secret, client secret, or consumer secret" msgstr "" -#: socialaccount/models.py:60 +#: socialaccount/models.py:62 #, fuzzy msgid "Key" msgstr "key" -#: socialaccount/models.py:79 +#: socialaccount/models.py:81 msgid "social application" msgstr "" -#: socialaccount/models.py:80 +#: socialaccount/models.py:82 msgid "social applications" msgstr "" -#: socialaccount/models.py:115 +#: socialaccount/models.py:117 msgid "uid" msgstr "" -#: socialaccount/models.py:117 +#: socialaccount/models.py:119 msgid "last login" msgstr "最后登录" -#: socialaccount/models.py:118 +#: socialaccount/models.py:120 msgid "date joined" msgstr "注册日期" -#: socialaccount/models.py:119 +#: socialaccount/models.py:121 msgid "extra data" msgstr "" -#: socialaccount/models.py:123 +#: socialaccount/models.py:125 msgid "social account" msgstr "社交账号" -#: socialaccount/models.py:124 +#: socialaccount/models.py:126 msgid "social accounts" msgstr "社交账号" -#: socialaccount/models.py:158 +#: socialaccount/models.py:160 msgid "token" msgstr "" -#: socialaccount/models.py:159 +#: socialaccount/models.py:161 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)" msgstr "" -#: socialaccount/models.py:163 +#: socialaccount/models.py:165 msgid "token secret" msgstr "" -#: socialaccount/models.py:164 +#: socialaccount/models.py:166 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)" msgstr "" -#: socialaccount/models.py:167 +#: socialaccount/models.py:169 msgid "expires at" msgstr "" -#: socialaccount/models.py:172 +#: socialaccount/models.py:174 msgid "social application token" msgstr "" -#: socialaccount/models.py:173 +#: socialaccount/models.py:175 msgid "social application tokens" msgstr "" diff --git a/allauth/locale/zh_Hans/LC_MESSAGES/django.po b/allauth/locale/zh_Hans/LC_MESSAGES/django.po index 934091004c..9fda88b6c7 100644 --- a/allauth/locale/zh_Hans/LC_MESSAGES/django.po +++ b/allauth/locale/zh_Hans/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-30 16:00-0500\n" +"POT-Creation-Date: 2023-09-07 04:22-0500\n" "PO-Revision-Date: 2023-07-24 22:31+0200\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,25 +18,25 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: account/adapter.py:47 +#: account/adapter.py:48 msgid "Username can not be used. Please use other username." msgstr "此用户名不能使用,请改用其他用户名。" -#: account/adapter.py:53 +#: account/adapter.py:54 msgid "Too many failed login attempts. Try again later." msgstr "登录失败次数过多,请稍后重试。" -#: account/adapter.py:55 +#: account/adapter.py:56 msgid "A user is already registered with this email address." msgstr "此e-mail地址已被其他用户注册。" -#: account/adapter.py:56 +#: account/adapter.py:57 #, fuzzy #| msgid "Current Password" msgid "Incorrect password." msgstr "当前密码" -#: account/adapter.py:305 +#: account/adapter.py:308 #, python-brace-format msgid "Password must be a minimum of {0} characters." msgstr "密码长度不得少于 {0} 个字符。" @@ -51,7 +51,7 @@ msgid "You must type the same password each time." msgstr "每次输入的密码必须相同" #: account/forms.py:90 account/forms.py:397 account/forms.py:522 -#: account/forms.py:660 +#: account/forms.py:658 msgid "Password" msgstr "密码" @@ -135,11 +135,11 @@ msgstr "您的账号下无任何验证过的e-mail地址。" msgid "Current Password" msgstr "当前密码" -#: account/forms.py:505 account/forms.py:609 +#: account/forms.py:505 account/forms.py:607 msgid "New Password" msgstr "新密码" -#: account/forms.py:506 account/forms.py:610 +#: account/forms.py:506 account/forms.py:608 msgid "New Password (again)" msgstr "新密码(重复)" @@ -151,7 +151,7 @@ msgstr "请输入您的当前密码" msgid "The email address is not assigned to any user account" msgstr "此e-mail地址未分配给任何用户账号" -#: account/forms.py:630 +#: account/forms.py:628 msgid "The password reset token was invalid." msgstr "" @@ -184,7 +184,7 @@ msgstr "已建立" msgid "sent" msgstr "已发送" -#: account/models.py:143 socialaccount/models.py:60 +#: account/models.py:143 socialaccount/models.py:62 msgid "key" msgstr "key" @@ -196,19 +196,19 @@ msgstr "e-mail确认" msgid "email confirmations" msgstr "e-mail确认" -#: mfa/adapter.py:18 +#: mfa/adapter.py:19 msgid "" "You cannot activate two-factor authentication until you have verified your " "email address." msgstr "" -#: mfa/adapter.py:21 +#: mfa/adapter.py:22 msgid "" "You cannot add an email address to an account protected by two-factor " "authentication." msgstr "" -#: mfa/adapter.py:23 +#: mfa/adapter.py:24 msgid "Incorrect code." msgstr "" @@ -232,7 +232,7 @@ msgstr "" msgid "TOTP Authenticator" msgstr "" -#: socialaccount/adapter.py:28 +#: socialaccount/adapter.py:30 #, fuzzy, python-format #| msgid "" #| "An account already exists with this e-mail address. Please sign in to " @@ -242,11 +242,11 @@ msgid "" "account first, then connect your %s account." msgstr "已有一个账号与此e-mail地址关联,请先登录该账号,然后连接你的 %s 账号。" -#: socialaccount/adapter.py:132 +#: socialaccount/adapter.py:136 msgid "Your account has no password set up." msgstr "您的账号未设置密码。" -#: socialaccount/adapter.py:139 +#: socialaccount/adapter.py:143 msgid "Your account has no verified email address." msgstr "您的账号下无任何验证过的e-mail地址。" @@ -255,97 +255,97 @@ msgstr "您的账号下无任何验证过的e-mail地址。" msgid "Social Accounts" msgstr "账号" -#: socialaccount/models.py:34 socialaccount/models.py:95 +#: socialaccount/models.py:36 socialaccount/models.py:97 msgid "provider" msgstr "" -#: socialaccount/models.py:43 +#: socialaccount/models.py:45 msgid "provider ID" msgstr "" -#: socialaccount/models.py:47 +#: socialaccount/models.py:49 #, fuzzy msgid "name" msgstr "用户名" -#: socialaccount/models.py:49 +#: socialaccount/models.py:51 msgid "client id" msgstr "" -#: socialaccount/models.py:51 +#: socialaccount/models.py:53 msgid "App ID, or consumer key" msgstr "" -#: socialaccount/models.py:54 +#: socialaccount/models.py:56 msgid "secret key" msgstr "" -#: socialaccount/models.py:57 +#: socialaccount/models.py:59 msgid "API secret, client secret, or consumer secret" msgstr "" -#: socialaccount/models.py:60 +#: socialaccount/models.py:62 #, fuzzy msgid "Key" msgstr "key" -#: socialaccount/models.py:79 +#: socialaccount/models.py:81 msgid "social application" msgstr "" -#: socialaccount/models.py:80 +#: socialaccount/models.py:82 msgid "social applications" msgstr "" -#: socialaccount/models.py:115 +#: socialaccount/models.py:117 msgid "uid" msgstr "" -#: socialaccount/models.py:117 +#: socialaccount/models.py:119 msgid "last login" msgstr "" -#: socialaccount/models.py:118 +#: socialaccount/models.py:120 msgid "date joined" msgstr "" -#: socialaccount/models.py:119 +#: socialaccount/models.py:121 msgid "extra data" msgstr "" -#: socialaccount/models.py:123 +#: socialaccount/models.py:125 msgid "social account" msgstr "" -#: socialaccount/models.py:124 +#: socialaccount/models.py:126 msgid "social accounts" msgstr "" -#: socialaccount/models.py:158 +#: socialaccount/models.py:160 msgid "token" msgstr "" -#: socialaccount/models.py:159 +#: socialaccount/models.py:161 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)" msgstr "" -#: socialaccount/models.py:163 +#: socialaccount/models.py:165 msgid "token secret" msgstr "" -#: socialaccount/models.py:164 +#: socialaccount/models.py:166 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)" msgstr "" -#: socialaccount/models.py:167 +#: socialaccount/models.py:169 msgid "expires at" msgstr "" -#: socialaccount/models.py:172 +#: socialaccount/models.py:174 msgid "social application token" msgstr "" -#: socialaccount/models.py:173 +#: socialaccount/models.py:175 msgid "social application tokens" msgstr "" diff --git a/allauth/locale/zh_Hant/LC_MESSAGES/django.po b/allauth/locale/zh_Hant/LC_MESSAGES/django.po index afb83002fa..5913fb1d90 100644 --- a/allauth/locale/zh_Hant/LC_MESSAGES/django.po +++ b/allauth/locale/zh_Hant/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-30 16:00-0500\n" +"POT-Creation-Date: 2023-09-07 04:22-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,25 +18,25 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: account/adapter.py:47 +#: account/adapter.py:48 msgid "Username can not be used. Please use other username." msgstr "無法使用此使用者名稱,請使用其他名稱。" -#: account/adapter.py:53 +#: account/adapter.py:54 msgid "Too many failed login attempts. Try again later." msgstr "登錄失敗次數過多,請稍後再試。" -#: account/adapter.py:55 +#: account/adapter.py:56 msgid "A user is already registered with this email address." msgstr "已經有人使用這一個電子郵件註冊了。" -#: account/adapter.py:56 +#: account/adapter.py:57 #, fuzzy #| msgid "Current Password" msgid "Incorrect password." msgstr "目前密碼" -#: account/adapter.py:305 +#: account/adapter.py:308 #, python-brace-format msgid "Password must be a minimum of {0} characters." msgstr "密碼長度至少要有 {0} 個字元。" @@ -50,7 +50,7 @@ msgid "You must type the same password each time." msgstr "每次輸入的密碼必須相同" #: account/forms.py:90 account/forms.py:397 account/forms.py:522 -#: account/forms.py:660 +#: account/forms.py:658 msgid "Password" msgstr "密碼" @@ -134,11 +134,11 @@ msgstr "您的帳號下沒有驗證過的電子郵件地址。" msgid "Current Password" msgstr "目前密碼" -#: account/forms.py:505 account/forms.py:609 +#: account/forms.py:505 account/forms.py:607 msgid "New Password" msgstr "新密碼" -#: account/forms.py:506 account/forms.py:610 +#: account/forms.py:506 account/forms.py:608 msgid "New Password (again)" msgstr "新密碼 (再一次)" @@ -150,7 +150,7 @@ msgstr "請輸入您目前的密碼" msgid "The email address is not assigned to any user account" msgstr "還沒有其他帳號使用這個電子郵件地址" -#: account/forms.py:630 +#: account/forms.py:628 msgid "The password reset token was invalid." msgstr "" @@ -182,7 +182,7 @@ msgstr "以建立" msgid "sent" msgstr "已送出" -#: account/models.py:143 socialaccount/models.py:60 +#: account/models.py:143 socialaccount/models.py:62 msgid "key" msgstr "key" @@ -194,19 +194,19 @@ msgstr "電子郵件確認" msgid "email confirmations" msgstr "電子郵件確認" -#: mfa/adapter.py:18 +#: mfa/adapter.py:19 msgid "" "You cannot activate two-factor authentication until you have verified your " "email address." msgstr "" -#: mfa/adapter.py:21 +#: mfa/adapter.py:22 msgid "" "You cannot add an email address to an account protected by two-factor " "authentication." msgstr "" -#: mfa/adapter.py:23 +#: mfa/adapter.py:24 msgid "Incorrect code." msgstr "" @@ -230,7 +230,7 @@ msgstr "" msgid "TOTP Authenticator" msgstr "" -#: socialaccount/adapter.py:28 +#: socialaccount/adapter.py:30 #, fuzzy, python-format #| msgid "" #| "An account already exists with this e-mail address. Please sign in to " @@ -241,11 +241,11 @@ msgid "" msgstr "" "已經有一個帳號與此電子郵件連結了,請先登入該帳號,然後連接你的 %s 帳號。" -#: socialaccount/adapter.py:132 +#: socialaccount/adapter.py:136 msgid "Your account has no password set up." msgstr "您的帳號沒有設置密碼。" -#: socialaccount/adapter.py:139 +#: socialaccount/adapter.py:143 msgid "Your account has no verified email address." msgstr "您的帳號下沒有驗證過的電子郵件地址。" @@ -253,97 +253,97 @@ msgstr "您的帳號下沒有驗證過的電子郵件地址。" msgid "Social Accounts" msgstr "社群帳號" -#: socialaccount/models.py:34 socialaccount/models.py:95 +#: socialaccount/models.py:36 socialaccount/models.py:97 msgid "provider" msgstr "提供者" -#: socialaccount/models.py:43 +#: socialaccount/models.py:45 #, fuzzy #| msgid "provider" msgid "provider ID" msgstr "提供者" -#: socialaccount/models.py:47 +#: socialaccount/models.py:49 msgid "name" msgstr "名稱" -#: socialaccount/models.py:49 +#: socialaccount/models.py:51 msgid "client id" msgstr "client id" -#: socialaccount/models.py:51 +#: socialaccount/models.py:53 msgid "App ID, or consumer key" msgstr "App ID, or consumer key" -#: socialaccount/models.py:54 +#: socialaccount/models.py:56 msgid "secret key" msgstr "secret key" -#: socialaccount/models.py:57 +#: socialaccount/models.py:59 msgid "API secret, client secret, or consumer secret" msgstr "API secret, client secret, or consumer secret" -#: socialaccount/models.py:60 +#: socialaccount/models.py:62 msgid "Key" msgstr "Key" -#: socialaccount/models.py:79 +#: socialaccount/models.py:81 msgid "social application" msgstr "社群應用程式" -#: socialaccount/models.py:80 +#: socialaccount/models.py:82 msgid "social applications" msgstr "社群應用程式" -#: socialaccount/models.py:115 +#: socialaccount/models.py:117 msgid "uid" msgstr "uid" -#: socialaccount/models.py:117 +#: socialaccount/models.py:119 msgid "last login" msgstr "最後一次登入" -#: socialaccount/models.py:118 +#: socialaccount/models.py:120 msgid "date joined" msgstr "加入日期" -#: socialaccount/models.py:119 +#: socialaccount/models.py:121 msgid "extra data" msgstr "額外資料" -#: socialaccount/models.py:123 +#: socialaccount/models.py:125 msgid "social account" msgstr "社群帳號" -#: socialaccount/models.py:124 +#: socialaccount/models.py:126 msgid "social accounts" msgstr "社群帳號" -#: socialaccount/models.py:158 +#: socialaccount/models.py:160 msgid "token" msgstr "" -#: socialaccount/models.py:159 +#: socialaccount/models.py:161 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)" msgstr "" -#: socialaccount/models.py:163 +#: socialaccount/models.py:165 msgid "token secret" msgstr "" -#: socialaccount/models.py:164 +#: socialaccount/models.py:166 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)" msgstr "" -#: socialaccount/models.py:167 +#: socialaccount/models.py:169 msgid "expires at" msgstr "過期日" -#: socialaccount/models.py:172 +#: socialaccount/models.py:174 msgid "social application token" msgstr "社群應用程式 Token" -#: socialaccount/models.py:173 +#: socialaccount/models.py:175 msgid "social application tokens" msgstr "社群應用程式 Token" diff --git a/allauth/locale/zh_TW/LC_MESSAGES/django.po b/allauth/locale/zh_TW/LC_MESSAGES/django.po index 6aa138d217..a8e8a8e3bb 100644 --- a/allauth/locale/zh_TW/LC_MESSAGES/django.po +++ b/allauth/locale/zh_TW/LC_MESSAGES/django.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: django-allauth\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-30 16:00-0500\n" +"POT-Creation-Date: 2023-09-07 04:22-0500\n" "PO-Revision-Date: 2014-08-12 00:36+0200\n" "Last-Translator: jresins \n" "Language-Team: Chinese (Traditional)\n" @@ -15,25 +15,25 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: account/adapter.py:47 +#: account/adapter.py:48 msgid "Username can not be used. Please use other username." msgstr "無法使用此使用者名稱,請使用其他名稱。" -#: account/adapter.py:53 +#: account/adapter.py:54 msgid "Too many failed login attempts. Try again later." msgstr "" -#: account/adapter.py:55 +#: account/adapter.py:56 msgid "A user is already registered with this email address." msgstr "已經有人使用這一個電子郵件註冊了。" -#: account/adapter.py:56 +#: account/adapter.py:57 #, fuzzy #| msgid "Current Password" msgid "Incorrect password." msgstr "目前密碼" -#: account/adapter.py:305 +#: account/adapter.py:308 #, python-brace-format msgid "Password must be a minimum of {0} characters." msgstr "密碼長度至少要有 {0} 個字元。" @@ -47,7 +47,7 @@ msgid "You must type the same password each time." msgstr "每次輸入的密碼必須相同" #: account/forms.py:90 account/forms.py:397 account/forms.py:522 -#: account/forms.py:660 +#: account/forms.py:658 msgid "Password" msgstr "密碼" @@ -131,11 +131,11 @@ msgstr "您的帳號下沒有驗證過的電子郵件地址。" msgid "Current Password" msgstr "目前密碼" -#: account/forms.py:505 account/forms.py:609 +#: account/forms.py:505 account/forms.py:607 msgid "New Password" msgstr "新密碼" -#: account/forms.py:506 account/forms.py:610 +#: account/forms.py:506 account/forms.py:608 msgid "New Password (again)" msgstr "新密碼 (再一次)" @@ -147,7 +147,7 @@ msgstr "請輸入您目前的密碼" msgid "The email address is not assigned to any user account" msgstr "還沒有其他帳號使用這個電子郵件地址" -#: account/forms.py:630 +#: account/forms.py:628 msgid "The password reset token was invalid." msgstr "" @@ -179,7 +179,7 @@ msgstr "以建立" msgid "sent" msgstr "已送出" -#: account/models.py:143 socialaccount/models.py:60 +#: account/models.py:143 socialaccount/models.py:62 msgid "key" msgstr "key" @@ -191,19 +191,19 @@ msgstr "電子郵件確認" msgid "email confirmations" msgstr "電子郵件確認" -#: mfa/adapter.py:18 +#: mfa/adapter.py:19 msgid "" "You cannot activate two-factor authentication until you have verified your " "email address." msgstr "" -#: mfa/adapter.py:21 +#: mfa/adapter.py:22 msgid "" "You cannot add an email address to an account protected by two-factor " "authentication." msgstr "" -#: mfa/adapter.py:23 +#: mfa/adapter.py:24 msgid "Incorrect code." msgstr "" @@ -227,7 +227,7 @@ msgstr "" msgid "TOTP Authenticator" msgstr "" -#: socialaccount/adapter.py:28 +#: socialaccount/adapter.py:30 #, fuzzy, python-format #| msgid "" #| "An account already exists with this e-mail address. Please sign in to " @@ -238,11 +238,11 @@ msgid "" msgstr "" "已經有一個帳號與此電子郵件連結了,請先登入該帳號,然後連接你的 %s 帳號。" -#: socialaccount/adapter.py:132 +#: socialaccount/adapter.py:136 msgid "Your account has no password set up." msgstr "您的帳號沒有設置密碼。" -#: socialaccount/adapter.py:139 +#: socialaccount/adapter.py:143 msgid "Your account has no verified email address." msgstr "您的帳號下沒有驗證過的電子郵件地址。" @@ -250,97 +250,97 @@ msgstr "您的帳號下沒有驗證過的電子郵件地址。" msgid "Social Accounts" msgstr "社群帳號" -#: socialaccount/models.py:34 socialaccount/models.py:95 +#: socialaccount/models.py:36 socialaccount/models.py:97 msgid "provider" msgstr "提供者" -#: socialaccount/models.py:43 +#: socialaccount/models.py:45 #, fuzzy #| msgid "provider" msgid "provider ID" msgstr "提供者" -#: socialaccount/models.py:47 +#: socialaccount/models.py:49 msgid "name" msgstr "名稱" -#: socialaccount/models.py:49 +#: socialaccount/models.py:51 msgid "client id" msgstr "client id" -#: socialaccount/models.py:51 +#: socialaccount/models.py:53 msgid "App ID, or consumer key" msgstr "App ID, or consumer key" -#: socialaccount/models.py:54 +#: socialaccount/models.py:56 msgid "secret key" msgstr "secret key" -#: socialaccount/models.py:57 +#: socialaccount/models.py:59 msgid "API secret, client secret, or consumer secret" msgstr "API secret, client secret, or consumer secret" -#: socialaccount/models.py:60 +#: socialaccount/models.py:62 msgid "Key" msgstr "Key" -#: socialaccount/models.py:79 +#: socialaccount/models.py:81 msgid "social application" msgstr "社群應用程式" -#: socialaccount/models.py:80 +#: socialaccount/models.py:82 msgid "social applications" msgstr "社群應用程式" -#: socialaccount/models.py:115 +#: socialaccount/models.py:117 msgid "uid" msgstr "uid" -#: socialaccount/models.py:117 +#: socialaccount/models.py:119 msgid "last login" msgstr "最後一次登入" -#: socialaccount/models.py:118 +#: socialaccount/models.py:120 msgid "date joined" msgstr "加入日期" -#: socialaccount/models.py:119 +#: socialaccount/models.py:121 msgid "extra data" msgstr "額外資料" -#: socialaccount/models.py:123 +#: socialaccount/models.py:125 msgid "social account" msgstr "社群帳號" -#: socialaccount/models.py:124 +#: socialaccount/models.py:126 msgid "social accounts" msgstr "社群帳號" -#: socialaccount/models.py:158 +#: socialaccount/models.py:160 msgid "token" msgstr "" -#: socialaccount/models.py:159 +#: socialaccount/models.py:161 msgid "\"oauth_token\" (OAuth1) or access token (OAuth2)" msgstr "" -#: socialaccount/models.py:163 +#: socialaccount/models.py:165 msgid "token secret" msgstr "" -#: socialaccount/models.py:164 +#: socialaccount/models.py:166 msgid "\"oauth_token_secret\" (OAuth1) or refresh token (OAuth2)" msgstr "" -#: socialaccount/models.py:167 +#: socialaccount/models.py:169 msgid "expires at" msgstr "過期日" -#: socialaccount/models.py:172 +#: socialaccount/models.py:174 msgid "social application token" msgstr "社群應用程式 Token" -#: socialaccount/models.py:173 +#: socialaccount/models.py:175 msgid "social application tokens" msgstr "社群應用程式 Token" diff --git a/allauth/socialaccount/helpers.py b/allauth/socialaccount/helpers.py index d0ff4cbf43..b2d3061253 100644 --- a/allauth/socialaccount/helpers.py +++ b/allauth/socialaccount/helpers.py @@ -163,16 +163,10 @@ def _add_social_account(request, sociallogin): # for customized behaviour through use of a signal. action = "updated" message = "socialaccount/messages/account_connected_updated.txt" - signals.social_account_updated.send( - sender=SocialLogin, request=request, sociallogin=sociallogin - ) else: # New account, let's connect action = "added" sociallogin.connect(request, request.user) - signals.social_account_added.send( - sender=SocialLogin, request=request, sociallogin=sociallogin - ) assert request.user.is_authenticated default_next = get_adapter().get_connect_redirect_url(request, sociallogin.account) next_url = sociallogin.get_redirect_url(request) or default_next @@ -215,9 +209,6 @@ def _complete_social_login(request, sociallogin): if sociallogin.is_existing: # Login existing user ret = _login_social_account(request, sociallogin) - signals.social_account_updated.send( - sender=SocialLogin, request=request, sociallogin=sociallogin - ) else: # New social user ret = _process_signup(request, sociallogin) diff --git a/allauth/socialaccount/models.py b/allauth/socialaccount/models.py index 2bdbbfe11e..0775db9ad4 100644 --- a/allauth/socialaccount/models.py +++ b/allauth/socialaccount/models.py @@ -216,6 +216,9 @@ def __init__(self, user=None, account=None, token=None, email_addresses=[]): def connect(self, request, user): self.user = user self.save(request, connect=True) + signals.social_account_added.send( + sender=SocialLogin, request=request, sociallogin=self + ) def serialize(self): serialize_instance = get_adapter().serialize_instance @@ -296,6 +299,9 @@ def _lookup_by_socialaccount(self): self.account = a self.user = self.account.user a.save() + signals.social_account_updated.send( + sender=SocialLogin, request=context.request, sociallogin=self + ) # Update token if app_settings.STORE_TOKENS and self.token: assert not self.token.pk @@ -326,12 +332,10 @@ def _lookup_by_email(self): EmailAddress.objects.lookup(emails).order_by("-verified", "user_id").first() ) if address: - self.user = address.user if app_settings.EMAIL_AUTHENTICATION_AUTO_CONNECT: - self.save(request=context.request, connect=True) - signals.social_account_added.send( - sender=SocialLogin, request=context.request, sociallogin=self - ) + self.connect(context.request, address.user) + else: + self.user = address.user def get_redirect_url(self, request): url = self.state.get("next") diff --git a/allauth/socialaccount/providers/keycloak/__init__.py b/allauth/socialaccount/providers/keycloak/__init__.py deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/allauth/socialaccount/providers/keycloak/provider.py b/allauth/socialaccount/providers/keycloak/provider.py deleted file mode 100644 index f6f1e699ca..0000000000 --- a/allauth/socialaccount/providers/keycloak/provider.py +++ /dev/null @@ -1,56 +0,0 @@ -from django.conf import settings - -from allauth.socialaccount import app_settings -from allauth.socialaccount.providers.openid_connect.provider import ( - OpenIDConnectProvider, - OpenIDConnectProviderAccount, -) - - -OVERRIDE_NAME = ( - getattr(settings, "SOCIALACCOUNT_PROVIDERS", {}) - .get("keycloak", {}) - .get("OVERRIDE_NAME", "Keycloak") -) - - -class KeycloakAccount(OpenIDConnectProviderAccount): - def get_avatar_url(self): - return self.account.extra_data.get("picture") - - -class KeycloakProvider(OpenIDConnectProvider): - id = "keycloak" - name = OVERRIDE_NAME - account_class = KeycloakAccount - - def get_login_url(self, request, **kwargs): - return super(OpenIDConnectProvider, self).get_login_url(request, **kwargs) - - def get_callback_url(self): - return super(OpenIDConnectProvider, self).get_callback_url() - - @property - def server_url(self): - return self.wk_server_url(self.base_server_url) - - @property - def base_server_url(self): - other_url = self.settings.get("KEYCLOAK_URL_ALT") - if other_url is None: - other_url = self.settings.get("KEYCLOAK_URL") - url = "{0}/realms/{1}".format(other_url, self.settings.get("KEYCLOAK_REALM")) - return url - - @property - def provider_base_url(self): - return "{0}/realms/{1}".format( - self.settings.get("KEYCLOAK_URL"), self.settings.get("KEYCLOAK_REALM") - ) - - @property - def settings(self): - return app_settings.PROVIDERS.get(self.id, {}) - - -provider_classes = [KeycloakProvider] diff --git a/allauth/socialaccount/providers/keycloak/tests.py b/allauth/socialaccount/providers/keycloak/tests.py deleted file mode 100644 index eaec4cf63e..0000000000 --- a/allauth/socialaccount/providers/keycloak/tests.py +++ /dev/null @@ -1,33 +0,0 @@ -# -*- coding: utf-8 -*- -from django.test.utils import override_settings - -from allauth.socialaccount.providers.keycloak.provider import KeycloakProvider -from allauth.socialaccount.tests import OpenIDConnectTests -from allauth.tests import MockedResponse, TestCase - - -@override_settings( - SOCIALACCOUNT_PROVIDERS={ - KeycloakProvider.id: dict( - KEYCLOAK_URL="https://keycloak.unittest.example", - KEYCLOAK_REALM="unittest", - ) - } -) -class KeycloakTests(OpenIDConnectTests, TestCase): - provider_id = KeycloakProvider.id - - def get_mocked_response(self): - return MockedResponse( - 200, - """ - { - "picture": "https://secure.gravatar.com/avatar/123", - "email": "mr.bob@your.Keycloak.server.example.com", - "id": 2, - "sub": 2, - "identities": [], - "name": "Mr Bob" - } - """, - ) diff --git a/allauth/socialaccount/providers/keycloak/urls.py b/allauth/socialaccount/providers/keycloak/urls.py deleted file mode 100644 index 318f740ce5..0000000000 --- a/allauth/socialaccount/providers/keycloak/urls.py +++ /dev/null @@ -1,6 +0,0 @@ -# -*- coding: utf-8 -*- -from allauth.socialaccount.providers.keycloak.provider import KeycloakProvider -from allauth.socialaccount.providers.oauth2.urls import default_urlpatterns - - -urlpatterns = default_urlpatterns(KeycloakProvider) diff --git a/allauth/socialaccount/providers/keycloak/views.py b/allauth/socialaccount/providers/keycloak/views.py deleted file mode 100644 index 505a850510..0000000000 --- a/allauth/socialaccount/providers/keycloak/views.py +++ /dev/null @@ -1,36 +0,0 @@ -# -*- coding: utf-8 -*- - -from allauth.socialaccount.providers.keycloak.provider import KeycloakProvider -from allauth.socialaccount.providers.oauth2.views import ( - OAuth2CallbackView, - OAuth2LoginView, -) -from allauth.socialaccount.providers.openid_connect.views import ( - BaseOpenIDConnectAdapter, -) - - -class KeycloakOAuth2Adapter(BaseOpenIDConnectAdapter): - provider_id = KeycloakProvider.id - - @property - def authorize_url(self): - return "{0}/protocol/openid-connect/auth".format( - self.get_provider().provider_base_url - ) - - @property - def access_token_url(self): - return "{0}/protocol/openid-connect/token".format( - self.get_provider().base_server_url - ) - - @property - def profile_url(self): - return "{0}/protocol/openid-connect/userinfo".format( - self.get_provider().base_server_url - ) - - -oauth2_login = OAuth2LoginView.adapter_view(KeycloakOAuth2Adapter) -oauth2_callback = OAuth2CallbackView.adapter_view(KeycloakOAuth2Adapter) diff --git a/allauth/socialaccount/providers/microsoft/views.py b/allauth/socialaccount/providers/microsoft/views.py index 77805fad57..f68889fd5e 100644 --- a/allauth/socialaccount/providers/microsoft/views.py +++ b/allauth/socialaccount/providers/microsoft/views.py @@ -3,7 +3,9 @@ import json import requests +from allauth.core import context from allauth.socialaccount import app_settings +from allauth.socialaccount.adapter import get_adapter from allauth.socialaccount.providers.oauth2.client import OAuth2Error from allauth.socialaccount.providers.oauth2.views import ( OAuth2Adapter, @@ -35,13 +37,23 @@ def _check_errors(response): class MicrosoftGraphOAuth2Adapter(OAuth2Adapter): provider_id = MicrosoftGraphProvider.id - settings = app_settings.PROVIDERS.get(provider_id, {}) - # Lower case "tenant" for backwards compatibility - tenant = settings.get("TENANT", settings.get("tenant", "common")) + def _build_tenant_url(self, path): + settings = app_settings.PROVIDERS.get(self.provider_id, {}) + # Lower case "tenant" for backwards compatibility + tenant = settings.get("TENANT", settings.get("tenant", "common")) + # Prefer app based tenant setting. + app = get_adapter().get_app(context.request, provider=self.provider_id) + tenant = app.settings.get("tenant", tenant) + return f"https://login.microsoftonline.com/{tenant}{path}" + + @property + def access_token_url(self): + return self._build_tenant_url("/oauth2/v2.0/token") + + @property + def authorize_url(self): + return self._build_tenant_url("/oauth2/v2.0/authorize") - provider_base_url = "https://login.microsoftonline.com/{0}".format(tenant) - access_token_url = "{0}/oauth2/v2.0/token".format(provider_base_url) - authorize_url = "{0}/oauth2/v2.0/authorize".format(provider_base_url) profile_url = "https://graph.microsoft.com/v1.0/me" user_properties = ( diff --git a/allauth/socialaccount/providers/openid_connect/views.py b/allauth/socialaccount/providers/openid_connect/views.py index cf9cd0c84f..5b55769748 100644 --- a/allauth/socialaccount/providers/openid_connect/views.py +++ b/allauth/socialaccount/providers/openid_connect/views.py @@ -10,9 +10,13 @@ from allauth.utils import build_absolute_uri -class BaseOpenIDConnectAdapter(OAuth2Adapter): +class OpenIDConnectAdapter(OAuth2Adapter): supports_state = True + def __init__(self, request, provider_id): + self.provider_id = provider_id + super().__init__(request) + @property def openid_config(self): if not hasattr(self, "_openid_config"): @@ -51,12 +55,6 @@ def complete_login(self, request, app, token, response): extra_data = response.json() return self.get_provider().sociallogin_from_response(request, extra_data) - -class OpenIDConnectAdapter(BaseOpenIDConnectAdapter): - def __init__(self, request, provider_id): - self.provider_id = provider_id - super().__init__(request) - def get_callback_url(self, request, app): callback_url = reverse( "openid_connect_callback", kwargs={"provider_id": self.provider_id} diff --git a/allauth/socialaccount/providers/saml/utils.py b/allauth/socialaccount/providers/saml/utils.py index 8c72a40feb..f534fefd56 100644 --- a/allauth/socialaccount/providers/saml/utils.py +++ b/allauth/socialaccount/providers/saml/utils.py @@ -53,8 +53,15 @@ def build_sp_config(request, provider_config, org): if avd.get("x509cert") is not None: sp_config["x509cert"] = avd["x509cert"] + if avd.get("x509cert_new"): + sp_config["x509certNew"] = avd["x509cert_new"] + if avd.get("private_key") is not None: sp_config["privateKey"] = avd["private_key"] + + if avd.get("name_id_format") is not None: + sp_config["NameIDFormat"] = avd["name_id_format"] + return sp_config @@ -92,13 +99,27 @@ def build_saml_config(request, provider_config, org): "wantAssertionsEncrypted": avd.get("want_assertion_encrypted", False), "wantAssertionsSigned": avd.get("want_assertion_signed", False), "wantMessagesSigned": avd.get("want_message_signed", False), - "wantNameId": False, + "nameIdEncrypted": avd.get("name_id_encrypted", False), + "wantNameIdEncrypted": avd.get("want_name_id_encrypted", False), + "allowSingleLabelDomains": avd.get("allow_single_label_domains", False), + "rejectDeprecatedAlgorithm": avd.get("reject_deprecated_algorithm", True), + "wantNameId": avd.get("want_name_id", False), + "wantAttributeStatement": avd.get("want_attribute_statement", True), + "allowRepeatAttributeName": avd.get("allow_repeat_attribute_name", True), } saml_config = { "strict": avd.get("strict", True), "security": security_config, } + contact_person = provider_config.get("contact_person") + if contact_person: + saml_config["contactPerson"] = contact_person + + organization = provider_config.get("organization") + if organization: + saml_config["organization"] = organization + idp = provider_config.get("idp") if idp is None: raise ImproperlyConfigured("`idp` missing") diff --git a/allauth/socialaccount/tests/__init__.py b/allauth/socialaccount/tests/__init__.py index c9f70193d2..75957d5267 100644 --- a/allauth/socialaccount/tests/__init__.py +++ b/allauth/socialaccount/tests/__init__.py @@ -413,13 +413,12 @@ def setUp(self): def setup_provider(self): self.app = setup_app(self.provider_id) - if self.provider_id not in ["keycloak"]: - self.app.provider_id = self.provider_id - self.app.provider = "openid_connect" - self.app.settings = { - "server_url": "https://unittest.example.com", - } - self.app.save() + self.app.provider_id = self.provider_id + self.app.provider = "openid_connect" + self.app.settings = { + "server_url": "https://unittest.example.com", + } + self.app.save() self.request = RequestFactory().get("/") self.provider = self.app.get_provider(self.request) @@ -437,9 +436,5 @@ def _mocked_responses(self, url, *args, **kwargs): def test_login_auto_signup(self): resp = self.login() self.assertRedirects(resp, "/accounts/profile/", fetch_redirect_response=False) - sa = SocialAccount.objects.get( - # For Keycloak, `provider_id` is empty. - provider=self.app.provider_id - or self.app.provider - ) + sa = SocialAccount.objects.get(provider=self.app.provider_id) self.assertDictEqual(sa.extra_data, self.extra_data) diff --git a/allauth/socialaccount/tests/test_login.py b/allauth/socialaccount/tests/test_login.py index 04cdfc9776..7acb173f48 100644 --- a/allauth/socialaccount/tests/test_login.py +++ b/allauth/socialaccount/tests/test_login.py @@ -1,3 +1,5 @@ +from unittest.mock import patch + from django.contrib.auth.models import AnonymousUser from django.contrib.messages.middleware import MessageMiddleware from django.contrib.sessions.middleware import SessionMiddleware @@ -49,9 +51,19 @@ def test_email_authentication( MessageMiddleware(lambda request: None).process_request(request) request.user = AnonymousUser() with context.request_context(request): - resp = complete_social_login(request, sociallogin) + with patch( + "allauth.socialaccount.signals.social_account_updated.send" + ) as updated_signal: + with patch( + "allauth.socialaccount.signals.social_account_added.send" + ) as added_signal: + resp = complete_social_login(request, sociallogin) if setting == "off": assert resp["location"] == reverse("account_email_verification_sent") + assert not added_signal.called + assert not updated_signal.called else: assert resp["location"] == "/accounts/profile/" assert SocialAccount.objects.filter(user=user.pk).exists() == auto_connect + assert added_signal.called == auto_connect + assert not updated_signal.called diff --git a/docs/conf.py b/docs/conf.py index 3459e22579..58c45a10b3 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -50,9 +50,9 @@ # built documents. # # The short X.Y version. -version = "0.56.0" +version = "0.57.0" # The full version, including alpha/beta/rc tags. -release = "0.56.0" +release = "0.57.0" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/installation/quickstart.rst b/docs/installation/quickstart.rst index bd5b9d1431..a1d99ed846 100644 --- a/docs/installation/quickstart.rst +++ b/docs/installation/quickstart.rst @@ -100,7 +100,6 @@ the ``settings.py`` of your project:: 'allauth.socialaccount.providers.instagram', 'allauth.socialaccount.providers.jupyterhub', 'allauth.socialaccount.providers.kakao', - 'allauth.socialaccount.providers.keycloak', 'allauth.socialaccount.providers.lemonldap', 'allauth.socialaccount.providers.line', 'allauth.socialaccount.providers.linkedin', diff --git a/docs/socialaccount/providers/keycloak.rst b/docs/socialaccount/providers/keycloak.rst index f8adbe2fe7..9c1584788f 100644 --- a/docs/socialaccount/providers/keycloak.rst +++ b/docs/socialaccount/providers/keycloak.rst @@ -1,32 +1,23 @@ Keycloak -------- -Creating a client application - https://www.keycloak.org/docs/latest/authorization_services/#_resource_server_create_client - -Development callback URL - http://localhost:8000/accounts/keycloak/login/callback/ - -The following Keycloak settings are available. - -KEYCLOAK_URL: - The url of your hosted keycloak server. For example, you can use: ``https://your.keycloak.server`` - -KEYCLOAK_URL_ALT: - An alternate url of your hosted keycloak server. For example, you can use: ``https://your.keycloak.server`` - - This can be used when working with Docker on localhost, with a frontend and a backend hosted in different containers. - -KEYCLOAK_REALM: - The name of the ``realm`` you want to use. - -Example: +Starting since version 0.56.0, the builtin Keycloak provider has been removed in +favor of relying on the OpenID Connect provider as is: .. code-block:: python SOCIALACCOUNT_PROVIDERS = { - 'keycloak': { - 'KEYCLOAK_URL': 'https://keycloak.custom/auth', - 'KEYCLOAK_REALM': 'master' + "openid_connect": { + "APPS": [ + { + "provider_id": "keycloak", + "name": "Keycloak", + "client_id": "", + "secret": "", + "settings": { + "server_url": "http://keycloak:8080/realms/master/.well-known/openid-configuration", + }, + } + ] } } diff --git a/docs/socialaccount/providers/microsoft.rst b/docs/socialaccount/providers/microsoft.rst index bb046800fb..0645b9b033 100644 --- a/docs/socialaccount/providers/microsoft.rst +++ b/docs/socialaccount/providers/microsoft.rst @@ -7,13 +7,21 @@ documents, directory, devices and more. Apps can be registered (for consumer key and secret) here https://portal.azure.com/#blade/Microsoft_AAD_RegisteredApps/ApplicationsListBlade -By default, `common` (`organizations` and `consumers`) tenancy is configured -for the login. To restrict it, change the `TENANT` setting as shown below. +By default, ``common`` (``organizations`` and ``consumers``) tenancy is configured +for the login. To restrict it, change the ``tenant`` setting as shown below. .. code-block:: python - SOCIALACCOUNT_PROVIDERS = { - 'microsoft': { - 'TENANT': 'organizations', - } - } + SOCIALACCOUNT_PROVIDERS = { + "microsoft": { + "APPS": [ + { + "client_id": "", + "secret": "", + "settings": { + "tenant": "organizations", + } + } + ] + } + } diff --git a/test_settings.py b/test_settings.py index c74eee12ff..6ba55bd142 100644 --- a/test_settings.py +++ b/test_settings.py @@ -119,7 +119,6 @@ "allauth.socialaccount.providers.instagram", "allauth.socialaccount.providers.jupyterhub", "allauth.socialaccount.providers.kakao", - "allauth.socialaccount.providers.keycloak", "allauth.socialaccount.providers.lemonldap", "allauth.socialaccount.providers.line", "allauth.socialaccount.providers.linkedin",