api: add basic jwt support with required scope (#2624)
* api: add basic jwt support with required scope Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * api: only set auth_via when actually authenticating via token Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * save consented permissions in user consent, re-prompt when new permissions are required Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * update locale Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * translate special scope map Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * more api auth tests Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * add docs Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * build web api in e2e tests Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * link generated client instead of copying Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
768f073e49
commit
c5a2831665
|
@ -139,6 +139,7 @@ jobs:
|
||||||
working-directory: web
|
working-directory: web
|
||||||
run: |
|
run: |
|
||||||
npm ci
|
npm ci
|
||||||
|
make -C .. gen-client-web
|
||||||
npm run build
|
npm run build
|
||||||
- name: run e2e
|
- name: run e2e
|
||||||
run: |
|
run: |
|
||||||
|
@ -172,6 +173,7 @@ jobs:
|
||||||
working-directory: web/
|
working-directory: web/
|
||||||
run: |
|
run: |
|
||||||
npm ci
|
npm ci
|
||||||
|
make -C .. gen-client-web
|
||||||
npm run build
|
npm run build
|
||||||
- name: run e2e
|
- name: run e2e
|
||||||
run: |
|
run: |
|
||||||
|
|
9
Makefile
9
Makefile
|
@ -71,9 +71,9 @@ gen-client-web:
|
||||||
-o /local/gen-ts-api \
|
-o /local/gen-ts-api \
|
||||||
--additional-properties=typescriptThreePlus=true,supportsES6=true,npmName=@goauthentik/api,npmVersion=${NPM_VERSION}
|
--additional-properties=typescriptThreePlus=true,supportsES6=true,npmName=@goauthentik/api,npmVersion=${NPM_VERSION}
|
||||||
mkdir -p web/node_modules/@goauthentik/api
|
mkdir -p web/node_modules/@goauthentik/api
|
||||||
\cp -fv scripts/web_api_readme.md gen-ts-api/README.md
|
ln -fs scripts/web_api_readme.md gen-ts-api/README.md
|
||||||
cd gen-ts-api && npm i
|
cd gen-ts-api && npm i
|
||||||
\cp -rfv gen-ts-api/* web/node_modules/@goauthentik/api
|
ln -fs gen-ts-api web/node_modules/@goauthentik/api
|
||||||
|
|
||||||
gen-client-go:
|
gen-client-go:
|
||||||
wget https://raw.githubusercontent.com/goauthentik/client-go/main/config.yaml -O config.yaml
|
wget https://raw.githubusercontent.com/goauthentik/client-go/main/config.yaml -O config.yaml
|
||||||
|
@ -169,8 +169,3 @@ ci-pending-migrations: ci--meta-debug
|
||||||
|
|
||||||
install: web-install website-install
|
install: web-install website-install
|
||||||
poetry install
|
poetry install
|
||||||
|
|
||||||
a: install
|
|
||||||
tmux \
|
|
||||||
new-session 'make run' \; \
|
|
||||||
split-window 'make web-watch'
|
|
||||||
|
|
|
@ -10,6 +10,8 @@ from structlog.stdlib import get_logger
|
||||||
from authentik.core.middleware import KEY_AUTH_VIA, LOCAL
|
from authentik.core.middleware import KEY_AUTH_VIA, LOCAL
|
||||||
from authentik.core.models import Token, TokenIntents, User
|
from authentik.core.models import Token, TokenIntents, User
|
||||||
from authentik.outposts.models import Outpost
|
from authentik.outposts.models import Outpost
|
||||||
|
from authentik.providers.oauth2.constants import SCOPE_AUTHENTIK_API
|
||||||
|
from authentik.providers.oauth2.models import RefreshToken
|
||||||
|
|
||||||
LOGGER = get_logger()
|
LOGGER = get_logger()
|
||||||
|
|
||||||
|
@ -24,7 +26,7 @@ def validate_auth(header: bytes) -> str:
|
||||||
if auth_type.lower() != "bearer":
|
if auth_type.lower() != "bearer":
|
||||||
LOGGER.debug("Unsupported authentication type, denying", type=auth_type.lower())
|
LOGGER.debug("Unsupported authentication type, denying", type=auth_type.lower())
|
||||||
raise AuthenticationFailed("Unsupported authentication type")
|
raise AuthenticationFailed("Unsupported authentication type")
|
||||||
if auth_credentials == "": # nosec
|
if auth_credentials == "": # nosec # noqa
|
||||||
raise AuthenticationFailed("Malformed header")
|
raise AuthenticationFailed("Malformed header")
|
||||||
return auth_credentials
|
return auth_credentials
|
||||||
|
|
||||||
|
@ -34,14 +36,30 @@ def bearer_auth(raw_header: bytes) -> Optional[User]:
|
||||||
auth_credentials = validate_auth(raw_header)
|
auth_credentials = validate_auth(raw_header)
|
||||||
if not auth_credentials:
|
if not auth_credentials:
|
||||||
return None
|
return None
|
||||||
|
if not hasattr(LOCAL, "authentik"):
|
||||||
|
LOCAL.authentik = {}
|
||||||
# first, check traditional tokens
|
# first, check traditional tokens
|
||||||
token = Token.filter_not_expired(key=auth_credentials, intent=TokenIntents.INTENT_API).first()
|
key_token = Token.filter_not_expired(
|
||||||
if hasattr(LOCAL, "authentik"):
|
key=auth_credentials, intent=TokenIntents.INTENT_API
|
||||||
|
).first()
|
||||||
|
if key_token:
|
||||||
LOCAL.authentik[KEY_AUTH_VIA] = "api_token"
|
LOCAL.authentik[KEY_AUTH_VIA] = "api_token"
|
||||||
if token:
|
return key_token.user
|
||||||
return token.user
|
# then try to auth via JWT
|
||||||
|
jwt_token = RefreshToken.filter_not_expired(
|
||||||
|
refresh_token=auth_credentials, _scope__icontains=SCOPE_AUTHENTIK_API
|
||||||
|
).first()
|
||||||
|
if jwt_token:
|
||||||
|
# Double-check scopes, since they are saved in a single string
|
||||||
|
# we want to check the parsed version too
|
||||||
|
if SCOPE_AUTHENTIK_API not in jwt_token.scope:
|
||||||
|
raise AuthenticationFailed("Token invalid/expired")
|
||||||
|
LOCAL.authentik[KEY_AUTH_VIA] = "jwt"
|
||||||
|
return jwt_token.user
|
||||||
|
# then try to auth via secret key (for embedded outpost/etc)
|
||||||
user = token_secret_key(auth_credentials)
|
user = token_secret_key(auth_credentials)
|
||||||
if user:
|
if user:
|
||||||
|
LOCAL.authentik[KEY_AUTH_VIA] = "secret_key"
|
||||||
return user
|
return user
|
||||||
raise AuthenticationFailed("Token invalid/expired")
|
raise AuthenticationFailed("Token invalid/expired")
|
||||||
|
|
||||||
|
@ -56,8 +74,6 @@ def token_secret_key(value: str) -> Optional[User]:
|
||||||
outposts = Outpost.objects.filter(managed=MANAGED_OUTPOST)
|
outposts = Outpost.objects.filter(managed=MANAGED_OUTPOST)
|
||||||
if not outposts:
|
if not outposts:
|
||||||
return None
|
return None
|
||||||
if hasattr(LOCAL, "authentik"):
|
|
||||||
LOCAL.authentik[KEY_AUTH_VIA] = "secret_key"
|
|
||||||
outpost = outposts.first()
|
outpost = outposts.first()
|
||||||
return outpost.user
|
return outpost.user
|
||||||
|
|
||||||
|
|
|
@ -8,28 +8,37 @@ from rest_framework.exceptions import AuthenticationFailed
|
||||||
|
|
||||||
from authentik.api.authentication import bearer_auth
|
from authentik.api.authentication import bearer_auth
|
||||||
from authentik.core.models import USER_ATTRIBUTE_SA, Token, TokenIntents
|
from authentik.core.models import USER_ATTRIBUTE_SA, Token, TokenIntents
|
||||||
|
from authentik.core.tests.utils import create_test_flow
|
||||||
|
from authentik.lib.generators import generate_id
|
||||||
from authentik.outposts.managed import OutpostManager
|
from authentik.outposts.managed import OutpostManager
|
||||||
|
from authentik.providers.oauth2.constants import SCOPE_AUTHENTIK_API
|
||||||
|
from authentik.providers.oauth2.models import OAuth2Provider, RefreshToken
|
||||||
|
|
||||||
|
|
||||||
class TestAPIAuth(TestCase):
|
class TestAPIAuth(TestCase):
|
||||||
"""Test API Authentication"""
|
"""Test API Authentication"""
|
||||||
|
|
||||||
def test_valid_bearer(self):
|
|
||||||
"""Test valid token"""
|
|
||||||
token = Token.objects.create(intent=TokenIntents.INTENT_API, user=get_anonymous_user())
|
|
||||||
self.assertEqual(bearer_auth(f"Bearer {token.key}".encode()), token.user)
|
|
||||||
|
|
||||||
def test_invalid_type(self):
|
def test_invalid_type(self):
|
||||||
"""Test invalid type"""
|
"""Test invalid type"""
|
||||||
with self.assertRaises(AuthenticationFailed):
|
with self.assertRaises(AuthenticationFailed):
|
||||||
bearer_auth("foo bar".encode())
|
bearer_auth("foo bar".encode())
|
||||||
|
|
||||||
|
def test_invalid_empty(self):
|
||||||
|
"""Test invalid type"""
|
||||||
|
self.assertIsNone(bearer_auth("Bearer ".encode()))
|
||||||
|
self.assertIsNone(bearer_auth("".encode()))
|
||||||
|
|
||||||
def test_invalid_no_token(self):
|
def test_invalid_no_token(self):
|
||||||
"""Test invalid with no token"""
|
"""Test invalid with no token"""
|
||||||
with self.assertRaises(AuthenticationFailed):
|
with self.assertRaises(AuthenticationFailed):
|
||||||
auth = b64encode(":abc".encode()).decode()
|
auth = b64encode(":abc".encode()).decode()
|
||||||
self.assertIsNone(bearer_auth(f"Basic :{auth}".encode()))
|
self.assertIsNone(bearer_auth(f"Basic :{auth}".encode()))
|
||||||
|
|
||||||
|
def test_bearer_valid(self):
|
||||||
|
"""Test valid token"""
|
||||||
|
token = Token.objects.create(intent=TokenIntents.INTENT_API, user=get_anonymous_user())
|
||||||
|
self.assertEqual(bearer_auth(f"Bearer {token.key}".encode()), token.user)
|
||||||
|
|
||||||
def test_managed_outpost(self):
|
def test_managed_outpost(self):
|
||||||
"""Test managed outpost"""
|
"""Test managed outpost"""
|
||||||
with self.assertRaises(AuthenticationFailed):
|
with self.assertRaises(AuthenticationFailed):
|
||||||
|
@ -38,3 +47,30 @@ class TestAPIAuth(TestCase):
|
||||||
OutpostManager().run()
|
OutpostManager().run()
|
||||||
user = bearer_auth(f"Bearer {settings.SECRET_KEY}".encode())
|
user = bearer_auth(f"Bearer {settings.SECRET_KEY}".encode())
|
||||||
self.assertEqual(user.attributes[USER_ATTRIBUTE_SA], True)
|
self.assertEqual(user.attributes[USER_ATTRIBUTE_SA], True)
|
||||||
|
|
||||||
|
def test_jwt_valid(self):
|
||||||
|
"""Test valid JWT"""
|
||||||
|
provider = OAuth2Provider.objects.create(
|
||||||
|
name=generate_id(), client_id=generate_id(), authorization_flow=create_test_flow()
|
||||||
|
)
|
||||||
|
refresh = RefreshToken.objects.create(
|
||||||
|
user=get_anonymous_user(),
|
||||||
|
provider=provider,
|
||||||
|
refresh_token=generate_id(),
|
||||||
|
_scope=SCOPE_AUTHENTIK_API,
|
||||||
|
)
|
||||||
|
self.assertEqual(bearer_auth(f"Bearer {refresh.refresh_token}".encode()), refresh.user)
|
||||||
|
|
||||||
|
def test_jwt_missing_scope(self):
|
||||||
|
"""Test valid JWT"""
|
||||||
|
provider = OAuth2Provider.objects.create(
|
||||||
|
name=generate_id(), client_id=generate_id(), authorization_flow=create_test_flow()
|
||||||
|
)
|
||||||
|
refresh = RefreshToken.objects.create(
|
||||||
|
user=get_anonymous_user(),
|
||||||
|
provider=provider,
|
||||||
|
refresh_token=generate_id(),
|
||||||
|
_scope="",
|
||||||
|
)
|
||||||
|
with self.assertRaises(AuthenticationFailed):
|
||||||
|
self.assertEqual(bearer_auth(f"Bearer {refresh.refresh_token}".encode()), refresh.user)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
"""Challenge helpers"""
|
"""Challenge helpers"""
|
||||||
from enum import Enum
|
from enum import Enum
|
||||||
from typing import TYPE_CHECKING, Optional
|
from typing import TYPE_CHECKING, Optional, TypedDict
|
||||||
|
|
||||||
from django.db import models
|
from django.db import models
|
||||||
from django.http import JsonResponse
|
from django.http import JsonResponse
|
||||||
|
@ -95,6 +95,13 @@ class AccessDeniedChallenge(WithUserInfoChallenge):
|
||||||
component = CharField(default="ak-stage-access-denied")
|
component = CharField(default="ak-stage-access-denied")
|
||||||
|
|
||||||
|
|
||||||
|
class PermissionDict(TypedDict):
|
||||||
|
"""Consent Permission"""
|
||||||
|
|
||||||
|
id: str
|
||||||
|
name: str
|
||||||
|
|
||||||
|
|
||||||
class PermissionSerializer(PassiveSerializer):
|
class PermissionSerializer(PassiveSerializer):
|
||||||
"""Permission used for consent"""
|
"""Permission used for consent"""
|
||||||
|
|
||||||
|
|
|
@ -18,6 +18,8 @@ SCOPE_OPENID = "openid"
|
||||||
SCOPE_OPENID_PROFILE = "profile"
|
SCOPE_OPENID_PROFILE = "profile"
|
||||||
SCOPE_OPENID_EMAIL = "email"
|
SCOPE_OPENID_EMAIL = "email"
|
||||||
|
|
||||||
|
SCOPE_AUTHENTIK_API = "goauthentik.io/api"
|
||||||
|
|
||||||
# Read/write full user (including email)
|
# Read/write full user (including email)
|
||||||
SCOPE_GITHUB_USER = "user"
|
SCOPE_GITHUB_USER = "user"
|
||||||
# Read user (without email)
|
# Read user (without email)
|
||||||
|
|
|
@ -4,12 +4,15 @@ from typing import Any, Optional
|
||||||
from deepmerge import always_merger
|
from deepmerge import always_merger
|
||||||
from django.http import HttpRequest, HttpResponse
|
from django.http import HttpRequest, HttpResponse
|
||||||
from django.http.response import HttpResponseBadRequest
|
from django.http.response import HttpResponseBadRequest
|
||||||
|
from django.utils.translation import gettext_lazy as _
|
||||||
from django.views import View
|
from django.views import View
|
||||||
from structlog.stdlib import get_logger
|
from structlog.stdlib import get_logger
|
||||||
|
|
||||||
from authentik.core.exceptions import PropertyMappingExpressionException
|
from authentik.core.exceptions import PropertyMappingExpressionException
|
||||||
from authentik.events.models import Event, EventAction
|
from authentik.events.models import Event, EventAction
|
||||||
|
from authentik.flows.challenge import PermissionDict
|
||||||
from authentik.providers.oauth2.constants import (
|
from authentik.providers.oauth2.constants import (
|
||||||
|
SCOPE_AUTHENTIK_API,
|
||||||
SCOPE_GITHUB_ORG_READ,
|
SCOPE_GITHUB_ORG_READ,
|
||||||
SCOPE_GITHUB_USER,
|
SCOPE_GITHUB_USER,
|
||||||
SCOPE_GITHUB_USER_EMAIL,
|
SCOPE_GITHUB_USER_EMAIL,
|
||||||
|
@ -27,23 +30,27 @@ class UserInfoView(View):
|
||||||
|
|
||||||
token: Optional[RefreshToken]
|
token: Optional[RefreshToken]
|
||||||
|
|
||||||
def get_scope_descriptions(self, scopes: list[str]) -> list[dict[str, str]]:
|
def get_scope_descriptions(self, scopes: list[str]) -> list[PermissionDict]:
|
||||||
"""Get a list of all Scopes's descriptions"""
|
"""Get a list of all Scopes's descriptions"""
|
||||||
scope_descriptions = []
|
scope_descriptions = []
|
||||||
for scope in ScopeMapping.objects.filter(scope_name__in=scopes).order_by("scope_name"):
|
for scope in ScopeMapping.objects.filter(scope_name__in=scopes).order_by("scope_name"):
|
||||||
if scope.description != "":
|
if scope.description == "":
|
||||||
scope_descriptions.append({"id": scope.scope_name, "name": scope.description})
|
continue
|
||||||
|
scope_descriptions.append(PermissionDict(id=scope.scope_name, name=scope.description))
|
||||||
# GitHub Compatibility Scopes are handled differently, since they required custom paths
|
# GitHub Compatibility Scopes are handled differently, since they required custom paths
|
||||||
# Hence they don't exist as Scope objects
|
# Hence they don't exist as Scope objects
|
||||||
github_scope_map = {
|
special_scope_map = {
|
||||||
SCOPE_GITHUB_USER: ("GitHub Compatibility: Access your User Information"),
|
SCOPE_GITHUB_USER: _("GitHub Compatibility: Access your User Information"),
|
||||||
SCOPE_GITHUB_USER_READ: ("GitHub Compatibility: Access your User Information"),
|
SCOPE_GITHUB_USER_READ: _("GitHub Compatibility: Access your User Information"),
|
||||||
SCOPE_GITHUB_USER_EMAIL: ("GitHub Compatibility: Access you Email addresses"),
|
SCOPE_GITHUB_USER_EMAIL: _("GitHub Compatibility: Access you Email addresses"),
|
||||||
SCOPE_GITHUB_ORG_READ: ("GitHub Compatibility: Access your Groups"),
|
SCOPE_GITHUB_ORG_READ: _("GitHub Compatibility: Access your Groups"),
|
||||||
|
SCOPE_AUTHENTIK_API: _("authentik API Access on behalf of your user"),
|
||||||
}
|
}
|
||||||
for scope in scopes:
|
for scope in scopes:
|
||||||
if scope in github_scope_map:
|
if scope in special_scope_map:
|
||||||
scope_descriptions.append({"id": scope, "name": github_scope_map[scope]})
|
scope_descriptions.append(
|
||||||
|
PermissionDict(id=scope, name=str(special_scope_map[scope]))
|
||||||
|
)
|
||||||
return scope_descriptions
|
return scope_descriptions
|
||||||
|
|
||||||
def get_claims(self, token: RefreshToken) -> dict[str, Any]:
|
def get_claims(self, token: RefreshToken) -> dict[str, Any]:
|
||||||
|
|
|
@ -40,7 +40,7 @@ class UserConsentSerializer(StageSerializer):
|
||||||
class Meta:
|
class Meta:
|
||||||
|
|
||||||
model = UserConsent
|
model = UserConsent
|
||||||
fields = ["pk", "expires", "user", "application"]
|
fields = ["pk", "expires", "user", "application", "permissions"]
|
||||||
|
|
||||||
|
|
||||||
class UserConsentViewSet(
|
class UserConsentViewSet(
|
||||||
|
|
|
@ -0,0 +1,29 @@
|
||||||
|
# Generated by Django 4.0.5 on 2022-06-26 10:42
|
||||||
|
|
||||||
|
from django.conf import settings
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
("authentik_core", "0021_source_user_path_user_path"),
|
||||||
|
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
||||||
|
("authentik_stages_consent", "0003_auto_20200924_1403"),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterUniqueTogether(
|
||||||
|
name="userconsent",
|
||||||
|
unique_together=set(),
|
||||||
|
),
|
||||||
|
migrations.AddField(
|
||||||
|
model_name="userconsent",
|
||||||
|
name="permissions",
|
||||||
|
field=models.TextField(default=""),
|
||||||
|
),
|
||||||
|
migrations.AlterUniqueTogether(
|
||||||
|
name="userconsent",
|
||||||
|
unique_together={("user", "application", "permissions")},
|
||||||
|
),
|
||||||
|
]
|
|
@ -56,12 +56,13 @@ class UserConsent(ExpiringModel):
|
||||||
|
|
||||||
user = models.ForeignKey(User, on_delete=models.CASCADE)
|
user = models.ForeignKey(User, on_delete=models.CASCADE)
|
||||||
application = models.ForeignKey(Application, on_delete=models.CASCADE)
|
application = models.ForeignKey(Application, on_delete=models.CASCADE)
|
||||||
|
permissions = models.TextField(default="")
|
||||||
|
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
return f"User Consent {self.application} by {self.user}"
|
return f"User Consent {self.application} by {self.user}"
|
||||||
|
|
||||||
class Meta:
|
class Meta:
|
||||||
|
|
||||||
unique_together = (("user", "application"),)
|
unique_together = (("user", "application", "permissions"),)
|
||||||
verbose_name = _("User Consent")
|
verbose_name = _("User Consent")
|
||||||
verbose_name_plural = _("User Consents")
|
verbose_name_plural = _("User Consents")
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
"""authentik consent stage"""
|
"""authentik consent stage"""
|
||||||
|
from typing import Optional
|
||||||
|
|
||||||
from django.http import HttpRequest, HttpResponse
|
from django.http import HttpRequest, HttpResponse
|
||||||
from django.utils.timezone import now
|
from django.utils.timezone import now
|
||||||
from rest_framework.fields import CharField
|
from rest_framework.fields import CharField
|
||||||
|
@ -18,13 +20,15 @@ from authentik.stages.consent.models import ConsentMode, ConsentStage, UserConse
|
||||||
PLAN_CONTEXT_CONSENT_TITLE = "consent_title"
|
PLAN_CONTEXT_CONSENT_TITLE = "consent_title"
|
||||||
PLAN_CONTEXT_CONSENT_HEADER = "consent_header"
|
PLAN_CONTEXT_CONSENT_HEADER = "consent_header"
|
||||||
PLAN_CONTEXT_CONSENT_PERMISSIONS = "consent_permissions"
|
PLAN_CONTEXT_CONSENT_PERMISSIONS = "consent_permissions"
|
||||||
|
PLAN_CONTEXT_CONSNET_EXTRA_PERMISSIONS = "consent_additional_permissions"
|
||||||
|
|
||||||
|
|
||||||
class ConsentChallenge(WithUserInfoChallenge):
|
class ConsentChallenge(WithUserInfoChallenge):
|
||||||
"""Challenge info for consent screens"""
|
"""Challenge info for consent screens"""
|
||||||
|
|
||||||
header_text = CharField()
|
header_text = CharField(required=False)
|
||||||
permissions = PermissionSerializer(many=True)
|
permissions = PermissionSerializer(many=True)
|
||||||
|
additional_permissions = PermissionSerializer(many=True)
|
||||||
component = CharField(default="ak-stage-consent")
|
component = CharField(default="ak-stage-consent")
|
||||||
|
|
||||||
|
|
||||||
|
@ -43,6 +47,9 @@ class ConsentStageView(ChallengeStageView):
|
||||||
data = {
|
data = {
|
||||||
"type": ChallengeTypes.NATIVE.value,
|
"type": ChallengeTypes.NATIVE.value,
|
||||||
"permissions": self.executor.plan.context.get(PLAN_CONTEXT_CONSENT_PERMISSIONS, []),
|
"permissions": self.executor.plan.context.get(PLAN_CONTEXT_CONSENT_PERMISSIONS, []),
|
||||||
|
"additional_permissions": self.executor.plan.context.get(
|
||||||
|
PLAN_CONTEXT_CONSNET_EXTRA_PERMISSIONS, []
|
||||||
|
),
|
||||||
}
|
}
|
||||||
if PLAN_CONTEXT_CONSENT_TITLE in self.executor.plan.context:
|
if PLAN_CONTEXT_CONSENT_TITLE in self.executor.plan.context:
|
||||||
data["title"] = self.executor.plan.context[PLAN_CONTEXT_CONSENT_TITLE]
|
data["title"] = self.executor.plan.context[PLAN_CONTEXT_CONSENT_TITLE]
|
||||||
|
@ -72,10 +79,26 @@ class ConsentStageView(ChallengeStageView):
|
||||||
if PLAN_CONTEXT_PENDING_USER in self.executor.plan.context:
|
if PLAN_CONTEXT_PENDING_USER in self.executor.plan.context:
|
||||||
user = self.executor.plan.context[PLAN_CONTEXT_PENDING_USER]
|
user = self.executor.plan.context[PLAN_CONTEXT_PENDING_USER]
|
||||||
|
|
||||||
if UserConsent.filter_not_expired(user=user, application=application).exists():
|
consent: Optional[UserConsent] = UserConsent.filter_not_expired(
|
||||||
|
user=user, application=application
|
||||||
|
).first()
|
||||||
|
|
||||||
|
if consent:
|
||||||
|
perms = self.executor.plan.context.get(PLAN_CONTEXT_CONSENT_PERMISSIONS, [])
|
||||||
|
allowed_perms = set(consent.permissions.split(" "))
|
||||||
|
requested_perms = set(x["id"] for x in perms)
|
||||||
|
|
||||||
|
if allowed_perms != requested_perms:
|
||||||
|
self.executor.plan.context[PLAN_CONTEXT_CONSENT_PERMISSIONS] = [
|
||||||
|
x for x in perms if x["id"] in allowed_perms
|
||||||
|
]
|
||||||
|
self.executor.plan.context[PLAN_CONTEXT_CONSNET_EXTRA_PERMISSIONS] = [
|
||||||
|
x for x in perms if x["id"] in requested_perms.difference(allowed_perms)
|
||||||
|
]
|
||||||
|
return super().get(request, *args, **kwargs)
|
||||||
return self.executor.stage_ok()
|
return self.executor.stage_ok()
|
||||||
|
|
||||||
# No consent found, return consent
|
# No consent found, return consent prompt
|
||||||
return super().get(request, *args, **kwargs)
|
return super().get(request, *args, **kwargs)
|
||||||
|
|
||||||
def challenge_valid(self, response: ChallengeResponse) -> HttpResponse:
|
def challenge_valid(self, response: ChallengeResponse) -> HttpResponse:
|
||||||
|
@ -83,6 +106,10 @@ class ConsentStageView(ChallengeStageView):
|
||||||
if PLAN_CONTEXT_APPLICATION not in self.executor.plan.context:
|
if PLAN_CONTEXT_APPLICATION not in self.executor.plan.context:
|
||||||
return self.executor.stage_ok()
|
return self.executor.stage_ok()
|
||||||
application = self.executor.plan.context[PLAN_CONTEXT_APPLICATION]
|
application = self.executor.plan.context[PLAN_CONTEXT_APPLICATION]
|
||||||
|
permissions = self.executor.plan.context.get(
|
||||||
|
PLAN_CONTEXT_CONSENT_PERMISSIONS, []
|
||||||
|
) + self.executor.plan.context.get(PLAN_CONTEXT_CONSNET_EXTRA_PERMISSIONS, [])
|
||||||
|
permissions_string = " ".join(x["id"] for x in permissions)
|
||||||
# Make this StageView work when injected, in which case `current_stage` is an instance
|
# Make this StageView work when injected, in which case `current_stage` is an instance
|
||||||
# of the base class, and we don't save any consent, as it is assumed to be a one-time
|
# of the base class, and we don't save any consent, as it is assumed to be a one-time
|
||||||
# prompt
|
# prompt
|
||||||
|
@ -91,12 +118,16 @@ class ConsentStageView(ChallengeStageView):
|
||||||
# Since we only get here when no consent exists, we can create it without update
|
# Since we only get here when no consent exists, we can create it without update
|
||||||
if current_stage.mode == ConsentMode.PERMANENT:
|
if current_stage.mode == ConsentMode.PERMANENT:
|
||||||
UserConsent.objects.create(
|
UserConsent.objects.create(
|
||||||
user=self.request.user, application=application, expiring=False
|
user=self.request.user,
|
||||||
|
application=application,
|
||||||
|
expiring=False,
|
||||||
|
permissions=permissions_string,
|
||||||
)
|
)
|
||||||
if current_stage.mode == ConsentMode.EXPIRING:
|
if current_stage.mode == ConsentMode.EXPIRING:
|
||||||
UserConsent.objects.create(
|
UserConsent.objects.create(
|
||||||
user=self.request.user,
|
user=self.request.user,
|
||||||
application=application,
|
application=application,
|
||||||
expires=now() + timedelta_from_string(current_stage.consent_expire_in),
|
expires=now() + timedelta_from_string(current_stage.consent_expire_in),
|
||||||
|
permissions=permissions_string,
|
||||||
)
|
)
|
||||||
return self.executor.stage_ok()
|
return self.executor.stage_ok()
|
||||||
|
|
|
@ -6,12 +6,15 @@ from django.urls import reverse
|
||||||
from authentik.core.models import Application
|
from authentik.core.models import Application
|
||||||
from authentik.core.tasks import clean_expired_models
|
from authentik.core.tasks import clean_expired_models
|
||||||
from authentik.core.tests.utils import create_test_admin_user, create_test_flow
|
from authentik.core.tests.utils import create_test_admin_user, create_test_flow
|
||||||
|
from authentik.flows.challenge import PermissionDict
|
||||||
from authentik.flows.markers import StageMarker
|
from authentik.flows.markers import StageMarker
|
||||||
from authentik.flows.models import FlowDesignation, FlowStageBinding
|
from authentik.flows.models import FlowDesignation, FlowStageBinding
|
||||||
from authentik.flows.planner import PLAN_CONTEXT_APPLICATION, FlowPlan
|
from authentik.flows.planner import PLAN_CONTEXT_APPLICATION, FlowPlan
|
||||||
from authentik.flows.tests import FlowTestCase
|
from authentik.flows.tests import FlowTestCase
|
||||||
from authentik.flows.views.executor import SESSION_KEY_PLAN
|
from authentik.flows.views.executor import SESSION_KEY_PLAN
|
||||||
|
from authentik.lib.generators import generate_id
|
||||||
from authentik.stages.consent.models import ConsentMode, ConsentStage, UserConsent
|
from authentik.stages.consent.models import ConsentMode, ConsentStage, UserConsent
|
||||||
|
from authentik.stages.consent.stage import PLAN_CONTEXT_CONSENT_PERMISSIONS
|
||||||
|
|
||||||
|
|
||||||
class TestConsentStage(FlowTestCase):
|
class TestConsentStage(FlowTestCase):
|
||||||
|
@ -21,14 +24,14 @@ class TestConsentStage(FlowTestCase):
|
||||||
super().setUp()
|
super().setUp()
|
||||||
self.user = create_test_admin_user()
|
self.user = create_test_admin_user()
|
||||||
self.application = Application.objects.create(
|
self.application = Application.objects.create(
|
||||||
name="test-application",
|
name=generate_id(),
|
||||||
slug="test-application",
|
slug=generate_id(),
|
||||||
)
|
)
|
||||||
|
|
||||||
def test_always_required(self):
|
def test_always_required(self):
|
||||||
"""Test always required consent"""
|
"""Test always required consent"""
|
||||||
flow = create_test_flow(FlowDesignation.AUTHENTICATION)
|
flow = create_test_flow(FlowDesignation.AUTHENTICATION)
|
||||||
stage = ConsentStage.objects.create(name="consent", mode=ConsentMode.ALWAYS_REQUIRE)
|
stage = ConsentStage.objects.create(name=generate_id(), mode=ConsentMode.ALWAYS_REQUIRE)
|
||||||
binding = FlowStageBinding.objects.create(target=flow, stage=stage, order=2)
|
binding = FlowStageBinding.objects.create(target=flow, stage=stage, order=2)
|
||||||
|
|
||||||
plan = FlowPlan(flow_pk=flow.pk.hex, bindings=[binding], markers=[StageMarker()])
|
plan = FlowPlan(flow_pk=flow.pk.hex, bindings=[binding], markers=[StageMarker()])
|
||||||
|
@ -48,7 +51,7 @@ class TestConsentStage(FlowTestCase):
|
||||||
"""Test permanent consent from user"""
|
"""Test permanent consent from user"""
|
||||||
self.client.force_login(self.user)
|
self.client.force_login(self.user)
|
||||||
flow = create_test_flow(FlowDesignation.AUTHENTICATION)
|
flow = create_test_flow(FlowDesignation.AUTHENTICATION)
|
||||||
stage = ConsentStage.objects.create(name="consent", mode=ConsentMode.PERMANENT)
|
stage = ConsentStage.objects.create(name=generate_id(), mode=ConsentMode.PERMANENT)
|
||||||
binding = FlowStageBinding.objects.create(target=flow, stage=stage, order=2)
|
binding = FlowStageBinding.objects.create(target=flow, stage=stage, order=2)
|
||||||
|
|
||||||
plan = FlowPlan(
|
plan = FlowPlan(
|
||||||
|
@ -75,7 +78,7 @@ class TestConsentStage(FlowTestCase):
|
||||||
self.client.force_login(self.user)
|
self.client.force_login(self.user)
|
||||||
flow = create_test_flow(FlowDesignation.AUTHENTICATION)
|
flow = create_test_flow(FlowDesignation.AUTHENTICATION)
|
||||||
stage = ConsentStage.objects.create(
|
stage = ConsentStage.objects.create(
|
||||||
name="consent", mode=ConsentMode.EXPIRING, consent_expire_in="seconds=1"
|
name=generate_id(), mode=ConsentMode.EXPIRING, consent_expire_in="seconds=1"
|
||||||
)
|
)
|
||||||
binding = FlowStageBinding.objects.create(target=flow, stage=stage, order=2)
|
binding = FlowStageBinding.objects.create(target=flow, stage=stage, order=2)
|
||||||
|
|
||||||
|
@ -88,6 +91,18 @@ class TestConsentStage(FlowTestCase):
|
||||||
session = self.client.session
|
session = self.client.session
|
||||||
session[SESSION_KEY_PLAN] = plan
|
session[SESSION_KEY_PLAN] = plan
|
||||||
session.save()
|
session.save()
|
||||||
|
response = self.client.get(
|
||||||
|
reverse("authentik_api:flow-executor", kwargs={"flow_slug": flow.slug}),
|
||||||
|
{},
|
||||||
|
)
|
||||||
|
self.assertEqual(response.status_code, 200)
|
||||||
|
self.assertStageResponse(
|
||||||
|
response,
|
||||||
|
flow,
|
||||||
|
self.user,
|
||||||
|
permissions=[],
|
||||||
|
additional_permissions=[],
|
||||||
|
)
|
||||||
response = self.client.post(
|
response = self.client.post(
|
||||||
reverse("authentik_api:flow-executor", kwargs={"flow_slug": flow.slug}),
|
reverse("authentik_api:flow-executor", kwargs={"flow_slug": flow.slug}),
|
||||||
{},
|
{},
|
||||||
|
@ -102,3 +117,95 @@ class TestConsentStage(FlowTestCase):
|
||||||
self.assertFalse(
|
self.assertFalse(
|
||||||
UserConsent.objects.filter(user=self.user, application=self.application).exists()
|
UserConsent.objects.filter(user=self.user, application=self.application).exists()
|
||||||
)
|
)
|
||||||
|
|
||||||
|
def test_permanent_more_perms(self):
|
||||||
|
"""Test permanent consent from user"""
|
||||||
|
self.client.force_login(self.user)
|
||||||
|
flow = create_test_flow(FlowDesignation.AUTHENTICATION)
|
||||||
|
stage = ConsentStage.objects.create(name=generate_id(), mode=ConsentMode.PERMANENT)
|
||||||
|
binding = FlowStageBinding.objects.create(target=flow, stage=stage, order=2)
|
||||||
|
|
||||||
|
plan = FlowPlan(
|
||||||
|
flow_pk=flow.pk.hex,
|
||||||
|
bindings=[binding],
|
||||||
|
markers=[StageMarker()],
|
||||||
|
context={
|
||||||
|
PLAN_CONTEXT_APPLICATION: self.application,
|
||||||
|
PLAN_CONTEXT_CONSENT_PERMISSIONS: [PermissionDict(id="foo", name="foo-desc")],
|
||||||
|
},
|
||||||
|
)
|
||||||
|
session = self.client.session
|
||||||
|
session[SESSION_KEY_PLAN] = plan
|
||||||
|
session.save()
|
||||||
|
|
||||||
|
# First, consent with a single permission
|
||||||
|
response = self.client.get(
|
||||||
|
reverse("authentik_api:flow-executor", kwargs={"flow_slug": flow.slug}),
|
||||||
|
{},
|
||||||
|
)
|
||||||
|
self.assertEqual(response.status_code, 200)
|
||||||
|
self.assertStageResponse(
|
||||||
|
response,
|
||||||
|
flow,
|
||||||
|
self.user,
|
||||||
|
permissions=[
|
||||||
|
{"id": "foo", "name": "foo-desc"},
|
||||||
|
],
|
||||||
|
additional_permissions=[],
|
||||||
|
)
|
||||||
|
response = self.client.post(
|
||||||
|
reverse("authentik_api:flow-executor", kwargs={"flow_slug": flow.slug}),
|
||||||
|
{},
|
||||||
|
)
|
||||||
|
self.assertEqual(response.status_code, 200)
|
||||||
|
self.assertStageRedirects(response, reverse("authentik_core:root-redirect"))
|
||||||
|
self.assertTrue(
|
||||||
|
UserConsent.objects.filter(
|
||||||
|
user=self.user, application=self.application, permissions="foo"
|
||||||
|
).exists()
|
||||||
|
)
|
||||||
|
|
||||||
|
# Request again with more perms
|
||||||
|
plan = FlowPlan(
|
||||||
|
flow_pk=flow.pk.hex,
|
||||||
|
bindings=[binding],
|
||||||
|
markers=[StageMarker()],
|
||||||
|
context={
|
||||||
|
PLAN_CONTEXT_APPLICATION: self.application,
|
||||||
|
PLAN_CONTEXT_CONSENT_PERMISSIONS: [
|
||||||
|
PermissionDict(id="foo", name="foo-desc"),
|
||||||
|
PermissionDict(id="bar", name="bar-desc"),
|
||||||
|
],
|
||||||
|
},
|
||||||
|
)
|
||||||
|
session = self.client.session
|
||||||
|
session[SESSION_KEY_PLAN] = plan
|
||||||
|
session.save()
|
||||||
|
|
||||||
|
response = self.client.get(
|
||||||
|
reverse("authentik_api:flow-executor", kwargs={"flow_slug": flow.slug}),
|
||||||
|
{},
|
||||||
|
)
|
||||||
|
self.assertEqual(response.status_code, 200)
|
||||||
|
self.assertStageResponse(
|
||||||
|
response,
|
||||||
|
flow,
|
||||||
|
self.user,
|
||||||
|
permissions=[
|
||||||
|
{"id": "foo", "name": "foo-desc"},
|
||||||
|
],
|
||||||
|
additional_permissions=[
|
||||||
|
{"id": "bar", "name": "bar-desc"},
|
||||||
|
],
|
||||||
|
)
|
||||||
|
response = self.client.post(
|
||||||
|
reverse("authentik_api:flow-executor", kwargs={"flow_slug": flow.slug}),
|
||||||
|
{},
|
||||||
|
)
|
||||||
|
self.assertEqual(response.status_code, 200)
|
||||||
|
self.assertStageRedirects(response, reverse("authentik_core:root-redirect"))
|
||||||
|
self.assertTrue(
|
||||||
|
UserConsent.objects.filter(
|
||||||
|
user=self.user, application=self.application, permissions="foo bar"
|
||||||
|
).exists()
|
||||||
|
)
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -20510,8 +20510,12 @@ components:
|
||||||
type: array
|
type: array
|
||||||
items:
|
items:
|
||||||
$ref: '#/components/schemas/Permission'
|
$ref: '#/components/schemas/Permission'
|
||||||
|
additional_permissions:
|
||||||
|
type: array
|
||||||
|
items:
|
||||||
|
$ref: '#/components/schemas/Permission'
|
||||||
required:
|
required:
|
||||||
- header_text
|
- additional_permissions
|
||||||
- pending_user
|
- pending_user
|
||||||
- pending_user_avatar
|
- pending_user_avatar
|
||||||
- permissions
|
- permissions
|
||||||
|
@ -31215,6 +31219,9 @@ components:
|
||||||
$ref: '#/components/schemas/User'
|
$ref: '#/components/schemas/User'
|
||||||
application:
|
application:
|
||||||
$ref: '#/components/schemas/Application'
|
$ref: '#/components/schemas/Application'
|
||||||
|
permissions:
|
||||||
|
type: string
|
||||||
|
default: ''
|
||||||
required:
|
required:
|
||||||
- application
|
- application
|
||||||
- pk
|
- pk
|
||||||
|
|
|
@ -36,6 +36,66 @@ export class ConsentStage extends BaseStage<ConsentChallenge, ConsentChallengeRe
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
renderNoPrevious(): TemplateResult {
|
||||||
|
return html`
|
||||||
|
<div class="pf-c-form__group">
|
||||||
|
<p id="header-text" class="pf-u-mb-xl">${this.challenge.headerText}</p>
|
||||||
|
${this.challenge.permissions.length > 0
|
||||||
|
? html`
|
||||||
|
<p class="pf-u-mb-sm">
|
||||||
|
${t`Application requires following permissions:`}
|
||||||
|
</p>
|
||||||
|
<ul class="pf-c-list" id="permmissions">
|
||||||
|
${this.challenge.permissions.map((permission) => {
|
||||||
|
return html`<li data-permission-code="${permission.id}">
|
||||||
|
${permission.name}
|
||||||
|
</li>`;
|
||||||
|
})}
|
||||||
|
</ul>
|
||||||
|
`
|
||||||
|
: html``}
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
}
|
||||||
|
|
||||||
|
renderAdditional(): TemplateResult {
|
||||||
|
return html`
|
||||||
|
<div class="pf-c-form__group">
|
||||||
|
<p id="header-text" class="pf-u-mb-xl">${this.challenge.headerText}</p>
|
||||||
|
${this.challenge.permissions.length > 0
|
||||||
|
? html`
|
||||||
|
<p class="pf-u-mb-sm">
|
||||||
|
${t`Application already has access to the following permissions:`}
|
||||||
|
</p>
|
||||||
|
<ul class="pf-c-list" id="permmissions">
|
||||||
|
${this.challenge.permissions.map((permission) => {
|
||||||
|
return html`<li data-permission-code="${permission.id}">
|
||||||
|
${permission.name}
|
||||||
|
</li>`;
|
||||||
|
})}
|
||||||
|
</ul>
|
||||||
|
`
|
||||||
|
: html``}
|
||||||
|
</div>
|
||||||
|
<div class="pf-c-form__group pf-u-mt-md">
|
||||||
|
${this.challenge.additionalPermissions.length > 0
|
||||||
|
? html`
|
||||||
|
<strong class="pf-u-mb-sm">
|
||||||
|
${t`Application requires following new permissions:`}
|
||||||
|
</strong>
|
||||||
|
<ul class="pf-c-list" id="permmissions">
|
||||||
|
${this.challenge.additionalPermissions.map((permission) => {
|
||||||
|
return html`<li data-permission-code="${permission.id}">
|
||||||
|
${permission.name}
|
||||||
|
</li>`;
|
||||||
|
})}
|
||||||
|
</ul>
|
||||||
|
`
|
||||||
|
: html``}
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
}
|
||||||
|
|
||||||
render(): TemplateResult {
|
render(): TemplateResult {
|
||||||
if (!this.challenge) {
|
if (!this.challenge) {
|
||||||
return html`<ak-empty-state ?loading="${true}" header=${t`Loading`}> </ak-empty-state>`;
|
return html`<ak-empty-state ?loading="${true}" header=${t`Loading`}> </ak-empty-state>`;
|
||||||
|
@ -61,23 +121,9 @@ export class ConsentStage extends BaseStage<ConsentChallenge, ConsentChallengeRe
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</ak-form-static>
|
</ak-form-static>
|
||||||
<div class="pf-c-form__group">
|
${this.challenge.additionalPermissions.length > 0
|
||||||
<p id="header-text" class="pf-u-mb-xl">${this.challenge.headerText}</p>
|
? this.renderAdditional()
|
||||||
${this.challenge.permissions.length > 0
|
: this.renderNoPrevious()}
|
||||||
? html`
|
|
||||||
<p class="pf-u-mb-sm">
|
|
||||||
${t`Application requires following permissions:`}
|
|
||||||
</p>
|
|
||||||
<ul class="pf-c-list" id="permmissions">
|
|
||||||
${this.challenge.permissions.map((permission) => {
|
|
||||||
return html`<li data-permission-code="${permission.id}">
|
|
||||||
${permission.name}
|
|
||||||
</li>`;
|
|
||||||
})}
|
|
||||||
</ul>
|
|
||||||
`
|
|
||||||
: html``}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="pf-c-form__group pf-m-action">
|
<div class="pf-c-form__group pf-m-action">
|
||||||
<button type="submit" class="pf-c-button pf-m-primary pf-m-block">
|
<button type="submit" class="pf-c-button pf-m-primary pf-m-block">
|
||||||
|
|
|
@ -103,6 +103,7 @@ msgstr "Ein nicht abnehmbarer Authentifikator, wie TouchID oder Windows Hello"
|
||||||
msgid "A policy used for testing. Always returns the same result as specified below after waiting a random duration."
|
msgid "A policy used for testing. Always returns the same result as specified below after waiting a random duration."
|
||||||
msgstr "Eine Richtlinie, die zum Testen verwendet wird. Gibt nach einer zufälligen Wartezeit immer das unten angegeben Ergebnis zurück."
|
msgstr "Eine Richtlinie, die zum Testen verwendet wird. Gibt nach einer zufälligen Wartezeit immer das unten angegeben Ergebnis zurück."
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLConfigApplicationWizardPage.ts
|
||||||
#: src/pages/providers/saml/SAMLProviderForm.ts
|
#: src/pages/providers/saml/SAMLProviderForm.ts
|
||||||
#: src/pages/providers/saml/SAMLProviderViewPage.ts
|
#: src/pages/providers/saml/SAMLProviderViewPage.ts
|
||||||
msgid "ACS URL"
|
msgid "ACS URL"
|
||||||
|
@ -126,6 +127,10 @@ msgstr "EINE, eine Bedingung muss erfüllt sein, um Zugang zu gewähren."
|
||||||
msgid "ANY, any policy must match to include this stage access."
|
msgid "ANY, any policy must match to include this stage access."
|
||||||
msgstr "EINE, eine Bedingung muss erfüllt sein, um Zugang zu dieser Stufe zu gewähren."
|
msgstr "EINE, eine Bedingung muss erfüllt sein, um Zugang zu dieser Stufe zu gewähren."
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "API"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/tokens/TokenListPage.ts
|
#: src/pages/tokens/TokenListPage.ts
|
||||||
msgid "API Access"
|
msgid "API Access"
|
||||||
msgstr "API Zugriff"
|
msgstr "API Zugriff"
|
||||||
|
@ -270,6 +275,10 @@ msgstr "Zusatz Benutzer-DN"
|
||||||
msgid "Additional Scope"
|
msgid "Additional Scope"
|
||||||
msgstr "Zusätzlicher Scope"
|
msgstr "Zusätzlicher Scope"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
|
msgid "Additional UI settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
msgid "Additional group DN, prepended to the Base DN."
|
msgid "Additional group DN, prepended to the Base DN."
|
||||||
msgstr "Zusätzlicher Gruppen-DN, dem Basis-DN vorangestellt."
|
msgstr "Zusätzlicher Gruppen-DN, dem Basis-DN vorangestellt."
|
||||||
|
@ -390,6 +399,7 @@ msgid "App password (can be used to login using a flow executor)"
|
||||||
msgstr "App-Passwort (kann für die Anmeldung mit einem Ablauf genutzt werden)"
|
msgstr "App-Passwort (kann für die Anmeldung mit einem Ablauf genutzt werden)"
|
||||||
|
|
||||||
#: src/elements/user/UserConsentList.ts
|
#: src/elements/user/UserConsentList.ts
|
||||||
|
#: src/flows/stages/consent/ConsentStage.ts
|
||||||
#: src/pages/admin-overview/TopApplicationsTable.ts
|
#: src/pages/admin-overview/TopApplicationsTable.ts
|
||||||
#: src/pages/providers/ProviderListPage.ts
|
#: src/pages/providers/ProviderListPage.ts
|
||||||
msgid "Application"
|
msgid "Application"
|
||||||
|
@ -400,6 +410,14 @@ msgstr "Anwendung"
|
||||||
msgid "Application Icon"
|
msgid "Application Icon"
|
||||||
msgstr "Anwendungs-Symbol"
|
msgstr "Anwendungs-Symbol"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/link/TypeLinkApplicationWizardPage.ts
|
||||||
|
msgid "Application Link"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/flows/stages/consent/ConsentStage.ts
|
||||||
|
msgid "Application already has access to the following permissions:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/elements/charts/UserChart.ts
|
#: src/elements/charts/UserChart.ts
|
||||||
msgid "Application authorizations"
|
msgid "Application authorizations"
|
||||||
msgstr "Applikationsgenehmigungen"
|
msgstr "Applikationsgenehmigungen"
|
||||||
|
@ -408,11 +426,25 @@ msgstr "Applikationsgenehmigungen"
|
||||||
msgid "Application authorized"
|
msgid "Application authorized"
|
||||||
msgstr "Anwendung authorisiert"
|
msgstr "Anwendung authorisiert"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
|
msgid "Application details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/flows/stages/consent/ConsentStage.ts
|
||||||
|
msgid "Application requires following new permissions:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/flows/stages/consent/ConsentStage.ts
|
#: src/flows/stages/consent/ConsentStage.ts
|
||||||
msgid "Application requires following permissions:"
|
msgid "Application requires following permissions:"
|
||||||
msgstr "Anwendung benötigt die folgenden Berechtigungen:"
|
msgstr "Anwendung benötigt die folgenden Berechtigungen:"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Application type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
msgid "Application's display Name."
|
msgid "Application's display Name."
|
||||||
msgstr "Anzeigename der Anwendung"
|
msgstr "Anzeigename der Anwendung"
|
||||||
|
|
||||||
|
@ -427,6 +459,18 @@ msgstr "Anwendung(en)"
|
||||||
msgid "Applications"
|
msgid "Applications"
|
||||||
msgstr "Anwendungen"
|
msgstr "Anwendungen"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Applications which handle the authentication server-side (for example, Python, Go, Rust, Java, PHP)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Applications which redirect users to a non-web callback (for example, Android, iOS)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/elements/wizard/ActionWizardPage.ts
|
||||||
|
msgid "Apply changes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/admin-overview/AdminOverviewPage.ts
|
#: src/pages/admin-overview/AdminOverviewPage.ts
|
||||||
msgid "Apps with most usage"
|
msgid "Apps with most usage"
|
||||||
msgstr "Meistgenutzte Apps"
|
msgstr "Meistgenutzte Apps"
|
||||||
|
@ -544,6 +588,14 @@ msgstr "URL zur Authentifizierung"
|
||||||
msgid "Authentication flow"
|
msgid "Authentication flow"
|
||||||
msgstr "Authentifizierungsablauf"
|
msgstr "Authentifizierungsablauf"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "Authentication method"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Authentication without user interaction, or machine-to-machine authentication."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/flows/stages/authenticator_validate/AuthenticatorValidateStage.ts
|
#: src/flows/stages/authenticator_validate/AuthenticatorValidateStage.ts
|
||||||
msgid "Authenticator"
|
msgid "Authenticator"
|
||||||
msgstr "Authentifikator"
|
msgstr "Authentifikator"
|
||||||
|
@ -568,6 +620,7 @@ msgstr "Autorisierung"
|
||||||
msgid "Authorization URL"
|
msgid "Authorization URL"
|
||||||
msgstr "Autorisierungs-URL"
|
msgstr "Autorisierungs-URL"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
#: src/pages/providers/oauth2/OAuth2ProviderForm.ts
|
#: src/pages/providers/oauth2/OAuth2ProviderForm.ts
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
#: src/pages/providers/saml/SAMLProviderForm.ts
|
#: src/pages/providers/saml/SAMLProviderForm.ts
|
||||||
|
@ -626,6 +679,7 @@ msgstr "Hintergrund während der Ausführung."
|
||||||
#~ msgid "Backup status"
|
#~ msgid "Backup status"
|
||||||
#~ msgstr "Backupstatus"
|
#~ msgstr "Backupstatus"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/ldap/TypeLDAPApplicationWizardPage.ts
|
||||||
#: src/pages/providers/ldap/LDAPProviderForm.ts
|
#: src/pages/providers/ldap/LDAPProviderForm.ts
|
||||||
#: src/pages/providers/ldap/LDAPProviderViewPage.ts
|
#: src/pages/providers/ldap/LDAPProviderViewPage.ts
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
|
@ -720,6 +774,10 @@ msgstr "Build hash:"
|
||||||
msgid "Built-in"
|
msgid "Built-in"
|
||||||
msgstr "Eingebaut"
|
msgstr "Eingebaut"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthAPIApplicationWizardPage.ts
|
||||||
|
msgid "By default, all service accounts can authenticate as this application, as long as they have a valid token of the type app-password."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/identification/IdentificationStageForm.ts
|
#: src/pages/stages/identification/IdentificationStageForm.ts
|
||||||
msgid "By default, only icons are shown for sources. Enable this to show their full names."
|
msgid "By default, only icons are shown for sources. Enable this to show their full names."
|
||||||
msgstr "Standardmäßig werden für Quellen nur Symbole angezeigt. Aktiviere diese Option, um den vollständigen Namen anzuzeigen."
|
msgstr "Standardmäßig werden für Quellen nur Symbole angezeigt. Aktiviere diese Option, um den vollständigen Namen anzuzeigen."
|
||||||
|
@ -1212,6 +1270,7 @@ msgstr "Wiederherstellungslink kopieren"
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationListPage.ts
|
#: src/pages/applications/ApplicationListPage.ts
|
||||||
#: src/pages/applications/ApplicationListPage.ts
|
#: src/pages/applications/ApplicationListPage.ts
|
||||||
|
#: src/pages/applications/wizard/ApplicationWizard.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
#: src/pages/events/RuleListPage.ts
|
#: src/pages/events/RuleListPage.ts
|
||||||
|
@ -1350,6 +1409,10 @@ msgstr "Benutzer erstellen"
|
||||||
msgid "Create a new application"
|
msgid "Create a new application"
|
||||||
msgstr "Erstelle eine neue Anwendung"
|
msgstr "Erstelle eine neue Anwendung"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/ApplicationWizard.ts
|
||||||
|
msgid "Create a new application."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/outposts/ServiceConnectionWizard.ts
|
#: src/pages/outposts/ServiceConnectionWizard.ts
|
||||||
msgid "Create a new outpost integration."
|
msgid "Create a new outpost integration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1374,14 +1437,27 @@ msgstr ""
|
||||||
msgid "Create a new stage."
|
msgid "Create a new stage."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
|
msgid "Create application"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/users/ServiceAccountForm.ts
|
#: src/pages/users/ServiceAccountForm.ts
|
||||||
msgid "Create group"
|
msgid "Create group"
|
||||||
msgstr "Gruppe erstellen"
|
msgstr "Gruppe erstellen"
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/ldap/TypeLDAPApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/proxy/TypeProxyApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLConfigApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLImportApplicationWizardPage.ts
|
||||||
msgid "Create provider"
|
msgid "Create provider"
|
||||||
msgstr "Anbieter erstellen"
|
msgstr "Anbieter erstellen"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/ldap/TypeLDAPApplicationWizardPage.ts
|
||||||
|
msgid "Create service account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
||||||
msgid "Create users as inactive"
|
msgid "Create users as inactive"
|
||||||
msgstr "Benutzer als inaktiv anlegen"
|
msgstr "Benutzer als inaktiv anlegen"
|
||||||
|
@ -1557,6 +1633,7 @@ msgid "Deprecated. Instead of using this field, configure the JWKS data/URL in S
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
#: src/pages/property-mappings/PropertyMappingScopeForm.ts
|
#: src/pages/property-mappings/PropertyMappingScopeForm.ts
|
||||||
#: src/pages/system-tasks/SystemTaskListPage.ts
|
#: src/pages/system-tasks/SystemTaskListPage.ts
|
||||||
#: src/pages/tokens/TokenForm.ts
|
#: src/pages/tokens/TokenForm.ts
|
||||||
|
@ -2056,6 +2133,14 @@ msgstr "Externe Anwendungen, die Authentik als Identitätsanbieter verwenden und
|
||||||
msgid "External Host"
|
msgid "External Host"
|
||||||
msgstr "Externer Host"
|
msgstr "Externer Host"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/proxy/TypeProxyApplicationWizardPage.ts
|
||||||
|
msgid "External domain"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/proxy/TypeProxyApplicationWizardPage.ts
|
||||||
|
msgid "External domain you will be accessing the domain from."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
msgid "External host"
|
msgid "External host"
|
||||||
|
@ -2228,6 +2313,10 @@ msgstr "Ablauf, der zum Abmelden genutzt wird. Wenn keiner angegeben ist, wird d
|
||||||
msgid "Flow used when authorizing this provider."
|
msgid "Flow used when authorizing this provider."
|
||||||
msgstr "Ablauf der zur Authorisierung des Providers verwendet wird."
|
msgstr "Ablauf der zur Authorisierung des Providers verwendet wird."
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
|
msgid "Flow used when users access this application."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/flows/FlowListPage.ts
|
#: src/pages/flows/FlowListPage.ts
|
||||||
msgid "Flow(s)"
|
msgid "Flow(s)"
|
||||||
msgstr "Ablauf/Abläufe"
|
msgstr "Ablauf/Abläufe"
|
||||||
|
@ -2462,7 +2551,6 @@ msgid "Hide managed mappings"
|
||||||
msgstr "Verwaltete Zuordnungen ausblenden"
|
msgstr "Verwaltete Zuordnungen ausblenden"
|
||||||
|
|
||||||
#: src/pages/users/RelatedUserList.ts
|
#: src/pages/users/RelatedUserList.ts
|
||||||
#: src/pages/users/UserListPage.ts
|
|
||||||
msgid "Hide service-accounts"
|
msgid "Hide service-accounts"
|
||||||
msgstr "Interne Konten ausblenden"
|
msgstr "Interne Konten ausblenden"
|
||||||
|
|
||||||
|
@ -2624,10 +2712,22 @@ msgstr "Importieren"
|
||||||
msgid "Import Flow"
|
msgid "Import Flow"
|
||||||
msgstr "Ablauf importieren"
|
msgstr "Ablauf importieren"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Import SAML Metadata"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLImportApplicationWizardPage.ts
|
||||||
|
msgid "Import SAML metadata"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
msgid "Import certificates of external providers or create certificates to sign requests with."
|
msgid "Import certificates of external providers or create certificates to sign requests with."
|
||||||
msgstr "Importieren Sie Zertifikate externer Anbieter oder erstellen Sie Zertifikate zum Signieren von Anfragen."
|
msgstr "Importieren Sie Zertifikate externer Anbieter oder erstellen Sie Zertifikate zum Signieren von Anfragen."
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Import the metadata document of the applicaation you want to configure."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/flows/stages/authenticator_validate/AuthenticatorValidateStage.ts
|
#: src/flows/stages/authenticator_validate/AuthenticatorValidateStage.ts
|
||||||
msgid "In case you can't access any other method."
|
msgid "In case you can't access any other method."
|
||||||
msgstr "Falls Sie auf keine andere Methode zugreifen können."
|
msgstr "Falls Sie auf keine andere Methode zugreifen können."
|
||||||
|
@ -2770,6 +2870,7 @@ msgstr "Schlüsselpaar, das zum Signieren ausgehender Anfragen verwendet wird. L
|
||||||
msgid "Kubeconfig"
|
msgid "Kubeconfig"
|
||||||
msgstr "Kubeconfig"
|
msgstr "Kubeconfig"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
#: src/pages/outposts/OutpostForm.ts
|
#: src/pages/outposts/OutpostForm.ts
|
||||||
#: src/pages/outposts/OutpostListPage.ts
|
#: src/pages/outposts/OutpostListPage.ts
|
||||||
msgid "LDAP"
|
msgid "LDAP"
|
||||||
|
@ -2791,9 +2892,9 @@ msgstr "LDAP DN, unter dem Bind-Requests und Suchanfragen gestellt werden könne
|
||||||
msgid "LDAP Sync status"
|
msgid "LDAP Sync status"
|
||||||
msgstr "LDAP-Synchronisierungsstatus"
|
msgstr "LDAP-Synchronisierungsstatus"
|
||||||
|
|
||||||
#: src/pages/providers/ProviderWizard.ts
|
#: src/pages/applications/wizard/ldap/TypeLDAPApplicationWizardPage.ts
|
||||||
#~ msgid "LDAP details"
|
msgid "LDAP details"
|
||||||
#~ msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/prompt/PromptForm.ts
|
#: src/pages/stages/prompt/PromptForm.ts
|
||||||
#: src/pages/stages/prompt/PromptListPage.ts
|
#: src/pages/stages/prompt/PromptListPage.ts
|
||||||
|
@ -2846,6 +2947,10 @@ msgstr "Start URL"
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "Legacy applications which don't natively support SSO."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/identification/IdentificationStageForm.ts
|
#: src/pages/stages/identification/IdentificationStageForm.ts
|
||||||
msgid "Let the user identify themselves with their username or Email address."
|
msgid "Let the user identify themselves with their username or Email address."
|
||||||
msgstr "Lassen Sie den Benutzer sich mit seinem Benutzernamen oder seiner E-Mail-Adresse identifizieren."
|
msgstr "Lassen Sie den Benutzer sich mit seinem Benutzernamen oder seiner E-Mail-Adresse identifizieren."
|
||||||
|
@ -2853,6 +2958,11 @@ msgstr "Lassen Sie den Benutzer sich mit seinem Benutzernamen oder seiner E-Mail
|
||||||
#~ msgid "Library"
|
#~ msgid "Library"
|
||||||
#~ msgstr "Bibliothek"
|
#~ msgstr "Bibliothek"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/link/TypeLinkApplicationWizardPage.ts
|
||||||
|
msgid "Link"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
#: src/pages/sources/plex/PlexSourceForm.ts
|
#: src/pages/sources/plex/PlexSourceForm.ts
|
||||||
msgid "Link to a user with identical email address. Can have security implications when a source doesn't validate email addresses"
|
msgid "Link to a user with identical email address. Can have security implications when a source doesn't validate email addresses"
|
||||||
|
@ -2911,6 +3021,7 @@ msgstr "Wird geladen"
|
||||||
#: src/elements/Spinner.ts
|
#: src/elements/Spinner.ts
|
||||||
#: src/pages/applications/ApplicationCheckAccessForm.ts
|
#: src/pages/applications/ApplicationCheckAccessForm.ts
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
#: src/pages/events/RuleForm.ts
|
#: src/pages/events/RuleForm.ts
|
||||||
#: src/pages/events/RuleForm.ts
|
#: src/pages/events/RuleForm.ts
|
||||||
#: src/pages/events/TransportForm.ts
|
#: src/pages/events/TransportForm.ts
|
||||||
|
@ -2946,7 +3057,6 @@ msgstr "Wird geladen"
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
|
||||||
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
#: src/pages/sources/plex/PlexSourceForm.ts
|
#: src/pages/sources/plex/PlexSourceForm.ts
|
||||||
|
@ -2971,7 +3081,6 @@ msgstr "Wird geladen"
|
||||||
#: src/pages/stages/password/PasswordStageForm.ts
|
#: src/pages/stages/password/PasswordStageForm.ts
|
||||||
#: src/pages/stages/prompt/PromptStageForm.ts
|
#: src/pages/stages/prompt/PromptStageForm.ts
|
||||||
#: src/pages/stages/prompt/PromptStageForm.ts
|
#: src/pages/stages/prompt/PromptStageForm.ts
|
||||||
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
|
||||||
#: src/pages/tenants/TenantForm.ts
|
#: src/pages/tenants/TenantForm.ts
|
||||||
#: src/pages/tenants/TenantForm.ts
|
#: src/pages/tenants/TenantForm.ts
|
||||||
#: src/pages/tenants/TenantForm.ts
|
#: src/pages/tenants/TenantForm.ts
|
||||||
|
@ -3076,6 +3185,14 @@ msgstr "Verwaltet durch Authentik"
|
||||||
msgid "Managed by authentik (Discovered)"
|
msgid "Managed by authentik (Discovered)"
|
||||||
msgstr "Verwaltet von authentik (Discovered)"
|
msgstr "Verwaltet von authentik (Discovered)"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Manual configuration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Manually configure SAML"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
||||||
msgid "Mark newly created users as inactive."
|
msgid "Mark newly created users as inactive."
|
||||||
msgstr "Neu erstellte Benutzer als inaktiv markieren."
|
msgstr "Neu erstellte Benutzer als inaktiv markieren."
|
||||||
|
@ -3121,11 +3238,18 @@ msgstr "Nachricht"
|
||||||
msgid "Messages"
|
msgid "Messages"
|
||||||
msgstr "Nachrichten"
|
msgstr "Nachrichten"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLImportApplicationWizardPage.ts
|
||||||
#: src/pages/providers/saml/SAMLProviderImportForm.ts
|
#: src/pages/providers/saml/SAMLProviderImportForm.ts
|
||||||
#: src/pages/sources/saml/SAMLSourceViewPage.ts
|
#: src/pages/sources/saml/SAMLSourceViewPage.ts
|
||||||
msgid "Metadata"
|
msgid "Metadata"
|
||||||
msgstr "Metadaten"
|
msgstr "Metadaten"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthAPIApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthImplicitApplicationWizardPage.ts
|
||||||
|
msgid "Method details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/policies/password/PasswordPolicyForm.ts
|
#: src/pages/policies/password/PasswordPolicyForm.ts
|
||||||
msgid "Minimum amount of Digits"
|
msgid "Minimum amount of Digits"
|
||||||
msgstr "Mindestanzahl von Ziffern"
|
msgstr "Mindestanzahl von Ziffern"
|
||||||
|
@ -3169,6 +3293,10 @@ msgstr "Modell gelöscht"
|
||||||
msgid "Model updated"
|
msgid "Model updated"
|
||||||
msgstr "Modell aktualisiert"
|
msgstr "Modell aktualisiert"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "Modern applications, APIs and Single-page applications."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#~ msgid "Monitor"
|
#~ msgid "Monitor"
|
||||||
#~ msgstr "Monitor"
|
#~ msgstr "Monitor"
|
||||||
|
|
||||||
|
@ -3183,6 +3311,7 @@ msgstr "Meine Anwendungen"
|
||||||
#: src/elements/forms/DeleteBulkForm.ts
|
#: src/elements/forms/DeleteBulkForm.ts
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
#: src/pages/applications/ApplicationListPage.ts
|
#: src/pages/applications/ApplicationListPage.ts
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairForm.ts
|
#: src/pages/crypto/CertificateKeyPairForm.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
|
@ -3280,6 +3409,10 @@ msgstr "NameID Richtlinie"
|
||||||
msgid "NameID Property Mapping"
|
msgid "NameID Property Mapping"
|
||||||
msgstr "NameID Eigenschaft"
|
msgstr "NameID Eigenschaft"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Native application"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/flows/stages/identification/IdentificationStage.ts
|
#: src/flows/stages/identification/IdentificationStage.ts
|
||||||
msgid "Need an account?"
|
msgid "Need an account?"
|
||||||
msgstr "Wird ein Konto gebraucht?"
|
msgstr "Wird ein Konto gebraucht?"
|
||||||
|
@ -3292,6 +3425,10 @@ msgstr "Ergebnis verneinen"
|
||||||
msgid "Negates the outcome of the binding. Messages are unaffected."
|
msgid "Negates the outcome of the binding. Messages are unaffected."
|
||||||
msgstr "Negiert das Ergebnis der Bindung. Nachrichten sind nicht betroffen."
|
msgstr "Negiert das Ergebnis der Bindung. Nachrichten sind nicht betroffen."
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/ApplicationWizard.ts
|
||||||
|
msgid "New application"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/outposts/ServiceConnectionWizard.ts
|
#: src/pages/outposts/ServiceConnectionWizard.ts
|
||||||
msgid "New outpost integration"
|
msgid "New outpost integration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3547,6 +3684,10 @@ msgstr "OAuth-Aktualisierungscodes"
|
||||||
#~ msgid "OAuth/OIDC"
|
#~ msgid "OAuth/OIDC"
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "OAuth2/OIDC"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
msgid "OIDC JWKS"
|
msgid "OIDC JWKS"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3820,6 +3961,21 @@ msgstr "Passwort: Maskierte Eingabe, Passwort wird anhand von Quellen validiert.
|
||||||
msgid "Passwordless flow"
|
msgid "Passwordless flow"
|
||||||
msgstr "Passwortloser Ablauf"
|
msgstr "Passwortloser Ablauf"
|
||||||
|
|
||||||
|
#: src/pages/users/UserForm.ts
|
||||||
|
msgid "Path"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
||||||
|
msgid "Path new users will be created under. If left blank, the default path will be used.fo"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
|
#: src/pages/sources/plex/PlexSourceForm.ts
|
||||||
|
#: src/pages/sources/saml/SAMLSourceForm.ts
|
||||||
|
msgid "Path template for users created. Use placeholders like `%(slug)s` to insert the source slug."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/saml/SAMLSourceForm.ts
|
#: src/pages/sources/saml/SAMLSourceForm.ts
|
||||||
msgid "Persistent"
|
msgid "Persistent"
|
||||||
msgstr "Persistent"
|
msgstr "Persistent"
|
||||||
|
@ -4028,6 +4184,11 @@ msgstr "Protokolleinstellungen"
|
||||||
msgid "Protocol settings"
|
msgid "Protocol settings"
|
||||||
msgstr "Protokolleinstellungen"
|
msgstr "Protokolleinstellungen"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "Provide an LDAP interface for applications and users to authenticate against."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/ProviderListPage.ts
|
#: src/pages/providers/ProviderListPage.ts
|
||||||
msgid "Provide support for protocols like SAML and OAuth to assigned applications."
|
msgid "Provide support for protocols like SAML and OAuth to assigned applications."
|
||||||
msgstr "Stellen Unterstützung für Protokolle wie SAML und OAuth für zugewiesene Anwendungen bereit."
|
msgstr "Stellen Unterstützung für Protokolle wie SAML und OAuth für zugewiesene Anwendungen bereit."
|
||||||
|
@ -4058,6 +4219,7 @@ msgstr "Anbieter"
|
||||||
msgid "Providers"
|
msgid "Providers"
|
||||||
msgstr "Anbieter"
|
msgstr "Anbieter"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
#: src/pages/outposts/OutpostForm.ts
|
#: src/pages/outposts/OutpostForm.ts
|
||||||
#: src/pages/outposts/OutpostListPage.ts
|
#: src/pages/outposts/OutpostListPage.ts
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
|
@ -4065,9 +4227,9 @@ msgstr "Anbieter"
|
||||||
msgid "Proxy"
|
msgid "Proxy"
|
||||||
msgstr "Proxy"
|
msgstr "Proxy"
|
||||||
|
|
||||||
#: src/pages/providers/ProviderWizard.ts
|
#: src/pages/applications/wizard/proxy/TypeProxyApplicationWizardPage.ts
|
||||||
#~ msgid "Proxy details"
|
msgid "Proxy details"
|
||||||
#~ msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/oauth2/OAuth2ProviderForm.ts
|
#: src/pages/providers/oauth2/OAuth2ProviderForm.ts
|
||||||
msgid "Public"
|
msgid "Public"
|
||||||
|
@ -4082,6 +4244,7 @@ msgid "Public key, acquired from https://www.google.com/recaptcha/intro/v3.html.
|
||||||
msgstr "Öffentlicher Schlüssel, erworben von https://www.google.com/recaptcha/intro/v3.html."
|
msgstr "Öffentlicher Schlüssel, erworben von https://www.google.com/recaptcha/intro/v3.html."
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr "Herausgeber"
|
msgstr "Herausgeber"
|
||||||
|
|
||||||
|
@ -4334,13 +4497,17 @@ msgstr "Zurück zur Geräteauswahl"
|
||||||
msgid "Revoked?"
|
msgid "Revoked?"
|
||||||
msgstr "Widerrufen?"
|
msgstr "Widerrufen?"
|
||||||
|
|
||||||
|
#: src/elements/TreeView.ts
|
||||||
|
msgid "Root"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/ldap/LDAPSourceViewPage.ts
|
#: src/pages/sources/ldap/LDAPSourceViewPage.ts
|
||||||
msgid "Run sync again"
|
msgid "Run sync again"
|
||||||
msgstr "Synchronisation erneut ausführen"
|
msgstr "Synchronisation erneut ausführen"
|
||||||
|
|
||||||
#: src/pages/providers/ProviderWizard.ts
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
#~ msgid "SAML"
|
msgid "SAML"
|
||||||
#~ msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/ProviderWizard.ts
|
#: src/pages/providers/ProviderWizard.ts
|
||||||
#~ msgid "SAML (metadata import)"
|
#~ msgid "SAML (metadata import)"
|
||||||
|
@ -4354,9 +4521,9 @@ msgstr "SAML-Attributsname"
|
||||||
msgid "SAML Metadata"
|
msgid "SAML Metadata"
|
||||||
msgstr "SAML-Metadaten"
|
msgstr "SAML-Metadaten"
|
||||||
|
|
||||||
#: src/pages/providers/ProviderWizard.ts
|
#: src/pages/applications/wizard/saml/TypeSAMLConfigApplicationWizardPage.ts
|
||||||
#~ msgid "SAML details"
|
msgid "SAML details"
|
||||||
#~ msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/ProviderWizard.ts
|
#: src/pages/providers/ProviderWizard.ts
|
||||||
#~ msgid "SAML details (import from metadata)"
|
#~ msgid "SAML details (import from metadata)"
|
||||||
|
@ -4757,6 +4924,14 @@ msgstr "Einzelne Eingabeaufforderungen, die für Eingabeaufforderungsphasen verw
|
||||||
msgid "Single use"
|
msgid "Single use"
|
||||||
msgstr "Einmalbenutzung"
|
msgstr "Einmalbenutzung"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Single-page applications"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Single-page applications which handle authentication in the browser (for example, Javascript, Angular, React, Vue)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#~ msgid "Skip path regex"
|
#~ msgid "Skip path regex"
|
||||||
#~ msgstr "Pfad-Regex überspringen"
|
#~ msgstr "Pfad-Regex überspringen"
|
||||||
|
|
||||||
|
@ -5479,6 +5654,10 @@ msgstr ""
|
||||||
msgid "The following objects use {objName}"
|
msgid "The following objects use {objName}"
|
||||||
msgstr "Die folgenden Objekte verwenden {objName}"
|
msgstr "Die folgenden Objekte verwenden {objName}"
|
||||||
|
|
||||||
|
#: src/pages/providers/ProviderWizard.ts
|
||||||
|
msgid "The new application wizard greatly simplifies the steps required to create applications and providers."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#~ msgid ""
|
#~ msgid ""
|
||||||
#~ "The policy passes when the reputation score is above the threshold, and\n"
|
#~ "The policy passes when the reputation score is above the threshold, and\n"
|
||||||
#~ "doesn't pass when either or both of the selected options are equal or less than the\n"
|
#~ "doesn't pass when either or both of the selected options are equal or less than the\n"
|
||||||
|
@ -5540,6 +5719,10 @@ msgstr ""
|
||||||
msgid "These policies control which users can access this application."
|
msgid "These policies control which users can access this application."
|
||||||
msgstr "Diese Richtlinien steuern, welche Benutzer auf diese Anwendung zugreifen können."
|
msgstr "Diese Richtlinien steuern, welche Benutzer auf diese Anwendung zugreifen können."
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthAPIApplicationWizardPage.ts
|
||||||
|
msgid "This configuration can be used to authenticate to authentik with other APIs other otherwise programmatically."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/flows/FlowInspector.ts
|
#: src/flows/FlowInspector.ts
|
||||||
msgid "This flow is completed."
|
msgid "This flow is completed."
|
||||||
msgstr "Dieser Ablauf ist abgeschlossen."
|
msgstr "Dieser Ablauf ist abgeschlossen."
|
||||||
|
@ -5724,6 +5907,14 @@ msgstr "Zustellungsarten"
|
||||||
msgid "Trusted OIDC Sources"
|
msgid "Trusted OIDC Sources"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/providers/ProviderWizard.ts
|
||||||
|
msgid "Try it now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/providers/ProviderWizard.ts
|
||||||
|
msgid "Try the new application wizard"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/interfaces/locale.ts
|
#: src/interfaces/locale.ts
|
||||||
msgid "Turkish"
|
msgid "Turkish"
|
||||||
msgstr "Türkisch"
|
msgstr "Türkisch"
|
||||||
|
@ -5777,6 +5968,10 @@ msgstr "UPN"
|
||||||
msgid "URL settings"
|
msgid "URL settings"
|
||||||
msgstr "URL-Einstellungen"
|
msgstr "URL-Einstellungen"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLConfigApplicationWizardPage.ts
|
||||||
|
msgid "URL that authentik will redirect back to after successful authentication."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/saml/SAMLSourceForm.ts
|
#: src/pages/sources/saml/SAMLSourceForm.ts
|
||||||
msgid "URL that the initial Login request is sent to."
|
msgid "URL that the initial Login request is sent to."
|
||||||
msgstr "URL, an die die erste Login-Anfrage gesendet wird."
|
msgstr "URL, an die die erste Login-Anfrage gesendet wird."
|
||||||
|
@ -5797,6 +5992,10 @@ msgstr "URL, die von Authentik zum Abrufen von Token verwendet wird."
|
||||||
msgid "URL used to request the initial token. This URL is only required for OAuth 1."
|
msgid "URL used to request the initial token. This URL is only required for OAuth 1."
|
||||||
msgstr "URL, die zur Anforderung des anfänglichen Tokens verwendet wird. Diese URL ist nur für OAuth 1 erforderlich"
|
msgstr "URL, die zur Anforderung des anfänglichen Tokens verwendet wird. Diese URL ist nur für OAuth 1 erforderlich"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/link/TypeLinkApplicationWizardPage.ts
|
||||||
|
msgid "URL which will be opened when a user clicks on the application."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
msgid "Unauthenticated Paths"
|
msgid "Unauthenticated Paths"
|
||||||
msgstr "Nicht authentifizierte Pfade"
|
msgstr "Nicht authentifizierte Pfade"
|
||||||
|
@ -6136,6 +6335,10 @@ msgstr "Benutzerereignisse"
|
||||||
msgid "User fields"
|
msgid "User fields"
|
||||||
msgstr "Benutzerfelder"
|
msgstr "Benutzerfelder"
|
||||||
|
|
||||||
|
#: src/pages/users/UserListPage.ts
|
||||||
|
msgid "User folders"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/interfaces/AdminInterface.ts
|
#: src/interfaces/AdminInterface.ts
|
||||||
msgid "User interface"
|
msgid "User interface"
|
||||||
msgstr "Benutzeroberfläche"
|
msgstr "Benutzeroberfläche"
|
||||||
|
@ -6160,6 +6363,17 @@ msgstr "Benutzerobjektfilter"
|
||||||
msgid "User password writeback"
|
msgid "User password writeback"
|
||||||
msgstr "Rückschreiben des Benutzerkennworts"
|
msgstr "Rückschreiben des Benutzerkennworts"
|
||||||
|
|
||||||
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
|
#: src/pages/sources/plex/PlexSourceForm.ts
|
||||||
|
#: src/pages/sources/saml/SAMLSourceForm.ts
|
||||||
|
msgid "User path"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
||||||
|
msgid "User path template"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/tenants/TenantForm.ts
|
#: src/pages/tenants/TenantForm.ts
|
||||||
msgid "User settings flow"
|
msgid "User settings flow"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -6395,6 +6609,10 @@ msgstr "Warnung: authentik-Domain ist nicht konfiguriert. Authentifizierungen we
|
||||||
msgid "Web Certificate"
|
msgid "Web Certificate"
|
||||||
msgstr "Web-Zertifikat"
|
msgstr "Web-Zertifikat"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Web application"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/authenticator_validate/AuthenticatorValidateStageForm.ts
|
#: src/pages/stages/authenticator_validate/AuthenticatorValidateStageForm.ts
|
||||||
msgid "WebAuthn Authenticators"
|
msgid "WebAuthn Authenticators"
|
||||||
msgstr "WebAuthn-Authentifikatoren"
|
msgstr "WebAuthn-Authentifikatoren"
|
||||||
|
@ -6515,6 +6733,10 @@ msgstr ""
|
||||||
msgid "X509 Subject"
|
msgid "X509 Subject"
|
||||||
msgstr "X509 Betreff"
|
msgstr "X509 Betreff"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "XML-based SSO standard. Use this if your application only supports SAML."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/elements/oauth/UserRefreshList.ts
|
#: src/elements/oauth/UserRefreshList.ts
|
||||||
#: src/pages/applications/ApplicationCheckAccessForm.ts
|
#: src/pages/applications/ApplicationCheckAccessForm.ts
|
||||||
#: src/pages/groups/GroupListPage.ts
|
#: src/pages/groups/GroupListPage.ts
|
||||||
|
|
|
@ -87,6 +87,7 @@ msgstr "A non-removable authenticator, like TouchID or Windows Hello"
|
||||||
msgid "A policy used for testing. Always returns the same result as specified below after waiting a random duration."
|
msgid "A policy used for testing. Always returns the same result as specified below after waiting a random duration."
|
||||||
msgstr "A policy used for testing. Always returns the same result as specified below after waiting a random duration."
|
msgstr "A policy used for testing. Always returns the same result as specified below after waiting a random duration."
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLConfigApplicationWizardPage.ts
|
||||||
#: src/pages/providers/saml/SAMLProviderForm.ts
|
#: src/pages/providers/saml/SAMLProviderForm.ts
|
||||||
#: src/pages/providers/saml/SAMLProviderViewPage.ts
|
#: src/pages/providers/saml/SAMLProviderViewPage.ts
|
||||||
msgid "ACS URL"
|
msgid "ACS URL"
|
||||||
|
@ -110,6 +111,10 @@ msgstr "ANY, any policy must match to grant access."
|
||||||
msgid "ANY, any policy must match to include this stage access."
|
msgid "ANY, any policy must match to include this stage access."
|
||||||
msgstr "ANY, any policy must match to include this stage access."
|
msgstr "ANY, any policy must match to include this stage access."
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "API"
|
||||||
|
msgstr "API"
|
||||||
|
|
||||||
#: src/pages/tokens/TokenListPage.ts
|
#: src/pages/tokens/TokenListPage.ts
|
||||||
msgid "API Access"
|
msgid "API Access"
|
||||||
msgstr "API Access"
|
msgstr "API Access"
|
||||||
|
@ -259,6 +264,10 @@ msgstr "Addition User DN"
|
||||||
msgid "Additional Scope"
|
msgid "Additional Scope"
|
||||||
msgstr "Additional Scope"
|
msgstr "Additional Scope"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
|
msgid "Additional UI settings"
|
||||||
|
msgstr "Additional UI settings"
|
||||||
|
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
msgid "Additional group DN, prepended to the Base DN."
|
msgid "Additional group DN, prepended to the Base DN."
|
||||||
msgstr "Additional group DN, prepended to the Base DN."
|
msgstr "Additional group DN, prepended to the Base DN."
|
||||||
|
@ -380,6 +389,7 @@ msgid "App password (can be used to login using a flow executor)"
|
||||||
msgstr "App password (can be used to login using a flow executor)"
|
msgstr "App password (can be used to login using a flow executor)"
|
||||||
|
|
||||||
#: src/elements/user/UserConsentList.ts
|
#: src/elements/user/UserConsentList.ts
|
||||||
|
#: src/flows/stages/consent/ConsentStage.ts
|
||||||
#: src/pages/admin-overview/TopApplicationsTable.ts
|
#: src/pages/admin-overview/TopApplicationsTable.ts
|
||||||
#: src/pages/providers/ProviderListPage.ts
|
#: src/pages/providers/ProviderListPage.ts
|
||||||
msgid "Application"
|
msgid "Application"
|
||||||
|
@ -390,6 +400,14 @@ msgstr "Application"
|
||||||
msgid "Application Icon"
|
msgid "Application Icon"
|
||||||
msgstr "Application Icon"
|
msgstr "Application Icon"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/link/TypeLinkApplicationWizardPage.ts
|
||||||
|
msgid "Application Link"
|
||||||
|
msgstr "Application Link"
|
||||||
|
|
||||||
|
#: src/flows/stages/consent/ConsentStage.ts
|
||||||
|
msgid "Application already has access to the following permissions:"
|
||||||
|
msgstr "Application already has access to the following permissions:"
|
||||||
|
|
||||||
#: src/elements/charts/UserChart.ts
|
#: src/elements/charts/UserChart.ts
|
||||||
msgid "Application authorizations"
|
msgid "Application authorizations"
|
||||||
msgstr "Application authorizations"
|
msgstr "Application authorizations"
|
||||||
|
@ -398,11 +416,25 @@ msgstr "Application authorizations"
|
||||||
msgid "Application authorized"
|
msgid "Application authorized"
|
||||||
msgstr "Application authorized"
|
msgstr "Application authorized"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
|
msgid "Application details"
|
||||||
|
msgstr "Application details"
|
||||||
|
|
||||||
|
#: src/flows/stages/consent/ConsentStage.ts
|
||||||
|
msgid "Application requires following new permissions:"
|
||||||
|
msgstr "Application requires following new permissions:"
|
||||||
|
|
||||||
#: src/flows/stages/consent/ConsentStage.ts
|
#: src/flows/stages/consent/ConsentStage.ts
|
||||||
msgid "Application requires following permissions:"
|
msgid "Application requires following permissions:"
|
||||||
msgstr "Application requires following permissions:"
|
msgstr "Application requires following permissions:"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Application type"
|
||||||
|
msgstr "Application type"
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
msgid "Application's display Name."
|
msgid "Application's display Name."
|
||||||
msgstr "Application's display Name."
|
msgstr "Application's display Name."
|
||||||
|
|
||||||
|
@ -417,6 +449,18 @@ msgstr "Application(s)"
|
||||||
msgid "Applications"
|
msgid "Applications"
|
||||||
msgstr "Applications"
|
msgstr "Applications"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Applications which handle the authentication server-side (for example, Python, Go, Rust, Java, PHP)"
|
||||||
|
msgstr "Applications which handle the authentication server-side (for example, Python, Go, Rust, Java, PHP)"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Applications which redirect users to a non-web callback (for example, Android, iOS)"
|
||||||
|
msgstr "Applications which redirect users to a non-web callback (for example, Android, iOS)"
|
||||||
|
|
||||||
|
#: src/elements/wizard/ActionWizardPage.ts
|
||||||
|
msgid "Apply changes"
|
||||||
|
msgstr "Apply changes"
|
||||||
|
|
||||||
#: src/pages/admin-overview/AdminOverviewPage.ts
|
#: src/pages/admin-overview/AdminOverviewPage.ts
|
||||||
msgid "Apps with most usage"
|
msgid "Apps with most usage"
|
||||||
msgstr "Apps with most usage"
|
msgstr "Apps with most usage"
|
||||||
|
@ -536,6 +580,14 @@ msgstr "Authentication URL"
|
||||||
msgid "Authentication flow"
|
msgid "Authentication flow"
|
||||||
msgstr "Authentication flow"
|
msgstr "Authentication flow"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "Authentication method"
|
||||||
|
msgstr "Authentication method"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Authentication without user interaction, or machine-to-machine authentication."
|
||||||
|
msgstr "Authentication without user interaction, or machine-to-machine authentication."
|
||||||
|
|
||||||
#: src/flows/stages/authenticator_validate/AuthenticatorValidateStage.ts
|
#: src/flows/stages/authenticator_validate/AuthenticatorValidateStage.ts
|
||||||
msgid "Authenticator"
|
msgid "Authenticator"
|
||||||
msgstr "Authenticator"
|
msgstr "Authenticator"
|
||||||
|
@ -561,6 +613,7 @@ msgstr "Authorization"
|
||||||
msgid "Authorization URL"
|
msgid "Authorization URL"
|
||||||
msgstr "Authorization URL"
|
msgstr "Authorization URL"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
#: src/pages/providers/oauth2/OAuth2ProviderForm.ts
|
#: src/pages/providers/oauth2/OAuth2ProviderForm.ts
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
#: src/pages/providers/saml/SAMLProviderForm.ts
|
#: src/pages/providers/saml/SAMLProviderForm.ts
|
||||||
|
@ -622,6 +675,7 @@ msgstr "Background shown during execution."
|
||||||
#~ msgid "Backup status"
|
#~ msgid "Backup status"
|
||||||
#~ msgstr "Backup status"
|
#~ msgstr "Backup status"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/ldap/TypeLDAPApplicationWizardPage.ts
|
||||||
#: src/pages/providers/ldap/LDAPProviderForm.ts
|
#: src/pages/providers/ldap/LDAPProviderForm.ts
|
||||||
#: src/pages/providers/ldap/LDAPProviderViewPage.ts
|
#: src/pages/providers/ldap/LDAPProviderViewPage.ts
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
|
@ -717,6 +771,10 @@ msgstr "Build hash:"
|
||||||
msgid "Built-in"
|
msgid "Built-in"
|
||||||
msgstr "Built-in"
|
msgstr "Built-in"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthAPIApplicationWizardPage.ts
|
||||||
|
msgid "By default, all service accounts can authenticate as this application, as long as they have a valid token of the type app-password."
|
||||||
|
msgstr "By default, all service accounts can authenticate as this application, as long as they have a valid token of the type app-password."
|
||||||
|
|
||||||
#: src/pages/stages/identification/IdentificationStageForm.ts
|
#: src/pages/stages/identification/IdentificationStageForm.ts
|
||||||
msgid "By default, only icons are shown for sources. Enable this to show their full names."
|
msgid "By default, only icons are shown for sources. Enable this to show their full names."
|
||||||
msgstr "By default, only icons are shown for sources. Enable this to show their full names."
|
msgstr "By default, only icons are shown for sources. Enable this to show their full names."
|
||||||
|
@ -1222,6 +1280,7 @@ msgstr "Copy recovery link"
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationListPage.ts
|
#: src/pages/applications/ApplicationListPage.ts
|
||||||
#: src/pages/applications/ApplicationListPage.ts
|
#: src/pages/applications/ApplicationListPage.ts
|
||||||
|
#: src/pages/applications/wizard/ApplicationWizard.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
#: src/pages/events/RuleListPage.ts
|
#: src/pages/events/RuleListPage.ts
|
||||||
|
@ -1360,6 +1419,10 @@ msgstr "Create User"
|
||||||
msgid "Create a new application"
|
msgid "Create a new application"
|
||||||
msgstr "Create a new application"
|
msgstr "Create a new application"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/ApplicationWizard.ts
|
||||||
|
msgid "Create a new application."
|
||||||
|
msgstr "Create a new application."
|
||||||
|
|
||||||
#: src/pages/outposts/ServiceConnectionWizard.ts
|
#: src/pages/outposts/ServiceConnectionWizard.ts
|
||||||
msgid "Create a new outpost integration."
|
msgid "Create a new outpost integration."
|
||||||
msgstr "Create a new outpost integration."
|
msgstr "Create a new outpost integration."
|
||||||
|
@ -1384,14 +1447,27 @@ msgstr "Create a new source."
|
||||||
msgid "Create a new stage."
|
msgid "Create a new stage."
|
||||||
msgstr "Create a new stage."
|
msgstr "Create a new stage."
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
|
msgid "Create application"
|
||||||
|
msgstr "Create application"
|
||||||
|
|
||||||
#: src/pages/users/ServiceAccountForm.ts
|
#: src/pages/users/ServiceAccountForm.ts
|
||||||
msgid "Create group"
|
msgid "Create group"
|
||||||
msgstr "Create group"
|
msgstr "Create group"
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/ldap/TypeLDAPApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/proxy/TypeProxyApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLConfigApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLImportApplicationWizardPage.ts
|
||||||
msgid "Create provider"
|
msgid "Create provider"
|
||||||
msgstr "Create provider"
|
msgstr "Create provider"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/ldap/TypeLDAPApplicationWizardPage.ts
|
||||||
|
msgid "Create service account"
|
||||||
|
msgstr "Create service account"
|
||||||
|
|
||||||
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
||||||
msgid "Create users as inactive"
|
msgid "Create users as inactive"
|
||||||
msgstr "Create users as inactive"
|
msgstr "Create users as inactive"
|
||||||
|
@ -1575,6 +1651,7 @@ msgid "Deprecated. Instead of using this field, configure the JWKS data/URL in S
|
||||||
msgstr "Deprecated. Instead of using this field, configure the JWKS data/URL in Sources."
|
msgstr "Deprecated. Instead of using this field, configure the JWKS data/URL in Sources."
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
#: src/pages/property-mappings/PropertyMappingScopeForm.ts
|
#: src/pages/property-mappings/PropertyMappingScopeForm.ts
|
||||||
#: src/pages/system-tasks/SystemTaskListPage.ts
|
#: src/pages/system-tasks/SystemTaskListPage.ts
|
||||||
#: src/pages/tokens/TokenForm.ts
|
#: src/pages/tokens/TokenForm.ts
|
||||||
|
@ -2091,6 +2168,14 @@ msgstr "External Applications which use authentik as Identity-Provider, utilizin
|
||||||
msgid "External Host"
|
msgid "External Host"
|
||||||
msgstr "External Host"
|
msgstr "External Host"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/proxy/TypeProxyApplicationWizardPage.ts
|
||||||
|
msgid "External domain"
|
||||||
|
msgstr "External domain"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/proxy/TypeProxyApplicationWizardPage.ts
|
||||||
|
msgid "External domain you will be accessing the domain from."
|
||||||
|
msgstr "External domain you will be accessing the domain from."
|
||||||
|
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
msgid "External host"
|
msgid "External host"
|
||||||
|
@ -2264,6 +2349,10 @@ msgstr "Flow used to logout. If left empty, the first applicable flow sorted by
|
||||||
msgid "Flow used when authorizing this provider."
|
msgid "Flow used when authorizing this provider."
|
||||||
msgstr "Flow used when authorizing this provider."
|
msgstr "Flow used when authorizing this provider."
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
|
msgid "Flow used when users access this application."
|
||||||
|
msgstr "Flow used when users access this application."
|
||||||
|
|
||||||
#: src/pages/flows/FlowListPage.ts
|
#: src/pages/flows/FlowListPage.ts
|
||||||
msgid "Flow(s)"
|
msgid "Flow(s)"
|
||||||
msgstr "Flow(s)"
|
msgstr "Flow(s)"
|
||||||
|
@ -2501,7 +2590,6 @@ msgid "Hide managed mappings"
|
||||||
msgstr "Hide managed mappings"
|
msgstr "Hide managed mappings"
|
||||||
|
|
||||||
#: src/pages/users/RelatedUserList.ts
|
#: src/pages/users/RelatedUserList.ts
|
||||||
#: src/pages/users/UserListPage.ts
|
|
||||||
msgid "Hide service-accounts"
|
msgid "Hide service-accounts"
|
||||||
msgstr "Hide service-accounts"
|
msgstr "Hide service-accounts"
|
||||||
|
|
||||||
|
@ -2669,10 +2757,22 @@ msgstr "Import"
|
||||||
msgid "Import Flow"
|
msgid "Import Flow"
|
||||||
msgstr "Import Flow"
|
msgstr "Import Flow"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Import SAML Metadata"
|
||||||
|
msgstr "Import SAML Metadata"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLImportApplicationWizardPage.ts
|
||||||
|
msgid "Import SAML metadata"
|
||||||
|
msgstr "Import SAML metadata"
|
||||||
|
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
msgid "Import certificates of external providers or create certificates to sign requests with."
|
msgid "Import certificates of external providers or create certificates to sign requests with."
|
||||||
msgstr "Import certificates of external providers or create certificates to sign requests with."
|
msgstr "Import certificates of external providers or create certificates to sign requests with."
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Import the metadata document of the applicaation you want to configure."
|
||||||
|
msgstr "Import the metadata document of the applicaation you want to configure."
|
||||||
|
|
||||||
#: src/flows/stages/authenticator_validate/AuthenticatorValidateStage.ts
|
#: src/flows/stages/authenticator_validate/AuthenticatorValidateStage.ts
|
||||||
msgid "In case you can't access any other method."
|
msgid "In case you can't access any other method."
|
||||||
msgstr "In case you can't access any other method."
|
msgstr "In case you can't access any other method."
|
||||||
|
@ -2821,6 +2921,7 @@ msgstr "Keypair which is used to sign outgoing requests. Leave empty to disable
|
||||||
msgid "Kubeconfig"
|
msgid "Kubeconfig"
|
||||||
msgstr "Kubeconfig"
|
msgstr "Kubeconfig"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
#: src/pages/outposts/OutpostForm.ts
|
#: src/pages/outposts/OutpostForm.ts
|
||||||
#: src/pages/outposts/OutpostListPage.ts
|
#: src/pages/outposts/OutpostListPage.ts
|
||||||
msgid "LDAP"
|
msgid "LDAP"
|
||||||
|
@ -2842,9 +2943,9 @@ msgstr "LDAP DN under which bind requests and search requests can be made."
|
||||||
msgid "LDAP Sync status"
|
msgid "LDAP Sync status"
|
||||||
msgstr "LDAP Sync status"
|
msgstr "LDAP Sync status"
|
||||||
|
|
||||||
#: src/pages/providers/ProviderWizard.ts
|
#: src/pages/applications/wizard/ldap/TypeLDAPApplicationWizardPage.ts
|
||||||
#~ msgid "LDAP details"
|
msgid "LDAP details"
|
||||||
#~ msgstr "LDAP details"
|
msgstr "LDAP details"
|
||||||
|
|
||||||
#: src/pages/stages/prompt/PromptForm.ts
|
#: src/pages/stages/prompt/PromptForm.ts
|
||||||
#: src/pages/stages/prompt/PromptListPage.ts
|
#: src/pages/stages/prompt/PromptListPage.ts
|
||||||
|
@ -2897,6 +2998,10 @@ msgstr "Launch URL"
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Layout"
|
msgstr "Layout"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "Legacy applications which don't natively support SSO."
|
||||||
|
msgstr "Legacy applications which don't natively support SSO."
|
||||||
|
|
||||||
#: src/pages/stages/identification/IdentificationStageForm.ts
|
#: src/pages/stages/identification/IdentificationStageForm.ts
|
||||||
msgid "Let the user identify themselves with their username or Email address."
|
msgid "Let the user identify themselves with their username or Email address."
|
||||||
msgstr "Let the user identify themselves with their username or Email address."
|
msgstr "Let the user identify themselves with their username or Email address."
|
||||||
|
@ -2905,6 +3010,11 @@ msgstr "Let the user identify themselves with their username or Email address."
|
||||||
#~ msgid "Library"
|
#~ msgid "Library"
|
||||||
#~ msgstr "Library"
|
#~ msgstr "Library"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/link/TypeLinkApplicationWizardPage.ts
|
||||||
|
msgid "Link"
|
||||||
|
msgstr "Link"
|
||||||
|
|
||||||
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
#: src/pages/sources/plex/PlexSourceForm.ts
|
#: src/pages/sources/plex/PlexSourceForm.ts
|
||||||
msgid "Link to a user with identical email address. Can have security implications when a source doesn't validate email addresses"
|
msgid "Link to a user with identical email address. Can have security implications when a source doesn't validate email addresses"
|
||||||
|
@ -2963,6 +3073,7 @@ msgstr "Loading"
|
||||||
#: src/elements/Spinner.ts
|
#: src/elements/Spinner.ts
|
||||||
#: src/pages/applications/ApplicationCheckAccessForm.ts
|
#: src/pages/applications/ApplicationCheckAccessForm.ts
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
#: src/pages/events/RuleForm.ts
|
#: src/pages/events/RuleForm.ts
|
||||||
#: src/pages/events/RuleForm.ts
|
#: src/pages/events/RuleForm.ts
|
||||||
#: src/pages/events/TransportForm.ts
|
#: src/pages/events/TransportForm.ts
|
||||||
|
@ -2998,7 +3109,6 @@ msgstr "Loading"
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
|
||||||
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
#: src/pages/sources/plex/PlexSourceForm.ts
|
#: src/pages/sources/plex/PlexSourceForm.ts
|
||||||
|
@ -3023,7 +3133,6 @@ msgstr "Loading"
|
||||||
#: src/pages/stages/password/PasswordStageForm.ts
|
#: src/pages/stages/password/PasswordStageForm.ts
|
||||||
#: src/pages/stages/prompt/PromptStageForm.ts
|
#: src/pages/stages/prompt/PromptStageForm.ts
|
||||||
#: src/pages/stages/prompt/PromptStageForm.ts
|
#: src/pages/stages/prompt/PromptStageForm.ts
|
||||||
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
|
||||||
#: src/pages/tenants/TenantForm.ts
|
#: src/pages/tenants/TenantForm.ts
|
||||||
#: src/pages/tenants/TenantForm.ts
|
#: src/pages/tenants/TenantForm.ts
|
||||||
#: src/pages/tenants/TenantForm.ts
|
#: src/pages/tenants/TenantForm.ts
|
||||||
|
@ -3128,6 +3237,14 @@ msgstr "Managed by authentik"
|
||||||
msgid "Managed by authentik (Discovered)"
|
msgid "Managed by authentik (Discovered)"
|
||||||
msgstr "Managed by authentik (Discovered)"
|
msgstr "Managed by authentik (Discovered)"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Manual configuration"
|
||||||
|
msgstr "Manual configuration"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Manually configure SAML"
|
||||||
|
msgstr "Manually configure SAML"
|
||||||
|
|
||||||
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
||||||
msgid "Mark newly created users as inactive."
|
msgid "Mark newly created users as inactive."
|
||||||
msgstr "Mark newly created users as inactive."
|
msgstr "Mark newly created users as inactive."
|
||||||
|
@ -3173,11 +3290,18 @@ msgstr "Message"
|
||||||
msgid "Messages"
|
msgid "Messages"
|
||||||
msgstr "Messages"
|
msgstr "Messages"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLImportApplicationWizardPage.ts
|
||||||
#: src/pages/providers/saml/SAMLProviderImportForm.ts
|
#: src/pages/providers/saml/SAMLProviderImportForm.ts
|
||||||
#: src/pages/sources/saml/SAMLSourceViewPage.ts
|
#: src/pages/sources/saml/SAMLSourceViewPage.ts
|
||||||
msgid "Metadata"
|
msgid "Metadata"
|
||||||
msgstr "Metadata"
|
msgstr "Metadata"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthAPIApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthImplicitApplicationWizardPage.ts
|
||||||
|
msgid "Method details"
|
||||||
|
msgstr "Method details"
|
||||||
|
|
||||||
#: src/pages/policies/password/PasswordPolicyForm.ts
|
#: src/pages/policies/password/PasswordPolicyForm.ts
|
||||||
msgid "Minimum amount of Digits"
|
msgid "Minimum amount of Digits"
|
||||||
msgstr "Minimum amount of Digits"
|
msgstr "Minimum amount of Digits"
|
||||||
|
@ -3221,6 +3345,10 @@ msgstr "Model deleted"
|
||||||
msgid "Model updated"
|
msgid "Model updated"
|
||||||
msgstr "Model updated"
|
msgstr "Model updated"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "Modern applications, APIs and Single-page applications."
|
||||||
|
msgstr "Modern applications, APIs and Single-page applications."
|
||||||
|
|
||||||
#:
|
#:
|
||||||
#~ msgid "Monitor"
|
#~ msgid "Monitor"
|
||||||
#~ msgstr "Monitor"
|
#~ msgstr "Monitor"
|
||||||
|
@ -3236,6 +3364,7 @@ msgstr "My applications"
|
||||||
#: src/elements/forms/DeleteBulkForm.ts
|
#: src/elements/forms/DeleteBulkForm.ts
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
#: src/pages/applications/ApplicationListPage.ts
|
#: src/pages/applications/ApplicationListPage.ts
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairForm.ts
|
#: src/pages/crypto/CertificateKeyPairForm.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
|
@ -3333,6 +3462,10 @@ msgstr "NameID Policy"
|
||||||
msgid "NameID Property Mapping"
|
msgid "NameID Property Mapping"
|
||||||
msgstr "NameID Property Mapping"
|
msgstr "NameID Property Mapping"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Native application"
|
||||||
|
msgstr "Native application"
|
||||||
|
|
||||||
#: src/flows/stages/identification/IdentificationStage.ts
|
#: src/flows/stages/identification/IdentificationStage.ts
|
||||||
msgid "Need an account?"
|
msgid "Need an account?"
|
||||||
msgstr "Need an account?"
|
msgstr "Need an account?"
|
||||||
|
@ -3345,6 +3478,10 @@ msgstr "Negate result"
|
||||||
msgid "Negates the outcome of the binding. Messages are unaffected."
|
msgid "Negates the outcome of the binding. Messages are unaffected."
|
||||||
msgstr "Negates the outcome of the binding. Messages are unaffected."
|
msgstr "Negates the outcome of the binding. Messages are unaffected."
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/ApplicationWizard.ts
|
||||||
|
msgid "New application"
|
||||||
|
msgstr "New application"
|
||||||
|
|
||||||
#: src/pages/outposts/ServiceConnectionWizard.ts
|
#: src/pages/outposts/ServiceConnectionWizard.ts
|
||||||
msgid "New outpost integration"
|
msgid "New outpost integration"
|
||||||
msgstr "New outpost integration"
|
msgstr "New outpost integration"
|
||||||
|
@ -3605,6 +3742,10 @@ msgstr "OAuth Refresh Codes"
|
||||||
#~ msgid "OAuth/OIDC"
|
#~ msgid "OAuth/OIDC"
|
||||||
#~ msgstr "OAuth/OIDC"
|
#~ msgstr "OAuth/OIDC"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "OAuth2/OIDC"
|
||||||
|
msgstr "OAuth2/OIDC"
|
||||||
|
|
||||||
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
msgid "OIDC JWKS"
|
msgid "OIDC JWKS"
|
||||||
msgstr "OIDC JWKS"
|
msgstr "OIDC JWKS"
|
||||||
|
@ -3884,6 +4025,21 @@ msgstr "Password: Masked input, password is validated against sources. Policies
|
||||||
msgid "Passwordless flow"
|
msgid "Passwordless flow"
|
||||||
msgstr "Passwordless flow"
|
msgstr "Passwordless flow"
|
||||||
|
|
||||||
|
#: src/pages/users/UserForm.ts
|
||||||
|
msgid "Path"
|
||||||
|
msgstr "Path"
|
||||||
|
|
||||||
|
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
||||||
|
msgid "Path new users will be created under. If left blank, the default path will be used.fo"
|
||||||
|
msgstr "Path new users will be created under. If left blank, the default path will be used.fo"
|
||||||
|
|
||||||
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
|
#: src/pages/sources/plex/PlexSourceForm.ts
|
||||||
|
#: src/pages/sources/saml/SAMLSourceForm.ts
|
||||||
|
msgid "Path template for users created. Use placeholders like `%(slug)s` to insert the source slug."
|
||||||
|
msgstr "Path template for users created. Use placeholders like `%(slug)s` to insert the source slug."
|
||||||
|
|
||||||
#: src/pages/sources/saml/SAMLSourceForm.ts
|
#: src/pages/sources/saml/SAMLSourceForm.ts
|
||||||
msgid "Persistent"
|
msgid "Persistent"
|
||||||
msgstr "Persistent"
|
msgstr "Persistent"
|
||||||
|
@ -4097,6 +4253,11 @@ msgstr "Protocol Settings"
|
||||||
msgid "Protocol settings"
|
msgid "Protocol settings"
|
||||||
msgstr "Protocol settings"
|
msgstr "Protocol settings"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "Provide an LDAP interface for applications and users to authenticate against."
|
||||||
|
msgstr "Provide an LDAP interface for applications and users to authenticate against."
|
||||||
|
|
||||||
#: src/pages/providers/ProviderListPage.ts
|
#: src/pages/providers/ProviderListPage.ts
|
||||||
msgid "Provide support for protocols like SAML and OAuth to assigned applications."
|
msgid "Provide support for protocols like SAML and OAuth to assigned applications."
|
||||||
msgstr "Provide support for protocols like SAML and OAuth to assigned applications."
|
msgstr "Provide support for protocols like SAML and OAuth to assigned applications."
|
||||||
|
@ -4128,6 +4289,7 @@ msgstr "Provider(s)"
|
||||||
msgid "Providers"
|
msgid "Providers"
|
||||||
msgstr "Providers"
|
msgstr "Providers"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
#: src/pages/outposts/OutpostForm.ts
|
#: src/pages/outposts/OutpostForm.ts
|
||||||
#: src/pages/outposts/OutpostListPage.ts
|
#: src/pages/outposts/OutpostListPage.ts
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
|
@ -4135,9 +4297,9 @@ msgstr "Providers"
|
||||||
msgid "Proxy"
|
msgid "Proxy"
|
||||||
msgstr "Proxy"
|
msgstr "Proxy"
|
||||||
|
|
||||||
#: src/pages/providers/ProviderWizard.ts
|
#: src/pages/applications/wizard/proxy/TypeProxyApplicationWizardPage.ts
|
||||||
#~ msgid "Proxy details"
|
msgid "Proxy details"
|
||||||
#~ msgstr "Proxy details"
|
msgstr "Proxy details"
|
||||||
|
|
||||||
#: src/pages/providers/oauth2/OAuth2ProviderForm.ts
|
#: src/pages/providers/oauth2/OAuth2ProviderForm.ts
|
||||||
msgid "Public"
|
msgid "Public"
|
||||||
|
@ -4152,6 +4314,7 @@ msgid "Public key, acquired from https://www.google.com/recaptcha/intro/v3.html.
|
||||||
msgstr "Public key, acquired from https://www.google.com/recaptcha/intro/v3.html."
|
msgstr "Public key, acquired from https://www.google.com/recaptcha/intro/v3.html."
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr "Publisher"
|
msgstr "Publisher"
|
||||||
|
|
||||||
|
@ -4414,13 +4577,17 @@ msgstr "Return to device picker"
|
||||||
msgid "Revoked?"
|
msgid "Revoked?"
|
||||||
msgstr "Revoked?"
|
msgstr "Revoked?"
|
||||||
|
|
||||||
|
#: src/elements/TreeView.ts
|
||||||
|
msgid "Root"
|
||||||
|
msgstr "Root"
|
||||||
|
|
||||||
#: src/pages/sources/ldap/LDAPSourceViewPage.ts
|
#: src/pages/sources/ldap/LDAPSourceViewPage.ts
|
||||||
msgid "Run sync again"
|
msgid "Run sync again"
|
||||||
msgstr "Run sync again"
|
msgstr "Run sync again"
|
||||||
|
|
||||||
#: src/pages/providers/ProviderWizard.ts
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
#~ msgid "SAML"
|
msgid "SAML"
|
||||||
#~ msgstr "SAML"
|
msgstr "SAML"
|
||||||
|
|
||||||
#: src/pages/providers/ProviderWizard.ts
|
#: src/pages/providers/ProviderWizard.ts
|
||||||
#~ msgid "SAML (metadata import)"
|
#~ msgid "SAML (metadata import)"
|
||||||
|
@ -4434,9 +4601,9 @@ msgstr "SAML Attribute Name"
|
||||||
msgid "SAML Metadata"
|
msgid "SAML Metadata"
|
||||||
msgstr "SAML Metadata"
|
msgstr "SAML Metadata"
|
||||||
|
|
||||||
#: src/pages/providers/ProviderWizard.ts
|
#: src/pages/applications/wizard/saml/TypeSAMLConfigApplicationWizardPage.ts
|
||||||
#~ msgid "SAML details"
|
msgid "SAML details"
|
||||||
#~ msgstr "SAML details"
|
msgstr "SAML details"
|
||||||
|
|
||||||
#: src/pages/providers/ProviderWizard.ts
|
#: src/pages/providers/ProviderWizard.ts
|
||||||
#~ msgid "SAML details (import from metadata)"
|
#~ msgid "SAML details (import from metadata)"
|
||||||
|
@ -4845,6 +5012,14 @@ msgstr "Single Prompts that can be used for Prompt Stages."
|
||||||
msgid "Single use"
|
msgid "Single use"
|
||||||
msgstr "Single use"
|
msgstr "Single use"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Single-page applications"
|
||||||
|
msgstr "Single-page applications"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Single-page applications which handle authentication in the browser (for example, Javascript, Angular, React, Vue)"
|
||||||
|
msgstr "Single-page applications which handle authentication in the browser (for example, Javascript, Angular, React, Vue)"
|
||||||
|
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
#~ msgid "Skip path regex"
|
#~ msgid "Skip path regex"
|
||||||
#~ msgstr "Skip path regex"
|
#~ msgstr "Skip path regex"
|
||||||
|
@ -5594,6 +5769,10 @@ msgstr "The following keywords are supported:"
|
||||||
msgid "The following objects use {objName}"
|
msgid "The following objects use {objName}"
|
||||||
msgstr "The following objects use {objName}"
|
msgstr "The following objects use {objName}"
|
||||||
|
|
||||||
|
#: src/pages/providers/ProviderWizard.ts
|
||||||
|
msgid "The new application wizard greatly simplifies the steps required to create applications and providers."
|
||||||
|
msgstr "The new application wizard greatly simplifies the steps required to create applications and providers."
|
||||||
|
|
||||||
#: src/pages/policies/reputation/ReputationPolicyForm.ts
|
#: src/pages/policies/reputation/ReputationPolicyForm.ts
|
||||||
#~ msgid ""
|
#~ msgid ""
|
||||||
#~ "The policy passes when the reputation score is above the threshold, and\n"
|
#~ "The policy passes when the reputation score is above the threshold, and\n"
|
||||||
|
@ -5656,6 +5835,10 @@ msgstr ""
|
||||||
msgid "These policies control which users can access this application."
|
msgid "These policies control which users can access this application."
|
||||||
msgstr "These policies control which users can access this application."
|
msgstr "These policies control which users can access this application."
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthAPIApplicationWizardPage.ts
|
||||||
|
msgid "This configuration can be used to authenticate to authentik with other APIs other otherwise programmatically."
|
||||||
|
msgstr "This configuration can be used to authenticate to authentik with other APIs other otherwise programmatically."
|
||||||
|
|
||||||
#: src/flows/FlowInspector.ts
|
#: src/flows/FlowInspector.ts
|
||||||
msgid "This flow is completed."
|
msgid "This flow is completed."
|
||||||
msgstr "This flow is completed."
|
msgstr "This flow is completed."
|
||||||
|
@ -5844,6 +6027,14 @@ msgstr "Transports"
|
||||||
msgid "Trusted OIDC Sources"
|
msgid "Trusted OIDC Sources"
|
||||||
msgstr "Trusted OIDC Sources"
|
msgstr "Trusted OIDC Sources"
|
||||||
|
|
||||||
|
#: src/pages/providers/ProviderWizard.ts
|
||||||
|
msgid "Try it now"
|
||||||
|
msgstr "Try it now"
|
||||||
|
|
||||||
|
#: src/pages/providers/ProviderWizard.ts
|
||||||
|
msgid "Try the new application wizard"
|
||||||
|
msgstr "Try the new application wizard"
|
||||||
|
|
||||||
#: src/interfaces/locale.ts
|
#: src/interfaces/locale.ts
|
||||||
msgid "Turkish"
|
msgid "Turkish"
|
||||||
msgstr "Turkish"
|
msgstr "Turkish"
|
||||||
|
@ -5897,6 +6088,10 @@ msgstr "UPN"
|
||||||
msgid "URL settings"
|
msgid "URL settings"
|
||||||
msgstr "URL settings"
|
msgstr "URL settings"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLConfigApplicationWizardPage.ts
|
||||||
|
msgid "URL that authentik will redirect back to after successful authentication."
|
||||||
|
msgstr "URL that authentik will redirect back to after successful authentication."
|
||||||
|
|
||||||
#: src/pages/sources/saml/SAMLSourceForm.ts
|
#: src/pages/sources/saml/SAMLSourceForm.ts
|
||||||
msgid "URL that the initial Login request is sent to."
|
msgid "URL that the initial Login request is sent to."
|
||||||
msgstr "URL that the initial Login request is sent to."
|
msgstr "URL that the initial Login request is sent to."
|
||||||
|
@ -5917,6 +6112,10 @@ msgstr "URL used by authentik to retrieve tokens."
|
||||||
msgid "URL used to request the initial token. This URL is only required for OAuth 1."
|
msgid "URL used to request the initial token. This URL is only required for OAuth 1."
|
||||||
msgstr "URL used to request the initial token. This URL is only required for OAuth 1."
|
msgstr "URL used to request the initial token. This URL is only required for OAuth 1."
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/link/TypeLinkApplicationWizardPage.ts
|
||||||
|
msgid "URL which will be opened when a user clicks on the application."
|
||||||
|
msgstr "URL which will be opened when a user clicks on the application."
|
||||||
|
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
msgid "Unauthenticated Paths"
|
msgid "Unauthenticated Paths"
|
||||||
msgstr "Unauthenticated Paths"
|
msgstr "Unauthenticated Paths"
|
||||||
|
@ -6261,6 +6460,10 @@ msgstr "User events"
|
||||||
msgid "User fields"
|
msgid "User fields"
|
||||||
msgstr "User fields"
|
msgstr "User fields"
|
||||||
|
|
||||||
|
#: src/pages/users/UserListPage.ts
|
||||||
|
msgid "User folders"
|
||||||
|
msgstr "User folders"
|
||||||
|
|
||||||
#: src/interfaces/AdminInterface.ts
|
#: src/interfaces/AdminInterface.ts
|
||||||
msgid "User interface"
|
msgid "User interface"
|
||||||
msgstr "User interface"
|
msgstr "User interface"
|
||||||
|
@ -6286,6 +6489,17 @@ msgstr "User object filter"
|
||||||
msgid "User password writeback"
|
msgid "User password writeback"
|
||||||
msgstr "User password writeback"
|
msgstr "User password writeback"
|
||||||
|
|
||||||
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
|
#: src/pages/sources/plex/PlexSourceForm.ts
|
||||||
|
#: src/pages/sources/saml/SAMLSourceForm.ts
|
||||||
|
msgid "User path"
|
||||||
|
msgstr "User path"
|
||||||
|
|
||||||
|
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
||||||
|
msgid "User path template"
|
||||||
|
msgstr "User path template"
|
||||||
|
|
||||||
#: src/pages/tenants/TenantForm.ts
|
#: src/pages/tenants/TenantForm.ts
|
||||||
msgid "User settings flow"
|
msgid "User settings flow"
|
||||||
msgstr "User settings flow"
|
msgstr "User settings flow"
|
||||||
|
@ -6522,6 +6736,10 @@ msgstr "Warning: authentik Domain is not configured, authentication will not wor
|
||||||
msgid "Web Certificate"
|
msgid "Web Certificate"
|
||||||
msgstr "Web Certificate"
|
msgstr "Web Certificate"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Web application"
|
||||||
|
msgstr "Web application"
|
||||||
|
|
||||||
#: src/pages/stages/authenticator_validate/AuthenticatorValidateStageForm.ts
|
#: src/pages/stages/authenticator_validate/AuthenticatorValidateStageForm.ts
|
||||||
msgid "WebAuthn Authenticators"
|
msgid "WebAuthn Authenticators"
|
||||||
msgstr "WebAuthn Authenticators"
|
msgstr "WebAuthn Authenticators"
|
||||||
|
@ -6645,6 +6863,10 @@ msgstr ""
|
||||||
msgid "X509 Subject"
|
msgid "X509 Subject"
|
||||||
msgstr "X509 Subject"
|
msgstr "X509 Subject"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "XML-based SSO standard. Use this if your application only supports SAML."
|
||||||
|
msgstr "XML-based SSO standard. Use this if your application only supports SAML."
|
||||||
|
|
||||||
#: src/elements/oauth/UserRefreshList.ts
|
#: src/elements/oauth/UserRefreshList.ts
|
||||||
#: src/pages/applications/ApplicationCheckAccessForm.ts
|
#: src/pages/applications/ApplicationCheckAccessForm.ts
|
||||||
#: src/pages/groups/GroupListPage.ts
|
#: src/pages/groups/GroupListPage.ts
|
||||||
|
|
|
@ -90,6 +90,7 @@ msgstr "Un autenticador no extraíble, como TouchID o Windows Hello"
|
||||||
msgid "A policy used for testing. Always returns the same result as specified below after waiting a random duration."
|
msgid "A policy used for testing. Always returns the same result as specified below after waiting a random duration."
|
||||||
msgstr "Una política utilizada para las pruebas. Siempre devuelve el mismo resultado que se especifica a continuación después de esperar una duración aleatoria."
|
msgstr "Una política utilizada para las pruebas. Siempre devuelve el mismo resultado que se especifica a continuación después de esperar una duración aleatoria."
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLConfigApplicationWizardPage.ts
|
||||||
#: src/pages/providers/saml/SAMLProviderForm.ts
|
#: src/pages/providers/saml/SAMLProviderForm.ts
|
||||||
#: src/pages/providers/saml/SAMLProviderViewPage.ts
|
#: src/pages/providers/saml/SAMLProviderViewPage.ts
|
||||||
msgid "ACS URL"
|
msgid "ACS URL"
|
||||||
|
@ -113,6 +114,10 @@ msgstr "CUALQUIERA, cualquier política debe coincidir para otorgar acceso."
|
||||||
msgid "ANY, any policy must match to include this stage access."
|
msgid "ANY, any policy must match to include this stage access."
|
||||||
msgstr "CUALQUIERA, cualquier política debe coincidir para incluir el acceso a esta etapa."
|
msgstr "CUALQUIERA, cualquier política debe coincidir para incluir el acceso a esta etapa."
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "API"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/tokens/TokenListPage.ts
|
#: src/pages/tokens/TokenListPage.ts
|
||||||
msgid "API Access"
|
msgid "API Access"
|
||||||
msgstr "Acceso a la API"
|
msgstr "Acceso a la API"
|
||||||
|
@ -257,6 +262,10 @@ msgstr "DN de usuario adicional"
|
||||||
msgid "Additional Scope"
|
msgid "Additional Scope"
|
||||||
msgstr "Ámbito adicional"
|
msgstr "Ámbito adicional"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
|
msgid "Additional UI settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
msgid "Additional group DN, prepended to the Base DN."
|
msgid "Additional group DN, prepended to the Base DN."
|
||||||
msgstr "DN de grupo adicional, antepuesto al DN base."
|
msgstr "DN de grupo adicional, antepuesto al DN base."
|
||||||
|
@ -377,6 +386,7 @@ msgid "App password (can be used to login using a flow executor)"
|
||||||
msgstr "Contraseña de la aplicación (se puede usar para iniciar sesión con un ejecutor de flujo)"
|
msgstr "Contraseña de la aplicación (se puede usar para iniciar sesión con un ejecutor de flujo)"
|
||||||
|
|
||||||
#: src/elements/user/UserConsentList.ts
|
#: src/elements/user/UserConsentList.ts
|
||||||
|
#: src/flows/stages/consent/ConsentStage.ts
|
||||||
#: src/pages/admin-overview/TopApplicationsTable.ts
|
#: src/pages/admin-overview/TopApplicationsTable.ts
|
||||||
#: src/pages/providers/ProviderListPage.ts
|
#: src/pages/providers/ProviderListPage.ts
|
||||||
msgid "Application"
|
msgid "Application"
|
||||||
|
@ -387,6 +397,14 @@ msgstr "Aplicación"
|
||||||
msgid "Application Icon"
|
msgid "Application Icon"
|
||||||
msgstr "Icono de aplicación"
|
msgstr "Icono de aplicación"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/link/TypeLinkApplicationWizardPage.ts
|
||||||
|
msgid "Application Link"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/flows/stages/consent/ConsentStage.ts
|
||||||
|
msgid "Application already has access to the following permissions:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/elements/charts/UserChart.ts
|
#: src/elements/charts/UserChart.ts
|
||||||
msgid "Application authorizations"
|
msgid "Application authorizations"
|
||||||
msgstr "Autorizaciones de solicitudes"
|
msgstr "Autorizaciones de solicitudes"
|
||||||
|
@ -395,11 +413,25 @@ msgstr "Autorizaciones de solicitudes"
|
||||||
msgid "Application authorized"
|
msgid "Application authorized"
|
||||||
msgstr "Solicitud autorizada"
|
msgstr "Solicitud autorizada"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
|
msgid "Application details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/flows/stages/consent/ConsentStage.ts
|
||||||
|
msgid "Application requires following new permissions:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/flows/stages/consent/ConsentStage.ts
|
#: src/flows/stages/consent/ConsentStage.ts
|
||||||
msgid "Application requires following permissions:"
|
msgid "Application requires following permissions:"
|
||||||
msgstr "La aplicación requiere los siguientes permisos:"
|
msgstr "La aplicación requiere los siguientes permisos:"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Application type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
msgid "Application's display Name."
|
msgid "Application's display Name."
|
||||||
msgstr "Nombre para mostrar de la aplicación."
|
msgstr "Nombre para mostrar de la aplicación."
|
||||||
|
|
||||||
|
@ -414,6 +446,18 @@ msgstr "Solicitud (s)"
|
||||||
msgid "Applications"
|
msgid "Applications"
|
||||||
msgstr "Aplicaciones"
|
msgstr "Aplicaciones"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Applications which handle the authentication server-side (for example, Python, Go, Rust, Java, PHP)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Applications which redirect users to a non-web callback (for example, Android, iOS)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/elements/wizard/ActionWizardPage.ts
|
||||||
|
msgid "Apply changes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/admin-overview/AdminOverviewPage.ts
|
#: src/pages/admin-overview/AdminOverviewPage.ts
|
||||||
msgid "Apps with most usage"
|
msgid "Apps with most usage"
|
||||||
msgstr "Aplicaciones con mayor uso"
|
msgstr "Aplicaciones con mayor uso"
|
||||||
|
@ -531,6 +575,14 @@ msgstr "URL de autenticación"
|
||||||
msgid "Authentication flow"
|
msgid "Authentication flow"
|
||||||
msgstr "Flujo de autenticación"
|
msgstr "Flujo de autenticación"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "Authentication method"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Authentication without user interaction, or machine-to-machine authentication."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/flows/stages/authenticator_validate/AuthenticatorValidateStage.ts
|
#: src/flows/stages/authenticator_validate/AuthenticatorValidateStage.ts
|
||||||
msgid "Authenticator"
|
msgid "Authenticator"
|
||||||
msgstr "Autenticador"
|
msgstr "Autenticador"
|
||||||
|
@ -555,6 +607,7 @@ msgstr "Autorización"
|
||||||
msgid "Authorization URL"
|
msgid "Authorization URL"
|
||||||
msgstr "URL de autorización"
|
msgstr "URL de autorización"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
#: src/pages/providers/oauth2/OAuth2ProviderForm.ts
|
#: src/pages/providers/oauth2/OAuth2ProviderForm.ts
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
#: src/pages/providers/saml/SAMLProviderForm.ts
|
#: src/pages/providers/saml/SAMLProviderForm.ts
|
||||||
|
@ -616,6 +669,7 @@ msgstr "Se muestra el fondo durante la ejecución."
|
||||||
#~ msgid "Backup status"
|
#~ msgid "Backup status"
|
||||||
#~ msgstr "Estado de respaldo"
|
#~ msgstr "Estado de respaldo"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/ldap/TypeLDAPApplicationWizardPage.ts
|
||||||
#: src/pages/providers/ldap/LDAPProviderForm.ts
|
#: src/pages/providers/ldap/LDAPProviderForm.ts
|
||||||
#: src/pages/providers/ldap/LDAPProviderViewPage.ts
|
#: src/pages/providers/ldap/LDAPProviderViewPage.ts
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
|
@ -710,6 +764,10 @@ msgstr "Compilar hash:"
|
||||||
msgid "Built-in"
|
msgid "Built-in"
|
||||||
msgstr "Incorporado"
|
msgstr "Incorporado"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthAPIApplicationWizardPage.ts
|
||||||
|
msgid "By default, all service accounts can authenticate as this application, as long as they have a valid token of the type app-password."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/identification/IdentificationStageForm.ts
|
#: src/pages/stages/identification/IdentificationStageForm.ts
|
||||||
msgid "By default, only icons are shown for sources. Enable this to show their full names."
|
msgid "By default, only icons are shown for sources. Enable this to show their full names."
|
||||||
msgstr "De forma predeterminada, solo se muestran los iconos de las fuentes. Actívela para mostrar sus nombres completos."
|
msgstr "De forma predeterminada, solo se muestran los iconos de las fuentes. Actívela para mostrar sus nombres completos."
|
||||||
|
@ -1203,6 +1261,7 @@ msgstr "Enlace de recuperación de copia"
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationListPage.ts
|
#: src/pages/applications/ApplicationListPage.ts
|
||||||
#: src/pages/applications/ApplicationListPage.ts
|
#: src/pages/applications/ApplicationListPage.ts
|
||||||
|
#: src/pages/applications/wizard/ApplicationWizard.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
#: src/pages/events/RuleListPage.ts
|
#: src/pages/events/RuleListPage.ts
|
||||||
|
@ -1341,6 +1400,10 @@ msgstr "Crear usuario"
|
||||||
msgid "Create a new application"
|
msgid "Create a new application"
|
||||||
msgstr "Crea una nueva aplicación"
|
msgstr "Crea una nueva aplicación"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/ApplicationWizard.ts
|
||||||
|
msgid "Create a new application."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/outposts/ServiceConnectionWizard.ts
|
#: src/pages/outposts/ServiceConnectionWizard.ts
|
||||||
msgid "Create a new outpost integration."
|
msgid "Create a new outpost integration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1365,14 +1428,27 @@ msgstr ""
|
||||||
msgid "Create a new stage."
|
msgid "Create a new stage."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
|
msgid "Create application"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/users/ServiceAccountForm.ts
|
#: src/pages/users/ServiceAccountForm.ts
|
||||||
msgid "Create group"
|
msgid "Create group"
|
||||||
msgstr "Crear grupo"
|
msgstr "Crear grupo"
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/ldap/TypeLDAPApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/proxy/TypeProxyApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLConfigApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLImportApplicationWizardPage.ts
|
||||||
msgid "Create provider"
|
msgid "Create provider"
|
||||||
msgstr "Crear proveedor"
|
msgstr "Crear proveedor"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/ldap/TypeLDAPApplicationWizardPage.ts
|
||||||
|
msgid "Create service account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
||||||
msgid "Create users as inactive"
|
msgid "Create users as inactive"
|
||||||
msgstr "Crear usuarios como inactivos"
|
msgstr "Crear usuarios como inactivos"
|
||||||
|
@ -1548,6 +1624,7 @@ msgid "Deprecated. Instead of using this field, configure the JWKS data/URL in S
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
#: src/pages/property-mappings/PropertyMappingScopeForm.ts
|
#: src/pages/property-mappings/PropertyMappingScopeForm.ts
|
||||||
#: src/pages/system-tasks/SystemTaskListPage.ts
|
#: src/pages/system-tasks/SystemTaskListPage.ts
|
||||||
#: src/pages/tokens/TokenForm.ts
|
#: src/pages/tokens/TokenForm.ts
|
||||||
|
@ -2047,6 +2124,14 @@ msgstr "Aplicaciones externas que usan authentik como proveedor de identidad, ut
|
||||||
msgid "External Host"
|
msgid "External Host"
|
||||||
msgstr "Anfitrión externo"
|
msgstr "Anfitrión externo"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/proxy/TypeProxyApplicationWizardPage.ts
|
||||||
|
msgid "External domain"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/proxy/TypeProxyApplicationWizardPage.ts
|
||||||
|
msgid "External domain you will be accessing the domain from."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
msgid "External host"
|
msgid "External host"
|
||||||
|
@ -2219,6 +2304,10 @@ msgstr "Flujo utilizado para cerrar sesión. Si se deja vacío, se usa el primer
|
||||||
msgid "Flow used when authorizing this provider."
|
msgid "Flow used when authorizing this provider."
|
||||||
msgstr "Flujo utilizado al autorizar a este proveedor."
|
msgstr "Flujo utilizado al autorizar a este proveedor."
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
|
msgid "Flow used when users access this application."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/flows/FlowListPage.ts
|
#: src/pages/flows/FlowListPage.ts
|
||||||
msgid "Flow(s)"
|
msgid "Flow(s)"
|
||||||
msgstr "Flujo (s)"
|
msgstr "Flujo (s)"
|
||||||
|
@ -2453,7 +2542,6 @@ msgid "Hide managed mappings"
|
||||||
msgstr "Ocultar asignaciones administradas"
|
msgstr "Ocultar asignaciones administradas"
|
||||||
|
|
||||||
#: src/pages/users/RelatedUserList.ts
|
#: src/pages/users/RelatedUserList.ts
|
||||||
#: src/pages/users/UserListPage.ts
|
|
||||||
msgid "Hide service-accounts"
|
msgid "Hide service-accounts"
|
||||||
msgstr "Ocultar cuentas de servicio"
|
msgstr "Ocultar cuentas de servicio"
|
||||||
|
|
||||||
|
@ -2615,10 +2703,22 @@ msgstr "Importación"
|
||||||
msgid "Import Flow"
|
msgid "Import Flow"
|
||||||
msgstr "Flujo de importación"
|
msgstr "Flujo de importación"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Import SAML Metadata"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLImportApplicationWizardPage.ts
|
||||||
|
msgid "Import SAML metadata"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
msgid "Import certificates of external providers or create certificates to sign requests with."
|
msgid "Import certificates of external providers or create certificates to sign requests with."
|
||||||
msgstr "Importe certificados de proveedores externos o cree certificados para firmar solicitudes con ellos."
|
msgstr "Importe certificados de proveedores externos o cree certificados para firmar solicitudes con ellos."
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Import the metadata document of the applicaation you want to configure."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/flows/stages/authenticator_validate/AuthenticatorValidateStage.ts
|
#: src/flows/stages/authenticator_validate/AuthenticatorValidateStage.ts
|
||||||
msgid "In case you can't access any other method."
|
msgid "In case you can't access any other method."
|
||||||
msgstr "En caso de que no puedas acceder a ningún otro método."
|
msgstr "En caso de que no puedas acceder a ningún otro método."
|
||||||
|
@ -2763,6 +2863,7 @@ msgstr "Keypair que se usa para firmar solicitudes salientes. Déjelo vacío par
|
||||||
msgid "Kubeconfig"
|
msgid "Kubeconfig"
|
||||||
msgstr "Configuración de Kube"
|
msgstr "Configuración de Kube"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
#: src/pages/outposts/OutpostForm.ts
|
#: src/pages/outposts/OutpostForm.ts
|
||||||
#: src/pages/outposts/OutpostListPage.ts
|
#: src/pages/outposts/OutpostListPage.ts
|
||||||
msgid "LDAP"
|
msgid "LDAP"
|
||||||
|
@ -2784,9 +2885,9 @@ msgstr "DN de LDAP con el que se pueden realizar solicitudes de enlace y solicit
|
||||||
msgid "LDAP Sync status"
|
msgid "LDAP Sync status"
|
||||||
msgstr "Estado de sincronización de LDAP"
|
msgstr "Estado de sincronización de LDAP"
|
||||||
|
|
||||||
#: src/pages/providers/ProviderWizard.ts
|
#: src/pages/applications/wizard/ldap/TypeLDAPApplicationWizardPage.ts
|
||||||
#~ msgid "LDAP details"
|
msgid "LDAP details"
|
||||||
#~ msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/prompt/PromptForm.ts
|
#: src/pages/stages/prompt/PromptForm.ts
|
||||||
#: src/pages/stages/prompt/PromptListPage.ts
|
#: src/pages/stages/prompt/PromptListPage.ts
|
||||||
|
@ -2839,6 +2940,10 @@ msgstr "URL de lanzamiento"
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "Legacy applications which don't natively support SSO."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/identification/IdentificationStageForm.ts
|
#: src/pages/stages/identification/IdentificationStageForm.ts
|
||||||
msgid "Let the user identify themselves with their username or Email address."
|
msgid "Let the user identify themselves with their username or Email address."
|
||||||
msgstr "Permite que el usuario se identifique con su nombre de usuario o dirección de correo electrónico."
|
msgstr "Permite que el usuario se identifique con su nombre de usuario o dirección de correo electrónico."
|
||||||
|
@ -2846,6 +2951,11 @@ msgstr "Permite que el usuario se identifique con su nombre de usuario o direcci
|
||||||
#~ msgid "Library"
|
#~ msgid "Library"
|
||||||
#~ msgstr "Biblioteca"
|
#~ msgstr "Biblioteca"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/link/TypeLinkApplicationWizardPage.ts
|
||||||
|
msgid "Link"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
#: src/pages/sources/plex/PlexSourceForm.ts
|
#: src/pages/sources/plex/PlexSourceForm.ts
|
||||||
msgid "Link to a user with identical email address. Can have security implications when a source doesn't validate email addresses"
|
msgid "Link to a user with identical email address. Can have security implications when a source doesn't validate email addresses"
|
||||||
|
@ -2904,6 +3014,7 @@ msgstr "Cargando"
|
||||||
#: src/elements/Spinner.ts
|
#: src/elements/Spinner.ts
|
||||||
#: src/pages/applications/ApplicationCheckAccessForm.ts
|
#: src/pages/applications/ApplicationCheckAccessForm.ts
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
#: src/pages/events/RuleForm.ts
|
#: src/pages/events/RuleForm.ts
|
||||||
#: src/pages/events/RuleForm.ts
|
#: src/pages/events/RuleForm.ts
|
||||||
#: src/pages/events/TransportForm.ts
|
#: src/pages/events/TransportForm.ts
|
||||||
|
@ -2939,7 +3050,6 @@ msgstr "Cargando"
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
|
||||||
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
#: src/pages/sources/plex/PlexSourceForm.ts
|
#: src/pages/sources/plex/PlexSourceForm.ts
|
||||||
|
@ -2964,7 +3074,6 @@ msgstr "Cargando"
|
||||||
#: src/pages/stages/password/PasswordStageForm.ts
|
#: src/pages/stages/password/PasswordStageForm.ts
|
||||||
#: src/pages/stages/prompt/PromptStageForm.ts
|
#: src/pages/stages/prompt/PromptStageForm.ts
|
||||||
#: src/pages/stages/prompt/PromptStageForm.ts
|
#: src/pages/stages/prompt/PromptStageForm.ts
|
||||||
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
|
||||||
#: src/pages/tenants/TenantForm.ts
|
#: src/pages/tenants/TenantForm.ts
|
||||||
#: src/pages/tenants/TenantForm.ts
|
#: src/pages/tenants/TenantForm.ts
|
||||||
#: src/pages/tenants/TenantForm.ts
|
#: src/pages/tenants/TenantForm.ts
|
||||||
|
@ -3069,6 +3178,14 @@ msgstr "Administrado por authentik"
|
||||||
msgid "Managed by authentik (Discovered)"
|
msgid "Managed by authentik (Discovered)"
|
||||||
msgstr "Administrado por authentik (descubierto)"
|
msgstr "Administrado por authentik (descubierto)"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Manual configuration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Manually configure SAML"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
||||||
msgid "Mark newly created users as inactive."
|
msgid "Mark newly created users as inactive."
|
||||||
msgstr "Marque los usuarios recién creados como inactivos."
|
msgstr "Marque los usuarios recién creados como inactivos."
|
||||||
|
@ -3114,11 +3231,18 @@ msgstr "Mensaje"
|
||||||
msgid "Messages"
|
msgid "Messages"
|
||||||
msgstr "Mensajes"
|
msgstr "Mensajes"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLImportApplicationWizardPage.ts
|
||||||
#: src/pages/providers/saml/SAMLProviderImportForm.ts
|
#: src/pages/providers/saml/SAMLProviderImportForm.ts
|
||||||
#: src/pages/sources/saml/SAMLSourceViewPage.ts
|
#: src/pages/sources/saml/SAMLSourceViewPage.ts
|
||||||
msgid "Metadata"
|
msgid "Metadata"
|
||||||
msgstr "Metadatos"
|
msgstr "Metadatos"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthAPIApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthImplicitApplicationWizardPage.ts
|
||||||
|
msgid "Method details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/policies/password/PasswordPolicyForm.ts
|
#: src/pages/policies/password/PasswordPolicyForm.ts
|
||||||
msgid "Minimum amount of Digits"
|
msgid "Minimum amount of Digits"
|
||||||
msgstr "Cantidad mínima de dígitos"
|
msgstr "Cantidad mínima de dígitos"
|
||||||
|
@ -3162,6 +3286,10 @@ msgstr "Modelo eliminado"
|
||||||
msgid "Model updated"
|
msgid "Model updated"
|
||||||
msgstr "Modelo actualizado"
|
msgstr "Modelo actualizado"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "Modern applications, APIs and Single-page applications."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#~ msgid "Monitor"
|
#~ msgid "Monitor"
|
||||||
#~ msgstr "Monitor"
|
#~ msgstr "Monitor"
|
||||||
|
|
||||||
|
@ -3176,6 +3304,7 @@ msgstr "Mis solicitudes"
|
||||||
#: src/elements/forms/DeleteBulkForm.ts
|
#: src/elements/forms/DeleteBulkForm.ts
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
#: src/pages/applications/ApplicationListPage.ts
|
#: src/pages/applications/ApplicationListPage.ts
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairForm.ts
|
#: src/pages/crypto/CertificateKeyPairForm.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
|
@ -3273,6 +3402,10 @@ msgstr "Política de NameID"
|
||||||
msgid "NameID Property Mapping"
|
msgid "NameID Property Mapping"
|
||||||
msgstr "Asignación de propiedades NameID"
|
msgstr "Asignación de propiedades NameID"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Native application"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/flows/stages/identification/IdentificationStage.ts
|
#: src/flows/stages/identification/IdentificationStage.ts
|
||||||
msgid "Need an account?"
|
msgid "Need an account?"
|
||||||
msgstr "¿Necesitas una cuenta?"
|
msgstr "¿Necesitas una cuenta?"
|
||||||
|
@ -3285,6 +3418,10 @@ msgstr "Negar el resultado"
|
||||||
msgid "Negates the outcome of the binding. Messages are unaffected."
|
msgid "Negates the outcome of the binding. Messages are unaffected."
|
||||||
msgstr "Niega el resultado de la unión. Los mensajes no se ven afectados."
|
msgstr "Niega el resultado de la unión. Los mensajes no se ven afectados."
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/ApplicationWizard.ts
|
||||||
|
msgid "New application"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/outposts/ServiceConnectionWizard.ts
|
#: src/pages/outposts/ServiceConnectionWizard.ts
|
||||||
msgid "New outpost integration"
|
msgid "New outpost integration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3540,6 +3677,10 @@ msgstr "Códigos de actualización de OAuth"
|
||||||
#~ msgid "OAuth/OIDC"
|
#~ msgid "OAuth/OIDC"
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "OAuth2/OIDC"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
msgid "OIDC JWKS"
|
msgid "OIDC JWKS"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3813,6 +3954,21 @@ msgstr "Contraseña: entrada enmascarada, la contraseña se valida contra las fu
|
||||||
msgid "Passwordless flow"
|
msgid "Passwordless flow"
|
||||||
msgstr "Flujo sin contraseña"
|
msgstr "Flujo sin contraseña"
|
||||||
|
|
||||||
|
#: src/pages/users/UserForm.ts
|
||||||
|
msgid "Path"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
||||||
|
msgid "Path new users will be created under. If left blank, the default path will be used.fo"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
|
#: src/pages/sources/plex/PlexSourceForm.ts
|
||||||
|
#: src/pages/sources/saml/SAMLSourceForm.ts
|
||||||
|
msgid "Path template for users created. Use placeholders like `%(slug)s` to insert the source slug."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/saml/SAMLSourceForm.ts
|
#: src/pages/sources/saml/SAMLSourceForm.ts
|
||||||
msgid "Persistent"
|
msgid "Persistent"
|
||||||
msgstr "persistente"
|
msgstr "persistente"
|
||||||
|
@ -4021,6 +4177,11 @@ msgstr "Configuración de protocolo"
|
||||||
msgid "Protocol settings"
|
msgid "Protocol settings"
|
||||||
msgstr "Configuración del protocolo"
|
msgstr "Configuración del protocolo"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "Provide an LDAP interface for applications and users to authenticate against."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/ProviderListPage.ts
|
#: src/pages/providers/ProviderListPage.ts
|
||||||
msgid "Provide support for protocols like SAML and OAuth to assigned applications."
|
msgid "Provide support for protocols like SAML and OAuth to assigned applications."
|
||||||
msgstr "Proporcionar soporte para protocolos como SAML y OAuth a las aplicaciones asignadas."
|
msgstr "Proporcionar soporte para protocolos como SAML y OAuth a las aplicaciones asignadas."
|
||||||
|
@ -4051,6 +4212,7 @@ msgstr "Proveedor (s)"
|
||||||
msgid "Providers"
|
msgid "Providers"
|
||||||
msgstr "Proveedores"
|
msgstr "Proveedores"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
#: src/pages/outposts/OutpostForm.ts
|
#: src/pages/outposts/OutpostForm.ts
|
||||||
#: src/pages/outposts/OutpostListPage.ts
|
#: src/pages/outposts/OutpostListPage.ts
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
|
@ -4058,9 +4220,9 @@ msgstr "Proveedores"
|
||||||
msgid "Proxy"
|
msgid "Proxy"
|
||||||
msgstr "Proxy"
|
msgstr "Proxy"
|
||||||
|
|
||||||
#: src/pages/providers/ProviderWizard.ts
|
#: src/pages/applications/wizard/proxy/TypeProxyApplicationWizardPage.ts
|
||||||
#~ msgid "Proxy details"
|
msgid "Proxy details"
|
||||||
#~ msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/oauth2/OAuth2ProviderForm.ts
|
#: src/pages/providers/oauth2/OAuth2ProviderForm.ts
|
||||||
msgid "Public"
|
msgid "Public"
|
||||||
|
@ -4075,6 +4237,7 @@ msgid "Public key, acquired from https://www.google.com/recaptcha/intro/v3.html.
|
||||||
msgstr "Clave pública, adquirida en https://www.google.com/recaptcha/intro/v3.html."
|
msgstr "Clave pública, adquirida en https://www.google.com/recaptcha/intro/v3.html."
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr "Editorial"
|
msgstr "Editorial"
|
||||||
|
|
||||||
|
@ -4327,13 +4490,17 @@ msgstr "Regresar al selector de dispositivos"
|
||||||
msgid "Revoked?"
|
msgid "Revoked?"
|
||||||
msgstr "¿Revocado?"
|
msgstr "¿Revocado?"
|
||||||
|
|
||||||
|
#: src/elements/TreeView.ts
|
||||||
|
msgid "Root"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/ldap/LDAPSourceViewPage.ts
|
#: src/pages/sources/ldap/LDAPSourceViewPage.ts
|
||||||
msgid "Run sync again"
|
msgid "Run sync again"
|
||||||
msgstr "Vuelve a ejecutar la sincronización"
|
msgstr "Vuelve a ejecutar la sincronización"
|
||||||
|
|
||||||
#: src/pages/providers/ProviderWizard.ts
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
#~ msgid "SAML"
|
msgid "SAML"
|
||||||
#~ msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/ProviderWizard.ts
|
#: src/pages/providers/ProviderWizard.ts
|
||||||
#~ msgid "SAML (metadata import)"
|
#~ msgid "SAML (metadata import)"
|
||||||
|
@ -4347,9 +4514,9 @@ msgstr "Nombre de atributo SAML"
|
||||||
msgid "SAML Metadata"
|
msgid "SAML Metadata"
|
||||||
msgstr "Metadatos SAML"
|
msgstr "Metadatos SAML"
|
||||||
|
|
||||||
#: src/pages/providers/ProviderWizard.ts
|
#: src/pages/applications/wizard/saml/TypeSAMLConfigApplicationWizardPage.ts
|
||||||
#~ msgid "SAML details"
|
msgid "SAML details"
|
||||||
#~ msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/ProviderWizard.ts
|
#: src/pages/providers/ProviderWizard.ts
|
||||||
#~ msgid "SAML details (import from metadata)"
|
#~ msgid "SAML details (import from metadata)"
|
||||||
|
@ -4750,6 +4917,14 @@ msgstr "Indicaciones únicas que se pueden utilizar para las etapas de selecció
|
||||||
msgid "Single use"
|
msgid "Single use"
|
||||||
msgstr "De un solo uso"
|
msgstr "De un solo uso"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Single-page applications"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Single-page applications which handle authentication in the browser (for example, Javascript, Angular, React, Vue)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#~ msgid "Skip path regex"
|
#~ msgid "Skip path regex"
|
||||||
#~ msgstr "Omitir expresión regular de ruta"
|
#~ msgstr "Omitir expresión regular de ruta"
|
||||||
|
|
||||||
|
@ -5473,6 +5648,10 @@ msgstr ""
|
||||||
msgid "The following objects use {objName}"
|
msgid "The following objects use {objName}"
|
||||||
msgstr "Los siguientes objetos usan {objName}"
|
msgstr "Los siguientes objetos usan {objName}"
|
||||||
|
|
||||||
|
#: src/pages/providers/ProviderWizard.ts
|
||||||
|
msgid "The new application wizard greatly simplifies the steps required to create applications and providers."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#~ msgid ""
|
#~ msgid ""
|
||||||
#~ "The policy passes when the reputation score is above the threshold, and\n"
|
#~ "The policy passes when the reputation score is above the threshold, and\n"
|
||||||
#~ "doesn't pass when either or both of the selected options are equal or less than the\n"
|
#~ "doesn't pass when either or both of the selected options are equal or less than the\n"
|
||||||
|
@ -5534,6 +5713,10 @@ msgstr ""
|
||||||
msgid "These policies control which users can access this application."
|
msgid "These policies control which users can access this application."
|
||||||
msgstr "Estas políticas controlan qué usuarios pueden acceder a esta aplicación."
|
msgstr "Estas políticas controlan qué usuarios pueden acceder a esta aplicación."
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthAPIApplicationWizardPage.ts
|
||||||
|
msgid "This configuration can be used to authenticate to authentik with other APIs other otherwise programmatically."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/flows/FlowInspector.ts
|
#: src/flows/FlowInspector.ts
|
||||||
msgid "This flow is completed."
|
msgid "This flow is completed."
|
||||||
msgstr "Este flujo se ha completado."
|
msgstr "Este flujo se ha completado."
|
||||||
|
@ -5718,6 +5901,14 @@ msgstr "Transportes"
|
||||||
msgid "Trusted OIDC Sources"
|
msgid "Trusted OIDC Sources"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/providers/ProviderWizard.ts
|
||||||
|
msgid "Try it now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/providers/ProviderWizard.ts
|
||||||
|
msgid "Try the new application wizard"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/interfaces/locale.ts
|
#: src/interfaces/locale.ts
|
||||||
msgid "Turkish"
|
msgid "Turkish"
|
||||||
msgstr "turco"
|
msgstr "turco"
|
||||||
|
@ -5771,6 +5962,10 @@ msgstr "UPN"
|
||||||
msgid "URL settings"
|
msgid "URL settings"
|
||||||
msgstr "Configuración de URL"
|
msgstr "Configuración de URL"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLConfigApplicationWizardPage.ts
|
||||||
|
msgid "URL that authentik will redirect back to after successful authentication."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/saml/SAMLSourceForm.ts
|
#: src/pages/sources/saml/SAMLSourceForm.ts
|
||||||
msgid "URL that the initial Login request is sent to."
|
msgid "URL that the initial Login request is sent to."
|
||||||
msgstr "URL a la que se envía la solicitud de inicio de sesión inicial."
|
msgstr "URL a la que se envía la solicitud de inicio de sesión inicial."
|
||||||
|
@ -5791,6 +5986,10 @@ msgstr "URL utilizada por authentik para recuperar tokens."
|
||||||
msgid "URL used to request the initial token. This URL is only required for OAuth 1."
|
msgid "URL used to request the initial token. This URL is only required for OAuth 1."
|
||||||
msgstr "URL utilizada para solicitar el token inicial. Esta URL solo es necesaria para OAuth 1."
|
msgstr "URL utilizada para solicitar el token inicial. Esta URL solo es necesaria para OAuth 1."
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/link/TypeLinkApplicationWizardPage.ts
|
||||||
|
msgid "URL which will be opened when a user clicks on the application."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
msgid "Unauthenticated Paths"
|
msgid "Unauthenticated Paths"
|
||||||
msgstr "Rutas no autenticadas"
|
msgstr "Rutas no autenticadas"
|
||||||
|
@ -6130,6 +6329,10 @@ msgstr "Eventos del usuario"
|
||||||
msgid "User fields"
|
msgid "User fields"
|
||||||
msgstr "Campos de usuario"
|
msgstr "Campos de usuario"
|
||||||
|
|
||||||
|
#: src/pages/users/UserListPage.ts
|
||||||
|
msgid "User folders"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/interfaces/AdminInterface.ts
|
#: src/interfaces/AdminInterface.ts
|
||||||
msgid "User interface"
|
msgid "User interface"
|
||||||
msgstr "Interfaz de usuario"
|
msgstr "Interfaz de usuario"
|
||||||
|
@ -6154,6 +6357,17 @@ msgstr "Filtro de objetos de usuario"
|
||||||
msgid "User password writeback"
|
msgid "User password writeback"
|
||||||
msgstr "Reescritura de contraseña de usuario"
|
msgstr "Reescritura de contraseña de usuario"
|
||||||
|
|
||||||
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
|
#: src/pages/sources/plex/PlexSourceForm.ts
|
||||||
|
#: src/pages/sources/saml/SAMLSourceForm.ts
|
||||||
|
msgid "User path"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
||||||
|
msgid "User path template"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/tenants/TenantForm.ts
|
#: src/pages/tenants/TenantForm.ts
|
||||||
msgid "User settings flow"
|
msgid "User settings flow"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -6389,6 +6603,10 @@ msgstr "Advertencia: el dominio authentik no está configurado, la autenticació
|
||||||
msgid "Web Certificate"
|
msgid "Web Certificate"
|
||||||
msgstr "Certificado web"
|
msgstr "Certificado web"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Web application"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/authenticator_validate/AuthenticatorValidateStageForm.ts
|
#: src/pages/stages/authenticator_validate/AuthenticatorValidateStageForm.ts
|
||||||
msgid "WebAuthn Authenticators"
|
msgid "WebAuthn Authenticators"
|
||||||
msgstr "Autenticadores WebAuthn"
|
msgstr "Autenticadores WebAuthn"
|
||||||
|
@ -6509,6 +6727,10 @@ msgstr ""
|
||||||
msgid "X509 Subject"
|
msgid "X509 Subject"
|
||||||
msgstr "Asunto X509"
|
msgstr "Asunto X509"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "XML-based SSO standard. Use this if your application only supports SAML."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/elements/oauth/UserRefreshList.ts
|
#: src/elements/oauth/UserRefreshList.ts
|
||||||
#: src/pages/applications/ApplicationCheckAccessForm.ts
|
#: src/pages/applications/ApplicationCheckAccessForm.ts
|
||||||
#: src/pages/groups/GroupListPage.ts
|
#: src/pages/groups/GroupListPage.ts
|
||||||
|
|
|
@ -93,6 +93,7 @@ msgstr ""
|
||||||
msgid "A policy used for testing. Always returns the same result as specified below after waiting a random duration."
|
msgid "A policy used for testing. Always returns the same result as specified below after waiting a random duration."
|
||||||
msgstr "Une politique utilisée pour les tests. Retourne toujours la même valeur telle qu'indiquée ci-dessous après une attente aléatoire."
|
msgstr "Une politique utilisée pour les tests. Retourne toujours la même valeur telle qu'indiquée ci-dessous après une attente aléatoire."
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLConfigApplicationWizardPage.ts
|
||||||
#: src/pages/providers/saml/SAMLProviderForm.ts
|
#: src/pages/providers/saml/SAMLProviderForm.ts
|
||||||
#: src/pages/providers/saml/SAMLProviderViewPage.ts
|
#: src/pages/providers/saml/SAMLProviderViewPage.ts
|
||||||
msgid "ACS URL"
|
msgid "ACS URL"
|
||||||
|
@ -116,6 +117,10 @@ msgstr "ANY, n'importe laquelle des politiques doit être vérifiée pour accord
|
||||||
msgid "ANY, any policy must match to include this stage access."
|
msgid "ANY, any policy must match to include this stage access."
|
||||||
msgstr "ANY, n'importe laquelle des politiques doit être vérifiée pour inclure l'accès à cette étape."
|
msgstr "ANY, n'importe laquelle des politiques doit être vérifiée pour inclure l'accès à cette étape."
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "API"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/tokens/TokenListPage.ts
|
#: src/pages/tokens/TokenListPage.ts
|
||||||
msgid "API Access"
|
msgid "API Access"
|
||||||
msgstr "Accès à l'API"
|
msgstr "Accès à l'API"
|
||||||
|
@ -260,6 +265,10 @@ msgstr "Préfixe DN utilisateurs"
|
||||||
msgid "Additional Scope"
|
msgid "Additional Scope"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
|
msgid "Additional UI settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
msgid "Additional group DN, prepended to the Base DN."
|
msgid "Additional group DN, prepended to the Base DN."
|
||||||
msgstr "DN à préfixer au DN de base pour les groupes"
|
msgstr "DN à préfixer au DN de base pour les groupes"
|
||||||
|
@ -381,6 +390,7 @@ msgid "App password (can be used to login using a flow executor)"
|
||||||
msgstr "Mot de passe de l'App (peut être utilisé pour ouvrir une session en utilisant un flux d'exécution)"
|
msgstr "Mot de passe de l'App (peut être utilisé pour ouvrir une session en utilisant un flux d'exécution)"
|
||||||
|
|
||||||
#: src/elements/user/UserConsentList.ts
|
#: src/elements/user/UserConsentList.ts
|
||||||
|
#: src/flows/stages/consent/ConsentStage.ts
|
||||||
#: src/pages/admin-overview/TopApplicationsTable.ts
|
#: src/pages/admin-overview/TopApplicationsTable.ts
|
||||||
#: src/pages/providers/ProviderListPage.ts
|
#: src/pages/providers/ProviderListPage.ts
|
||||||
msgid "Application"
|
msgid "Application"
|
||||||
|
@ -391,6 +401,14 @@ msgstr "Application"
|
||||||
msgid "Application Icon"
|
msgid "Application Icon"
|
||||||
msgstr "Icône d'application"
|
msgstr "Icône d'application"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/link/TypeLinkApplicationWizardPage.ts
|
||||||
|
msgid "Application Link"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/flows/stages/consent/ConsentStage.ts
|
||||||
|
msgid "Application already has access to the following permissions:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/elements/charts/UserChart.ts
|
#: src/elements/charts/UserChart.ts
|
||||||
msgid "Application authorizations"
|
msgid "Application authorizations"
|
||||||
msgstr "Autorisations de l'application"
|
msgstr "Autorisations de l'application"
|
||||||
|
@ -399,11 +417,25 @@ msgstr "Autorisations de l'application"
|
||||||
msgid "Application authorized"
|
msgid "Application authorized"
|
||||||
msgstr "Application autorisé"
|
msgstr "Application autorisé"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
|
msgid "Application details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/flows/stages/consent/ConsentStage.ts
|
||||||
|
msgid "Application requires following new permissions:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/flows/stages/consent/ConsentStage.ts
|
#: src/flows/stages/consent/ConsentStage.ts
|
||||||
msgid "Application requires following permissions:"
|
msgid "Application requires following permissions:"
|
||||||
msgstr "Cette application requiert les permissions suivantes :"
|
msgstr "Cette application requiert les permissions suivantes :"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Application type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
msgid "Application's display Name."
|
msgid "Application's display Name."
|
||||||
msgstr "Nom d'affichage de l'application"
|
msgstr "Nom d'affichage de l'application"
|
||||||
|
|
||||||
|
@ -418,6 +450,18 @@ msgstr "Application(s)"
|
||||||
msgid "Applications"
|
msgid "Applications"
|
||||||
msgstr "Applications"
|
msgstr "Applications"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Applications which handle the authentication server-side (for example, Python, Go, Rust, Java, PHP)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Applications which redirect users to a non-web callback (for example, Android, iOS)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/elements/wizard/ActionWizardPage.ts
|
||||||
|
msgid "Apply changes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/admin-overview/AdminOverviewPage.ts
|
#: src/pages/admin-overview/AdminOverviewPage.ts
|
||||||
msgid "Apps with most usage"
|
msgid "Apps with most usage"
|
||||||
msgstr "Apps les plus utilisées"
|
msgstr "Apps les plus utilisées"
|
||||||
|
@ -537,6 +581,14 @@ msgstr ""
|
||||||
msgid "Authentication flow"
|
msgid "Authentication flow"
|
||||||
msgstr "Flux d'authentification"
|
msgstr "Flux d'authentification"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "Authentication method"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Authentication without user interaction, or machine-to-machine authentication."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/flows/stages/authenticator_validate/AuthenticatorValidateStage.ts
|
#: src/flows/stages/authenticator_validate/AuthenticatorValidateStage.ts
|
||||||
msgid "Authenticator"
|
msgid "Authenticator"
|
||||||
msgstr "Authentificateur"
|
msgstr "Authentificateur"
|
||||||
|
@ -561,6 +613,7 @@ msgstr "Authorisation"
|
||||||
msgid "Authorization URL"
|
msgid "Authorization URL"
|
||||||
msgstr "URL d'autorisation"
|
msgstr "URL d'autorisation"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
#: src/pages/providers/oauth2/OAuth2ProviderForm.ts
|
#: src/pages/providers/oauth2/OAuth2ProviderForm.ts
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
#: src/pages/providers/saml/SAMLProviderForm.ts
|
#: src/pages/providers/saml/SAMLProviderForm.ts
|
||||||
|
@ -622,6 +675,7 @@ msgstr "Arrière-plan utilisé durant l'exécution."
|
||||||
#~ msgid "Backup status"
|
#~ msgid "Backup status"
|
||||||
#~ msgstr "État de la sauvegarde"
|
#~ msgstr "État de la sauvegarde"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/ldap/TypeLDAPApplicationWizardPage.ts
|
||||||
#: src/pages/providers/ldap/LDAPProviderForm.ts
|
#: src/pages/providers/ldap/LDAPProviderForm.ts
|
||||||
#: src/pages/providers/ldap/LDAPProviderViewPage.ts
|
#: src/pages/providers/ldap/LDAPProviderViewPage.ts
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
|
@ -716,6 +770,10 @@ msgstr "Hash de build :"
|
||||||
msgid "Built-in"
|
msgid "Built-in"
|
||||||
msgstr "Intégré"
|
msgstr "Intégré"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthAPIApplicationWizardPage.ts
|
||||||
|
msgid "By default, all service accounts can authenticate as this application, as long as they have a valid token of the type app-password."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/identification/IdentificationStageForm.ts
|
#: src/pages/stages/identification/IdentificationStageForm.ts
|
||||||
msgid "By default, only icons are shown for sources. Enable this to show their full names."
|
msgid "By default, only icons are shown for sources. Enable this to show their full names."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1215,6 +1273,7 @@ msgstr "Copier le lien de récupération"
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationListPage.ts
|
#: src/pages/applications/ApplicationListPage.ts
|
||||||
#: src/pages/applications/ApplicationListPage.ts
|
#: src/pages/applications/ApplicationListPage.ts
|
||||||
|
#: src/pages/applications/wizard/ApplicationWizard.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
#: src/pages/events/RuleListPage.ts
|
#: src/pages/events/RuleListPage.ts
|
||||||
|
@ -1353,6 +1412,10 @@ msgstr "Créer un utilisateu"
|
||||||
msgid "Create a new application"
|
msgid "Create a new application"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/ApplicationWizard.ts
|
||||||
|
msgid "Create a new application."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/outposts/ServiceConnectionWizard.ts
|
#: src/pages/outposts/ServiceConnectionWizard.ts
|
||||||
msgid "Create a new outpost integration."
|
msgid "Create a new outpost integration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1377,14 +1440,27 @@ msgstr ""
|
||||||
msgid "Create a new stage."
|
msgid "Create a new stage."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
|
msgid "Create application"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/users/ServiceAccountForm.ts
|
#: src/pages/users/ServiceAccountForm.ts
|
||||||
msgid "Create group"
|
msgid "Create group"
|
||||||
msgstr "Créer un groupe"
|
msgstr "Créer un groupe"
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/ldap/TypeLDAPApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/proxy/TypeProxyApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLConfigApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLImportApplicationWizardPage.ts
|
||||||
msgid "Create provider"
|
msgid "Create provider"
|
||||||
msgstr "Créer un fournisseur"
|
msgstr "Créer un fournisseur"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/ldap/TypeLDAPApplicationWizardPage.ts
|
||||||
|
msgid "Create service account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
||||||
msgid "Create users as inactive"
|
msgid "Create users as inactive"
|
||||||
msgstr "Créer des utilisateurs inactifs"
|
msgstr "Créer des utilisateurs inactifs"
|
||||||
|
@ -1560,6 +1636,7 @@ msgid "Deprecated. Instead of using this field, configure the JWKS data/URL in S
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
#: src/pages/property-mappings/PropertyMappingScopeForm.ts
|
#: src/pages/property-mappings/PropertyMappingScopeForm.ts
|
||||||
#: src/pages/system-tasks/SystemTaskListPage.ts
|
#: src/pages/system-tasks/SystemTaskListPage.ts
|
||||||
#: src/pages/tokens/TokenForm.ts
|
#: src/pages/tokens/TokenForm.ts
|
||||||
|
@ -2072,6 +2149,14 @@ msgstr "Applications externes qui utilisent authentik comme fournisseur d'identi
|
||||||
msgid "External Host"
|
msgid "External Host"
|
||||||
msgstr "Hôte externe"
|
msgstr "Hôte externe"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/proxy/TypeProxyApplicationWizardPage.ts
|
||||||
|
msgid "External domain"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/proxy/TypeProxyApplicationWizardPage.ts
|
||||||
|
msgid "External domain you will be accessing the domain from."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
msgid "External host"
|
msgid "External host"
|
||||||
|
@ -2244,6 +2329,10 @@ msgstr "Flux utilisé pour la déconnexion. S'il est laissé vide, le premier fl
|
||||||
msgid "Flow used when authorizing this provider."
|
msgid "Flow used when authorizing this provider."
|
||||||
msgstr "Flux utilisé lors de l'autorisation de ce fournisseur."
|
msgstr "Flux utilisé lors de l'autorisation de ce fournisseur."
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
|
msgid "Flow used when users access this application."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/flows/FlowListPage.ts
|
#: src/pages/flows/FlowListPage.ts
|
||||||
msgid "Flow(s)"
|
msgid "Flow(s)"
|
||||||
msgstr "Flux"
|
msgstr "Flux"
|
||||||
|
@ -2479,7 +2568,6 @@ msgid "Hide managed mappings"
|
||||||
msgstr "Cacher les mapping gérés"
|
msgstr "Cacher les mapping gérés"
|
||||||
|
|
||||||
#: src/pages/users/RelatedUserList.ts
|
#: src/pages/users/RelatedUserList.ts
|
||||||
#: src/pages/users/UserListPage.ts
|
|
||||||
msgid "Hide service-accounts"
|
msgid "Hide service-accounts"
|
||||||
msgstr "Cacher les comptes de service"
|
msgstr "Cacher les comptes de service"
|
||||||
|
|
||||||
|
@ -2645,10 +2733,22 @@ msgstr "Importer"
|
||||||
msgid "Import Flow"
|
msgid "Import Flow"
|
||||||
msgstr "Importer un flux"
|
msgstr "Importer un flux"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Import SAML Metadata"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLImportApplicationWizardPage.ts
|
||||||
|
msgid "Import SAML metadata"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
msgid "Import certificates of external providers or create certificates to sign requests with."
|
msgid "Import certificates of external providers or create certificates to sign requests with."
|
||||||
msgstr "Importer les certificats des fournisseurs externes ou créer des certificats pour signer les demandes."
|
msgstr "Importer les certificats des fournisseurs externes ou créer des certificats pour signer les demandes."
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Import the metadata document of the applicaation you want to configure."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/flows/stages/authenticator_validate/AuthenticatorValidateStage.ts
|
#: src/flows/stages/authenticator_validate/AuthenticatorValidateStage.ts
|
||||||
msgid "In case you can't access any other method."
|
msgid "In case you can't access any other method."
|
||||||
msgstr "Au cas où aucune autre méthode ne soit disponible."
|
msgstr "Au cas où aucune autre méthode ne soit disponible."
|
||||||
|
@ -2794,6 +2894,7 @@ msgstr "Paire de clés utilisée pour signer le requêtes sortantes. Laisser vid
|
||||||
msgid "Kubeconfig"
|
msgid "Kubeconfig"
|
||||||
msgstr "Kubeconfig"
|
msgstr "Kubeconfig"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
#: src/pages/outposts/OutpostForm.ts
|
#: src/pages/outposts/OutpostForm.ts
|
||||||
#: src/pages/outposts/OutpostListPage.ts
|
#: src/pages/outposts/OutpostListPage.ts
|
||||||
msgid "LDAP"
|
msgid "LDAP"
|
||||||
|
@ -2815,9 +2916,9 @@ msgstr "DN LDAP avec lequel les connexions et recherches sont effectuées."
|
||||||
msgid "LDAP Sync status"
|
msgid "LDAP Sync status"
|
||||||
msgstr "Statut de synchro LDAP"
|
msgstr "Statut de synchro LDAP"
|
||||||
|
|
||||||
#: src/pages/providers/ProviderWizard.ts
|
#: src/pages/applications/wizard/ldap/TypeLDAPApplicationWizardPage.ts
|
||||||
#~ msgid "LDAP details"
|
msgid "LDAP details"
|
||||||
#~ msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/prompt/PromptForm.ts
|
#: src/pages/stages/prompt/PromptForm.ts
|
||||||
#: src/pages/stages/prompt/PromptListPage.ts
|
#: src/pages/stages/prompt/PromptListPage.ts
|
||||||
|
@ -2870,6 +2971,10 @@ msgstr "URL de lancement"
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "Legacy applications which don't natively support SSO."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/identification/IdentificationStageForm.ts
|
#: src/pages/stages/identification/IdentificationStageForm.ts
|
||||||
msgid "Let the user identify themselves with their username or Email address."
|
msgid "Let the user identify themselves with their username or Email address."
|
||||||
msgstr "Laisser l'utilisateur s'identifier lui-même avec son nom d'utilisateur ou son adresse e-mail."
|
msgstr "Laisser l'utilisateur s'identifier lui-même avec son nom d'utilisateur ou son adresse e-mail."
|
||||||
|
@ -2877,6 +2982,11 @@ msgstr "Laisser l'utilisateur s'identifier lui-même avec son nom d'utilisateur
|
||||||
#~ msgid "Library"
|
#~ msgid "Library"
|
||||||
#~ msgstr "Bibliothèque"
|
#~ msgstr "Bibliothèque"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/link/TypeLinkApplicationWizardPage.ts
|
||||||
|
msgid "Link"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
#: src/pages/sources/plex/PlexSourceForm.ts
|
#: src/pages/sources/plex/PlexSourceForm.ts
|
||||||
msgid "Link to a user with identical email address. Can have security implications when a source doesn't validate email addresses"
|
msgid "Link to a user with identical email address. Can have security implications when a source doesn't validate email addresses"
|
||||||
|
@ -2935,6 +3045,7 @@ msgstr "Chargement en cours"
|
||||||
#: src/elements/Spinner.ts
|
#: src/elements/Spinner.ts
|
||||||
#: src/pages/applications/ApplicationCheckAccessForm.ts
|
#: src/pages/applications/ApplicationCheckAccessForm.ts
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
#: src/pages/events/RuleForm.ts
|
#: src/pages/events/RuleForm.ts
|
||||||
#: src/pages/events/RuleForm.ts
|
#: src/pages/events/RuleForm.ts
|
||||||
#: src/pages/events/TransportForm.ts
|
#: src/pages/events/TransportForm.ts
|
||||||
|
@ -2970,7 +3081,6 @@ msgstr "Chargement en cours"
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
|
||||||
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
#: src/pages/sources/plex/PlexSourceForm.ts
|
#: src/pages/sources/plex/PlexSourceForm.ts
|
||||||
|
@ -2995,7 +3105,6 @@ msgstr "Chargement en cours"
|
||||||
#: src/pages/stages/password/PasswordStageForm.ts
|
#: src/pages/stages/password/PasswordStageForm.ts
|
||||||
#: src/pages/stages/prompt/PromptStageForm.ts
|
#: src/pages/stages/prompt/PromptStageForm.ts
|
||||||
#: src/pages/stages/prompt/PromptStageForm.ts
|
#: src/pages/stages/prompt/PromptStageForm.ts
|
||||||
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
|
||||||
#: src/pages/tenants/TenantForm.ts
|
#: src/pages/tenants/TenantForm.ts
|
||||||
#: src/pages/tenants/TenantForm.ts
|
#: src/pages/tenants/TenantForm.ts
|
||||||
#: src/pages/tenants/TenantForm.ts
|
#: src/pages/tenants/TenantForm.ts
|
||||||
|
@ -3100,6 +3209,14 @@ msgstr ""
|
||||||
msgid "Managed by authentik (Discovered)"
|
msgid "Managed by authentik (Discovered)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Manual configuration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Manually configure SAML"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
||||||
msgid "Mark newly created users as inactive."
|
msgid "Mark newly created users as inactive."
|
||||||
msgstr "Marquer les utilisateurs nouvellements créés comme inactifs."
|
msgstr "Marquer les utilisateurs nouvellements créés comme inactifs."
|
||||||
|
@ -3145,11 +3262,18 @@ msgstr "Message"
|
||||||
msgid "Messages"
|
msgid "Messages"
|
||||||
msgstr "Messages"
|
msgstr "Messages"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLImportApplicationWizardPage.ts
|
||||||
#: src/pages/providers/saml/SAMLProviderImportForm.ts
|
#: src/pages/providers/saml/SAMLProviderImportForm.ts
|
||||||
#: src/pages/sources/saml/SAMLSourceViewPage.ts
|
#: src/pages/sources/saml/SAMLSourceViewPage.ts
|
||||||
msgid "Metadata"
|
msgid "Metadata"
|
||||||
msgstr "Métadonnées"
|
msgstr "Métadonnées"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthAPIApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthImplicitApplicationWizardPage.ts
|
||||||
|
msgid "Method details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/policies/password/PasswordPolicyForm.ts
|
#: src/pages/policies/password/PasswordPolicyForm.ts
|
||||||
msgid "Minimum amount of Digits"
|
msgid "Minimum amount of Digits"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3193,6 +3317,10 @@ msgstr "Modèle supprimé"
|
||||||
msgid "Model updated"
|
msgid "Model updated"
|
||||||
msgstr "Modèle mis à jour"
|
msgstr "Modèle mis à jour"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "Modern applications, APIs and Single-page applications."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#~ msgid "Monitor"
|
#~ msgid "Monitor"
|
||||||
#~ msgstr "Surveiller"
|
#~ msgstr "Surveiller"
|
||||||
|
|
||||||
|
@ -3207,6 +3335,7 @@ msgstr "Mes applications"
|
||||||
#: src/elements/forms/DeleteBulkForm.ts
|
#: src/elements/forms/DeleteBulkForm.ts
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
#: src/pages/applications/ApplicationListPage.ts
|
#: src/pages/applications/ApplicationListPage.ts
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairForm.ts
|
#: src/pages/crypto/CertificateKeyPairForm.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
|
@ -3304,6 +3433,10 @@ msgstr "Politique NameID"
|
||||||
msgid "NameID Property Mapping"
|
msgid "NameID Property Mapping"
|
||||||
msgstr "Mappage de la propriété NameID"
|
msgstr "Mappage de la propriété NameID"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Native application"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/flows/stages/identification/IdentificationStage.ts
|
#: src/flows/stages/identification/IdentificationStage.ts
|
||||||
msgid "Need an account?"
|
msgid "Need an account?"
|
||||||
msgstr "Besoin d'un compte ?"
|
msgstr "Besoin d'un compte ?"
|
||||||
|
@ -3316,6 +3449,10 @@ msgstr "Inverser le résultat"
|
||||||
msgid "Negates the outcome of the binding. Messages are unaffected."
|
msgid "Negates the outcome of the binding. Messages are unaffected."
|
||||||
msgstr "Inverse le résultat de la liaison. Les messages ne sont pas affectés."
|
msgstr "Inverse le résultat de la liaison. Les messages ne sont pas affectés."
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/ApplicationWizard.ts
|
||||||
|
msgid "New application"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/outposts/ServiceConnectionWizard.ts
|
#: src/pages/outposts/ServiceConnectionWizard.ts
|
||||||
msgid "New outpost integration"
|
msgid "New outpost integration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3574,6 +3711,10 @@ msgstr "Code de rafraîchissement OAuth"
|
||||||
#~ msgid "OAuth/OIDC"
|
#~ msgid "OAuth/OIDC"
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "OAuth2/OIDC"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
msgid "OIDC JWKS"
|
msgid "OIDC JWKS"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3849,6 +3990,21 @@ msgstr "Mot de passe : Entrée masquée, le mot de passe est vérifié par les s
|
||||||
msgid "Passwordless flow"
|
msgid "Passwordless flow"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/users/UserForm.ts
|
||||||
|
msgid "Path"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
||||||
|
msgid "Path new users will be created under. If left blank, the default path will be used.fo"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
|
#: src/pages/sources/plex/PlexSourceForm.ts
|
||||||
|
#: src/pages/sources/saml/SAMLSourceForm.ts
|
||||||
|
msgid "Path template for users created. Use placeholders like `%(slug)s` to insert the source slug."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/saml/SAMLSourceForm.ts
|
#: src/pages/sources/saml/SAMLSourceForm.ts
|
||||||
msgid "Persistent"
|
msgid "Persistent"
|
||||||
msgstr "Persistant"
|
msgstr "Persistant"
|
||||||
|
@ -4057,6 +4213,11 @@ msgstr "Paramètres du protocole"
|
||||||
msgid "Protocol settings"
|
msgid "Protocol settings"
|
||||||
msgstr "Paramètres du protocole"
|
msgstr "Paramètres du protocole"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "Provide an LDAP interface for applications and users to authenticate against."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/ProviderListPage.ts
|
#: src/pages/providers/ProviderListPage.ts
|
||||||
msgid "Provide support for protocols like SAML and OAuth to assigned applications."
|
msgid "Provide support for protocols like SAML and OAuth to assigned applications."
|
||||||
msgstr "Assure la prise en charge de protocoles tels que SAML et OAuth aux applications attribuées."
|
msgstr "Assure la prise en charge de protocoles tels que SAML et OAuth aux applications attribuées."
|
||||||
|
@ -4087,6 +4248,7 @@ msgstr "Fournisseur(s)"
|
||||||
msgid "Providers"
|
msgid "Providers"
|
||||||
msgstr "Fournisseurs"
|
msgstr "Fournisseurs"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
#: src/pages/outposts/OutpostForm.ts
|
#: src/pages/outposts/OutpostForm.ts
|
||||||
#: src/pages/outposts/OutpostListPage.ts
|
#: src/pages/outposts/OutpostListPage.ts
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
|
@ -4094,9 +4256,9 @@ msgstr "Fournisseurs"
|
||||||
msgid "Proxy"
|
msgid "Proxy"
|
||||||
msgstr "Proxy"
|
msgstr "Proxy"
|
||||||
|
|
||||||
#: src/pages/providers/ProviderWizard.ts
|
#: src/pages/applications/wizard/proxy/TypeProxyApplicationWizardPage.ts
|
||||||
#~ msgid "Proxy details"
|
msgid "Proxy details"
|
||||||
#~ msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/oauth2/OAuth2ProviderForm.ts
|
#: src/pages/providers/oauth2/OAuth2ProviderForm.ts
|
||||||
msgid "Public"
|
msgid "Public"
|
||||||
|
@ -4111,6 +4273,7 @@ msgid "Public key, acquired from https://www.google.com/recaptcha/intro/v3.html.
|
||||||
msgstr "Clé publique, obtenue depuis https://www.google.com/recaptcha/intro/v3.html."
|
msgstr "Clé publique, obtenue depuis https://www.google.com/recaptcha/intro/v3.html."
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr "Éditeur"
|
msgstr "Éditeur"
|
||||||
|
|
||||||
|
@ -4375,13 +4538,17 @@ msgstr "Retourner à la sélection d'appareil"
|
||||||
msgid "Revoked?"
|
msgid "Revoked?"
|
||||||
msgstr "Révoqué ?"
|
msgstr "Révoqué ?"
|
||||||
|
|
||||||
|
#: src/elements/TreeView.ts
|
||||||
|
msgid "Root"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/ldap/LDAPSourceViewPage.ts
|
#: src/pages/sources/ldap/LDAPSourceViewPage.ts
|
||||||
msgid "Run sync again"
|
msgid "Run sync again"
|
||||||
msgstr "Relancer la synchro"
|
msgstr "Relancer la synchro"
|
||||||
|
|
||||||
#: src/pages/providers/ProviderWizard.ts
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
#~ msgid "SAML"
|
msgid "SAML"
|
||||||
#~ msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/ProviderWizard.ts
|
#: src/pages/providers/ProviderWizard.ts
|
||||||
#~ msgid "SAML (metadata import)"
|
#~ msgid "SAML (metadata import)"
|
||||||
|
@ -4395,9 +4562,9 @@ msgstr "Nom d'attribut SAML"
|
||||||
msgid "SAML Metadata"
|
msgid "SAML Metadata"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/ProviderWizard.ts
|
#: src/pages/applications/wizard/saml/TypeSAMLConfigApplicationWizardPage.ts
|
||||||
#~ msgid "SAML details"
|
msgid "SAML details"
|
||||||
#~ msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/ProviderWizard.ts
|
#: src/pages/providers/ProviderWizard.ts
|
||||||
#~ msgid "SAML details (import from metadata)"
|
#~ msgid "SAML details (import from metadata)"
|
||||||
|
@ -4799,6 +4966,14 @@ msgstr "Invites simples qui peuvent être utilisés pour les étapes d'invite."
|
||||||
msgid "Single use"
|
msgid "Single use"
|
||||||
msgstr "Usage unique"
|
msgstr "Usage unique"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Single-page applications"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Single-page applications which handle authentication in the browser (for example, Javascript, Angular, React, Vue)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
#~ msgid "Skip path regex"
|
#~ msgid "Skip path regex"
|
||||||
#~ msgstr "Regex chemins exclus"
|
#~ msgstr "Regex chemins exclus"
|
||||||
|
@ -5538,6 +5713,10 @@ msgstr ""
|
||||||
msgid "The following objects use {objName}"
|
msgid "The following objects use {objName}"
|
||||||
msgstr "Les objets suivants utilisent {objName}"
|
msgstr "Les objets suivants utilisent {objName}"
|
||||||
|
|
||||||
|
#: src/pages/providers/ProviderWizard.ts
|
||||||
|
msgid "The new application wizard greatly simplifies the steps required to create applications and providers."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/policies/reputation/ReputationPolicyForm.ts
|
#: src/pages/policies/reputation/ReputationPolicyForm.ts
|
||||||
#~ msgid ""
|
#~ msgid ""
|
||||||
#~ "The policy passes when the reputation score is above the threshold, and\n"
|
#~ "The policy passes when the reputation score is above the threshold, and\n"
|
||||||
|
@ -5590,6 +5769,10 @@ msgstr "Ces liaisons contrôlent les utilisateurs qui peuvent accéder à cette
|
||||||
msgid "These policies control which users can access this application."
|
msgid "These policies control which users can access this application."
|
||||||
msgstr "Ces politiques contrôlent les autorisations d'accès des utilisateurs à cette application."
|
msgstr "Ces politiques contrôlent les autorisations d'accès des utilisateurs à cette application."
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthAPIApplicationWizardPage.ts
|
||||||
|
msgid "This configuration can be used to authenticate to authentik with other APIs other otherwise programmatically."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/flows/FlowInspector.ts
|
#: src/flows/FlowInspector.ts
|
||||||
msgid "This flow is completed."
|
msgid "This flow is completed."
|
||||||
msgstr "Ce flux est terminé."
|
msgstr "Ce flux est terminé."
|
||||||
|
@ -5776,6 +5959,14 @@ msgstr "Transports"
|
||||||
msgid "Trusted OIDC Sources"
|
msgid "Trusted OIDC Sources"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/providers/ProviderWizard.ts
|
||||||
|
msgid "Try it now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/providers/ProviderWizard.ts
|
||||||
|
msgid "Try the new application wizard"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/interfaces/locale.ts
|
#: src/interfaces/locale.ts
|
||||||
msgid "Turkish"
|
msgid "Turkish"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -5829,6 +6020,10 @@ msgstr "UPN"
|
||||||
msgid "URL settings"
|
msgid "URL settings"
|
||||||
msgstr "Paramètres d'URL"
|
msgstr "Paramètres d'URL"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLConfigApplicationWizardPage.ts
|
||||||
|
msgid "URL that authentik will redirect back to after successful authentication."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/saml/SAMLSourceForm.ts
|
#: src/pages/sources/saml/SAMLSourceForm.ts
|
||||||
msgid "URL that the initial Login request is sent to."
|
msgid "URL that the initial Login request is sent to."
|
||||||
msgstr "URL de destination de la requête initiale de login."
|
msgstr "URL de destination de la requête initiale de login."
|
||||||
|
@ -5849,6 +6044,10 @@ msgstr "URL utilisée par authentik pour récupérer les jetons."
|
||||||
msgid "URL used to request the initial token. This URL is only required for OAuth 1."
|
msgid "URL used to request the initial token. This URL is only required for OAuth 1."
|
||||||
msgstr "URL utilisée pour demander le jeton initial. Cette URL est uniquement requise pour OAuth 1."
|
msgstr "URL utilisée pour demander le jeton initial. Cette URL est uniquement requise pour OAuth 1."
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/link/TypeLinkApplicationWizardPage.ts
|
||||||
|
msgid "URL which will be opened when a user clicks on the application."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
msgid "Unauthenticated Paths"
|
msgid "Unauthenticated Paths"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -6190,6 +6389,10 @@ msgstr "Événements de l'utilisateur"
|
||||||
msgid "User fields"
|
msgid "User fields"
|
||||||
msgstr "Champs de l'utilisateur"
|
msgstr "Champs de l'utilisateur"
|
||||||
|
|
||||||
|
#: src/pages/users/UserListPage.ts
|
||||||
|
msgid "User folders"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/interfaces/AdminInterface.ts
|
#: src/interfaces/AdminInterface.ts
|
||||||
msgid "User interface"
|
msgid "User interface"
|
||||||
msgstr "Interface utilisateur"
|
msgstr "Interface utilisateur"
|
||||||
|
@ -6215,6 +6418,17 @@ msgstr "Filtre des objets utilisateur"
|
||||||
msgid "User password writeback"
|
msgid "User password writeback"
|
||||||
msgstr "Réécriture du mot de passe utilisateur"
|
msgstr "Réécriture du mot de passe utilisateur"
|
||||||
|
|
||||||
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
|
#: src/pages/sources/plex/PlexSourceForm.ts
|
||||||
|
#: src/pages/sources/saml/SAMLSourceForm.ts
|
||||||
|
msgid "User path"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
||||||
|
msgid "User path template"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/tenants/TenantForm.ts
|
#: src/pages/tenants/TenantForm.ts
|
||||||
msgid "User settings flow"
|
msgid "User settings flow"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -6451,6 +6665,10 @@ msgstr "Avertissement : le domaine d'authentik n'est pas configuré, l'authentif
|
||||||
msgid "Web Certificate"
|
msgid "Web Certificate"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Web application"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/authenticator_validate/AuthenticatorValidateStageForm.ts
|
#: src/pages/stages/authenticator_validate/AuthenticatorValidateStageForm.ts
|
||||||
msgid "WebAuthn Authenticators"
|
msgid "WebAuthn Authenticators"
|
||||||
msgstr "Authentificateurs WebAuthn"
|
msgstr "Authentificateurs WebAuthn"
|
||||||
|
@ -6570,6 +6788,10 @@ msgstr "Écrit toute donnée provenant du contexte du flux 'prompt_data' à l'ut
|
||||||
msgid "X509 Subject"
|
msgid "X509 Subject"
|
||||||
msgstr "Sujet X509"
|
msgstr "Sujet X509"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "XML-based SSO standard. Use this if your application only supports SAML."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/elements/oauth/UserRefreshList.ts
|
#: src/elements/oauth/UserRefreshList.ts
|
||||||
#: src/pages/applications/ApplicationCheckAccessForm.ts
|
#: src/pages/applications/ApplicationCheckAccessForm.ts
|
||||||
#: src/pages/groups/GroupListPage.ts
|
#: src/pages/groups/GroupListPage.ts
|
||||||
|
|
|
@ -90,6 +90,7 @@ msgstr "Nieusuwalny token uwierzytelniający, taki jak TouchID lub Windows Hello
|
||||||
msgid "A policy used for testing. Always returns the same result as specified below after waiting a random duration."
|
msgid "A policy used for testing. Always returns the same result as specified below after waiting a random duration."
|
||||||
msgstr "Zasada używana do testowania. Zawsze zwraca ten sam wynik, jak określono poniżej, po odczekaniu losowego czasu trwania."
|
msgstr "Zasada używana do testowania. Zawsze zwraca ten sam wynik, jak określono poniżej, po odczekaniu losowego czasu trwania."
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLConfigApplicationWizardPage.ts
|
||||||
#: src/pages/providers/saml/SAMLProviderForm.ts
|
#: src/pages/providers/saml/SAMLProviderForm.ts
|
||||||
#: src/pages/providers/saml/SAMLProviderViewPage.ts
|
#: src/pages/providers/saml/SAMLProviderViewPage.ts
|
||||||
msgid "ACS URL"
|
msgid "ACS URL"
|
||||||
|
@ -113,6 +114,10 @@ msgstr "ANY, dowolna zasada musi być zgodna, aby przyznać dostęp."
|
||||||
msgid "ANY, any policy must match to include this stage access."
|
msgid "ANY, any policy must match to include this stage access."
|
||||||
msgstr "ANY, każda zasada musi być zgodna, aby uwzględnić dostęp do tego etapu."
|
msgstr "ANY, każda zasada musi być zgodna, aby uwzględnić dostęp do tego etapu."
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "API"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/tokens/TokenListPage.ts
|
#: src/pages/tokens/TokenListPage.ts
|
||||||
msgid "API Access"
|
msgid "API Access"
|
||||||
msgstr "Dostęp API"
|
msgstr "Dostęp API"
|
||||||
|
@ -257,6 +262,10 @@ msgstr "Dodatkowa nazwa wyróżniająca użytkownika"
|
||||||
msgid "Additional Scope"
|
msgid "Additional Scope"
|
||||||
msgstr "Dodatkowy zakres"
|
msgstr "Dodatkowy zakres"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
|
msgid "Additional UI settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
msgid "Additional group DN, prepended to the Base DN."
|
msgid "Additional group DN, prepended to the Base DN."
|
||||||
msgstr "Dodatkowa DN grupy, poprzedzona podstawową DN."
|
msgstr "Dodatkowa DN grupy, poprzedzona podstawową DN."
|
||||||
|
@ -377,6 +386,7 @@ msgid "App password (can be used to login using a flow executor)"
|
||||||
msgstr "Hasło aplikacji (może być użyte do zalogowania się za pomocą executora przepływu)"
|
msgstr "Hasło aplikacji (może być użyte do zalogowania się za pomocą executora przepływu)"
|
||||||
|
|
||||||
#: src/elements/user/UserConsentList.ts
|
#: src/elements/user/UserConsentList.ts
|
||||||
|
#: src/flows/stages/consent/ConsentStage.ts
|
||||||
#: src/pages/admin-overview/TopApplicationsTable.ts
|
#: src/pages/admin-overview/TopApplicationsTable.ts
|
||||||
#: src/pages/providers/ProviderListPage.ts
|
#: src/pages/providers/ProviderListPage.ts
|
||||||
msgid "Application"
|
msgid "Application"
|
||||||
|
@ -387,6 +397,14 @@ msgstr "Aplikacja"
|
||||||
msgid "Application Icon"
|
msgid "Application Icon"
|
||||||
msgstr "Ikona aplikacji"
|
msgstr "Ikona aplikacji"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/link/TypeLinkApplicationWizardPage.ts
|
||||||
|
msgid "Application Link"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/flows/stages/consent/ConsentStage.ts
|
||||||
|
msgid "Application already has access to the following permissions:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/elements/charts/UserChart.ts
|
#: src/elements/charts/UserChart.ts
|
||||||
msgid "Application authorizations"
|
msgid "Application authorizations"
|
||||||
msgstr "Autoryzacje aplikacji"
|
msgstr "Autoryzacje aplikacji"
|
||||||
|
@ -395,11 +413,25 @@ msgstr "Autoryzacje aplikacji"
|
||||||
msgid "Application authorized"
|
msgid "Application authorized"
|
||||||
msgstr "Aplikacja autoryzowana"
|
msgstr "Aplikacja autoryzowana"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
|
msgid "Application details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/flows/stages/consent/ConsentStage.ts
|
||||||
|
msgid "Application requires following new permissions:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/flows/stages/consent/ConsentStage.ts
|
#: src/flows/stages/consent/ConsentStage.ts
|
||||||
msgid "Application requires following permissions:"
|
msgid "Application requires following permissions:"
|
||||||
msgstr "Aplikacja wymaga następujących uprawnień:"
|
msgstr "Aplikacja wymaga następujących uprawnień:"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Application type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
msgid "Application's display Name."
|
msgid "Application's display Name."
|
||||||
msgstr "Wyświetlana nazwa aplikacji."
|
msgstr "Wyświetlana nazwa aplikacji."
|
||||||
|
|
||||||
|
@ -414,6 +446,18 @@ msgstr "Aplikacja(e)"
|
||||||
msgid "Applications"
|
msgid "Applications"
|
||||||
msgstr "Aplikacje"
|
msgstr "Aplikacje"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Applications which handle the authentication server-side (for example, Python, Go, Rust, Java, PHP)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Applications which redirect users to a non-web callback (for example, Android, iOS)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/elements/wizard/ActionWizardPage.ts
|
||||||
|
msgid "Apply changes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/admin-overview/AdminOverviewPage.ts
|
#: src/pages/admin-overview/AdminOverviewPage.ts
|
||||||
msgid "Apps with most usage"
|
msgid "Apps with most usage"
|
||||||
msgstr "Najczęściej używane aplikacje"
|
msgstr "Najczęściej używane aplikacje"
|
||||||
|
@ -531,6 +575,14 @@ msgstr "URL uwierzytelniania"
|
||||||
msgid "Authentication flow"
|
msgid "Authentication flow"
|
||||||
msgstr "Przepływ uwierzytelniania"
|
msgstr "Przepływ uwierzytelniania"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "Authentication method"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Authentication without user interaction, or machine-to-machine authentication."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/flows/stages/authenticator_validate/AuthenticatorValidateStage.ts
|
#: src/flows/stages/authenticator_validate/AuthenticatorValidateStage.ts
|
||||||
msgid "Authenticator"
|
msgid "Authenticator"
|
||||||
msgstr "Uwierzytelniacz"
|
msgstr "Uwierzytelniacz"
|
||||||
|
@ -555,6 +607,7 @@ msgstr "Autoryzacja"
|
||||||
msgid "Authorization URL"
|
msgid "Authorization URL"
|
||||||
msgstr "URL autoryzacji"
|
msgstr "URL autoryzacji"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
#: src/pages/providers/oauth2/OAuth2ProviderForm.ts
|
#: src/pages/providers/oauth2/OAuth2ProviderForm.ts
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
#: src/pages/providers/saml/SAMLProviderForm.ts
|
#: src/pages/providers/saml/SAMLProviderForm.ts
|
||||||
|
@ -613,6 +666,7 @@ msgstr "Tło pokazywane podczas wykonywania."
|
||||||
#~ msgid "Backup status"
|
#~ msgid "Backup status"
|
||||||
#~ msgstr "Stan kopii zapasowej"
|
#~ msgstr "Stan kopii zapasowej"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/ldap/TypeLDAPApplicationWizardPage.ts
|
||||||
#: src/pages/providers/ldap/LDAPProviderForm.ts
|
#: src/pages/providers/ldap/LDAPProviderForm.ts
|
||||||
#: src/pages/providers/ldap/LDAPProviderViewPage.ts
|
#: src/pages/providers/ldap/LDAPProviderViewPage.ts
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
|
@ -707,6 +761,10 @@ msgstr "Hash kompilacji:"
|
||||||
msgid "Built-in"
|
msgid "Built-in"
|
||||||
msgstr "Wbudowany"
|
msgstr "Wbudowany"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthAPIApplicationWizardPage.ts
|
||||||
|
msgid "By default, all service accounts can authenticate as this application, as long as they have a valid token of the type app-password."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/identification/IdentificationStageForm.ts
|
#: src/pages/stages/identification/IdentificationStageForm.ts
|
||||||
msgid "By default, only icons are shown for sources. Enable this to show their full names."
|
msgid "By default, only icons are shown for sources. Enable this to show their full names."
|
||||||
msgstr "Domyślnie dla źródeł wyświetlane są tylko ikony. Włącz tę opcję, aby wyświetlić ich pełne nazwy."
|
msgstr "Domyślnie dla źródeł wyświetlane są tylko ikony. Włącz tę opcję, aby wyświetlić ich pełne nazwy."
|
||||||
|
@ -1200,6 +1258,7 @@ msgstr "Skopiuj link odzyskiwania"
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationListPage.ts
|
#: src/pages/applications/ApplicationListPage.ts
|
||||||
#: src/pages/applications/ApplicationListPage.ts
|
#: src/pages/applications/ApplicationListPage.ts
|
||||||
|
#: src/pages/applications/wizard/ApplicationWizard.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
#: src/pages/events/RuleListPage.ts
|
#: src/pages/events/RuleListPage.ts
|
||||||
|
@ -1338,6 +1397,10 @@ msgstr "Utwórz użytkownika"
|
||||||
msgid "Create a new application"
|
msgid "Create a new application"
|
||||||
msgstr "Utwórz nową aplikację"
|
msgstr "Utwórz nową aplikację"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/ApplicationWizard.ts
|
||||||
|
msgid "Create a new application."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/outposts/ServiceConnectionWizard.ts
|
#: src/pages/outposts/ServiceConnectionWizard.ts
|
||||||
msgid "Create a new outpost integration."
|
msgid "Create a new outpost integration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1362,14 +1425,27 @@ msgstr ""
|
||||||
msgid "Create a new stage."
|
msgid "Create a new stage."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
|
msgid "Create application"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/users/ServiceAccountForm.ts
|
#: src/pages/users/ServiceAccountForm.ts
|
||||||
msgid "Create group"
|
msgid "Create group"
|
||||||
msgstr "Utwórz grupę"
|
msgstr "Utwórz grupę"
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/ldap/TypeLDAPApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/proxy/TypeProxyApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLConfigApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLImportApplicationWizardPage.ts
|
||||||
msgid "Create provider"
|
msgid "Create provider"
|
||||||
msgstr "Utwórz dostawcę"
|
msgstr "Utwórz dostawcę"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/ldap/TypeLDAPApplicationWizardPage.ts
|
||||||
|
msgid "Create service account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
||||||
msgid "Create users as inactive"
|
msgid "Create users as inactive"
|
||||||
msgstr "Utwórz użytkowników jako nieaktywnych"
|
msgstr "Utwórz użytkowników jako nieaktywnych"
|
||||||
|
@ -1545,6 +1621,7 @@ msgid "Deprecated. Instead of using this field, configure the JWKS data/URL in S
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
#: src/pages/property-mappings/PropertyMappingScopeForm.ts
|
#: src/pages/property-mappings/PropertyMappingScopeForm.ts
|
||||||
#: src/pages/system-tasks/SystemTaskListPage.ts
|
#: src/pages/system-tasks/SystemTaskListPage.ts
|
||||||
#: src/pages/tokens/TokenForm.ts
|
#: src/pages/tokens/TokenForm.ts
|
||||||
|
@ -2044,6 +2121,14 @@ msgstr "Aplikacje zewnętrzne, które używają authentik jako dostawcy tożsamo
|
||||||
msgid "External Host"
|
msgid "External Host"
|
||||||
msgstr "Zewnętrzny host"
|
msgstr "Zewnętrzny host"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/proxy/TypeProxyApplicationWizardPage.ts
|
||||||
|
msgid "External domain"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/proxy/TypeProxyApplicationWizardPage.ts
|
||||||
|
msgid "External domain you will be accessing the domain from."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
msgid "External host"
|
msgid "External host"
|
||||||
|
@ -2216,6 +2301,10 @@ msgstr "Przepływ używany do wylogowania. Jeśli pozostanie pusty, używany jes
|
||||||
msgid "Flow used when authorizing this provider."
|
msgid "Flow used when authorizing this provider."
|
||||||
msgstr "Przepływ używany podczas autoryzacji tego dostawcy."
|
msgstr "Przepływ używany podczas autoryzacji tego dostawcy."
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
|
msgid "Flow used when users access this application."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/flows/FlowListPage.ts
|
#: src/pages/flows/FlowListPage.ts
|
||||||
msgid "Flow(s)"
|
msgid "Flow(s)"
|
||||||
msgstr "Przepływ(y)"
|
msgstr "Przepływ(y)"
|
||||||
|
@ -2450,7 +2539,6 @@ msgid "Hide managed mappings"
|
||||||
msgstr "Ukryj zarządzane mapowania"
|
msgstr "Ukryj zarządzane mapowania"
|
||||||
|
|
||||||
#: src/pages/users/RelatedUserList.ts
|
#: src/pages/users/RelatedUserList.ts
|
||||||
#: src/pages/users/UserListPage.ts
|
|
||||||
msgid "Hide service-accounts"
|
msgid "Hide service-accounts"
|
||||||
msgstr "Ukryj konta serwisowe"
|
msgstr "Ukryj konta serwisowe"
|
||||||
|
|
||||||
|
@ -2612,10 +2700,22 @@ msgstr "Importuj"
|
||||||
msgid "Import Flow"
|
msgid "Import Flow"
|
||||||
msgstr "Importuj przepływ"
|
msgstr "Importuj przepływ"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Import SAML Metadata"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLImportApplicationWizardPage.ts
|
||||||
|
msgid "Import SAML metadata"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
msgid "Import certificates of external providers or create certificates to sign requests with."
|
msgid "Import certificates of external providers or create certificates to sign requests with."
|
||||||
msgstr "Importuj certyfikaty zewnętrznych dostawców lub twórz certyfikaty do podpisywania żądań."
|
msgstr "Importuj certyfikaty zewnętrznych dostawców lub twórz certyfikaty do podpisywania żądań."
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Import the metadata document of the applicaation you want to configure."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/flows/stages/authenticator_validate/AuthenticatorValidateStage.ts
|
#: src/flows/stages/authenticator_validate/AuthenticatorValidateStage.ts
|
||||||
msgid "In case you can't access any other method."
|
msgid "In case you can't access any other method."
|
||||||
msgstr "Na wypadek, gdybyś nie miał dostępu do żadnej innej metody."
|
msgstr "Na wypadek, gdybyś nie miał dostępu do żadnej innej metody."
|
||||||
|
@ -2760,6 +2860,7 @@ msgstr "Para kluczy służąca do podpisywania żądań wychodzących. Pozostaw
|
||||||
msgid "Kubeconfig"
|
msgid "Kubeconfig"
|
||||||
msgstr "Kubeconfig"
|
msgstr "Kubeconfig"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
#: src/pages/outposts/OutpostForm.ts
|
#: src/pages/outposts/OutpostForm.ts
|
||||||
#: src/pages/outposts/OutpostListPage.ts
|
#: src/pages/outposts/OutpostListPage.ts
|
||||||
msgid "LDAP"
|
msgid "LDAP"
|
||||||
|
@ -2781,9 +2882,9 @@ msgstr "LDAP DN, w ramach którego można tworzyć żądania powiązania i żąd
|
||||||
msgid "LDAP Sync status"
|
msgid "LDAP Sync status"
|
||||||
msgstr "Stan synchronizacji LDAP"
|
msgstr "Stan synchronizacji LDAP"
|
||||||
|
|
||||||
#: src/pages/providers/ProviderWizard.ts
|
#: src/pages/applications/wizard/ldap/TypeLDAPApplicationWizardPage.ts
|
||||||
#~ msgid "LDAP details"
|
msgid "LDAP details"
|
||||||
#~ msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/prompt/PromptForm.ts
|
#: src/pages/stages/prompt/PromptForm.ts
|
||||||
#: src/pages/stages/prompt/PromptListPage.ts
|
#: src/pages/stages/prompt/PromptListPage.ts
|
||||||
|
@ -2836,6 +2937,10 @@ msgstr "URL uruchamiania"
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "Legacy applications which don't natively support SSO."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/identification/IdentificationStageForm.ts
|
#: src/pages/stages/identification/IdentificationStageForm.ts
|
||||||
msgid "Let the user identify themselves with their username or Email address."
|
msgid "Let the user identify themselves with their username or Email address."
|
||||||
msgstr "Pozwól użytkownikowi identyfikować się za pomocą swojej nazwy użytkownika lub adresu e-mail."
|
msgstr "Pozwól użytkownikowi identyfikować się za pomocą swojej nazwy użytkownika lub adresu e-mail."
|
||||||
|
@ -2843,6 +2948,11 @@ msgstr "Pozwól użytkownikowi identyfikować się za pomocą swojej nazwy użyt
|
||||||
#~ msgid "Library"
|
#~ msgid "Library"
|
||||||
#~ msgstr "Biblioteka"
|
#~ msgstr "Biblioteka"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/link/TypeLinkApplicationWizardPage.ts
|
||||||
|
msgid "Link"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
#: src/pages/sources/plex/PlexSourceForm.ts
|
#: src/pages/sources/plex/PlexSourceForm.ts
|
||||||
msgid "Link to a user with identical email address. Can have security implications when a source doesn't validate email addresses"
|
msgid "Link to a user with identical email address. Can have security implications when a source doesn't validate email addresses"
|
||||||
|
@ -2901,6 +3011,7 @@ msgstr "Ładowanie"
|
||||||
#: src/elements/Spinner.ts
|
#: src/elements/Spinner.ts
|
||||||
#: src/pages/applications/ApplicationCheckAccessForm.ts
|
#: src/pages/applications/ApplicationCheckAccessForm.ts
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
#: src/pages/events/RuleForm.ts
|
#: src/pages/events/RuleForm.ts
|
||||||
#: src/pages/events/RuleForm.ts
|
#: src/pages/events/RuleForm.ts
|
||||||
#: src/pages/events/TransportForm.ts
|
#: src/pages/events/TransportForm.ts
|
||||||
|
@ -2936,7 +3047,6 @@ msgstr "Ładowanie"
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
|
||||||
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
#: src/pages/sources/plex/PlexSourceForm.ts
|
#: src/pages/sources/plex/PlexSourceForm.ts
|
||||||
|
@ -2961,7 +3071,6 @@ msgstr "Ładowanie"
|
||||||
#: src/pages/stages/password/PasswordStageForm.ts
|
#: src/pages/stages/password/PasswordStageForm.ts
|
||||||
#: src/pages/stages/prompt/PromptStageForm.ts
|
#: src/pages/stages/prompt/PromptStageForm.ts
|
||||||
#: src/pages/stages/prompt/PromptStageForm.ts
|
#: src/pages/stages/prompt/PromptStageForm.ts
|
||||||
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
|
||||||
#: src/pages/tenants/TenantForm.ts
|
#: src/pages/tenants/TenantForm.ts
|
||||||
#: src/pages/tenants/TenantForm.ts
|
#: src/pages/tenants/TenantForm.ts
|
||||||
#: src/pages/tenants/TenantForm.ts
|
#: src/pages/tenants/TenantForm.ts
|
||||||
|
@ -3066,6 +3175,14 @@ msgstr "Zarządzane przez authentik"
|
||||||
msgid "Managed by authentik (Discovered)"
|
msgid "Managed by authentik (Discovered)"
|
||||||
msgstr "Zarządzane przez authentik (odkryte)"
|
msgstr "Zarządzane przez authentik (odkryte)"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Manual configuration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Manually configure SAML"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
||||||
msgid "Mark newly created users as inactive."
|
msgid "Mark newly created users as inactive."
|
||||||
msgstr "Oznacz nowo utworzonych użytkowników jako nieaktywnych."
|
msgstr "Oznacz nowo utworzonych użytkowników jako nieaktywnych."
|
||||||
|
@ -3111,11 +3228,18 @@ msgstr "Wiadomość"
|
||||||
msgid "Messages"
|
msgid "Messages"
|
||||||
msgstr "Wiadomości"
|
msgstr "Wiadomości"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLImportApplicationWizardPage.ts
|
||||||
#: src/pages/providers/saml/SAMLProviderImportForm.ts
|
#: src/pages/providers/saml/SAMLProviderImportForm.ts
|
||||||
#: src/pages/sources/saml/SAMLSourceViewPage.ts
|
#: src/pages/sources/saml/SAMLSourceViewPage.ts
|
||||||
msgid "Metadata"
|
msgid "Metadata"
|
||||||
msgstr "Metadane"
|
msgstr "Metadane"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthAPIApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthImplicitApplicationWizardPage.ts
|
||||||
|
msgid "Method details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/policies/password/PasswordPolicyForm.ts
|
#: src/pages/policies/password/PasswordPolicyForm.ts
|
||||||
msgid "Minimum amount of Digits"
|
msgid "Minimum amount of Digits"
|
||||||
msgstr "Minimalna ilość cyfr"
|
msgstr "Minimalna ilość cyfr"
|
||||||
|
@ -3159,6 +3283,10 @@ msgstr "Model usunięty"
|
||||||
msgid "Model updated"
|
msgid "Model updated"
|
||||||
msgstr "Zaktualizowano model"
|
msgstr "Zaktualizowano model"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "Modern applications, APIs and Single-page applications."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#~ msgid "Monitor"
|
#~ msgid "Monitor"
|
||||||
#~ msgstr "Monitor"
|
#~ msgstr "Monitor"
|
||||||
|
|
||||||
|
@ -3173,6 +3301,7 @@ msgstr "Moje aplikacje"
|
||||||
#: src/elements/forms/DeleteBulkForm.ts
|
#: src/elements/forms/DeleteBulkForm.ts
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
#: src/pages/applications/ApplicationListPage.ts
|
#: src/pages/applications/ApplicationListPage.ts
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairForm.ts
|
#: src/pages/crypto/CertificateKeyPairForm.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
|
@ -3270,6 +3399,10 @@ msgstr "Zasada NameID"
|
||||||
msgid "NameID Property Mapping"
|
msgid "NameID Property Mapping"
|
||||||
msgstr "Mapowanie właściwości NameID"
|
msgstr "Mapowanie właściwości NameID"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Native application"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/flows/stages/identification/IdentificationStage.ts
|
#: src/flows/stages/identification/IdentificationStage.ts
|
||||||
msgid "Need an account?"
|
msgid "Need an account?"
|
||||||
msgstr "Potrzebujesz konta?"
|
msgstr "Potrzebujesz konta?"
|
||||||
|
@ -3282,6 +3415,10 @@ msgstr "Neguj wynik"
|
||||||
msgid "Negates the outcome of the binding. Messages are unaffected."
|
msgid "Negates the outcome of the binding. Messages are unaffected."
|
||||||
msgstr "Neguje wynik wiązania. Wiadomości pozostają nienaruszone."
|
msgstr "Neguje wynik wiązania. Wiadomości pozostają nienaruszone."
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/ApplicationWizard.ts
|
||||||
|
msgid "New application"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/outposts/ServiceConnectionWizard.ts
|
#: src/pages/outposts/ServiceConnectionWizard.ts
|
||||||
msgid "New outpost integration"
|
msgid "New outpost integration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3537,6 +3674,10 @@ msgstr "Kody odświeżania OAuth"
|
||||||
#~ msgid "OAuth/OIDC"
|
#~ msgid "OAuth/OIDC"
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "OAuth2/OIDC"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
msgid "OIDC JWKS"
|
msgid "OIDC JWKS"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3810,6 +3951,21 @@ msgstr "Hasło: wejście zamaskowane, hasło jest sprawdzane w oparciu o źród
|
||||||
msgid "Passwordless flow"
|
msgid "Passwordless flow"
|
||||||
msgstr "Przepływ bezhasłowy"
|
msgstr "Przepływ bezhasłowy"
|
||||||
|
|
||||||
|
#: src/pages/users/UserForm.ts
|
||||||
|
msgid "Path"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
||||||
|
msgid "Path new users will be created under. If left blank, the default path will be used.fo"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
|
#: src/pages/sources/plex/PlexSourceForm.ts
|
||||||
|
#: src/pages/sources/saml/SAMLSourceForm.ts
|
||||||
|
msgid "Path template for users created. Use placeholders like `%(slug)s` to insert the source slug."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/saml/SAMLSourceForm.ts
|
#: src/pages/sources/saml/SAMLSourceForm.ts
|
||||||
msgid "Persistent"
|
msgid "Persistent"
|
||||||
msgstr "Trwały"
|
msgstr "Trwały"
|
||||||
|
@ -4018,6 +4174,11 @@ msgstr "Ustawienia protokołu"
|
||||||
msgid "Protocol settings"
|
msgid "Protocol settings"
|
||||||
msgstr "Ustawienia protokołu"
|
msgstr "Ustawienia protokołu"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "Provide an LDAP interface for applications and users to authenticate against."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/ProviderListPage.ts
|
#: src/pages/providers/ProviderListPage.ts
|
||||||
msgid "Provide support for protocols like SAML and OAuth to assigned applications."
|
msgid "Provide support for protocols like SAML and OAuth to assigned applications."
|
||||||
msgstr "Zapewniają obsługę protokołów takich jak SAML i OAuth przypisanym aplikacjom."
|
msgstr "Zapewniają obsługę protokołów takich jak SAML i OAuth przypisanym aplikacjom."
|
||||||
|
@ -4048,6 +4209,7 @@ msgstr "Dostawca(y)"
|
||||||
msgid "Providers"
|
msgid "Providers"
|
||||||
msgstr "Dostawcy"
|
msgstr "Dostawcy"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
#: src/pages/outposts/OutpostForm.ts
|
#: src/pages/outposts/OutpostForm.ts
|
||||||
#: src/pages/outposts/OutpostListPage.ts
|
#: src/pages/outposts/OutpostListPage.ts
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
|
@ -4055,9 +4217,9 @@ msgstr "Dostawcy"
|
||||||
msgid "Proxy"
|
msgid "Proxy"
|
||||||
msgstr "Proxy"
|
msgstr "Proxy"
|
||||||
|
|
||||||
#: src/pages/providers/ProviderWizard.ts
|
#: src/pages/applications/wizard/proxy/TypeProxyApplicationWizardPage.ts
|
||||||
#~ msgid "Proxy details"
|
msgid "Proxy details"
|
||||||
#~ msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/oauth2/OAuth2ProviderForm.ts
|
#: src/pages/providers/oauth2/OAuth2ProviderForm.ts
|
||||||
msgid "Public"
|
msgid "Public"
|
||||||
|
@ -4072,6 +4234,7 @@ msgid "Public key, acquired from https://www.google.com/recaptcha/intro/v3.html.
|
||||||
msgstr "Klucz publiczny uzyskany z https://www.google.com/recaptcha/intro/v3.html."
|
msgstr "Klucz publiczny uzyskany z https://www.google.com/recaptcha/intro/v3.html."
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr "Wydawca"
|
msgstr "Wydawca"
|
||||||
|
|
||||||
|
@ -4324,13 +4487,17 @@ msgstr "Wróć do wyboru urządzeń"
|
||||||
msgid "Revoked?"
|
msgid "Revoked?"
|
||||||
msgstr "Unieważniono?"
|
msgstr "Unieważniono?"
|
||||||
|
|
||||||
|
#: src/elements/TreeView.ts
|
||||||
|
msgid "Root"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/ldap/LDAPSourceViewPage.ts
|
#: src/pages/sources/ldap/LDAPSourceViewPage.ts
|
||||||
msgid "Run sync again"
|
msgid "Run sync again"
|
||||||
msgstr "Uruchom ponownie synchronizację"
|
msgstr "Uruchom ponownie synchronizację"
|
||||||
|
|
||||||
#: src/pages/providers/ProviderWizard.ts
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
#~ msgid "SAML"
|
msgid "SAML"
|
||||||
#~ msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/ProviderWizard.ts
|
#: src/pages/providers/ProviderWizard.ts
|
||||||
#~ msgid "SAML (metadata import)"
|
#~ msgid "SAML (metadata import)"
|
||||||
|
@ -4344,9 +4511,9 @@ msgstr "Nazwa atrybutu SAML"
|
||||||
msgid "SAML Metadata"
|
msgid "SAML Metadata"
|
||||||
msgstr "Metadane SAML"
|
msgstr "Metadane SAML"
|
||||||
|
|
||||||
#: src/pages/providers/ProviderWizard.ts
|
#: src/pages/applications/wizard/saml/TypeSAMLConfigApplicationWizardPage.ts
|
||||||
#~ msgid "SAML details"
|
msgid "SAML details"
|
||||||
#~ msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/ProviderWizard.ts
|
#: src/pages/providers/ProviderWizard.ts
|
||||||
#~ msgid "SAML details (import from metadata)"
|
#~ msgid "SAML details (import from metadata)"
|
||||||
|
@ -4747,6 +4914,14 @@ msgstr "Pojedyncze monity, których można używać dla etapów monitów."
|
||||||
msgid "Single use"
|
msgid "Single use"
|
||||||
msgstr "Jednorazowego użytku"
|
msgstr "Jednorazowego użytku"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Single-page applications"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Single-page applications which handle authentication in the browser (for example, Javascript, Angular, React, Vue)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#~ msgid "Skip path regex"
|
#~ msgid "Skip path regex"
|
||||||
#~ msgstr "Pomiń path regex"
|
#~ msgstr "Pomiń path regex"
|
||||||
|
|
||||||
|
@ -5470,6 +5645,10 @@ msgstr ""
|
||||||
msgid "The following objects use {objName}"
|
msgid "The following objects use {objName}"
|
||||||
msgstr "Następujące obiekty używają {objName}"
|
msgstr "Następujące obiekty używają {objName}"
|
||||||
|
|
||||||
|
#: src/pages/providers/ProviderWizard.ts
|
||||||
|
msgid "The new application wizard greatly simplifies the steps required to create applications and providers."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#~ msgid ""
|
#~ msgid ""
|
||||||
#~ "The policy passes when the reputation score is above the threshold, and\n"
|
#~ "The policy passes when the reputation score is above the threshold, and\n"
|
||||||
#~ "doesn't pass when either or both of the selected options are equal or less than the\n"
|
#~ "doesn't pass when either or both of the selected options are equal or less than the\n"
|
||||||
|
@ -5531,6 +5710,10 @@ msgstr ""
|
||||||
msgid "These policies control which users can access this application."
|
msgid "These policies control which users can access this application."
|
||||||
msgstr "Te zasady kontrolują, którzy użytkownicy mogą uzyskać dostęp do tej aplikacji."
|
msgstr "Te zasady kontrolują, którzy użytkownicy mogą uzyskać dostęp do tej aplikacji."
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthAPIApplicationWizardPage.ts
|
||||||
|
msgid "This configuration can be used to authenticate to authentik with other APIs other otherwise programmatically."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/flows/FlowInspector.ts
|
#: src/flows/FlowInspector.ts
|
||||||
msgid "This flow is completed."
|
msgid "This flow is completed."
|
||||||
msgstr "Ten przepływ jest zakończony."
|
msgstr "Ten przepływ jest zakończony."
|
||||||
|
@ -5715,6 +5898,14 @@ msgstr "Transporty"
|
||||||
msgid "Trusted OIDC Sources"
|
msgid "Trusted OIDC Sources"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/providers/ProviderWizard.ts
|
||||||
|
msgid "Try it now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/providers/ProviderWizard.ts
|
||||||
|
msgid "Try the new application wizard"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/interfaces/locale.ts
|
#: src/interfaces/locale.ts
|
||||||
msgid "Turkish"
|
msgid "Turkish"
|
||||||
msgstr "Turecki"
|
msgstr "Turecki"
|
||||||
|
@ -5768,6 +5959,10 @@ msgstr "UPN"
|
||||||
msgid "URL settings"
|
msgid "URL settings"
|
||||||
msgstr "Ustawienia URL"
|
msgstr "Ustawienia URL"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLConfigApplicationWizardPage.ts
|
||||||
|
msgid "URL that authentik will redirect back to after successful authentication."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/saml/SAMLSourceForm.ts
|
#: src/pages/sources/saml/SAMLSourceForm.ts
|
||||||
msgid "URL that the initial Login request is sent to."
|
msgid "URL that the initial Login request is sent to."
|
||||||
msgstr "URL, do którego wysyłane jest początkowe żądanie logowania."
|
msgstr "URL, do którego wysyłane jest początkowe żądanie logowania."
|
||||||
|
@ -5788,6 +5983,10 @@ msgstr "URL używany przez authentik do pobierania tokenów."
|
||||||
msgid "URL used to request the initial token. This URL is only required for OAuth 1."
|
msgid "URL used to request the initial token. This URL is only required for OAuth 1."
|
||||||
msgstr "URL używany do żądania początkowego tokena. Ten adres URL jest wymagany tylko w przypadku protokołu OAuth 1."
|
msgstr "URL używany do żądania początkowego tokena. Ten adres URL jest wymagany tylko w przypadku protokołu OAuth 1."
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/link/TypeLinkApplicationWizardPage.ts
|
||||||
|
msgid "URL which will be opened when a user clicks on the application."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
msgid "Unauthenticated Paths"
|
msgid "Unauthenticated Paths"
|
||||||
msgstr "Nieuwierzytelnione ścieżki"
|
msgstr "Nieuwierzytelnione ścieżki"
|
||||||
|
@ -6127,6 +6326,10 @@ msgstr "Zdarzenia użytkownika"
|
||||||
msgid "User fields"
|
msgid "User fields"
|
||||||
msgstr "Pola użytkownika"
|
msgstr "Pola użytkownika"
|
||||||
|
|
||||||
|
#: src/pages/users/UserListPage.ts
|
||||||
|
msgid "User folders"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/interfaces/AdminInterface.ts
|
#: src/interfaces/AdminInterface.ts
|
||||||
msgid "User interface"
|
msgid "User interface"
|
||||||
msgstr "Interfejs użytkownika"
|
msgstr "Interfejs użytkownika"
|
||||||
|
@ -6151,6 +6354,17 @@ msgstr "Filtr obiektów użytkownika"
|
||||||
msgid "User password writeback"
|
msgid "User password writeback"
|
||||||
msgstr "Zapis zwrotny hasła użytkownika"
|
msgstr "Zapis zwrotny hasła użytkownika"
|
||||||
|
|
||||||
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
|
#: src/pages/sources/plex/PlexSourceForm.ts
|
||||||
|
#: src/pages/sources/saml/SAMLSourceForm.ts
|
||||||
|
msgid "User path"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
||||||
|
msgid "User path template"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/tenants/TenantForm.ts
|
#: src/pages/tenants/TenantForm.ts
|
||||||
msgid "User settings flow"
|
msgid "User settings flow"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -6386,6 +6600,10 @@ msgstr "Ostrzeżenie: domena authentik nie jest skonfigurowana, uwierzytelnianie
|
||||||
msgid "Web Certificate"
|
msgid "Web Certificate"
|
||||||
msgstr "Certyfikat sieciowy"
|
msgstr "Certyfikat sieciowy"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Web application"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/authenticator_validate/AuthenticatorValidateStageForm.ts
|
#: src/pages/stages/authenticator_validate/AuthenticatorValidateStageForm.ts
|
||||||
msgid "WebAuthn Authenticators"
|
msgid "WebAuthn Authenticators"
|
||||||
msgstr "Uwierzytelniacze WebAuthn"
|
msgstr "Uwierzytelniacze WebAuthn"
|
||||||
|
@ -6506,6 +6724,10 @@ msgstr ""
|
||||||
msgid "X509 Subject"
|
msgid "X509 Subject"
|
||||||
msgstr "Temat X509"
|
msgstr "Temat X509"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "XML-based SSO standard. Use this if your application only supports SAML."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/elements/oauth/UserRefreshList.ts
|
#: src/elements/oauth/UserRefreshList.ts
|
||||||
#: src/pages/applications/ApplicationCheckAccessForm.ts
|
#: src/pages/applications/ApplicationCheckAccessForm.ts
|
||||||
#: src/pages/groups/GroupListPage.ts
|
#: src/pages/groups/GroupListPage.ts
|
||||||
|
|
|
@ -87,6 +87,7 @@ msgstr ""
|
||||||
msgid "A policy used for testing. Always returns the same result as specified below after waiting a random duration."
|
msgid "A policy used for testing. Always returns the same result as specified below after waiting a random duration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLConfigApplicationWizardPage.ts
|
||||||
#: src/pages/providers/saml/SAMLProviderForm.ts
|
#: src/pages/providers/saml/SAMLProviderForm.ts
|
||||||
#: src/pages/providers/saml/SAMLProviderViewPage.ts
|
#: src/pages/providers/saml/SAMLProviderViewPage.ts
|
||||||
msgid "ACS URL"
|
msgid "ACS URL"
|
||||||
|
@ -110,6 +111,10 @@ msgstr ""
|
||||||
msgid "ANY, any policy must match to include this stage access."
|
msgid "ANY, any policy must match to include this stage access."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "API"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/tokens/TokenListPage.ts
|
#: src/pages/tokens/TokenListPage.ts
|
||||||
msgid "API Access"
|
msgid "API Access"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -255,6 +260,10 @@ msgstr ""
|
||||||
msgid "Additional Scope"
|
msgid "Additional Scope"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
|
msgid "Additional UI settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
msgid "Additional group DN, prepended to the Base DN."
|
msgid "Additional group DN, prepended to the Base DN."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -376,6 +385,7 @@ msgid "App password (can be used to login using a flow executor)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/elements/user/UserConsentList.ts
|
#: src/elements/user/UserConsentList.ts
|
||||||
|
#: src/flows/stages/consent/ConsentStage.ts
|
||||||
#: src/pages/admin-overview/TopApplicationsTable.ts
|
#: src/pages/admin-overview/TopApplicationsTable.ts
|
||||||
#: src/pages/providers/ProviderListPage.ts
|
#: src/pages/providers/ProviderListPage.ts
|
||||||
msgid "Application"
|
msgid "Application"
|
||||||
|
@ -386,6 +396,14 @@ msgstr ""
|
||||||
msgid "Application Icon"
|
msgid "Application Icon"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/link/TypeLinkApplicationWizardPage.ts
|
||||||
|
msgid "Application Link"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/flows/stages/consent/ConsentStage.ts
|
||||||
|
msgid "Application already has access to the following permissions:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/elements/charts/UserChart.ts
|
#: src/elements/charts/UserChart.ts
|
||||||
msgid "Application authorizations"
|
msgid "Application authorizations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -394,11 +412,25 @@ msgstr ""
|
||||||
msgid "Application authorized"
|
msgid "Application authorized"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
|
msgid "Application details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/flows/stages/consent/ConsentStage.ts
|
||||||
|
msgid "Application requires following new permissions:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/flows/stages/consent/ConsentStage.ts
|
#: src/flows/stages/consent/ConsentStage.ts
|
||||||
msgid "Application requires following permissions:"
|
msgid "Application requires following permissions:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Application type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
msgid "Application's display Name."
|
msgid "Application's display Name."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -413,6 +445,18 @@ msgstr ""
|
||||||
msgid "Applications"
|
msgid "Applications"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Applications which handle the authentication server-side (for example, Python, Go, Rust, Java, PHP)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Applications which redirect users to a non-web callback (for example, Android, iOS)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/elements/wizard/ActionWizardPage.ts
|
||||||
|
msgid "Apply changes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/admin-overview/AdminOverviewPage.ts
|
#: src/pages/admin-overview/AdminOverviewPage.ts
|
||||||
msgid "Apps with most usage"
|
msgid "Apps with most usage"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -528,6 +572,14 @@ msgstr ""
|
||||||
msgid "Authentication flow"
|
msgid "Authentication flow"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "Authentication method"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Authentication without user interaction, or machine-to-machine authentication."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/flows/stages/authenticator_validate/AuthenticatorValidateStage.ts
|
#: src/flows/stages/authenticator_validate/AuthenticatorValidateStage.ts
|
||||||
msgid "Authenticator"
|
msgid "Authenticator"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -553,6 +605,7 @@ msgstr ""
|
||||||
msgid "Authorization URL"
|
msgid "Authorization URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
#: src/pages/providers/oauth2/OAuth2ProviderForm.ts
|
#: src/pages/providers/oauth2/OAuth2ProviderForm.ts
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
#: src/pages/providers/saml/SAMLProviderForm.ts
|
#: src/pages/providers/saml/SAMLProviderForm.ts
|
||||||
|
@ -614,6 +667,7 @@ msgstr ""
|
||||||
#~ msgid "Backup status"
|
#~ msgid "Backup status"
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/ldap/TypeLDAPApplicationWizardPage.ts
|
||||||
#: src/pages/providers/ldap/LDAPProviderForm.ts
|
#: src/pages/providers/ldap/LDAPProviderForm.ts
|
||||||
#: src/pages/providers/ldap/LDAPProviderViewPage.ts
|
#: src/pages/providers/ldap/LDAPProviderViewPage.ts
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
|
@ -709,6 +763,10 @@ msgstr ""
|
||||||
msgid "Built-in"
|
msgid "Built-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthAPIApplicationWizardPage.ts
|
||||||
|
msgid "By default, all service accounts can authenticate as this application, as long as they have a valid token of the type app-password."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/identification/IdentificationStageForm.ts
|
#: src/pages/stages/identification/IdentificationStageForm.ts
|
||||||
msgid "By default, only icons are shown for sources. Enable this to show their full names."
|
msgid "By default, only icons are shown for sources. Enable this to show their full names."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1210,6 +1268,7 @@ msgstr ""
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationListPage.ts
|
#: src/pages/applications/ApplicationListPage.ts
|
||||||
#: src/pages/applications/ApplicationListPage.ts
|
#: src/pages/applications/ApplicationListPage.ts
|
||||||
|
#: src/pages/applications/wizard/ApplicationWizard.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
#: src/pages/events/RuleListPage.ts
|
#: src/pages/events/RuleListPage.ts
|
||||||
|
@ -1348,6 +1407,10 @@ msgstr ""
|
||||||
msgid "Create a new application"
|
msgid "Create a new application"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/ApplicationWizard.ts
|
||||||
|
msgid "Create a new application."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/outposts/ServiceConnectionWizard.ts
|
#: src/pages/outposts/ServiceConnectionWizard.ts
|
||||||
msgid "Create a new outpost integration."
|
msgid "Create a new outpost integration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1372,14 +1435,27 @@ msgstr ""
|
||||||
msgid "Create a new stage."
|
msgid "Create a new stage."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
|
msgid "Create application"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/users/ServiceAccountForm.ts
|
#: src/pages/users/ServiceAccountForm.ts
|
||||||
msgid "Create group"
|
msgid "Create group"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/ldap/TypeLDAPApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/proxy/TypeProxyApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLConfigApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLImportApplicationWizardPage.ts
|
||||||
msgid "Create provider"
|
msgid "Create provider"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/ldap/TypeLDAPApplicationWizardPage.ts
|
||||||
|
msgid "Create service account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
||||||
msgid "Create users as inactive"
|
msgid "Create users as inactive"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1561,6 +1637,7 @@ msgid "Deprecated. Instead of using this field, configure the JWKS data/URL in S
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
#: src/pages/property-mappings/PropertyMappingScopeForm.ts
|
#: src/pages/property-mappings/PropertyMappingScopeForm.ts
|
||||||
#: src/pages/system-tasks/SystemTaskListPage.ts
|
#: src/pages/system-tasks/SystemTaskListPage.ts
|
||||||
#: src/pages/tokens/TokenForm.ts
|
#: src/pages/tokens/TokenForm.ts
|
||||||
|
@ -2077,6 +2154,14 @@ msgstr ""
|
||||||
msgid "External Host"
|
msgid "External Host"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/proxy/TypeProxyApplicationWizardPage.ts
|
||||||
|
msgid "External domain"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/proxy/TypeProxyApplicationWizardPage.ts
|
||||||
|
msgid "External domain you will be accessing the domain from."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
msgid "External host"
|
msgid "External host"
|
||||||
|
@ -2250,6 +2335,10 @@ msgstr ""
|
||||||
msgid "Flow used when authorizing this provider."
|
msgid "Flow used when authorizing this provider."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
|
msgid "Flow used when users access this application."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/flows/FlowListPage.ts
|
#: src/pages/flows/FlowListPage.ts
|
||||||
msgid "Flow(s)"
|
msgid "Flow(s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -2487,7 +2576,6 @@ msgid "Hide managed mappings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/users/RelatedUserList.ts
|
#: src/pages/users/RelatedUserList.ts
|
||||||
#: src/pages/users/UserListPage.ts
|
|
||||||
msgid "Hide service-accounts"
|
msgid "Hide service-accounts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -2653,10 +2741,22 @@ msgstr ""
|
||||||
msgid "Import Flow"
|
msgid "Import Flow"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Import SAML Metadata"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLImportApplicationWizardPage.ts
|
||||||
|
msgid "Import SAML metadata"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
msgid "Import certificates of external providers or create certificates to sign requests with."
|
msgid "Import certificates of external providers or create certificates to sign requests with."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Import the metadata document of the applicaation you want to configure."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/flows/stages/authenticator_validate/AuthenticatorValidateStage.ts
|
#: src/flows/stages/authenticator_validate/AuthenticatorValidateStage.ts
|
||||||
msgid "In case you can't access any other method."
|
msgid "In case you can't access any other method."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -2803,6 +2903,7 @@ msgstr ""
|
||||||
msgid "Kubeconfig"
|
msgid "Kubeconfig"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
#: src/pages/outposts/OutpostForm.ts
|
#: src/pages/outposts/OutpostForm.ts
|
||||||
#: src/pages/outposts/OutpostListPage.ts
|
#: src/pages/outposts/OutpostListPage.ts
|
||||||
msgid "LDAP"
|
msgid "LDAP"
|
||||||
|
@ -2824,9 +2925,9 @@ msgstr ""
|
||||||
msgid "LDAP Sync status"
|
msgid "LDAP Sync status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/ProviderWizard.ts
|
#: src/pages/applications/wizard/ldap/TypeLDAPApplicationWizardPage.ts
|
||||||
#~ msgid "LDAP details"
|
msgid "LDAP details"
|
||||||
#~ msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/prompt/PromptForm.ts
|
#: src/pages/stages/prompt/PromptForm.ts
|
||||||
#: src/pages/stages/prompt/PromptListPage.ts
|
#: src/pages/stages/prompt/PromptListPage.ts
|
||||||
|
@ -2879,6 +2980,10 @@ msgstr ""
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "Legacy applications which don't natively support SSO."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/identification/IdentificationStageForm.ts
|
#: src/pages/stages/identification/IdentificationStageForm.ts
|
||||||
msgid "Let the user identify themselves with their username or Email address."
|
msgid "Let the user identify themselves with their username or Email address."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -2887,6 +2992,11 @@ msgstr ""
|
||||||
#~ msgid "Library"
|
#~ msgid "Library"
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/link/TypeLinkApplicationWizardPage.ts
|
||||||
|
msgid "Link"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
#: src/pages/sources/plex/PlexSourceForm.ts
|
#: src/pages/sources/plex/PlexSourceForm.ts
|
||||||
msgid "Link to a user with identical email address. Can have security implications when a source doesn't validate email addresses"
|
msgid "Link to a user with identical email address. Can have security implications when a source doesn't validate email addresses"
|
||||||
|
@ -2945,6 +3055,7 @@ msgstr ""
|
||||||
#: src/elements/Spinner.ts
|
#: src/elements/Spinner.ts
|
||||||
#: src/pages/applications/ApplicationCheckAccessForm.ts
|
#: src/pages/applications/ApplicationCheckAccessForm.ts
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
#: src/pages/events/RuleForm.ts
|
#: src/pages/events/RuleForm.ts
|
||||||
#: src/pages/events/RuleForm.ts
|
#: src/pages/events/RuleForm.ts
|
||||||
#: src/pages/events/TransportForm.ts
|
#: src/pages/events/TransportForm.ts
|
||||||
|
@ -2980,7 +3091,6 @@ msgstr ""
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
|
||||||
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
#: src/pages/sources/plex/PlexSourceForm.ts
|
#: src/pages/sources/plex/PlexSourceForm.ts
|
||||||
|
@ -3005,7 +3115,6 @@ msgstr ""
|
||||||
#: src/pages/stages/password/PasswordStageForm.ts
|
#: src/pages/stages/password/PasswordStageForm.ts
|
||||||
#: src/pages/stages/prompt/PromptStageForm.ts
|
#: src/pages/stages/prompt/PromptStageForm.ts
|
||||||
#: src/pages/stages/prompt/PromptStageForm.ts
|
#: src/pages/stages/prompt/PromptStageForm.ts
|
||||||
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
|
||||||
#: src/pages/tenants/TenantForm.ts
|
#: src/pages/tenants/TenantForm.ts
|
||||||
#: src/pages/tenants/TenantForm.ts
|
#: src/pages/tenants/TenantForm.ts
|
||||||
#: src/pages/tenants/TenantForm.ts
|
#: src/pages/tenants/TenantForm.ts
|
||||||
|
@ -3110,6 +3219,14 @@ msgstr ""
|
||||||
msgid "Managed by authentik (Discovered)"
|
msgid "Managed by authentik (Discovered)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Manual configuration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Manually configure SAML"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
||||||
msgid "Mark newly created users as inactive."
|
msgid "Mark newly created users as inactive."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3155,11 +3272,18 @@ msgstr ""
|
||||||
msgid "Messages"
|
msgid "Messages"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLImportApplicationWizardPage.ts
|
||||||
#: src/pages/providers/saml/SAMLProviderImportForm.ts
|
#: src/pages/providers/saml/SAMLProviderImportForm.ts
|
||||||
#: src/pages/sources/saml/SAMLSourceViewPage.ts
|
#: src/pages/sources/saml/SAMLSourceViewPage.ts
|
||||||
msgid "Metadata"
|
msgid "Metadata"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthAPIApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthImplicitApplicationWizardPage.ts
|
||||||
|
msgid "Method details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/policies/password/PasswordPolicyForm.ts
|
#: src/pages/policies/password/PasswordPolicyForm.ts
|
||||||
msgid "Minimum amount of Digits"
|
msgid "Minimum amount of Digits"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3203,6 +3327,10 @@ msgstr ""
|
||||||
msgid "Model updated"
|
msgid "Model updated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "Modern applications, APIs and Single-page applications."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#:
|
#:
|
||||||
#~ msgid "Monitor"
|
#~ msgid "Monitor"
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
|
@ -3218,6 +3346,7 @@ msgstr ""
|
||||||
#: src/elements/forms/DeleteBulkForm.ts
|
#: src/elements/forms/DeleteBulkForm.ts
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
#: src/pages/applications/ApplicationListPage.ts
|
#: src/pages/applications/ApplicationListPage.ts
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairForm.ts
|
#: src/pages/crypto/CertificateKeyPairForm.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
|
@ -3315,6 +3444,10 @@ msgstr ""
|
||||||
msgid "NameID Property Mapping"
|
msgid "NameID Property Mapping"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Native application"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/flows/stages/identification/IdentificationStage.ts
|
#: src/flows/stages/identification/IdentificationStage.ts
|
||||||
msgid "Need an account?"
|
msgid "Need an account?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3327,6 +3460,10 @@ msgstr ""
|
||||||
msgid "Negates the outcome of the binding. Messages are unaffected."
|
msgid "Negates the outcome of the binding. Messages are unaffected."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/ApplicationWizard.ts
|
||||||
|
msgid "New application"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/outposts/ServiceConnectionWizard.ts
|
#: src/pages/outposts/ServiceConnectionWizard.ts
|
||||||
msgid "New outpost integration"
|
msgid "New outpost integration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3587,6 +3724,10 @@ msgstr ""
|
||||||
#~ msgid "OAuth/OIDC"
|
#~ msgid "OAuth/OIDC"
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "OAuth2/OIDC"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
msgid "OIDC JWKS"
|
msgid "OIDC JWKS"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3866,6 +4007,21 @@ msgstr ""
|
||||||
msgid "Passwordless flow"
|
msgid "Passwordless flow"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/users/UserForm.ts
|
||||||
|
msgid "Path"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
||||||
|
msgid "Path new users will be created under. If left blank, the default path will be used.fo"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
|
#: src/pages/sources/plex/PlexSourceForm.ts
|
||||||
|
#: src/pages/sources/saml/SAMLSourceForm.ts
|
||||||
|
msgid "Path template for users created. Use placeholders like `%(slug)s` to insert the source slug."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/saml/SAMLSourceForm.ts
|
#: src/pages/sources/saml/SAMLSourceForm.ts
|
||||||
msgid "Persistent"
|
msgid "Persistent"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -4077,6 +4233,11 @@ msgstr ""
|
||||||
msgid "Protocol settings"
|
msgid "Protocol settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "Provide an LDAP interface for applications and users to authenticate against."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/ProviderListPage.ts
|
#: src/pages/providers/ProviderListPage.ts
|
||||||
msgid "Provide support for protocols like SAML and OAuth to assigned applications."
|
msgid "Provide support for protocols like SAML and OAuth to assigned applications."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -4108,6 +4269,7 @@ msgstr ""
|
||||||
msgid "Providers"
|
msgid "Providers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
#: src/pages/outposts/OutpostForm.ts
|
#: src/pages/outposts/OutpostForm.ts
|
||||||
#: src/pages/outposts/OutpostListPage.ts
|
#: src/pages/outposts/OutpostListPage.ts
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
|
@ -4115,9 +4277,9 @@ msgstr ""
|
||||||
msgid "Proxy"
|
msgid "Proxy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/ProviderWizard.ts
|
#: src/pages/applications/wizard/proxy/TypeProxyApplicationWizardPage.ts
|
||||||
#~ msgid "Proxy details"
|
msgid "Proxy details"
|
||||||
#~ msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/oauth2/OAuth2ProviderForm.ts
|
#: src/pages/providers/oauth2/OAuth2ProviderForm.ts
|
||||||
msgid "Public"
|
msgid "Public"
|
||||||
|
@ -4132,6 +4294,7 @@ msgid "Public key, acquired from https://www.google.com/recaptcha/intro/v3.html.
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -4394,13 +4557,17 @@ msgstr ""
|
||||||
msgid "Revoked?"
|
msgid "Revoked?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/elements/TreeView.ts
|
||||||
|
msgid "Root"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/ldap/LDAPSourceViewPage.ts
|
#: src/pages/sources/ldap/LDAPSourceViewPage.ts
|
||||||
msgid "Run sync again"
|
msgid "Run sync again"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/ProviderWizard.ts
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
#~ msgid "SAML"
|
msgid "SAML"
|
||||||
#~ msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/ProviderWizard.ts
|
#: src/pages/providers/ProviderWizard.ts
|
||||||
#~ msgid "SAML (metadata import)"
|
#~ msgid "SAML (metadata import)"
|
||||||
|
@ -4414,9 +4581,9 @@ msgstr ""
|
||||||
msgid "SAML Metadata"
|
msgid "SAML Metadata"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/ProviderWizard.ts
|
#: src/pages/applications/wizard/saml/TypeSAMLConfigApplicationWizardPage.ts
|
||||||
#~ msgid "SAML details"
|
msgid "SAML details"
|
||||||
#~ msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/ProviderWizard.ts
|
#: src/pages/providers/ProviderWizard.ts
|
||||||
#~ msgid "SAML details (import from metadata)"
|
#~ msgid "SAML details (import from metadata)"
|
||||||
|
@ -4825,6 +4992,14 @@ msgstr ""
|
||||||
msgid "Single use"
|
msgid "Single use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Single-page applications"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Single-page applications which handle authentication in the browser (for example, Javascript, Angular, React, Vue)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
#~ msgid "Skip path regex"
|
#~ msgid "Skip path regex"
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
|
@ -5574,6 +5749,10 @@ msgstr ""
|
||||||
msgid "The following objects use {objName}"
|
msgid "The following objects use {objName}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/providers/ProviderWizard.ts
|
||||||
|
msgid "The new application wizard greatly simplifies the steps required to create applications and providers."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/policies/reputation/ReputationPolicyForm.ts
|
#: src/pages/policies/reputation/ReputationPolicyForm.ts
|
||||||
#~ msgid ""
|
#~ msgid ""
|
||||||
#~ "The policy passes when the reputation score is above the threshold, and\n"
|
#~ "The policy passes when the reputation score is above the threshold, and\n"
|
||||||
|
@ -5626,6 +5805,10 @@ msgstr ""
|
||||||
msgid "These policies control which users can access this application."
|
msgid "These policies control which users can access this application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthAPIApplicationWizardPage.ts
|
||||||
|
msgid "This configuration can be used to authenticate to authentik with other APIs other otherwise programmatically."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/flows/FlowInspector.ts
|
#: src/flows/FlowInspector.ts
|
||||||
msgid "This flow is completed."
|
msgid "This flow is completed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -5814,6 +5997,14 @@ msgstr ""
|
||||||
msgid "Trusted OIDC Sources"
|
msgid "Trusted OIDC Sources"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/providers/ProviderWizard.ts
|
||||||
|
msgid "Try it now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/providers/ProviderWizard.ts
|
||||||
|
msgid "Try the new application wizard"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/interfaces/locale.ts
|
#: src/interfaces/locale.ts
|
||||||
msgid "Turkish"
|
msgid "Turkish"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -5867,6 +6058,10 @@ msgstr ""
|
||||||
msgid "URL settings"
|
msgid "URL settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLConfigApplicationWizardPage.ts
|
||||||
|
msgid "URL that authentik will redirect back to after successful authentication."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/saml/SAMLSourceForm.ts
|
#: src/pages/sources/saml/SAMLSourceForm.ts
|
||||||
msgid "URL that the initial Login request is sent to."
|
msgid "URL that the initial Login request is sent to."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -5887,6 +6082,10 @@ msgstr ""
|
||||||
msgid "URL used to request the initial token. This URL is only required for OAuth 1."
|
msgid "URL used to request the initial token. This URL is only required for OAuth 1."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/link/TypeLinkApplicationWizardPage.ts
|
||||||
|
msgid "URL which will be opened when a user clicks on the application."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
msgid "Unauthenticated Paths"
|
msgid "Unauthenticated Paths"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -6231,6 +6430,10 @@ msgstr ""
|
||||||
msgid "User fields"
|
msgid "User fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/users/UserListPage.ts
|
||||||
|
msgid "User folders"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/interfaces/AdminInterface.ts
|
#: src/interfaces/AdminInterface.ts
|
||||||
msgid "User interface"
|
msgid "User interface"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -6256,6 +6459,17 @@ msgstr ""
|
||||||
msgid "User password writeback"
|
msgid "User password writeback"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
|
#: src/pages/sources/plex/PlexSourceForm.ts
|
||||||
|
#: src/pages/sources/saml/SAMLSourceForm.ts
|
||||||
|
msgid "User path"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
||||||
|
msgid "User path template"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/tenants/TenantForm.ts
|
#: src/pages/tenants/TenantForm.ts
|
||||||
msgid "User settings flow"
|
msgid "User settings flow"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -6492,6 +6706,10 @@ msgstr ""
|
||||||
msgid "Web Certificate"
|
msgid "Web Certificate"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Web application"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/authenticator_validate/AuthenticatorValidateStageForm.ts
|
#: src/pages/stages/authenticator_validate/AuthenticatorValidateStageForm.ts
|
||||||
msgid "WebAuthn Authenticators"
|
msgid "WebAuthn Authenticators"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -6611,6 +6829,10 @@ msgstr ""
|
||||||
msgid "X509 Subject"
|
msgid "X509 Subject"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "XML-based SSO standard. Use this if your application only supports SAML."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/elements/oauth/UserRefreshList.ts
|
#: src/elements/oauth/UserRefreshList.ts
|
||||||
#: src/pages/applications/ApplicationCheckAccessForm.ts
|
#: src/pages/applications/ApplicationCheckAccessForm.ts
|
||||||
#: src/pages/groups/GroupListPage.ts
|
#: src/pages/groups/GroupListPage.ts
|
||||||
|
|
|
@ -90,6 +90,7 @@ msgstr ""
|
||||||
msgid "A policy used for testing. Always returns the same result as specified below after waiting a random duration."
|
msgid "A policy used for testing. Always returns the same result as specified below after waiting a random duration."
|
||||||
msgstr "Test için kullanılan bir ilke. Her zaman rastgele bir süre bekledikten sonra aşağıda belirtilen sonucu döndürür."
|
msgstr "Test için kullanılan bir ilke. Her zaman rastgele bir süre bekledikten sonra aşağıda belirtilen sonucu döndürür."
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLConfigApplicationWizardPage.ts
|
||||||
#: src/pages/providers/saml/SAMLProviderForm.ts
|
#: src/pages/providers/saml/SAMLProviderForm.ts
|
||||||
#: src/pages/providers/saml/SAMLProviderViewPage.ts
|
#: src/pages/providers/saml/SAMLProviderViewPage.ts
|
||||||
msgid "ACS URL"
|
msgid "ACS URL"
|
||||||
|
@ -113,6 +114,10 @@ msgstr "HERHANGİ, erişim izni vermek için herhangi bir ilke eşleşmelidir."
|
||||||
msgid "ANY, any policy must match to include this stage access."
|
msgid "ANY, any policy must match to include this stage access."
|
||||||
msgstr "HERHANGİ, bu aşama erişimini içerecek şekilde herhangi bir ilke"
|
msgstr "HERHANGİ, bu aşama erişimini içerecek şekilde herhangi bir ilke"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "API"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/tokens/TokenListPage.ts
|
#: src/pages/tokens/TokenListPage.ts
|
||||||
msgid "API Access"
|
msgid "API Access"
|
||||||
msgstr "API Erişimi"
|
msgstr "API Erişimi"
|
||||||
|
@ -257,6 +262,10 @@ msgstr "Ekleme Kullanıcı DN"
|
||||||
msgid "Additional Scope"
|
msgid "Additional Scope"
|
||||||
msgstr "Ek Kapsam"
|
msgstr "Ek Kapsam"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
|
msgid "Additional UI settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
msgid "Additional group DN, prepended to the Base DN."
|
msgid "Additional group DN, prepended to the Base DN."
|
||||||
msgstr "Ek grup DN, Base DN için eklenmiş."
|
msgstr "Ek grup DN, Base DN için eklenmiş."
|
||||||
|
@ -377,6 +386,7 @@ msgid "App password (can be used to login using a flow executor)"
|
||||||
msgstr "Uygulama parolası (bir akış yürütücüyle giriş yapmak için kullanılabilir)"
|
msgstr "Uygulama parolası (bir akış yürütücüyle giriş yapmak için kullanılabilir)"
|
||||||
|
|
||||||
#: src/elements/user/UserConsentList.ts
|
#: src/elements/user/UserConsentList.ts
|
||||||
|
#: src/flows/stages/consent/ConsentStage.ts
|
||||||
#: src/pages/admin-overview/TopApplicationsTable.ts
|
#: src/pages/admin-overview/TopApplicationsTable.ts
|
||||||
#: src/pages/providers/ProviderListPage.ts
|
#: src/pages/providers/ProviderListPage.ts
|
||||||
msgid "Application"
|
msgid "Application"
|
||||||
|
@ -387,6 +397,14 @@ msgstr "Uygulama"
|
||||||
msgid "Application Icon"
|
msgid "Application Icon"
|
||||||
msgstr "Uygulama Simgesi"
|
msgstr "Uygulama Simgesi"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/link/TypeLinkApplicationWizardPage.ts
|
||||||
|
msgid "Application Link"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/flows/stages/consent/ConsentStage.ts
|
||||||
|
msgid "Application already has access to the following permissions:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/elements/charts/UserChart.ts
|
#: src/elements/charts/UserChart.ts
|
||||||
msgid "Application authorizations"
|
msgid "Application authorizations"
|
||||||
msgstr "Uygulama yetkilendirmeleri"
|
msgstr "Uygulama yetkilendirmeleri"
|
||||||
|
@ -395,11 +413,25 @@ msgstr "Uygulama yetkilendirmeleri"
|
||||||
msgid "Application authorized"
|
msgid "Application authorized"
|
||||||
msgstr "Başvuru yetkili"
|
msgstr "Başvuru yetkili"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
|
msgid "Application details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/flows/stages/consent/ConsentStage.ts
|
||||||
|
msgid "Application requires following new permissions:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/flows/stages/consent/ConsentStage.ts
|
#: src/flows/stages/consent/ConsentStage.ts
|
||||||
msgid "Application requires following permissions:"
|
msgid "Application requires following permissions:"
|
||||||
msgstr "Uygulama aşağıdaki izinleri gerektirir:"
|
msgstr "Uygulama aşağıdaki izinleri gerektirir:"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Application type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
msgid "Application's display Name."
|
msgid "Application's display Name."
|
||||||
msgstr "Uygulamanın görünen Adı."
|
msgstr "Uygulamanın görünen Adı."
|
||||||
|
|
||||||
|
@ -414,6 +446,18 @@ msgstr "Uygulama (lar)"
|
||||||
msgid "Applications"
|
msgid "Applications"
|
||||||
msgstr "Uygulamalar"
|
msgstr "Uygulamalar"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Applications which handle the authentication server-side (for example, Python, Go, Rust, Java, PHP)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Applications which redirect users to a non-web callback (for example, Android, iOS)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/elements/wizard/ActionWizardPage.ts
|
||||||
|
msgid "Apply changes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/admin-overview/AdminOverviewPage.ts
|
#: src/pages/admin-overview/AdminOverviewPage.ts
|
||||||
msgid "Apps with most usage"
|
msgid "Apps with most usage"
|
||||||
msgstr "En çok kullanıma sahip uygulamalar"
|
msgstr "En çok kullanıma sahip uygulamalar"
|
||||||
|
@ -531,6 +575,14 @@ msgstr "Kimlik Doğrulama URL'si"
|
||||||
msgid "Authentication flow"
|
msgid "Authentication flow"
|
||||||
msgstr "Kimlik doğrulama akışı"
|
msgstr "Kimlik doğrulama akışı"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "Authentication method"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Authentication without user interaction, or machine-to-machine authentication."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/flows/stages/authenticator_validate/AuthenticatorValidateStage.ts
|
#: src/flows/stages/authenticator_validate/AuthenticatorValidateStage.ts
|
||||||
msgid "Authenticator"
|
msgid "Authenticator"
|
||||||
msgstr "Kimlik Doğrulayıcı"
|
msgstr "Kimlik Doğrulayıcı"
|
||||||
|
@ -555,6 +607,7 @@ msgstr "Yetkilendirme"
|
||||||
msgid "Authorization URL"
|
msgid "Authorization URL"
|
||||||
msgstr "Yetkilendirme URL'si"
|
msgstr "Yetkilendirme URL'si"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
#: src/pages/providers/oauth2/OAuth2ProviderForm.ts
|
#: src/pages/providers/oauth2/OAuth2ProviderForm.ts
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
#: src/pages/providers/saml/SAMLProviderForm.ts
|
#: src/pages/providers/saml/SAMLProviderForm.ts
|
||||||
|
@ -616,6 +669,7 @@ msgstr "Yürütme sırasında arka plan gösterilir."
|
||||||
#~ msgid "Backup status"
|
#~ msgid "Backup status"
|
||||||
#~ msgstr "Yedekleme durumu"
|
#~ msgstr "Yedekleme durumu"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/ldap/TypeLDAPApplicationWizardPage.ts
|
||||||
#: src/pages/providers/ldap/LDAPProviderForm.ts
|
#: src/pages/providers/ldap/LDAPProviderForm.ts
|
||||||
#: src/pages/providers/ldap/LDAPProviderViewPage.ts
|
#: src/pages/providers/ldap/LDAPProviderViewPage.ts
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
|
@ -710,6 +764,10 @@ msgstr "Derleme karması:"
|
||||||
msgid "Built-in"
|
msgid "Built-in"
|
||||||
msgstr "Dahili"
|
msgstr "Dahili"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthAPIApplicationWizardPage.ts
|
||||||
|
msgid "By default, all service accounts can authenticate as this application, as long as they have a valid token of the type app-password."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/identification/IdentificationStageForm.ts
|
#: src/pages/stages/identification/IdentificationStageForm.ts
|
||||||
msgid "By default, only icons are shown for sources. Enable this to show their full names."
|
msgid "By default, only icons are shown for sources. Enable this to show their full names."
|
||||||
msgstr "Varsayılan olarak, kaynaklar için yalnızca simgeler gösterilir. Tam adlarını göstermek için bunu etkinleştirin."
|
msgstr "Varsayılan olarak, kaynaklar için yalnızca simgeler gösterilir. Tam adlarını göstermek için bunu etkinleştirin."
|
||||||
|
@ -1203,6 +1261,7 @@ msgstr "Kurtarma bağlantısı kopyalama"
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationListPage.ts
|
#: src/pages/applications/ApplicationListPage.ts
|
||||||
#: src/pages/applications/ApplicationListPage.ts
|
#: src/pages/applications/ApplicationListPage.ts
|
||||||
|
#: src/pages/applications/wizard/ApplicationWizard.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
#: src/pages/events/RuleListPage.ts
|
#: src/pages/events/RuleListPage.ts
|
||||||
|
@ -1341,6 +1400,10 @@ msgstr "Kullanıcı Oluştur"
|
||||||
msgid "Create a new application"
|
msgid "Create a new application"
|
||||||
msgstr "Yeni bir uygulama oluştur"
|
msgstr "Yeni bir uygulama oluştur"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/ApplicationWizard.ts
|
||||||
|
msgid "Create a new application."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/outposts/ServiceConnectionWizard.ts
|
#: src/pages/outposts/ServiceConnectionWizard.ts
|
||||||
msgid "Create a new outpost integration."
|
msgid "Create a new outpost integration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1365,14 +1428,27 @@ msgstr ""
|
||||||
msgid "Create a new stage."
|
msgid "Create a new stage."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
|
msgid "Create application"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/users/ServiceAccountForm.ts
|
#: src/pages/users/ServiceAccountForm.ts
|
||||||
msgid "Create group"
|
msgid "Create group"
|
||||||
msgstr "Grup oluştur"
|
msgstr "Grup oluştur"
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/ldap/TypeLDAPApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/proxy/TypeProxyApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLConfigApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLImportApplicationWizardPage.ts
|
||||||
msgid "Create provider"
|
msgid "Create provider"
|
||||||
msgstr "Sağlayıcı oluştur"
|
msgstr "Sağlayıcı oluştur"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/ldap/TypeLDAPApplicationWizardPage.ts
|
||||||
|
msgid "Create service account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
||||||
msgid "Create users as inactive"
|
msgid "Create users as inactive"
|
||||||
msgstr "Kullanıcıları etkin olmayan olarak oluşturma"
|
msgstr "Kullanıcıları etkin olmayan olarak oluşturma"
|
||||||
|
@ -1548,6 +1624,7 @@ msgid "Deprecated. Instead of using this field, configure the JWKS data/URL in S
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
#: src/pages/property-mappings/PropertyMappingScopeForm.ts
|
#: src/pages/property-mappings/PropertyMappingScopeForm.ts
|
||||||
#: src/pages/system-tasks/SystemTaskListPage.ts
|
#: src/pages/system-tasks/SystemTaskListPage.ts
|
||||||
#: src/pages/tokens/TokenForm.ts
|
#: src/pages/tokens/TokenForm.ts
|
||||||
|
@ -2047,6 +2124,14 @@ msgstr "OAuth2 ve SAML gibi protokolleri kullanan Kimlik Sağlayıcı olarak aut
|
||||||
msgid "External Host"
|
msgid "External Host"
|
||||||
msgstr "Harici Ana Bilgisayar"
|
msgstr "Harici Ana Bilgisayar"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/proxy/TypeProxyApplicationWizardPage.ts
|
||||||
|
msgid "External domain"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/proxy/TypeProxyApplicationWizardPage.ts
|
||||||
|
msgid "External domain you will be accessing the domain from."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
msgid "External host"
|
msgid "External host"
|
||||||
|
@ -2219,6 +2304,10 @@ msgstr "Çıkış yapmak için kullanılan akış. Boş bırakılırsa, kısa is
|
||||||
msgid "Flow used when authorizing this provider."
|
msgid "Flow used when authorizing this provider."
|
||||||
msgstr "Bu sağlayıcıyı yetkilendirirken kullanılan akış."
|
msgstr "Bu sağlayıcıyı yetkilendirirken kullanılan akış."
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
|
msgid "Flow used when users access this application."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/flows/FlowListPage.ts
|
#: src/pages/flows/FlowListPage.ts
|
||||||
msgid "Flow(s)"
|
msgid "Flow(s)"
|
||||||
msgstr "Akış (ler)"
|
msgstr "Akış (ler)"
|
||||||
|
@ -2453,7 +2542,6 @@ msgid "Hide managed mappings"
|
||||||
msgstr "Yönetilen eşlemeleri gizle"
|
msgstr "Yönetilen eşlemeleri gizle"
|
||||||
|
|
||||||
#: src/pages/users/RelatedUserList.ts
|
#: src/pages/users/RelatedUserList.ts
|
||||||
#: src/pages/users/UserListPage.ts
|
|
||||||
msgid "Hide service-accounts"
|
msgid "Hide service-accounts"
|
||||||
msgstr "Hizmet hesaplarını gizle"
|
msgstr "Hizmet hesaplarını gizle"
|
||||||
|
|
||||||
|
@ -2616,10 +2704,22 @@ msgstr "İçe Aktar"
|
||||||
msgid "Import Flow"
|
msgid "Import Flow"
|
||||||
msgstr "Akışı İçe Aktar"
|
msgstr "Akışı İçe Aktar"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Import SAML Metadata"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLImportApplicationWizardPage.ts
|
||||||
|
msgid "Import SAML metadata"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
msgid "Import certificates of external providers or create certificates to sign requests with."
|
msgid "Import certificates of external providers or create certificates to sign requests with."
|
||||||
msgstr "Harici sağlayıcıların sertifikalarını içe aktarın veya istekleri imzalamak için sertifikalar oluşturun."
|
msgstr "Harici sağlayıcıların sertifikalarını içe aktarın veya istekleri imzalamak için sertifikalar oluşturun."
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Import the metadata document of the applicaation you want to configure."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/flows/stages/authenticator_validate/AuthenticatorValidateStage.ts
|
#: src/flows/stages/authenticator_validate/AuthenticatorValidateStage.ts
|
||||||
msgid "In case you can't access any other method."
|
msgid "In case you can't access any other method."
|
||||||
msgstr "Başka bir yönteme erişemiyorsanız."
|
msgstr "Başka bir yönteme erişemiyorsanız."
|
||||||
|
@ -2764,6 +2864,7 @@ msgstr "Giden istekleri imzalamak için kullanılan anahtar çifti. İmzalamayı
|
||||||
msgid "Kubeconfig"
|
msgid "Kubeconfig"
|
||||||
msgstr "Kubeconfig"
|
msgstr "Kubeconfig"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
#: src/pages/outposts/OutpostForm.ts
|
#: src/pages/outposts/OutpostForm.ts
|
||||||
#: src/pages/outposts/OutpostListPage.ts
|
#: src/pages/outposts/OutpostListPage.ts
|
||||||
msgid "LDAP"
|
msgid "LDAP"
|
||||||
|
@ -2785,9 +2886,9 @@ msgstr "Bağlama istekleri ve arama istekleri altında yapılabilen LDAP DN."
|
||||||
msgid "LDAP Sync status"
|
msgid "LDAP Sync status"
|
||||||
msgstr "LDAP Eşitleme durumu"
|
msgstr "LDAP Eşitleme durumu"
|
||||||
|
|
||||||
#: src/pages/providers/ProviderWizard.ts
|
#: src/pages/applications/wizard/ldap/TypeLDAPApplicationWizardPage.ts
|
||||||
#~ msgid "LDAP details"
|
msgid "LDAP details"
|
||||||
#~ msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/prompt/PromptForm.ts
|
#: src/pages/stages/prompt/PromptForm.ts
|
||||||
#: src/pages/stages/prompt/PromptListPage.ts
|
#: src/pages/stages/prompt/PromptListPage.ts
|
||||||
|
@ -2840,6 +2941,10 @@ msgstr "URL Başlat"
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "Legacy applications which don't natively support SSO."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/identification/IdentificationStageForm.ts
|
#: src/pages/stages/identification/IdentificationStageForm.ts
|
||||||
msgid "Let the user identify themselves with their username or Email address."
|
msgid "Let the user identify themselves with their username or Email address."
|
||||||
msgstr "Kullanıcının kullanıcı adı veya E-posta adresi ile kendilerini tanımlamasına izin verin."
|
msgstr "Kullanıcının kullanıcı adı veya E-posta adresi ile kendilerini tanımlamasına izin verin."
|
||||||
|
@ -2847,6 +2952,11 @@ msgstr "Kullanıcının kullanıcı adı veya E-posta adresi ile kendilerini tan
|
||||||
#~ msgid "Library"
|
#~ msgid "Library"
|
||||||
#~ msgstr "Kitaplık"
|
#~ msgstr "Kitaplık"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/link/TypeLinkApplicationWizardPage.ts
|
||||||
|
msgid "Link"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
#: src/pages/sources/plex/PlexSourceForm.ts
|
#: src/pages/sources/plex/PlexSourceForm.ts
|
||||||
msgid "Link to a user with identical email address. Can have security implications when a source doesn't validate email addresses"
|
msgid "Link to a user with identical email address. Can have security implications when a source doesn't validate email addresses"
|
||||||
|
@ -2905,6 +3015,7 @@ msgstr "Yükleniyor"
|
||||||
#: src/elements/Spinner.ts
|
#: src/elements/Spinner.ts
|
||||||
#: src/pages/applications/ApplicationCheckAccessForm.ts
|
#: src/pages/applications/ApplicationCheckAccessForm.ts
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
#: src/pages/events/RuleForm.ts
|
#: src/pages/events/RuleForm.ts
|
||||||
#: src/pages/events/RuleForm.ts
|
#: src/pages/events/RuleForm.ts
|
||||||
#: src/pages/events/TransportForm.ts
|
#: src/pages/events/TransportForm.ts
|
||||||
|
@ -2940,7 +3051,6 @@ msgstr "Yükleniyor"
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
|
||||||
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
#: src/pages/sources/plex/PlexSourceForm.ts
|
#: src/pages/sources/plex/PlexSourceForm.ts
|
||||||
|
@ -2965,7 +3075,6 @@ msgstr "Yükleniyor"
|
||||||
#: src/pages/stages/password/PasswordStageForm.ts
|
#: src/pages/stages/password/PasswordStageForm.ts
|
||||||
#: src/pages/stages/prompt/PromptStageForm.ts
|
#: src/pages/stages/prompt/PromptStageForm.ts
|
||||||
#: src/pages/stages/prompt/PromptStageForm.ts
|
#: src/pages/stages/prompt/PromptStageForm.ts
|
||||||
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
|
||||||
#: src/pages/tenants/TenantForm.ts
|
#: src/pages/tenants/TenantForm.ts
|
||||||
#: src/pages/tenants/TenantForm.ts
|
#: src/pages/tenants/TenantForm.ts
|
||||||
#: src/pages/tenants/TenantForm.ts
|
#: src/pages/tenants/TenantForm.ts
|
||||||
|
@ -3070,6 +3179,14 @@ msgstr "Auentik tarafından yönetiliyor"
|
||||||
msgid "Managed by authentik (Discovered)"
|
msgid "Managed by authentik (Discovered)"
|
||||||
msgstr "Auentik tarafından yönetilen (Keşfedildi)"
|
msgstr "Auentik tarafından yönetilen (Keşfedildi)"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Manual configuration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Manually configure SAML"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
||||||
msgid "Mark newly created users as inactive."
|
msgid "Mark newly created users as inactive."
|
||||||
msgstr "Yeni oluşturulan kullanıcıları etkin değil olarak işaretleyin."
|
msgstr "Yeni oluşturulan kullanıcıları etkin değil olarak işaretleyin."
|
||||||
|
@ -3115,11 +3232,18 @@ msgstr "Mesaj"
|
||||||
msgid "Messages"
|
msgid "Messages"
|
||||||
msgstr "İletiler"
|
msgstr "İletiler"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLImportApplicationWizardPage.ts
|
||||||
#: src/pages/providers/saml/SAMLProviderImportForm.ts
|
#: src/pages/providers/saml/SAMLProviderImportForm.ts
|
||||||
#: src/pages/sources/saml/SAMLSourceViewPage.ts
|
#: src/pages/sources/saml/SAMLSourceViewPage.ts
|
||||||
msgid "Metadata"
|
msgid "Metadata"
|
||||||
msgstr "Meta veriler"
|
msgstr "Meta veriler"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthAPIApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthImplicitApplicationWizardPage.ts
|
||||||
|
msgid "Method details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/policies/password/PasswordPolicyForm.ts
|
#: src/pages/policies/password/PasswordPolicyForm.ts
|
||||||
msgid "Minimum amount of Digits"
|
msgid "Minimum amount of Digits"
|
||||||
msgstr "Minimum Rakam sayısı"
|
msgstr "Minimum Rakam sayısı"
|
||||||
|
@ -3163,6 +3287,10 @@ msgstr "Model silindi"
|
||||||
msgid "Model updated"
|
msgid "Model updated"
|
||||||
msgstr "Model güncellendi"
|
msgstr "Model güncellendi"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "Modern applications, APIs and Single-page applications."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#~ msgid "Monitor"
|
#~ msgid "Monitor"
|
||||||
#~ msgstr "Monitör"
|
#~ msgstr "Monitör"
|
||||||
|
|
||||||
|
@ -3177,6 +3305,7 @@ msgstr "Uygulamalarım"
|
||||||
#: src/elements/forms/DeleteBulkForm.ts
|
#: src/elements/forms/DeleteBulkForm.ts
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
#: src/pages/applications/ApplicationListPage.ts
|
#: src/pages/applications/ApplicationListPage.ts
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairForm.ts
|
#: src/pages/crypto/CertificateKeyPairForm.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
|
@ -3274,6 +3403,10 @@ msgstr "NameID İlkesi"
|
||||||
msgid "NameID Property Mapping"
|
msgid "NameID Property Mapping"
|
||||||
msgstr "NameID Özellik Eşlemesi"
|
msgstr "NameID Özellik Eşlemesi"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Native application"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/flows/stages/identification/IdentificationStage.ts
|
#: src/flows/stages/identification/IdentificationStage.ts
|
||||||
msgid "Need an account?"
|
msgid "Need an account?"
|
||||||
msgstr "Bir hesaba mı ihtiyacınız var?"
|
msgstr "Bir hesaba mı ihtiyacınız var?"
|
||||||
|
@ -3286,6 +3419,10 @@ msgstr "Negate sonucu"
|
||||||
msgid "Negates the outcome of the binding. Messages are unaffected."
|
msgid "Negates the outcome of the binding. Messages are unaffected."
|
||||||
msgstr "Bağlamanın sonucunu susturur. Mesajlar etkilenmez."
|
msgstr "Bağlamanın sonucunu susturur. Mesajlar etkilenmez."
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/ApplicationWizard.ts
|
||||||
|
msgid "New application"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/outposts/ServiceConnectionWizard.ts
|
#: src/pages/outposts/ServiceConnectionWizard.ts
|
||||||
msgid "New outpost integration"
|
msgid "New outpost integration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3542,6 +3679,10 @@ msgstr "OAuth Yenile Kodları"
|
||||||
#~ msgid "OAuth/OIDC"
|
#~ msgid "OAuth/OIDC"
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "OAuth2/OIDC"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
msgid "OIDC JWKS"
|
msgid "OIDC JWKS"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3815,6 +3956,21 @@ msgstr "Parola: Maskeli giriş, parola kaynaklara karşı doğrulanır. İlkeler
|
||||||
msgid "Passwordless flow"
|
msgid "Passwordless flow"
|
||||||
msgstr "Parolasız akış"
|
msgstr "Parolasız akış"
|
||||||
|
|
||||||
|
#: src/pages/users/UserForm.ts
|
||||||
|
msgid "Path"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
||||||
|
msgid "Path new users will be created under. If left blank, the default path will be used.fo"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
|
#: src/pages/sources/plex/PlexSourceForm.ts
|
||||||
|
#: src/pages/sources/saml/SAMLSourceForm.ts
|
||||||
|
msgid "Path template for users created. Use placeholders like `%(slug)s` to insert the source slug."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/saml/SAMLSourceForm.ts
|
#: src/pages/sources/saml/SAMLSourceForm.ts
|
||||||
msgid "Persistent"
|
msgid "Persistent"
|
||||||
msgstr "Kalıcı"
|
msgstr "Kalıcı"
|
||||||
|
@ -4023,6 +4179,11 @@ msgstr "Protokol Ayarları"
|
||||||
msgid "Protocol settings"
|
msgid "Protocol settings"
|
||||||
msgstr "Protokol ayarları"
|
msgstr "Protokol ayarları"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "Provide an LDAP interface for applications and users to authenticate against."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/ProviderListPage.ts
|
#: src/pages/providers/ProviderListPage.ts
|
||||||
msgid "Provide support for protocols like SAML and OAuth to assigned applications."
|
msgid "Provide support for protocols like SAML and OAuth to assigned applications."
|
||||||
msgstr "Atanan uygulamalara SAML ve OAuth gibi protokoller için destek sağlayın."
|
msgstr "Atanan uygulamalara SAML ve OAuth gibi protokoller için destek sağlayın."
|
||||||
|
@ -4053,6 +4214,7 @@ msgstr "Sağlayıcı (lar)"
|
||||||
msgid "Providers"
|
msgid "Providers"
|
||||||
msgstr "Sağlayıcılar"
|
msgstr "Sağlayıcılar"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
#: src/pages/outposts/OutpostForm.ts
|
#: src/pages/outposts/OutpostForm.ts
|
||||||
#: src/pages/outposts/OutpostListPage.ts
|
#: src/pages/outposts/OutpostListPage.ts
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
|
@ -4060,9 +4222,9 @@ msgstr "Sağlayıcılar"
|
||||||
msgid "Proxy"
|
msgid "Proxy"
|
||||||
msgstr "Vekil Sunucu"
|
msgstr "Vekil Sunucu"
|
||||||
|
|
||||||
#: src/pages/providers/ProviderWizard.ts
|
#: src/pages/applications/wizard/proxy/TypeProxyApplicationWizardPage.ts
|
||||||
#~ msgid "Proxy details"
|
msgid "Proxy details"
|
||||||
#~ msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/oauth2/OAuth2ProviderForm.ts
|
#: src/pages/providers/oauth2/OAuth2ProviderForm.ts
|
||||||
msgid "Public"
|
msgid "Public"
|
||||||
|
@ -4077,6 +4239,7 @@ msgid "Public key, acquired from https://www.google.com/recaptcha/intro/v3.html.
|
||||||
msgstr "https://www.google.com/recaptcha/intro/v3.html adresinden edinilen genel anahtar."
|
msgstr "https://www.google.com/recaptcha/intro/v3.html adresinden edinilen genel anahtar."
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr "Yayıncı"
|
msgstr "Yayıncı"
|
||||||
|
|
||||||
|
@ -4329,13 +4492,17 @@ msgstr "Aygıt seçiciye geri dön"
|
||||||
msgid "Revoked?"
|
msgid "Revoked?"
|
||||||
msgstr "İptal mi edildi?"
|
msgstr "İptal mi edildi?"
|
||||||
|
|
||||||
|
#: src/elements/TreeView.ts
|
||||||
|
msgid "Root"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/ldap/LDAPSourceViewPage.ts
|
#: src/pages/sources/ldap/LDAPSourceViewPage.ts
|
||||||
msgid "Run sync again"
|
msgid "Run sync again"
|
||||||
msgstr "Eşzamanlamayı tekrar çalıştır"
|
msgstr "Eşzamanlamayı tekrar çalıştır"
|
||||||
|
|
||||||
#: src/pages/providers/ProviderWizard.ts
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
#~ msgid "SAML"
|
msgid "SAML"
|
||||||
#~ msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/ProviderWizard.ts
|
#: src/pages/providers/ProviderWizard.ts
|
||||||
#~ msgid "SAML (metadata import)"
|
#~ msgid "SAML (metadata import)"
|
||||||
|
@ -4349,9 +4516,9 @@ msgstr "SAML Öznitelik Adı"
|
||||||
msgid "SAML Metadata"
|
msgid "SAML Metadata"
|
||||||
msgstr "SAML Meta Verileri"
|
msgstr "SAML Meta Verileri"
|
||||||
|
|
||||||
#: src/pages/providers/ProviderWizard.ts
|
#: src/pages/applications/wizard/saml/TypeSAMLConfigApplicationWizardPage.ts
|
||||||
#~ msgid "SAML details"
|
msgid "SAML details"
|
||||||
#~ msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/ProviderWizard.ts
|
#: src/pages/providers/ProviderWizard.ts
|
||||||
#~ msgid "SAML details (import from metadata)"
|
#~ msgid "SAML details (import from metadata)"
|
||||||
|
@ -4752,6 +4919,14 @@ msgstr "İstemi Aşamaları için kullanılabilecek Tek İstemler."
|
||||||
msgid "Single use"
|
msgid "Single use"
|
||||||
msgstr "Tek kullanımlık"
|
msgstr "Tek kullanımlık"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Single-page applications"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Single-page applications which handle authentication in the browser (for example, Javascript, Angular, React, Vue)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#~ msgid "Skip path regex"
|
#~ msgid "Skip path regex"
|
||||||
#~ msgstr "Yol regex atla"
|
#~ msgstr "Yol regex atla"
|
||||||
|
|
||||||
|
@ -5475,6 +5650,10 @@ msgstr ""
|
||||||
msgid "The following objects use {objName}"
|
msgid "The following objects use {objName}"
|
||||||
msgstr "Aşağıdaki nesneler {objName}"
|
msgstr "Aşağıdaki nesneler {objName}"
|
||||||
|
|
||||||
|
#: src/pages/providers/ProviderWizard.ts
|
||||||
|
msgid "The new application wizard greatly simplifies the steps required to create applications and providers."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#~ msgid ""
|
#~ msgid ""
|
||||||
#~ "The policy passes when the reputation score is above the threshold, and\n"
|
#~ "The policy passes when the reputation score is above the threshold, and\n"
|
||||||
#~ "doesn't pass when either or both of the selected options are equal or less than the\n"
|
#~ "doesn't pass when either or both of the selected options are equal or less than the\n"
|
||||||
|
@ -5536,6 +5715,10 @@ msgstr ""
|
||||||
msgid "These policies control which users can access this application."
|
msgid "These policies control which users can access this application."
|
||||||
msgstr "Bu ilkeler hangi kullanıcıların bu uygulamaya erişebileceğini denetler."
|
msgstr "Bu ilkeler hangi kullanıcıların bu uygulamaya erişebileceğini denetler."
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthAPIApplicationWizardPage.ts
|
||||||
|
msgid "This configuration can be used to authenticate to authentik with other APIs other otherwise programmatically."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/flows/FlowInspector.ts
|
#: src/flows/FlowInspector.ts
|
||||||
msgid "This flow is completed."
|
msgid "This flow is completed."
|
||||||
msgstr "Bu akış tamamlandı."
|
msgstr "Bu akış tamamlandı."
|
||||||
|
@ -5720,6 +5903,14 @@ msgstr "Aktarıcılar"
|
||||||
msgid "Trusted OIDC Sources"
|
msgid "Trusted OIDC Sources"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/providers/ProviderWizard.ts
|
||||||
|
msgid "Try it now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/providers/ProviderWizard.ts
|
||||||
|
msgid "Try the new application wizard"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/interfaces/locale.ts
|
#: src/interfaces/locale.ts
|
||||||
msgid "Turkish"
|
msgid "Turkish"
|
||||||
msgstr "Türkçe"
|
msgstr "Türkçe"
|
||||||
|
@ -5773,6 +5964,10 @@ msgstr "UPN"
|
||||||
msgid "URL settings"
|
msgid "URL settings"
|
||||||
msgstr "URL ayarları"
|
msgstr "URL ayarları"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLConfigApplicationWizardPage.ts
|
||||||
|
msgid "URL that authentik will redirect back to after successful authentication."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/saml/SAMLSourceForm.ts
|
#: src/pages/sources/saml/SAMLSourceForm.ts
|
||||||
msgid "URL that the initial Login request is sent to."
|
msgid "URL that the initial Login request is sent to."
|
||||||
msgstr "İlk oturum açma isteğinin gönderildiği URL."
|
msgstr "İlk oturum açma isteğinin gönderildiği URL."
|
||||||
|
@ -5793,6 +5988,10 @@ msgstr "Auentik tarafından belirteçleri almak için kullanılan URL."
|
||||||
msgid "URL used to request the initial token. This URL is only required for OAuth 1."
|
msgid "URL used to request the initial token. This URL is only required for OAuth 1."
|
||||||
msgstr "İlk belirteci istemek için kullanılan URL. Bu URL yalnızca OAuth 1 için gereklidir."
|
msgstr "İlk belirteci istemek için kullanılan URL. Bu URL yalnızca OAuth 1 için gereklidir."
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/link/TypeLinkApplicationWizardPage.ts
|
||||||
|
msgid "URL which will be opened when a user clicks on the application."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
msgid "Unauthenticated Paths"
|
msgid "Unauthenticated Paths"
|
||||||
msgstr "Kimliği Doğrulanmamış Yollar"
|
msgstr "Kimliği Doğrulanmamış Yollar"
|
||||||
|
@ -6132,6 +6331,10 @@ msgstr "Kullanıcı olayları"
|
||||||
msgid "User fields"
|
msgid "User fields"
|
||||||
msgstr "Kullanıcı alanları"
|
msgstr "Kullanıcı alanları"
|
||||||
|
|
||||||
|
#: src/pages/users/UserListPage.ts
|
||||||
|
msgid "User folders"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/interfaces/AdminInterface.ts
|
#: src/interfaces/AdminInterface.ts
|
||||||
msgid "User interface"
|
msgid "User interface"
|
||||||
msgstr "Kullanıcı arayüzü"
|
msgstr "Kullanıcı arayüzü"
|
||||||
|
@ -6156,6 +6359,17 @@ msgstr "Kullanıcı nesne filtresi"
|
||||||
msgid "User password writeback"
|
msgid "User password writeback"
|
||||||
msgstr "Kullanıcı parolasını geri yazma"
|
msgstr "Kullanıcı parolasını geri yazma"
|
||||||
|
|
||||||
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
|
#: src/pages/sources/plex/PlexSourceForm.ts
|
||||||
|
#: src/pages/sources/saml/SAMLSourceForm.ts
|
||||||
|
msgid "User path"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
||||||
|
msgid "User path template"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/tenants/TenantForm.ts
|
#: src/pages/tenants/TenantForm.ts
|
||||||
msgid "User settings flow"
|
msgid "User settings flow"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -6391,6 +6605,10 @@ msgstr "Uyarı: authentik Domain yapılandırılmamış, kimlik doğrulama çal
|
||||||
msgid "Web Certificate"
|
msgid "Web Certificate"
|
||||||
msgstr "Web Sertifikası"
|
msgstr "Web Sertifikası"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Web application"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/authenticator_validate/AuthenticatorValidateStageForm.ts
|
#: src/pages/stages/authenticator_validate/AuthenticatorValidateStageForm.ts
|
||||||
msgid "WebAuthn Authenticators"
|
msgid "WebAuthn Authenticators"
|
||||||
msgstr "WebAuthn Kimlik Doğrulayıcıları"
|
msgstr "WebAuthn Kimlik Doğrulayıcıları"
|
||||||
|
@ -6511,6 +6729,10 @@ msgstr ""
|
||||||
msgid "X509 Subject"
|
msgid "X509 Subject"
|
||||||
msgstr "X509 Konusu"
|
msgstr "X509 Konusu"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "XML-based SSO standard. Use this if your application only supports SAML."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/elements/oauth/UserRefreshList.ts
|
#: src/elements/oauth/UserRefreshList.ts
|
||||||
#: src/pages/applications/ApplicationCheckAccessForm.ts
|
#: src/pages/applications/ApplicationCheckAccessForm.ts
|
||||||
#: src/pages/groups/GroupListPage.ts
|
#: src/pages/groups/GroupListPage.ts
|
||||||
|
|
|
@ -91,6 +91,7 @@ msgstr "不可移除的身份验证器,例如 TouchID 或 Windows Hello"
|
||||||
msgid "A policy used for testing. Always returns the same result as specified below after waiting a random duration."
|
msgid "A policy used for testing. Always returns the same result as specified below after waiting a random duration."
|
||||||
msgstr "用于测试的策略。等待随机时长后,始终返回下面指定的结果。"
|
msgstr "用于测试的策略。等待随机时长后,始终返回下面指定的结果。"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLConfigApplicationWizardPage.ts
|
||||||
#: src/pages/providers/saml/SAMLProviderForm.ts
|
#: src/pages/providers/saml/SAMLProviderForm.ts
|
||||||
#: src/pages/providers/saml/SAMLProviderViewPage.ts
|
#: src/pages/providers/saml/SAMLProviderViewPage.ts
|
||||||
msgid "ACS URL"
|
msgid "ACS URL"
|
||||||
|
@ -114,6 +115,10 @@ msgstr "ANY,必须匹配任意策略才能授予访问权限。"
|
||||||
msgid "ANY, any policy must match to include this stage access."
|
msgid "ANY, any policy must match to include this stage access."
|
||||||
msgstr "ANY,必须匹配任意策略才能包含此阶段访问权限。"
|
msgstr "ANY,必须匹配任意策略才能包含此阶段访问权限。"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "API"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/tokens/TokenListPage.ts
|
#: src/pages/tokens/TokenListPage.ts
|
||||||
msgid "API Access"
|
msgid "API Access"
|
||||||
msgstr "API 访问权限"
|
msgstr "API 访问权限"
|
||||||
|
@ -257,6 +262,10 @@ msgstr "额外的用户 DN"
|
||||||
msgid "Additional Scope"
|
msgid "Additional Scope"
|
||||||
msgstr "额外的作用域"
|
msgstr "额外的作用域"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
|
msgid "Additional UI settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
msgid "Additional group DN, prepended to the Base DN."
|
msgid "Additional group DN, prepended to the Base DN."
|
||||||
msgstr "额外的组 DN,添加到 Base DN 起始处。"
|
msgstr "额外的组 DN,添加到 Base DN 起始处。"
|
||||||
|
@ -377,6 +386,7 @@ msgid "App password (can be used to login using a flow executor)"
|
||||||
msgstr "应用密码(可用于使用流程执行器登录)"
|
msgstr "应用密码(可用于使用流程执行器登录)"
|
||||||
|
|
||||||
#: src/elements/user/UserConsentList.ts
|
#: src/elements/user/UserConsentList.ts
|
||||||
|
#: src/flows/stages/consent/ConsentStage.ts
|
||||||
#: src/pages/admin-overview/TopApplicationsTable.ts
|
#: src/pages/admin-overview/TopApplicationsTable.ts
|
||||||
#: src/pages/providers/ProviderListPage.ts
|
#: src/pages/providers/ProviderListPage.ts
|
||||||
msgid "Application"
|
msgid "Application"
|
||||||
|
@ -387,6 +397,14 @@ msgstr "应用程序"
|
||||||
msgid "Application Icon"
|
msgid "Application Icon"
|
||||||
msgstr "应用程序图标"
|
msgstr "应用程序图标"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/link/TypeLinkApplicationWizardPage.ts
|
||||||
|
msgid "Application Link"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/flows/stages/consent/ConsentStage.ts
|
||||||
|
msgid "Application already has access to the following permissions:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/elements/charts/UserChart.ts
|
#: src/elements/charts/UserChart.ts
|
||||||
msgid "Application authorizations"
|
msgid "Application authorizations"
|
||||||
msgstr "应用程序授权"
|
msgstr "应用程序授权"
|
||||||
|
@ -395,11 +413,25 @@ msgstr "应用程序授权"
|
||||||
msgid "Application authorized"
|
msgid "Application authorized"
|
||||||
msgstr "应用程序已授权"
|
msgstr "应用程序已授权"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
|
msgid "Application details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/flows/stages/consent/ConsentStage.ts
|
||||||
|
msgid "Application requires following new permissions:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/flows/stages/consent/ConsentStage.ts
|
#: src/flows/stages/consent/ConsentStage.ts
|
||||||
msgid "Application requires following permissions:"
|
msgid "Application requires following permissions:"
|
||||||
msgstr "应用程序需要以下权限:"
|
msgstr "应用程序需要以下权限:"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Application type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
msgid "Application's display Name."
|
msgid "Application's display Name."
|
||||||
msgstr "应用的显示名称。"
|
msgstr "应用的显示名称。"
|
||||||
|
|
||||||
|
@ -414,6 +446,18 @@ msgstr "应用程序"
|
||||||
msgid "Applications"
|
msgid "Applications"
|
||||||
msgstr "应用程序"
|
msgstr "应用程序"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Applications which handle the authentication server-side (for example, Python, Go, Rust, Java, PHP)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Applications which redirect users to a non-web callback (for example, Android, iOS)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/elements/wizard/ActionWizardPage.ts
|
||||||
|
msgid "Apply changes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/admin-overview/AdminOverviewPage.ts
|
#: src/pages/admin-overview/AdminOverviewPage.ts
|
||||||
msgid "Apps with most usage"
|
msgid "Apps with most usage"
|
||||||
msgstr "使用率最高的应用"
|
msgstr "使用率最高的应用"
|
||||||
|
@ -530,6 +574,14 @@ msgstr "身份验证 URL"
|
||||||
msgid "Authentication flow"
|
msgid "Authentication flow"
|
||||||
msgstr "身份验证流程"
|
msgstr "身份验证流程"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "Authentication method"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Authentication without user interaction, or machine-to-machine authentication."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/flows/stages/authenticator_validate/AuthenticatorValidateStage.ts
|
#: src/flows/stages/authenticator_validate/AuthenticatorValidateStage.ts
|
||||||
msgid "Authenticator"
|
msgid "Authenticator"
|
||||||
msgstr "身份验证器"
|
msgstr "身份验证器"
|
||||||
|
@ -553,6 +605,7 @@ msgstr "授权"
|
||||||
msgid "Authorization URL"
|
msgid "Authorization URL"
|
||||||
msgstr "授权 URL"
|
msgstr "授权 URL"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
#: src/pages/providers/oauth2/OAuth2ProviderForm.ts
|
#: src/pages/providers/oauth2/OAuth2ProviderForm.ts
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
#: src/pages/providers/saml/SAMLProviderForm.ts
|
#: src/pages/providers/saml/SAMLProviderForm.ts
|
||||||
|
@ -611,6 +664,7 @@ msgstr "执行过程中显示的背景。"
|
||||||
#~ msgid "Backup status"
|
#~ msgid "Backup status"
|
||||||
#~ msgstr "备份状态"
|
#~ msgstr "备份状态"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/ldap/TypeLDAPApplicationWizardPage.ts
|
||||||
#: src/pages/providers/ldap/LDAPProviderForm.ts
|
#: src/pages/providers/ldap/LDAPProviderForm.ts
|
||||||
#: src/pages/providers/ldap/LDAPProviderViewPage.ts
|
#: src/pages/providers/ldap/LDAPProviderViewPage.ts
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
|
@ -705,6 +759,10 @@ msgstr "构建哈希:"
|
||||||
msgid "Built-in"
|
msgid "Built-in"
|
||||||
msgstr "内置"
|
msgstr "内置"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthAPIApplicationWizardPage.ts
|
||||||
|
msgid "By default, all service accounts can authenticate as this application, as long as they have a valid token of the type app-password."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/identification/IdentificationStageForm.ts
|
#: src/pages/stages/identification/IdentificationStageForm.ts
|
||||||
msgid "By default, only icons are shown for sources. Enable this to show their full names."
|
msgid "By default, only icons are shown for sources. Enable this to show their full names."
|
||||||
msgstr "默认情况下,只为源显示图标。启用此选项可显示它们的全名。"
|
msgstr "默认情况下,只为源显示图标。启用此选项可显示它们的全名。"
|
||||||
|
@ -1198,6 +1256,7 @@ msgstr "复制恢复链接"
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationListPage.ts
|
#: src/pages/applications/ApplicationListPage.ts
|
||||||
#: src/pages/applications/ApplicationListPage.ts
|
#: src/pages/applications/ApplicationListPage.ts
|
||||||
|
#: src/pages/applications/wizard/ApplicationWizard.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
#: src/pages/events/RuleListPage.ts
|
#: src/pages/events/RuleListPage.ts
|
||||||
|
@ -1336,6 +1395,10 @@ msgstr "创建用户"
|
||||||
msgid "Create a new application"
|
msgid "Create a new application"
|
||||||
msgstr "创建新应用程序"
|
msgstr "创建新应用程序"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/ApplicationWizard.ts
|
||||||
|
msgid "Create a new application."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/outposts/ServiceConnectionWizard.ts
|
#: src/pages/outposts/ServiceConnectionWizard.ts
|
||||||
msgid "Create a new outpost integration."
|
msgid "Create a new outpost integration."
|
||||||
msgstr "创建一个新前哨集成。"
|
msgstr "创建一个新前哨集成。"
|
||||||
|
@ -1360,14 +1423,27 @@ msgstr "创建一个新身份来源。"
|
||||||
msgid "Create a new stage."
|
msgid "Create a new stage."
|
||||||
msgstr "创建一个新阶段。"
|
msgstr "创建一个新阶段。"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
|
msgid "Create application"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/users/ServiceAccountForm.ts
|
#: src/pages/users/ServiceAccountForm.ts
|
||||||
msgid "Create group"
|
msgid "Create group"
|
||||||
msgstr "创建组"
|
msgstr "创建组"
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/ldap/TypeLDAPApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/proxy/TypeProxyApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLConfigApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLImportApplicationWizardPage.ts
|
||||||
msgid "Create provider"
|
msgid "Create provider"
|
||||||
msgstr "创建提供程序"
|
msgstr "创建提供程序"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/ldap/TypeLDAPApplicationWizardPage.ts
|
||||||
|
msgid "Create service account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
||||||
msgid "Create users as inactive"
|
msgid "Create users as inactive"
|
||||||
msgstr "创建未激活用户"
|
msgstr "创建未激活用户"
|
||||||
|
@ -1543,6 +1619,7 @@ msgid "Deprecated. Instead of using this field, configure the JWKS data/URL in S
|
||||||
msgstr "已弃用。请在身份来源中配置 JWKS 数据 / URL 代替此字段。"
|
msgstr "已弃用。请在身份来源中配置 JWKS 数据 / URL 代替此字段。"
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
#: src/pages/property-mappings/PropertyMappingScopeForm.ts
|
#: src/pages/property-mappings/PropertyMappingScopeForm.ts
|
||||||
#: src/pages/system-tasks/SystemTaskListPage.ts
|
#: src/pages/system-tasks/SystemTaskListPage.ts
|
||||||
#: src/pages/tokens/TokenForm.ts
|
#: src/pages/tokens/TokenForm.ts
|
||||||
|
@ -2035,6 +2112,14 @@ msgstr "利用 OAuth2 和 SAML 等协议,使用 authentik 作为身份提供
|
||||||
msgid "External Host"
|
msgid "External Host"
|
||||||
msgstr "外部主机"
|
msgstr "外部主机"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/proxy/TypeProxyApplicationWizardPage.ts
|
||||||
|
msgid "External domain"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/proxy/TypeProxyApplicationWizardPage.ts
|
||||||
|
msgid "External domain you will be accessing the domain from."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
msgid "External host"
|
msgid "External host"
|
||||||
|
@ -2207,6 +2292,10 @@ msgstr "用于登出的流程。如果留空,则使用按 Slug 排序的第一
|
||||||
msgid "Flow used when authorizing this provider."
|
msgid "Flow used when authorizing this provider."
|
||||||
msgstr "授权此提供程序时使用的流程。"
|
msgstr "授权此提供程序时使用的流程。"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
|
msgid "Flow used when users access this application."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/flows/FlowListPage.ts
|
#: src/pages/flows/FlowListPage.ts
|
||||||
msgid "Flow(s)"
|
msgid "Flow(s)"
|
||||||
msgstr "流程"
|
msgstr "流程"
|
||||||
|
@ -2439,7 +2528,6 @@ msgid "Hide managed mappings"
|
||||||
msgstr "隐藏管理映射"
|
msgstr "隐藏管理映射"
|
||||||
|
|
||||||
#: src/pages/users/RelatedUserList.ts
|
#: src/pages/users/RelatedUserList.ts
|
||||||
#: src/pages/users/UserListPage.ts
|
|
||||||
msgid "Hide service-accounts"
|
msgid "Hide service-accounts"
|
||||||
msgstr "隐藏服务账户"
|
msgstr "隐藏服务账户"
|
||||||
|
|
||||||
|
@ -2600,10 +2688,22 @@ msgstr "导入"
|
||||||
msgid "Import Flow"
|
msgid "Import Flow"
|
||||||
msgstr "导入流程"
|
msgstr "导入流程"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Import SAML Metadata"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLImportApplicationWizardPage.ts
|
||||||
|
msgid "Import SAML metadata"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
msgid "Import certificates of external providers or create certificates to sign requests with."
|
msgid "Import certificates of external providers or create certificates to sign requests with."
|
||||||
msgstr "导入外部提供商的证书或创建用于签名请求的证书。"
|
msgstr "导入外部提供商的证书或创建用于签名请求的证书。"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Import the metadata document of the applicaation you want to configure."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/flows/stages/authenticator_validate/AuthenticatorValidateStage.ts
|
#: src/flows/stages/authenticator_validate/AuthenticatorValidateStage.ts
|
||||||
msgid "In case you can't access any other method."
|
msgid "In case you can't access any other method."
|
||||||
msgstr "以防万一您无法使用任何其他方法。"
|
msgstr "以防万一您无法使用任何其他方法。"
|
||||||
|
@ -2748,6 +2848,7 @@ msgstr "用于签名传出请求的密钥对。留空则禁用签名。"
|
||||||
msgid "Kubeconfig"
|
msgid "Kubeconfig"
|
||||||
msgstr "Kubeconfig"
|
msgstr "Kubeconfig"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
#: src/pages/outposts/OutpostForm.ts
|
#: src/pages/outposts/OutpostForm.ts
|
||||||
#: src/pages/outposts/OutpostListPage.ts
|
#: src/pages/outposts/OutpostListPage.ts
|
||||||
msgid "LDAP"
|
msgid "LDAP"
|
||||||
|
@ -2768,8 +2869,9 @@ msgstr "可以发出绑定请求和搜索请求的 LDAP DN。"
|
||||||
msgid "LDAP Sync status"
|
msgid "LDAP Sync status"
|
||||||
msgstr "LDAP 同步状态"
|
msgstr "LDAP 同步状态"
|
||||||
|
|
||||||
#~ msgid "LDAP details"
|
#: src/pages/applications/wizard/ldap/TypeLDAPApplicationWizardPage.ts
|
||||||
#~ msgstr "LDAP 详情"
|
msgid "LDAP details"
|
||||||
|
msgstr "LDAP 详情"
|
||||||
|
|
||||||
#: src/pages/stages/prompt/PromptForm.ts
|
#: src/pages/stages/prompt/PromptForm.ts
|
||||||
#: src/pages/stages/prompt/PromptListPage.ts
|
#: src/pages/stages/prompt/PromptListPage.ts
|
||||||
|
@ -2822,6 +2924,10 @@ msgstr "启动 URL"
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "布局"
|
msgstr "布局"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "Legacy applications which don't natively support SSO."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/identification/IdentificationStageForm.ts
|
#: src/pages/stages/identification/IdentificationStageForm.ts
|
||||||
msgid "Let the user identify themselves with their username or Email address."
|
msgid "Let the user identify themselves with their username or Email address."
|
||||||
msgstr "让用户使用用户名或电子邮件地址来标识自己。"
|
msgstr "让用户使用用户名或电子邮件地址来标识自己。"
|
||||||
|
@ -2829,6 +2935,11 @@ msgstr "让用户使用用户名或电子邮件地址来标识自己。"
|
||||||
#~ msgid "Library"
|
#~ msgid "Library"
|
||||||
#~ msgstr "Library"
|
#~ msgstr "Library"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/link/TypeLinkApplicationWizardPage.ts
|
||||||
|
msgid "Link"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
#: src/pages/sources/plex/PlexSourceForm.ts
|
#: src/pages/sources/plex/PlexSourceForm.ts
|
||||||
msgid "Link to a user with identical email address. Can have security implications when a source doesn't validate email addresses"
|
msgid "Link to a user with identical email address. Can have security implications when a source doesn't validate email addresses"
|
||||||
|
@ -2887,6 +2998,7 @@ msgstr "正在加载"
|
||||||
#: src/elements/Spinner.ts
|
#: src/elements/Spinner.ts
|
||||||
#: src/pages/applications/ApplicationCheckAccessForm.ts
|
#: src/pages/applications/ApplicationCheckAccessForm.ts
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
#: src/pages/events/RuleForm.ts
|
#: src/pages/events/RuleForm.ts
|
||||||
#: src/pages/events/RuleForm.ts
|
#: src/pages/events/RuleForm.ts
|
||||||
#: src/pages/events/TransportForm.ts
|
#: src/pages/events/TransportForm.ts
|
||||||
|
@ -2922,7 +3034,6 @@ msgstr "正在加载"
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
|
||||||
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
#: src/pages/sources/plex/PlexSourceForm.ts
|
#: src/pages/sources/plex/PlexSourceForm.ts
|
||||||
|
@ -2947,7 +3058,6 @@ msgstr "正在加载"
|
||||||
#: src/pages/stages/password/PasswordStageForm.ts
|
#: src/pages/stages/password/PasswordStageForm.ts
|
||||||
#: src/pages/stages/prompt/PromptStageForm.ts
|
#: src/pages/stages/prompt/PromptStageForm.ts
|
||||||
#: src/pages/stages/prompt/PromptStageForm.ts
|
#: src/pages/stages/prompt/PromptStageForm.ts
|
||||||
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
|
||||||
#: src/pages/tenants/TenantForm.ts
|
#: src/pages/tenants/TenantForm.ts
|
||||||
#: src/pages/tenants/TenantForm.ts
|
#: src/pages/tenants/TenantForm.ts
|
||||||
#: src/pages/tenants/TenantForm.ts
|
#: src/pages/tenants/TenantForm.ts
|
||||||
|
@ -3051,6 +3161,14 @@ msgstr "由 authentik 管理"
|
||||||
msgid "Managed by authentik (Discovered)"
|
msgid "Managed by authentik (Discovered)"
|
||||||
msgstr "由 authentik 管理(已发现)"
|
msgstr "由 authentik 管理(已发现)"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Manual configuration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Manually configure SAML"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
||||||
msgid "Mark newly created users as inactive."
|
msgid "Mark newly created users as inactive."
|
||||||
msgstr "将新创建的用户标记为未激活。"
|
msgstr "将新创建的用户标记为未激活。"
|
||||||
|
@ -3096,11 +3214,18 @@ msgstr "消息"
|
||||||
msgid "Messages"
|
msgid "Messages"
|
||||||
msgstr "消息"
|
msgstr "消息"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLImportApplicationWizardPage.ts
|
||||||
#: src/pages/providers/saml/SAMLProviderImportForm.ts
|
#: src/pages/providers/saml/SAMLProviderImportForm.ts
|
||||||
#: src/pages/sources/saml/SAMLSourceViewPage.ts
|
#: src/pages/sources/saml/SAMLSourceViewPage.ts
|
||||||
msgid "Metadata"
|
msgid "Metadata"
|
||||||
msgstr "元数据"
|
msgstr "元数据"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthAPIApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthImplicitApplicationWizardPage.ts
|
||||||
|
msgid "Method details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/policies/password/PasswordPolicyForm.ts
|
#: src/pages/policies/password/PasswordPolicyForm.ts
|
||||||
msgid "Minimum amount of Digits"
|
msgid "Minimum amount of Digits"
|
||||||
msgstr "最低数字字符数"
|
msgstr "最低数字字符数"
|
||||||
|
@ -3144,6 +3269,10 @@ msgstr "模型已删除"
|
||||||
msgid "Model updated"
|
msgid "Model updated"
|
||||||
msgstr "模型已更新"
|
msgstr "模型已更新"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "Modern applications, APIs and Single-page applications."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#~ msgid "Monitor"
|
#~ msgid "Monitor"
|
||||||
#~ msgstr "监控"
|
#~ msgstr "监控"
|
||||||
|
|
||||||
|
@ -3158,6 +3287,7 @@ msgstr "我的应用"
|
||||||
#: src/elements/forms/DeleteBulkForm.ts
|
#: src/elements/forms/DeleteBulkForm.ts
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
#: src/pages/applications/ApplicationListPage.ts
|
#: src/pages/applications/ApplicationListPage.ts
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairForm.ts
|
#: src/pages/crypto/CertificateKeyPairForm.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
|
@ -3255,6 +3385,10 @@ msgstr "NameID 策略"
|
||||||
msgid "NameID Property Mapping"
|
msgid "NameID Property Mapping"
|
||||||
msgstr "NameID 属性映射"
|
msgstr "NameID 属性映射"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Native application"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/flows/stages/identification/IdentificationStage.ts
|
#: src/flows/stages/identification/IdentificationStage.ts
|
||||||
msgid "Need an account?"
|
msgid "Need an account?"
|
||||||
msgstr "需要一个账户?"
|
msgstr "需要一个账户?"
|
||||||
|
@ -3267,6 +3401,10 @@ msgstr "反转结果"
|
||||||
msgid "Negates the outcome of the binding. Messages are unaffected."
|
msgid "Negates the outcome of the binding. Messages are unaffected."
|
||||||
msgstr "反转绑定的结果。消息不受影响。"
|
msgstr "反转绑定的结果。消息不受影响。"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/ApplicationWizard.ts
|
||||||
|
msgid "New application"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/outposts/ServiceConnectionWizard.ts
|
#: src/pages/outposts/ServiceConnectionWizard.ts
|
||||||
msgid "New outpost integration"
|
msgid "New outpost integration"
|
||||||
msgstr "新前哨集成"
|
msgstr "新前哨集成"
|
||||||
|
@ -3519,6 +3657,10 @@ msgstr "OAuth 刷新代码"
|
||||||
#~ msgid "OAuth/OIDC"
|
#~ msgid "OAuth/OIDC"
|
||||||
#~ msgstr "OAuth/OIDC"
|
#~ msgstr "OAuth/OIDC"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "OAuth2/OIDC"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
msgid "OIDC JWKS"
|
msgid "OIDC JWKS"
|
||||||
msgstr "OIDC JWKS"
|
msgstr "OIDC JWKS"
|
||||||
|
@ -3787,6 +3929,21 @@ msgstr "密码:屏蔽输入内容,密码根据来源进行验证。策略仍
|
||||||
msgid "Passwordless flow"
|
msgid "Passwordless flow"
|
||||||
msgstr "无密码流程"
|
msgstr "无密码流程"
|
||||||
|
|
||||||
|
#: src/pages/users/UserForm.ts
|
||||||
|
msgid "Path"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
||||||
|
msgid "Path new users will be created under. If left blank, the default path will be used.fo"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
|
#: src/pages/sources/plex/PlexSourceForm.ts
|
||||||
|
#: src/pages/sources/saml/SAMLSourceForm.ts
|
||||||
|
msgid "Path template for users created. Use placeholders like `%(slug)s` to insert the source slug."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/saml/SAMLSourceForm.ts
|
#: src/pages/sources/saml/SAMLSourceForm.ts
|
||||||
msgid "Persistent"
|
msgid "Persistent"
|
||||||
msgstr "持久的"
|
msgstr "持久的"
|
||||||
|
@ -3993,6 +4150,11 @@ msgstr "协议设置"
|
||||||
msgid "Protocol settings"
|
msgid "Protocol settings"
|
||||||
msgstr "协议设置"
|
msgstr "协议设置"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "Provide an LDAP interface for applications and users to authenticate against."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/ProviderListPage.ts
|
#: src/pages/providers/ProviderListPage.ts
|
||||||
msgid "Provide support for protocols like SAML and OAuth to assigned applications."
|
msgid "Provide support for protocols like SAML and OAuth to assigned applications."
|
||||||
msgstr "为分配的应用程序提供对 SAML 和 OAuth 等协议的支持。"
|
msgstr "为分配的应用程序提供对 SAML 和 OAuth 等协议的支持。"
|
||||||
|
@ -4023,6 +4185,7 @@ msgstr "提供程序"
|
||||||
msgid "Providers"
|
msgid "Providers"
|
||||||
msgstr "提供程序"
|
msgstr "提供程序"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
#: src/pages/outposts/OutpostForm.ts
|
#: src/pages/outposts/OutpostForm.ts
|
||||||
#: src/pages/outposts/OutpostListPage.ts
|
#: src/pages/outposts/OutpostListPage.ts
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
|
@ -4030,8 +4193,9 @@ msgstr "提供程序"
|
||||||
msgid "Proxy"
|
msgid "Proxy"
|
||||||
msgstr "代理"
|
msgstr "代理"
|
||||||
|
|
||||||
#~ msgid "Proxy details"
|
#: src/pages/applications/wizard/proxy/TypeProxyApplicationWizardPage.ts
|
||||||
#~ msgstr "代理详情"
|
msgid "Proxy details"
|
||||||
|
msgstr "代理详情"
|
||||||
|
|
||||||
#: src/pages/providers/oauth2/OAuth2ProviderForm.ts
|
#: src/pages/providers/oauth2/OAuth2ProviderForm.ts
|
||||||
msgid "Public"
|
msgid "Public"
|
||||||
|
@ -4046,6 +4210,7 @@ msgid "Public key, acquired from https://www.google.com/recaptcha/intro/v3.html.
|
||||||
msgstr "公钥,从 https://www.google.com/recaptcha/intro/v3.html 获取。"
|
msgstr "公钥,从 https://www.google.com/recaptcha/intro/v3.html 获取。"
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr "发布者"
|
msgstr "发布者"
|
||||||
|
|
||||||
|
@ -4295,12 +4460,17 @@ msgstr "返回设备选择器"
|
||||||
msgid "Revoked?"
|
msgid "Revoked?"
|
||||||
msgstr "已吊销?"
|
msgstr "已吊销?"
|
||||||
|
|
||||||
|
#: src/elements/TreeView.ts
|
||||||
|
msgid "Root"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/ldap/LDAPSourceViewPage.ts
|
#: src/pages/sources/ldap/LDAPSourceViewPage.ts
|
||||||
msgid "Run sync again"
|
msgid "Run sync again"
|
||||||
msgstr "再次运行同步"
|
msgstr "再次运行同步"
|
||||||
|
|
||||||
#~ msgid "SAML"
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
#~ msgstr "SAML"
|
msgid "SAML"
|
||||||
|
msgstr "SAML"
|
||||||
|
|
||||||
#~ msgid "SAML (metadata import)"
|
#~ msgid "SAML (metadata import)"
|
||||||
#~ msgstr "SAML(元数据导入)"
|
#~ msgstr "SAML(元数据导入)"
|
||||||
|
@ -4313,8 +4483,9 @@ msgstr "SAML 属性名称"
|
||||||
msgid "SAML Metadata"
|
msgid "SAML Metadata"
|
||||||
msgstr "SAML 元数据"
|
msgstr "SAML 元数据"
|
||||||
|
|
||||||
#~ msgid "SAML details"
|
#: src/pages/applications/wizard/saml/TypeSAMLConfigApplicationWizardPage.ts
|
||||||
#~ msgstr "SAML 详情"
|
msgid "SAML details"
|
||||||
|
msgstr "SAML 详情"
|
||||||
|
|
||||||
#~ msgid "SAML details (import from metadata)"
|
#~ msgid "SAML details (import from metadata)"
|
||||||
#~ msgstr "SAML 详情(从元数据导入)"
|
#~ msgstr "SAML 详情(从元数据导入)"
|
||||||
|
@ -4713,6 +4884,14 @@ msgstr "可用于输入阶段的单个输入项。"
|
||||||
msgid "Single use"
|
msgid "Single use"
|
||||||
msgstr "一次性使用"
|
msgstr "一次性使用"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Single-page applications"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Single-page applications which handle authentication in the browser (for example, Javascript, Angular, React, Vue)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#~ msgid "Skip path regex"
|
#~ msgid "Skip path regex"
|
||||||
#~ msgstr "跳过路径正则表达式"
|
#~ msgstr "跳过路径正则表达式"
|
||||||
|
|
||||||
|
@ -5434,6 +5613,10 @@ msgstr "支持以下关键字:"
|
||||||
msgid "The following objects use {objName}"
|
msgid "The following objects use {objName}"
|
||||||
msgstr "以下对象使用 {objName}"
|
msgstr "以下对象使用 {objName}"
|
||||||
|
|
||||||
|
#: src/pages/providers/ProviderWizard.ts
|
||||||
|
msgid "The new application wizard greatly simplifies the steps required to create applications and providers."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#~ msgid ""
|
#~ msgid ""
|
||||||
#~ "The policy passes when the reputation score is above the threshold, and\n"
|
#~ "The policy passes when the reputation score is above the threshold, and\n"
|
||||||
#~ "doesn't pass when either or both of the selected options are equal or less than the\n"
|
#~ "doesn't pass when either or both of the selected options are equal or less than the\n"
|
||||||
|
@ -5495,6 +5678,10 @@ msgstr ""
|
||||||
msgid "These policies control which users can access this application."
|
msgid "These policies control which users can access this application."
|
||||||
msgstr "这些策略控制哪些用户可以访问此应用程序。"
|
msgstr "这些策略控制哪些用户可以访问此应用程序。"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthAPIApplicationWizardPage.ts
|
||||||
|
msgid "This configuration can be used to authenticate to authentik with other APIs other otherwise programmatically."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/flows/FlowInspector.ts
|
#: src/flows/FlowInspector.ts
|
||||||
msgid "This flow is completed."
|
msgid "This flow is completed."
|
||||||
msgstr "此流程已完成。"
|
msgstr "此流程已完成。"
|
||||||
|
@ -5677,6 +5864,14 @@ msgstr "传输"
|
||||||
msgid "Trusted OIDC Sources"
|
msgid "Trusted OIDC Sources"
|
||||||
msgstr "信任的 OIDC 来源"
|
msgstr "信任的 OIDC 来源"
|
||||||
|
|
||||||
|
#: src/pages/providers/ProviderWizard.ts
|
||||||
|
msgid "Try it now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/providers/ProviderWizard.ts
|
||||||
|
msgid "Try the new application wizard"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/interfaces/locale.ts
|
#: src/interfaces/locale.ts
|
||||||
msgid "Turkish"
|
msgid "Turkish"
|
||||||
msgstr "土耳其语"
|
msgstr "土耳其语"
|
||||||
|
@ -5730,6 +5925,10 @@ msgstr "UPN"
|
||||||
msgid "URL settings"
|
msgid "URL settings"
|
||||||
msgstr "URL 设置"
|
msgstr "URL 设置"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLConfigApplicationWizardPage.ts
|
||||||
|
msgid "URL that authentik will redirect back to after successful authentication."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/saml/SAMLSourceForm.ts
|
#: src/pages/sources/saml/SAMLSourceForm.ts
|
||||||
msgid "URL that the initial Login request is sent to."
|
msgid "URL that the initial Login request is sent to."
|
||||||
msgstr "初始登录请求发送到的 URL。"
|
msgstr "初始登录请求发送到的 URL。"
|
||||||
|
@ -5750,6 +5949,10 @@ msgstr "authentik 用来获取令牌的 URL。"
|
||||||
msgid "URL used to request the initial token. This URL is only required for OAuth 1."
|
msgid "URL used to request the initial token. This URL is only required for OAuth 1."
|
||||||
msgstr "用于请求初始令牌的 URL。只有 OAuth 1 才需要此网址。"
|
msgstr "用于请求初始令牌的 URL。只有 OAuth 1 才需要此网址。"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/link/TypeLinkApplicationWizardPage.ts
|
||||||
|
msgid "URL which will be opened when a user clicks on the application."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
msgid "Unauthenticated Paths"
|
msgid "Unauthenticated Paths"
|
||||||
msgstr "不验证身份的路径"
|
msgstr "不验证身份的路径"
|
||||||
|
@ -6089,6 +6292,10 @@ msgstr "用户事件"
|
||||||
msgid "User fields"
|
msgid "User fields"
|
||||||
msgstr "用户字段"
|
msgstr "用户字段"
|
||||||
|
|
||||||
|
#: src/pages/users/UserListPage.ts
|
||||||
|
msgid "User folders"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/interfaces/AdminInterface.ts
|
#: src/interfaces/AdminInterface.ts
|
||||||
msgid "User interface"
|
msgid "User interface"
|
||||||
msgstr "用户界面"
|
msgstr "用户界面"
|
||||||
|
@ -6113,6 +6320,17 @@ msgstr "用户对象筛选器"
|
||||||
msgid "User password writeback"
|
msgid "User password writeback"
|
||||||
msgstr "用户密码写回"
|
msgstr "用户密码写回"
|
||||||
|
|
||||||
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
|
#: src/pages/sources/plex/PlexSourceForm.ts
|
||||||
|
#: src/pages/sources/saml/SAMLSourceForm.ts
|
||||||
|
msgid "User path"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
||||||
|
msgid "User path template"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/tenants/TenantForm.ts
|
#: src/pages/tenants/TenantForm.ts
|
||||||
msgid "User settings flow"
|
msgid "User settings flow"
|
||||||
msgstr "用户设置流程"
|
msgstr "用户设置流程"
|
||||||
|
@ -6347,6 +6565,10 @@ msgstr "警告:未配置 authentik 域名,身份验证将不起作用。"
|
||||||
msgid "Web Certificate"
|
msgid "Web Certificate"
|
||||||
msgstr "Web 证书"
|
msgstr "Web 证书"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Web application"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/authenticator_validate/AuthenticatorValidateStageForm.ts
|
#: src/pages/stages/authenticator_validate/AuthenticatorValidateStageForm.ts
|
||||||
msgid "WebAuthn Authenticators"
|
msgid "WebAuthn Authenticators"
|
||||||
msgstr "WebAuthn 身份验证器"
|
msgstr "WebAuthn 身份验证器"
|
||||||
|
@ -6469,6 +6691,10 @@ msgstr ""
|
||||||
msgid "X509 Subject"
|
msgid "X509 Subject"
|
||||||
msgstr "X509 主题"
|
msgstr "X509 主题"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "XML-based SSO standard. Use this if your application only supports SAML."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/elements/oauth/UserRefreshList.ts
|
#: src/elements/oauth/UserRefreshList.ts
|
||||||
#: src/pages/applications/ApplicationCheckAccessForm.ts
|
#: src/pages/applications/ApplicationCheckAccessForm.ts
|
||||||
#: src/pages/groups/GroupListPage.ts
|
#: src/pages/groups/GroupListPage.ts
|
||||||
|
|
|
@ -92,6 +92,7 @@ msgstr "不可移除的身份验证器,例如 TouchID 或 Windows Hello"
|
||||||
msgid "A policy used for testing. Always returns the same result as specified below after waiting a random duration."
|
msgid "A policy used for testing. Always returns the same result as specified below after waiting a random duration."
|
||||||
msgstr "用于测试的策略。等待随机持续时间后,始终返回与下面指定的结果相同的结果。"
|
msgstr "用于测试的策略。等待随机持续时间后,始终返回与下面指定的结果相同的结果。"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLConfigApplicationWizardPage.ts
|
||||||
#: src/pages/providers/saml/SAMLProviderForm.ts
|
#: src/pages/providers/saml/SAMLProviderForm.ts
|
||||||
#: src/pages/providers/saml/SAMLProviderViewPage.ts
|
#: src/pages/providers/saml/SAMLProviderViewPage.ts
|
||||||
msgid "ACS URL"
|
msgid "ACS URL"
|
||||||
|
@ -115,6 +116,10 @@ msgstr "ANY,任何策略都必须匹配才能授予访问权限。"
|
||||||
msgid "ANY, any policy must match to include this stage access."
|
msgid "ANY, any policy must match to include this stage access."
|
||||||
msgstr "ANY,任何策略都必须匹配才能包含此阶段访问权限。"
|
msgstr "ANY,任何策略都必须匹配才能包含此阶段访问权限。"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "API"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/tokens/TokenListPage.ts
|
#: src/pages/tokens/TokenListPage.ts
|
||||||
msgid "API Access"
|
msgid "API Access"
|
||||||
msgstr "API 访问权限"
|
msgstr "API 访问权限"
|
||||||
|
@ -258,6 +263,10 @@ msgstr "额外的用户 DN"
|
||||||
msgid "Additional Scope"
|
msgid "Additional Scope"
|
||||||
msgstr "额外的范围"
|
msgstr "额外的范围"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
|
msgid "Additional UI settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
msgid "Additional group DN, prepended to the Base DN."
|
msgid "Additional group DN, prepended to the Base DN."
|
||||||
msgstr "额外的Group DN,优先于Base DN。"
|
msgstr "额外的Group DN,优先于Base DN。"
|
||||||
|
@ -378,6 +387,7 @@ msgid "App password (can be used to login using a flow executor)"
|
||||||
msgstr "应用程序密码(可用于使用流程执行器登录)"
|
msgstr "应用程序密码(可用于使用流程执行器登录)"
|
||||||
|
|
||||||
#: src/elements/user/UserConsentList.ts
|
#: src/elements/user/UserConsentList.ts
|
||||||
|
#: src/flows/stages/consent/ConsentStage.ts
|
||||||
#: src/pages/admin-overview/TopApplicationsTable.ts
|
#: src/pages/admin-overview/TopApplicationsTable.ts
|
||||||
#: src/pages/providers/ProviderListPage.ts
|
#: src/pages/providers/ProviderListPage.ts
|
||||||
msgid "Application"
|
msgid "Application"
|
||||||
|
@ -388,6 +398,14 @@ msgstr "应用程序"
|
||||||
msgid "Application Icon"
|
msgid "Application Icon"
|
||||||
msgstr "应用程序图标"
|
msgstr "应用程序图标"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/link/TypeLinkApplicationWizardPage.ts
|
||||||
|
msgid "Application Link"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/flows/stages/consent/ConsentStage.ts
|
||||||
|
msgid "Application already has access to the following permissions:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/elements/charts/UserChart.ts
|
#: src/elements/charts/UserChart.ts
|
||||||
msgid "Application authorizations"
|
msgid "Application authorizations"
|
||||||
msgstr "应用程序授权"
|
msgstr "应用程序授权"
|
||||||
|
@ -396,11 +414,25 @@ msgstr "应用程序授权"
|
||||||
msgid "Application authorized"
|
msgid "Application authorized"
|
||||||
msgstr "应用程序已授权"
|
msgstr "应用程序已授权"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
|
msgid "Application details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/flows/stages/consent/ConsentStage.ts
|
||||||
|
msgid "Application requires following new permissions:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/flows/stages/consent/ConsentStage.ts
|
#: src/flows/stages/consent/ConsentStage.ts
|
||||||
msgid "Application requires following permissions:"
|
msgid "Application requires following permissions:"
|
||||||
msgstr "应用程序需要以下权限:"
|
msgstr "应用程序需要以下权限:"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Application type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
msgid "Application's display Name."
|
msgid "Application's display Name."
|
||||||
msgstr "应用的显示名称。"
|
msgstr "应用的显示名称。"
|
||||||
|
|
||||||
|
@ -415,6 +447,18 @@ msgstr "应用程序"
|
||||||
msgid "Applications"
|
msgid "Applications"
|
||||||
msgstr "应用程序"
|
msgstr "应用程序"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Applications which handle the authentication server-side (for example, Python, Go, Rust, Java, PHP)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Applications which redirect users to a non-web callback (for example, Android, iOS)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/elements/wizard/ActionWizardPage.ts
|
||||||
|
msgid "Apply changes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/admin-overview/AdminOverviewPage.ts
|
#: src/pages/admin-overview/AdminOverviewPage.ts
|
||||||
msgid "Apps with most usage"
|
msgid "Apps with most usage"
|
||||||
msgstr "使用率最高的应用"
|
msgstr "使用率最高的应用"
|
||||||
|
@ -532,6 +576,14 @@ msgstr "身份验证 URL"
|
||||||
msgid "Authentication flow"
|
msgid "Authentication flow"
|
||||||
msgstr "身份验证流程"
|
msgstr "身份验证流程"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "Authentication method"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Authentication without user interaction, or machine-to-machine authentication."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/flows/stages/authenticator_validate/AuthenticatorValidateStage.ts
|
#: src/flows/stages/authenticator_validate/AuthenticatorValidateStage.ts
|
||||||
msgid "Authenticator"
|
msgid "Authenticator"
|
||||||
msgstr "身份验证器"
|
msgstr "身份验证器"
|
||||||
|
@ -555,6 +607,7 @@ msgstr "授权"
|
||||||
msgid "Authorization URL"
|
msgid "Authorization URL"
|
||||||
msgstr "授权网址"
|
msgstr "授权网址"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
#: src/pages/providers/oauth2/OAuth2ProviderForm.ts
|
#: src/pages/providers/oauth2/OAuth2ProviderForm.ts
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
#: src/pages/providers/saml/SAMLProviderForm.ts
|
#: src/pages/providers/saml/SAMLProviderForm.ts
|
||||||
|
@ -613,6 +666,7 @@ msgstr "执行过程中显示背景。"
|
||||||
#~ msgid "Backup status"
|
#~ msgid "Backup status"
|
||||||
#~ msgstr "备份状态"
|
#~ msgstr "备份状态"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/ldap/TypeLDAPApplicationWizardPage.ts
|
||||||
#: src/pages/providers/ldap/LDAPProviderForm.ts
|
#: src/pages/providers/ldap/LDAPProviderForm.ts
|
||||||
#: src/pages/providers/ldap/LDAPProviderViewPage.ts
|
#: src/pages/providers/ldap/LDAPProviderViewPage.ts
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
|
@ -707,6 +761,10 @@ msgstr "Build hash:"
|
||||||
msgid "Built-in"
|
msgid "Built-in"
|
||||||
msgstr "内置"
|
msgstr "内置"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthAPIApplicationWizardPage.ts
|
||||||
|
msgid "By default, all service accounts can authenticate as this application, as long as they have a valid token of the type app-password."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/identification/IdentificationStageForm.ts
|
#: src/pages/stages/identification/IdentificationStageForm.ts
|
||||||
msgid "By default, only icons are shown for sources. Enable this to show their full names."
|
msgid "By default, only icons are shown for sources. Enable this to show their full names."
|
||||||
msgstr "默认情况下,只为源显示图标。启用此选项可显示他们的全名。"
|
msgstr "默认情况下,只为源显示图标。启用此选项可显示他们的全名。"
|
||||||
|
@ -1200,6 +1258,7 @@ msgstr "复制恢复链接"
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationListPage.ts
|
#: src/pages/applications/ApplicationListPage.ts
|
||||||
#: src/pages/applications/ApplicationListPage.ts
|
#: src/pages/applications/ApplicationListPage.ts
|
||||||
|
#: src/pages/applications/wizard/ApplicationWizard.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
#: src/pages/events/RuleListPage.ts
|
#: src/pages/events/RuleListPage.ts
|
||||||
|
@ -1338,6 +1397,10 @@ msgstr "创建用户"
|
||||||
msgid "Create a new application"
|
msgid "Create a new application"
|
||||||
msgstr "创建新应用程序"
|
msgstr "创建新应用程序"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/ApplicationWizard.ts
|
||||||
|
msgid "Create a new application."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/outposts/ServiceConnectionWizard.ts
|
#: src/pages/outposts/ServiceConnectionWizard.ts
|
||||||
msgid "Create a new outpost integration."
|
msgid "Create a new outpost integration."
|
||||||
msgstr "创建一个新前哨集成。"
|
msgstr "创建一个新前哨集成。"
|
||||||
|
@ -1362,14 +1425,27 @@ msgstr "创建一个新身份来源。"
|
||||||
msgid "Create a new stage."
|
msgid "Create a new stage."
|
||||||
msgstr "创建一个新阶段。"
|
msgstr "创建一个新阶段。"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
|
msgid "Create application"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/users/ServiceAccountForm.ts
|
#: src/pages/users/ServiceAccountForm.ts
|
||||||
msgid "Create group"
|
msgid "Create group"
|
||||||
msgstr "创建组"
|
msgstr "创建组"
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/ldap/TypeLDAPApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/proxy/TypeProxyApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLConfigApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLImportApplicationWizardPage.ts
|
||||||
msgid "Create provider"
|
msgid "Create provider"
|
||||||
msgstr "创建提供商"
|
msgstr "创建提供商"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/ldap/TypeLDAPApplicationWizardPage.ts
|
||||||
|
msgid "Create service account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
||||||
msgid "Create users as inactive"
|
msgid "Create users as inactive"
|
||||||
msgstr "将用户创建为非活动用户"
|
msgstr "将用户创建为非活动用户"
|
||||||
|
@ -1545,6 +1621,7 @@ msgid "Deprecated. Instead of using this field, configure the JWKS data/URL in S
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
#: src/pages/property-mappings/PropertyMappingScopeForm.ts
|
#: src/pages/property-mappings/PropertyMappingScopeForm.ts
|
||||||
#: src/pages/system-tasks/SystemTaskListPage.ts
|
#: src/pages/system-tasks/SystemTaskListPage.ts
|
||||||
#: src/pages/tokens/TokenForm.ts
|
#: src/pages/tokens/TokenForm.ts
|
||||||
|
@ -2038,6 +2115,14 @@ msgstr "使用 authentik 作为身份提供程序的外部应用程序,利用
|
||||||
msgid "External Host"
|
msgid "External Host"
|
||||||
msgstr "外部主机"
|
msgstr "外部主机"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/proxy/TypeProxyApplicationWizardPage.ts
|
||||||
|
msgid "External domain"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/proxy/TypeProxyApplicationWizardPage.ts
|
||||||
|
msgid "External domain you will be accessing the domain from."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
msgid "External host"
|
msgid "External host"
|
||||||
|
@ -2210,6 +2295,10 @@ msgstr "用于注销的流程。如果留空,则使用按辅助信息块排序
|
||||||
msgid "Flow used when authorizing this provider."
|
msgid "Flow used when authorizing this provider."
|
||||||
msgstr "授权此请求发起端时使用的Flow。"
|
msgstr "授权此请求发起端时使用的Flow。"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
|
msgid "Flow used when users access this application."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/flows/FlowListPage.ts
|
#: src/pages/flows/FlowListPage.ts
|
||||||
msgid "Flow(s)"
|
msgid "Flow(s)"
|
||||||
msgstr "流程"
|
msgstr "流程"
|
||||||
|
@ -2442,7 +2531,6 @@ msgid "Hide managed mappings"
|
||||||
msgstr "隐藏托管映射"
|
msgstr "隐藏托管映射"
|
||||||
|
|
||||||
#: src/pages/users/RelatedUserList.ts
|
#: src/pages/users/RelatedUserList.ts
|
||||||
#: src/pages/users/UserListPage.ts
|
|
||||||
msgid "Hide service-accounts"
|
msgid "Hide service-accounts"
|
||||||
msgstr "隐藏服务账户"
|
msgstr "隐藏服务账户"
|
||||||
|
|
||||||
|
@ -2603,10 +2691,22 @@ msgstr "导入"
|
||||||
msgid "Import Flow"
|
msgid "Import Flow"
|
||||||
msgstr "导入流程"
|
msgstr "导入流程"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Import SAML Metadata"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLImportApplicationWizardPage.ts
|
||||||
|
msgid "Import SAML metadata"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
msgid "Import certificates of external providers or create certificates to sign requests with."
|
msgid "Import certificates of external providers or create certificates to sign requests with."
|
||||||
msgstr "导入外部提供商的证书或创建用于签署请求的证书。"
|
msgstr "导入外部提供商的证书或创建用于签署请求的证书。"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Import the metadata document of the applicaation you want to configure."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/flows/stages/authenticator_validate/AuthenticatorValidateStage.ts
|
#: src/flows/stages/authenticator_validate/AuthenticatorValidateStage.ts
|
||||||
msgid "In case you can't access any other method."
|
msgid "In case you can't access any other method."
|
||||||
msgstr "万一你无法访问任何其他方法。"
|
msgstr "万一你无法访问任何其他方法。"
|
||||||
|
@ -2751,6 +2851,7 @@ msgstr "用于签署传出请求的密钥对。留空则禁用签名。"
|
||||||
msgid "Kubeconfig"
|
msgid "Kubeconfig"
|
||||||
msgstr "Kubeconfig"
|
msgstr "Kubeconfig"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
#: src/pages/outposts/OutpostForm.ts
|
#: src/pages/outposts/OutpostForm.ts
|
||||||
#: src/pages/outposts/OutpostListPage.ts
|
#: src/pages/outposts/OutpostListPage.ts
|
||||||
msgid "LDAP"
|
msgid "LDAP"
|
||||||
|
@ -2772,8 +2873,9 @@ msgstr "可以发出绑定请求和搜索请求的 LDAP DN。"
|
||||||
msgid "LDAP Sync status"
|
msgid "LDAP Sync status"
|
||||||
msgstr "LDAP 同步状态"
|
msgstr "LDAP 同步状态"
|
||||||
|
|
||||||
#~ msgid "LDAP details"
|
#: src/pages/applications/wizard/ldap/TypeLDAPApplicationWizardPage.ts
|
||||||
#~ msgstr "LDAP 详情"
|
msgid "LDAP details"
|
||||||
|
msgstr "LDAP 详情"
|
||||||
|
|
||||||
#: src/pages/stages/prompt/PromptForm.ts
|
#: src/pages/stages/prompt/PromptForm.ts
|
||||||
#: src/pages/stages/prompt/PromptListPage.ts
|
#: src/pages/stages/prompt/PromptListPage.ts
|
||||||
|
@ -2826,6 +2928,10 @@ msgstr "启动 URL"
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "Legacy applications which don't natively support SSO."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/identification/IdentificationStageForm.ts
|
#: src/pages/stages/identification/IdentificationStageForm.ts
|
||||||
msgid "Let the user identify themselves with their username or Email address."
|
msgid "Let the user identify themselves with their username or Email address."
|
||||||
msgstr "让用户使用其用户名或电子邮件地址来标识自己。"
|
msgstr "让用户使用其用户名或电子邮件地址来标识自己。"
|
||||||
|
@ -2833,6 +2939,11 @@ msgstr "让用户使用其用户名或电子邮件地址来标识自己。"
|
||||||
#~ msgid "Library"
|
#~ msgid "Library"
|
||||||
#~ msgstr "Library"
|
#~ msgstr "Library"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/link/TypeLinkApplicationWizardPage.ts
|
||||||
|
msgid "Link"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
#: src/pages/sources/plex/PlexSourceForm.ts
|
#: src/pages/sources/plex/PlexSourceForm.ts
|
||||||
msgid "Link to a user with identical email address. Can have security implications when a source doesn't validate email addresses"
|
msgid "Link to a user with identical email address. Can have security implications when a source doesn't validate email addresses"
|
||||||
|
@ -2891,6 +3002,7 @@ msgstr "正在加载"
|
||||||
#: src/elements/Spinner.ts
|
#: src/elements/Spinner.ts
|
||||||
#: src/pages/applications/ApplicationCheckAccessForm.ts
|
#: src/pages/applications/ApplicationCheckAccessForm.ts
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
#: src/pages/events/RuleForm.ts
|
#: src/pages/events/RuleForm.ts
|
||||||
#: src/pages/events/RuleForm.ts
|
#: src/pages/events/RuleForm.ts
|
||||||
#: src/pages/events/TransportForm.ts
|
#: src/pages/events/TransportForm.ts
|
||||||
|
@ -2926,7 +3038,6 @@ msgstr "正在加载"
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
|
||||||
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
#: src/pages/sources/plex/PlexSourceForm.ts
|
#: src/pages/sources/plex/PlexSourceForm.ts
|
||||||
|
@ -2951,7 +3062,6 @@ msgstr "正在加载"
|
||||||
#: src/pages/stages/password/PasswordStageForm.ts
|
#: src/pages/stages/password/PasswordStageForm.ts
|
||||||
#: src/pages/stages/prompt/PromptStageForm.ts
|
#: src/pages/stages/prompt/PromptStageForm.ts
|
||||||
#: src/pages/stages/prompt/PromptStageForm.ts
|
#: src/pages/stages/prompt/PromptStageForm.ts
|
||||||
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
|
||||||
#: src/pages/tenants/TenantForm.ts
|
#: src/pages/tenants/TenantForm.ts
|
||||||
#: src/pages/tenants/TenantForm.ts
|
#: src/pages/tenants/TenantForm.ts
|
||||||
#: src/pages/tenants/TenantForm.ts
|
#: src/pages/tenants/TenantForm.ts
|
||||||
|
@ -3055,6 +3165,14 @@ msgstr "由 authentik 管理"
|
||||||
msgid "Managed by authentik (Discovered)"
|
msgid "Managed by authentik (Discovered)"
|
||||||
msgstr "由 authentik 管理(已发现)"
|
msgstr "由 authentik 管理(已发现)"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Manual configuration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Manually configure SAML"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
||||||
msgid "Mark newly created users as inactive."
|
msgid "Mark newly created users as inactive."
|
||||||
msgstr "将新创建的用户标记为非活动用户。"
|
msgstr "将新创建的用户标记为非活动用户。"
|
||||||
|
@ -3100,11 +3218,18 @@ msgstr "信息"
|
||||||
msgid "Messages"
|
msgid "Messages"
|
||||||
msgstr "信息"
|
msgstr "信息"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLImportApplicationWizardPage.ts
|
||||||
#: src/pages/providers/saml/SAMLProviderImportForm.ts
|
#: src/pages/providers/saml/SAMLProviderImportForm.ts
|
||||||
#: src/pages/sources/saml/SAMLSourceViewPage.ts
|
#: src/pages/sources/saml/SAMLSourceViewPage.ts
|
||||||
msgid "Metadata"
|
msgid "Metadata"
|
||||||
msgstr "元数据"
|
msgstr "元数据"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthAPIApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthImplicitApplicationWizardPage.ts
|
||||||
|
msgid "Method details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/policies/password/PasswordPolicyForm.ts
|
#: src/pages/policies/password/PasswordPolicyForm.ts
|
||||||
msgid "Minimum amount of Digits"
|
msgid "Minimum amount of Digits"
|
||||||
msgstr "最低位数"
|
msgstr "最低位数"
|
||||||
|
@ -3148,6 +3273,10 @@ msgstr "模型已删除"
|
||||||
msgid "Model updated"
|
msgid "Model updated"
|
||||||
msgstr "模型已更新"
|
msgstr "模型已更新"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "Modern applications, APIs and Single-page applications."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#~ msgid "Monitor"
|
#~ msgid "Monitor"
|
||||||
#~ msgstr "监控"
|
#~ msgstr "监控"
|
||||||
|
|
||||||
|
@ -3162,6 +3291,7 @@ msgstr "我的应用"
|
||||||
#: src/elements/forms/DeleteBulkForm.ts
|
#: src/elements/forms/DeleteBulkForm.ts
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
#: src/pages/applications/ApplicationListPage.ts
|
#: src/pages/applications/ApplicationListPage.ts
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairForm.ts
|
#: src/pages/crypto/CertificateKeyPairForm.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
|
@ -3259,6 +3389,10 @@ msgstr "NameID 政策"
|
||||||
msgid "NameID Property Mapping"
|
msgid "NameID Property Mapping"
|
||||||
msgstr "nameID 属性映射"
|
msgstr "nameID 属性映射"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Native application"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/flows/stages/identification/IdentificationStage.ts
|
#: src/flows/stages/identification/IdentificationStage.ts
|
||||||
msgid "Need an account?"
|
msgid "Need an account?"
|
||||||
msgstr "需要一个账户?"
|
msgstr "需要一个账户?"
|
||||||
|
@ -3271,6 +3405,10 @@ msgstr "否定结果"
|
||||||
msgid "Negates the outcome of the binding. Messages are unaffected."
|
msgid "Negates the outcome of the binding. Messages are unaffected."
|
||||||
msgstr "否定绑定的结果。消息不受影响。"
|
msgstr "否定绑定的结果。消息不受影响。"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/ApplicationWizard.ts
|
||||||
|
msgid "New application"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/outposts/ServiceConnectionWizard.ts
|
#: src/pages/outposts/ServiceConnectionWizard.ts
|
||||||
msgid "New outpost integration"
|
msgid "New outpost integration"
|
||||||
msgstr "新前哨集成"
|
msgstr "新前哨集成"
|
||||||
|
@ -3523,6 +3661,10 @@ msgstr "OAuth 刷新代码"
|
||||||
#~ msgid "OAuth/OIDC"
|
#~ msgid "OAuth/OIDC"
|
||||||
#~ msgstr "OAuth/OIDC"
|
#~ msgstr "OAuth/OIDC"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "OAuth2/OIDC"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
msgid "OIDC JWKS"
|
msgid "OIDC JWKS"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3792,6 +3934,21 @@ msgstr "密码:屏蔽输入,密码根据来源进行验证。策略仍需应
|
||||||
msgid "Passwordless flow"
|
msgid "Passwordless flow"
|
||||||
msgstr "无密码流"
|
msgstr "无密码流"
|
||||||
|
|
||||||
|
#: src/pages/users/UserForm.ts
|
||||||
|
msgid "Path"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
||||||
|
msgid "Path new users will be created under. If left blank, the default path will be used.fo"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
|
#: src/pages/sources/plex/PlexSourceForm.ts
|
||||||
|
#: src/pages/sources/saml/SAMLSourceForm.ts
|
||||||
|
msgid "Path template for users created. Use placeholders like `%(slug)s` to insert the source slug."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/saml/SAMLSourceForm.ts
|
#: src/pages/sources/saml/SAMLSourceForm.ts
|
||||||
msgid "Persistent"
|
msgid "Persistent"
|
||||||
msgstr "持久"
|
msgstr "持久"
|
||||||
|
@ -3998,6 +4155,11 @@ msgstr "协议设置"
|
||||||
msgid "Protocol settings"
|
msgid "Protocol settings"
|
||||||
msgstr "协议设置"
|
msgstr "协议设置"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "Provide an LDAP interface for applications and users to authenticate against."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/ProviderListPage.ts
|
#: src/pages/providers/ProviderListPage.ts
|
||||||
msgid "Provide support for protocols like SAML and OAuth to assigned applications."
|
msgid "Provide support for protocols like SAML and OAuth to assigned applications."
|
||||||
msgstr "为分配的应用程序提供对 SAML 和 OAuth 等协议的支持。"
|
msgstr "为分配的应用程序提供对 SAML 和 OAuth 等协议的支持。"
|
||||||
|
@ -4028,6 +4190,7 @@ msgstr "提供商"
|
||||||
msgid "Providers"
|
msgid "Providers"
|
||||||
msgstr "提供商"
|
msgstr "提供商"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
#: src/pages/outposts/OutpostForm.ts
|
#: src/pages/outposts/OutpostForm.ts
|
||||||
#: src/pages/outposts/OutpostListPage.ts
|
#: src/pages/outposts/OutpostListPage.ts
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
|
@ -4035,8 +4198,9 @@ msgstr "提供商"
|
||||||
msgid "Proxy"
|
msgid "Proxy"
|
||||||
msgstr "代理"
|
msgstr "代理"
|
||||||
|
|
||||||
#~ msgid "Proxy details"
|
#: src/pages/applications/wizard/proxy/TypeProxyApplicationWizardPage.ts
|
||||||
#~ msgstr "代理详情"
|
msgid "Proxy details"
|
||||||
|
msgstr "代理详情"
|
||||||
|
|
||||||
#: src/pages/providers/oauth2/OAuth2ProviderForm.ts
|
#: src/pages/providers/oauth2/OAuth2ProviderForm.ts
|
||||||
msgid "Public"
|
msgid "Public"
|
||||||
|
@ -4051,6 +4215,7 @@ msgid "Public key, acquired from https://www.google.com/recaptcha/intro/v3.html.
|
||||||
msgstr "公钥,从 https://www.google.com/recaptcha/intro/v3.html 获取。"
|
msgstr "公钥,从 https://www.google.com/recaptcha/intro/v3.html 获取。"
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr "发行人"
|
msgstr "发行人"
|
||||||
|
|
||||||
|
@ -4301,12 +4466,17 @@ msgstr "返回设备选择器"
|
||||||
msgid "Revoked?"
|
msgid "Revoked?"
|
||||||
msgstr "已吊销?"
|
msgstr "已吊销?"
|
||||||
|
|
||||||
|
#: src/elements/TreeView.ts
|
||||||
|
msgid "Root"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/ldap/LDAPSourceViewPage.ts
|
#: src/pages/sources/ldap/LDAPSourceViewPage.ts
|
||||||
msgid "Run sync again"
|
msgid "Run sync again"
|
||||||
msgstr "再次运行同步"
|
msgstr "再次运行同步"
|
||||||
|
|
||||||
#~ msgid "SAML"
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
#~ msgstr "SAML"
|
msgid "SAML"
|
||||||
|
msgstr "SAML"
|
||||||
|
|
||||||
#~ msgid "SAML (metadata import)"
|
#~ msgid "SAML (metadata import)"
|
||||||
#~ msgstr "SAML(元数据导入)"
|
#~ msgstr "SAML(元数据导入)"
|
||||||
|
@ -4319,8 +4489,9 @@ msgstr "SAML 属性名称"
|
||||||
msgid "SAML Metadata"
|
msgid "SAML Metadata"
|
||||||
msgstr "SAML 元数据"
|
msgstr "SAML 元数据"
|
||||||
|
|
||||||
#~ msgid "SAML details"
|
#: src/pages/applications/wizard/saml/TypeSAMLConfigApplicationWizardPage.ts
|
||||||
#~ msgstr "SAML 详情"
|
msgid "SAML details"
|
||||||
|
msgstr "SAML 详情"
|
||||||
|
|
||||||
#~ msgid "SAML details (import from metadata)"
|
#~ msgid "SAML details (import from metadata)"
|
||||||
#~ msgstr "SAML 详情(从元数据导入)"
|
#~ msgstr "SAML 详情(从元数据导入)"
|
||||||
|
@ -4720,6 +4891,14 @@ msgstr "可用于提示阶段的单个提示符。"
|
||||||
msgid "Single use"
|
msgid "Single use"
|
||||||
msgstr "一次性使用"
|
msgstr "一次性使用"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Single-page applications"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Single-page applications which handle authentication in the browser (for example, Javascript, Angular, React, Vue)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#~ msgid "Skip path regex"
|
#~ msgid "Skip path regex"
|
||||||
#~ msgstr "跳过路径正则表达式"
|
#~ msgstr "跳过路径正则表达式"
|
||||||
|
|
||||||
|
@ -5441,6 +5620,10 @@ msgstr ""
|
||||||
msgid "The following objects use {objName}"
|
msgid "The following objects use {objName}"
|
||||||
msgstr "以下对象使用 {objName}"
|
msgstr "以下对象使用 {objName}"
|
||||||
|
|
||||||
|
#: src/pages/providers/ProviderWizard.ts
|
||||||
|
msgid "The new application wizard greatly simplifies the steps required to create applications and providers."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#~ msgid ""
|
#~ msgid ""
|
||||||
#~ "The policy passes when the reputation score is above the threshold, and\n"
|
#~ "The policy passes when the reputation score is above the threshold, and\n"
|
||||||
#~ "doesn't pass when either or both of the selected options are equal or less than the\n"
|
#~ "doesn't pass when either or both of the selected options are equal or less than the\n"
|
||||||
|
@ -5502,6 +5685,10 @@ msgstr ""
|
||||||
msgid "These policies control which users can access this application."
|
msgid "These policies control which users can access this application."
|
||||||
msgstr "这些策略控制哪些用户可以访问此应用程序。"
|
msgstr "这些策略控制哪些用户可以访问此应用程序。"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthAPIApplicationWizardPage.ts
|
||||||
|
msgid "This configuration can be used to authenticate to authentik with other APIs other otherwise programmatically."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/flows/FlowInspector.ts
|
#: src/flows/FlowInspector.ts
|
||||||
msgid "This flow is completed."
|
msgid "This flow is completed."
|
||||||
msgstr "此流程已完成。"
|
msgstr "此流程已完成。"
|
||||||
|
@ -5686,6 +5873,14 @@ msgstr "传输"
|
||||||
msgid "Trusted OIDC Sources"
|
msgid "Trusted OIDC Sources"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/providers/ProviderWizard.ts
|
||||||
|
msgid "Try it now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/providers/ProviderWizard.ts
|
||||||
|
msgid "Try the new application wizard"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/interfaces/locale.ts
|
#: src/interfaces/locale.ts
|
||||||
msgid "Turkish"
|
msgid "Turkish"
|
||||||
msgstr "土耳其语"
|
msgstr "土耳其语"
|
||||||
|
@ -5739,6 +5934,10 @@ msgstr "UPN"
|
||||||
msgid "URL settings"
|
msgid "URL settings"
|
||||||
msgstr "URL 设置"
|
msgstr "URL 设置"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLConfigApplicationWizardPage.ts
|
||||||
|
msgid "URL that authentik will redirect back to after successful authentication."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/saml/SAMLSourceForm.ts
|
#: src/pages/sources/saml/SAMLSourceForm.ts
|
||||||
msgid "URL that the initial Login request is sent to."
|
msgid "URL that the initial Login request is sent to."
|
||||||
msgstr "初始登录请求发送到的URL。"
|
msgstr "初始登录请求发送到的URL。"
|
||||||
|
@ -5759,6 +5958,10 @@ msgstr "authentik 用来检索令牌的 URL。"
|
||||||
msgid "URL used to request the initial token. This URL is only required for OAuth 1."
|
msgid "URL used to request the initial token. This URL is only required for OAuth 1."
|
||||||
msgstr "用于请求初始令牌的 URL。只有 OAuth 1 才需要此网址。"
|
msgstr "用于请求初始令牌的 URL。只有 OAuth 1 才需要此网址。"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/link/TypeLinkApplicationWizardPage.ts
|
||||||
|
msgid "URL which will be opened when a user clicks on the application."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
msgid "Unauthenticated Paths"
|
msgid "Unauthenticated Paths"
|
||||||
msgstr "未经身份验证的路径"
|
msgstr "未经身份验证的路径"
|
||||||
|
@ -6098,6 +6301,10 @@ msgstr "用户事件"
|
||||||
msgid "User fields"
|
msgid "User fields"
|
||||||
msgstr "用户字段"
|
msgstr "用户字段"
|
||||||
|
|
||||||
|
#: src/pages/users/UserListPage.ts
|
||||||
|
msgid "User folders"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/interfaces/AdminInterface.ts
|
#: src/interfaces/AdminInterface.ts
|
||||||
msgid "User interface"
|
msgid "User interface"
|
||||||
msgstr "用户界面"
|
msgstr "用户界面"
|
||||||
|
@ -6122,6 +6329,17 @@ msgstr "用户对象筛选器"
|
||||||
msgid "User password writeback"
|
msgid "User password writeback"
|
||||||
msgstr "用户密码写回"
|
msgstr "用户密码写回"
|
||||||
|
|
||||||
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
|
#: src/pages/sources/plex/PlexSourceForm.ts
|
||||||
|
#: src/pages/sources/saml/SAMLSourceForm.ts
|
||||||
|
msgid "User path"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
||||||
|
msgid "User path template"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/tenants/TenantForm.ts
|
#: src/pages/tenants/TenantForm.ts
|
||||||
msgid "User settings flow"
|
msgid "User settings flow"
|
||||||
msgstr "用户设置流程"
|
msgstr "用户设置流程"
|
||||||
|
@ -6357,6 +6575,10 @@ msgstr "警告:未配置 authentik 域,身份验证将不起作用。"
|
||||||
msgid "Web Certificate"
|
msgid "Web Certificate"
|
||||||
msgstr "网络证书"
|
msgstr "网络证书"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Web application"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/authenticator_validate/AuthenticatorValidateStageForm.ts
|
#: src/pages/stages/authenticator_validate/AuthenticatorValidateStageForm.ts
|
||||||
msgid "WebAuthn Authenticators"
|
msgid "WebAuthn Authenticators"
|
||||||
msgstr "WebAuthn 身份验证器"
|
msgstr "WebAuthn 身份验证器"
|
||||||
|
@ -6479,6 +6701,10 @@ msgstr ""
|
||||||
msgid "X509 Subject"
|
msgid "X509 Subject"
|
||||||
msgstr "X509 Subject"
|
msgstr "X509 Subject"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "XML-based SSO standard. Use this if your application only supports SAML."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/elements/oauth/UserRefreshList.ts
|
#: src/elements/oauth/UserRefreshList.ts
|
||||||
#: src/pages/applications/ApplicationCheckAccessForm.ts
|
#: src/pages/applications/ApplicationCheckAccessForm.ts
|
||||||
#: src/pages/groups/GroupListPage.ts
|
#: src/pages/groups/GroupListPage.ts
|
||||||
|
|
|
@ -92,6 +92,7 @@ msgstr "不可移除的身份验证器,例如 TouchID 或 Windows Hello"
|
||||||
msgid "A policy used for testing. Always returns the same result as specified below after waiting a random duration."
|
msgid "A policy used for testing. Always returns the same result as specified below after waiting a random duration."
|
||||||
msgstr "用于测试的策略。等待随机持续时间后,始终返回与下面指定的结果相同的结果。"
|
msgstr "用于测试的策略。等待随机持续时间后,始终返回与下面指定的结果相同的结果。"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLConfigApplicationWizardPage.ts
|
||||||
#: src/pages/providers/saml/SAMLProviderForm.ts
|
#: src/pages/providers/saml/SAMLProviderForm.ts
|
||||||
#: src/pages/providers/saml/SAMLProviderViewPage.ts
|
#: src/pages/providers/saml/SAMLProviderViewPage.ts
|
||||||
msgid "ACS URL"
|
msgid "ACS URL"
|
||||||
|
@ -115,6 +116,10 @@ msgstr "ANY,任何策略都必须匹配才能授予访问权限。"
|
||||||
msgid "ANY, any policy must match to include this stage access."
|
msgid "ANY, any policy must match to include this stage access."
|
||||||
msgstr "ANY,任何策略都必须匹配才能包含此阶段访问权限。"
|
msgstr "ANY,任何策略都必须匹配才能包含此阶段访问权限。"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "API"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/tokens/TokenListPage.ts
|
#: src/pages/tokens/TokenListPage.ts
|
||||||
msgid "API Access"
|
msgid "API Access"
|
||||||
msgstr "API 访问权限"
|
msgstr "API 访问权限"
|
||||||
|
@ -258,6 +263,10 @@ msgstr "额外的用户 DN"
|
||||||
msgid "Additional Scope"
|
msgid "Additional Scope"
|
||||||
msgstr "额外的范围"
|
msgstr "额外的范围"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
|
msgid "Additional UI settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
msgid "Additional group DN, prepended to the Base DN."
|
msgid "Additional group DN, prepended to the Base DN."
|
||||||
msgstr "额外的Group DN,优先于Base DN。"
|
msgstr "额外的Group DN,优先于Base DN。"
|
||||||
|
@ -378,6 +387,7 @@ msgid "App password (can be used to login using a flow executor)"
|
||||||
msgstr "应用程序密码(可用于使用流程执行器登录)"
|
msgstr "应用程序密码(可用于使用流程执行器登录)"
|
||||||
|
|
||||||
#: src/elements/user/UserConsentList.ts
|
#: src/elements/user/UserConsentList.ts
|
||||||
|
#: src/flows/stages/consent/ConsentStage.ts
|
||||||
#: src/pages/admin-overview/TopApplicationsTable.ts
|
#: src/pages/admin-overview/TopApplicationsTable.ts
|
||||||
#: src/pages/providers/ProviderListPage.ts
|
#: src/pages/providers/ProviderListPage.ts
|
||||||
msgid "Application"
|
msgid "Application"
|
||||||
|
@ -388,6 +398,14 @@ msgstr "应用程序"
|
||||||
msgid "Application Icon"
|
msgid "Application Icon"
|
||||||
msgstr "应用程序图标"
|
msgstr "应用程序图标"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/link/TypeLinkApplicationWizardPage.ts
|
||||||
|
msgid "Application Link"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/flows/stages/consent/ConsentStage.ts
|
||||||
|
msgid "Application already has access to the following permissions:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/elements/charts/UserChart.ts
|
#: src/elements/charts/UserChart.ts
|
||||||
msgid "Application authorizations"
|
msgid "Application authorizations"
|
||||||
msgstr "应用程序授权"
|
msgstr "应用程序授权"
|
||||||
|
@ -396,11 +414,25 @@ msgstr "应用程序授权"
|
||||||
msgid "Application authorized"
|
msgid "Application authorized"
|
||||||
msgstr "应用程序已授权"
|
msgstr "应用程序已授权"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
|
msgid "Application details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/flows/stages/consent/ConsentStage.ts
|
||||||
|
msgid "Application requires following new permissions:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/flows/stages/consent/ConsentStage.ts
|
#: src/flows/stages/consent/ConsentStage.ts
|
||||||
msgid "Application requires following permissions:"
|
msgid "Application requires following permissions:"
|
||||||
msgstr "应用程序需要以下权限:"
|
msgstr "应用程序需要以下权限:"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Application type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
msgid "Application's display Name."
|
msgid "Application's display Name."
|
||||||
msgstr "应用的显示名称。"
|
msgstr "应用的显示名称。"
|
||||||
|
|
||||||
|
@ -415,6 +447,18 @@ msgstr "应用程序"
|
||||||
msgid "Applications"
|
msgid "Applications"
|
||||||
msgstr "应用程序"
|
msgstr "应用程序"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Applications which handle the authentication server-side (for example, Python, Go, Rust, Java, PHP)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Applications which redirect users to a non-web callback (for example, Android, iOS)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/elements/wizard/ActionWizardPage.ts
|
||||||
|
msgid "Apply changes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/admin-overview/AdminOverviewPage.ts
|
#: src/pages/admin-overview/AdminOverviewPage.ts
|
||||||
msgid "Apps with most usage"
|
msgid "Apps with most usage"
|
||||||
msgstr "使用率最高的应用"
|
msgstr "使用率最高的应用"
|
||||||
|
@ -532,6 +576,14 @@ msgstr "身份验证 URL"
|
||||||
msgid "Authentication flow"
|
msgid "Authentication flow"
|
||||||
msgstr "身份验证流程"
|
msgstr "身份验证流程"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "Authentication method"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Authentication without user interaction, or machine-to-machine authentication."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/flows/stages/authenticator_validate/AuthenticatorValidateStage.ts
|
#: src/flows/stages/authenticator_validate/AuthenticatorValidateStage.ts
|
||||||
msgid "Authenticator"
|
msgid "Authenticator"
|
||||||
msgstr "身份验证器"
|
msgstr "身份验证器"
|
||||||
|
@ -555,6 +607,7 @@ msgstr "授权"
|
||||||
msgid "Authorization URL"
|
msgid "Authorization URL"
|
||||||
msgstr "授权网址"
|
msgstr "授权网址"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
#: src/pages/providers/oauth2/OAuth2ProviderForm.ts
|
#: src/pages/providers/oauth2/OAuth2ProviderForm.ts
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
#: src/pages/providers/saml/SAMLProviderForm.ts
|
#: src/pages/providers/saml/SAMLProviderForm.ts
|
||||||
|
@ -613,6 +666,7 @@ msgstr "执行过程中显示背景。"
|
||||||
#~ msgid "Backup status"
|
#~ msgid "Backup status"
|
||||||
#~ msgstr "备份状态"
|
#~ msgstr "备份状态"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/ldap/TypeLDAPApplicationWizardPage.ts
|
||||||
#: src/pages/providers/ldap/LDAPProviderForm.ts
|
#: src/pages/providers/ldap/LDAPProviderForm.ts
|
||||||
#: src/pages/providers/ldap/LDAPProviderViewPage.ts
|
#: src/pages/providers/ldap/LDAPProviderViewPage.ts
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
|
@ -707,6 +761,10 @@ msgstr "Build hash:"
|
||||||
msgid "Built-in"
|
msgid "Built-in"
|
||||||
msgstr "内置"
|
msgstr "内置"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthAPIApplicationWizardPage.ts
|
||||||
|
msgid "By default, all service accounts can authenticate as this application, as long as they have a valid token of the type app-password."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/identification/IdentificationStageForm.ts
|
#: src/pages/stages/identification/IdentificationStageForm.ts
|
||||||
msgid "By default, only icons are shown for sources. Enable this to show their full names."
|
msgid "By default, only icons are shown for sources. Enable this to show their full names."
|
||||||
msgstr "默认情况下,只为源显示图标。启用此选项可显示他们的全名。"
|
msgstr "默认情况下,只为源显示图标。启用此选项可显示他们的全名。"
|
||||||
|
@ -1200,6 +1258,7 @@ msgstr "复制恢复链接"
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationListPage.ts
|
#: src/pages/applications/ApplicationListPage.ts
|
||||||
#: src/pages/applications/ApplicationListPage.ts
|
#: src/pages/applications/ApplicationListPage.ts
|
||||||
|
#: src/pages/applications/wizard/ApplicationWizard.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
#: src/pages/events/RuleListPage.ts
|
#: src/pages/events/RuleListPage.ts
|
||||||
|
@ -1338,6 +1397,10 @@ msgstr "创建用户"
|
||||||
msgid "Create a new application"
|
msgid "Create a new application"
|
||||||
msgstr "创建新应用程序"
|
msgstr "创建新应用程序"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/ApplicationWizard.ts
|
||||||
|
msgid "Create a new application."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/outposts/ServiceConnectionWizard.ts
|
#: src/pages/outposts/ServiceConnectionWizard.ts
|
||||||
msgid "Create a new outpost integration."
|
msgid "Create a new outpost integration."
|
||||||
msgstr "创建一个新前哨集成。"
|
msgstr "创建一个新前哨集成。"
|
||||||
|
@ -1362,14 +1425,27 @@ msgstr "创建一个新身份来源。"
|
||||||
msgid "Create a new stage."
|
msgid "Create a new stage."
|
||||||
msgstr "创建一个新阶段。"
|
msgstr "创建一个新阶段。"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
|
msgid "Create application"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/users/ServiceAccountForm.ts
|
#: src/pages/users/ServiceAccountForm.ts
|
||||||
msgid "Create group"
|
msgid "Create group"
|
||||||
msgstr "创建组"
|
msgstr "创建组"
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/ldap/TypeLDAPApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/proxy/TypeProxyApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLConfigApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLImportApplicationWizardPage.ts
|
||||||
msgid "Create provider"
|
msgid "Create provider"
|
||||||
msgstr "创建提供商"
|
msgstr "创建提供商"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/ldap/TypeLDAPApplicationWizardPage.ts
|
||||||
|
msgid "Create service account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
||||||
msgid "Create users as inactive"
|
msgid "Create users as inactive"
|
||||||
msgstr "将用户创建为非活动用户"
|
msgstr "将用户创建为非活动用户"
|
||||||
|
@ -1545,6 +1621,7 @@ msgid "Deprecated. Instead of using this field, configure the JWKS data/URL in S
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
#: src/pages/property-mappings/PropertyMappingScopeForm.ts
|
#: src/pages/property-mappings/PropertyMappingScopeForm.ts
|
||||||
#: src/pages/system-tasks/SystemTaskListPage.ts
|
#: src/pages/system-tasks/SystemTaskListPage.ts
|
||||||
#: src/pages/tokens/TokenForm.ts
|
#: src/pages/tokens/TokenForm.ts
|
||||||
|
@ -2038,6 +2115,14 @@ msgstr "使用 authentik 作为身份提供程序的外部应用程序,利用
|
||||||
msgid "External Host"
|
msgid "External Host"
|
||||||
msgstr "外部主机"
|
msgstr "外部主机"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/proxy/TypeProxyApplicationWizardPage.ts
|
||||||
|
msgid "External domain"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/proxy/TypeProxyApplicationWizardPage.ts
|
||||||
|
msgid "External domain you will be accessing the domain from."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
msgid "External host"
|
msgid "External host"
|
||||||
|
@ -2210,6 +2295,10 @@ msgstr "用于注销的流程。如果留空,则使用按辅助信息块排序
|
||||||
msgid "Flow used when authorizing this provider."
|
msgid "Flow used when authorizing this provider."
|
||||||
msgstr "授权此请求发起端时使用的Flow。"
|
msgstr "授权此请求发起端时使用的Flow。"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
|
msgid "Flow used when users access this application."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/flows/FlowListPage.ts
|
#: src/pages/flows/FlowListPage.ts
|
||||||
msgid "Flow(s)"
|
msgid "Flow(s)"
|
||||||
msgstr "流程"
|
msgstr "流程"
|
||||||
|
@ -2442,7 +2531,6 @@ msgid "Hide managed mappings"
|
||||||
msgstr "隐藏托管映射"
|
msgstr "隐藏托管映射"
|
||||||
|
|
||||||
#: src/pages/users/RelatedUserList.ts
|
#: src/pages/users/RelatedUserList.ts
|
||||||
#: src/pages/users/UserListPage.ts
|
|
||||||
msgid "Hide service-accounts"
|
msgid "Hide service-accounts"
|
||||||
msgstr "隐藏服务账户"
|
msgstr "隐藏服务账户"
|
||||||
|
|
||||||
|
@ -2603,10 +2691,22 @@ msgstr "导入"
|
||||||
msgid "Import Flow"
|
msgid "Import Flow"
|
||||||
msgstr "导入流程"
|
msgstr "导入流程"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Import SAML Metadata"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLImportApplicationWizardPage.ts
|
||||||
|
msgid "Import SAML metadata"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
msgid "Import certificates of external providers or create certificates to sign requests with."
|
msgid "Import certificates of external providers or create certificates to sign requests with."
|
||||||
msgstr "导入外部提供商的证书或创建用于签署请求的证书。"
|
msgstr "导入外部提供商的证书或创建用于签署请求的证书。"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Import the metadata document of the applicaation you want to configure."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/flows/stages/authenticator_validate/AuthenticatorValidateStage.ts
|
#: src/flows/stages/authenticator_validate/AuthenticatorValidateStage.ts
|
||||||
msgid "In case you can't access any other method."
|
msgid "In case you can't access any other method."
|
||||||
msgstr "万一你无法访问任何其他方法。"
|
msgstr "万一你无法访问任何其他方法。"
|
||||||
|
@ -2751,6 +2851,7 @@ msgstr "用于签署传出请求的密钥对。留空则禁用签名。"
|
||||||
msgid "Kubeconfig"
|
msgid "Kubeconfig"
|
||||||
msgstr "Kubeconfig"
|
msgstr "Kubeconfig"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
#: src/pages/outposts/OutpostForm.ts
|
#: src/pages/outposts/OutpostForm.ts
|
||||||
#: src/pages/outposts/OutpostListPage.ts
|
#: src/pages/outposts/OutpostListPage.ts
|
||||||
msgid "LDAP"
|
msgid "LDAP"
|
||||||
|
@ -2772,8 +2873,9 @@ msgstr "可以发出绑定请求和搜索请求的 LDAP DN。"
|
||||||
msgid "LDAP Sync status"
|
msgid "LDAP Sync status"
|
||||||
msgstr "LDAP 同步状态"
|
msgstr "LDAP 同步状态"
|
||||||
|
|
||||||
#~ msgid "LDAP details"
|
#: src/pages/applications/wizard/ldap/TypeLDAPApplicationWizardPage.ts
|
||||||
#~ msgstr "LDAP 详情"
|
msgid "LDAP details"
|
||||||
|
msgstr "LDAP 详情"
|
||||||
|
|
||||||
#: src/pages/stages/prompt/PromptForm.ts
|
#: src/pages/stages/prompt/PromptForm.ts
|
||||||
#: src/pages/stages/prompt/PromptListPage.ts
|
#: src/pages/stages/prompt/PromptListPage.ts
|
||||||
|
@ -2826,6 +2928,10 @@ msgstr "启动 URL"
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "Legacy applications which don't natively support SSO."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/identification/IdentificationStageForm.ts
|
#: src/pages/stages/identification/IdentificationStageForm.ts
|
||||||
msgid "Let the user identify themselves with their username or Email address."
|
msgid "Let the user identify themselves with their username or Email address."
|
||||||
msgstr "让用户使用其用户名或电子邮件地址来标识自己。"
|
msgstr "让用户使用其用户名或电子邮件地址来标识自己。"
|
||||||
|
@ -2833,6 +2939,11 @@ msgstr "让用户使用其用户名或电子邮件地址来标识自己。"
|
||||||
#~ msgid "Library"
|
#~ msgid "Library"
|
||||||
#~ msgstr "Library"
|
#~ msgstr "Library"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/link/TypeLinkApplicationWizardPage.ts
|
||||||
|
msgid "Link"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
#: src/pages/sources/plex/PlexSourceForm.ts
|
#: src/pages/sources/plex/PlexSourceForm.ts
|
||||||
msgid "Link to a user with identical email address. Can have security implications when a source doesn't validate email addresses"
|
msgid "Link to a user with identical email address. Can have security implications when a source doesn't validate email addresses"
|
||||||
|
@ -2891,6 +3002,7 @@ msgstr "正在加载"
|
||||||
#: src/elements/Spinner.ts
|
#: src/elements/Spinner.ts
|
||||||
#: src/pages/applications/ApplicationCheckAccessForm.ts
|
#: src/pages/applications/ApplicationCheckAccessForm.ts
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
#: src/pages/events/RuleForm.ts
|
#: src/pages/events/RuleForm.ts
|
||||||
#: src/pages/events/RuleForm.ts
|
#: src/pages/events/RuleForm.ts
|
||||||
#: src/pages/events/TransportForm.ts
|
#: src/pages/events/TransportForm.ts
|
||||||
|
@ -2926,7 +3038,6 @@ msgstr "正在加载"
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
|
||||||
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
#: src/pages/sources/plex/PlexSourceForm.ts
|
#: src/pages/sources/plex/PlexSourceForm.ts
|
||||||
|
@ -2951,7 +3062,6 @@ msgstr "正在加载"
|
||||||
#: src/pages/stages/password/PasswordStageForm.ts
|
#: src/pages/stages/password/PasswordStageForm.ts
|
||||||
#: src/pages/stages/prompt/PromptStageForm.ts
|
#: src/pages/stages/prompt/PromptStageForm.ts
|
||||||
#: src/pages/stages/prompt/PromptStageForm.ts
|
#: src/pages/stages/prompt/PromptStageForm.ts
|
||||||
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
|
||||||
#: src/pages/tenants/TenantForm.ts
|
#: src/pages/tenants/TenantForm.ts
|
||||||
#: src/pages/tenants/TenantForm.ts
|
#: src/pages/tenants/TenantForm.ts
|
||||||
#: src/pages/tenants/TenantForm.ts
|
#: src/pages/tenants/TenantForm.ts
|
||||||
|
@ -3055,6 +3165,14 @@ msgstr "由 authentik 管理"
|
||||||
msgid "Managed by authentik (Discovered)"
|
msgid "Managed by authentik (Discovered)"
|
||||||
msgstr "由 authentik 管理(已发现)"
|
msgstr "由 authentik 管理(已发现)"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Manual configuration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLApplicationWizardPage.ts
|
||||||
|
msgid "Manually configure SAML"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
||||||
msgid "Mark newly created users as inactive."
|
msgid "Mark newly created users as inactive."
|
||||||
msgstr "将新创建的用户标记为非活动用户。"
|
msgstr "将新创建的用户标记为非活动用户。"
|
||||||
|
@ -3100,11 +3218,18 @@ msgstr "信息"
|
||||||
msgid "Messages"
|
msgid "Messages"
|
||||||
msgstr "信息"
|
msgstr "信息"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLImportApplicationWizardPage.ts
|
||||||
#: src/pages/providers/saml/SAMLProviderImportForm.ts
|
#: src/pages/providers/saml/SAMLProviderImportForm.ts
|
||||||
#: src/pages/sources/saml/SAMLSourceViewPage.ts
|
#: src/pages/sources/saml/SAMLSourceViewPage.ts
|
||||||
msgid "Metadata"
|
msgid "Metadata"
|
||||||
msgstr "元数据"
|
msgstr "元数据"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthAPIApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthCodeApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthImplicitApplicationWizardPage.ts
|
||||||
|
msgid "Method details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/policies/password/PasswordPolicyForm.ts
|
#: src/pages/policies/password/PasswordPolicyForm.ts
|
||||||
msgid "Minimum amount of Digits"
|
msgid "Minimum amount of Digits"
|
||||||
msgstr "最低位数"
|
msgstr "最低位数"
|
||||||
|
@ -3148,6 +3273,10 @@ msgstr "模型已删除"
|
||||||
msgid "Model updated"
|
msgid "Model updated"
|
||||||
msgstr "模型已更新"
|
msgstr "模型已更新"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "Modern applications, APIs and Single-page applications."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#~ msgid "Monitor"
|
#~ msgid "Monitor"
|
||||||
#~ msgstr "监控"
|
#~ msgstr "监控"
|
||||||
|
|
||||||
|
@ -3162,6 +3291,7 @@ msgstr "我的应用"
|
||||||
#: src/elements/forms/DeleteBulkForm.ts
|
#: src/elements/forms/DeleteBulkForm.ts
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
#: src/pages/applications/ApplicationListPage.ts
|
#: src/pages/applications/ApplicationListPage.ts
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairForm.ts
|
#: src/pages/crypto/CertificateKeyPairForm.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
#: src/pages/crypto/CertificateKeyPairListPage.ts
|
||||||
|
@ -3259,6 +3389,10 @@ msgstr "NameID 政策"
|
||||||
msgid "NameID Property Mapping"
|
msgid "NameID Property Mapping"
|
||||||
msgstr "nameID 属性映射"
|
msgstr "nameID 属性映射"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Native application"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/flows/stages/identification/IdentificationStage.ts
|
#: src/flows/stages/identification/IdentificationStage.ts
|
||||||
msgid "Need an account?"
|
msgid "Need an account?"
|
||||||
msgstr "需要一个账户?"
|
msgstr "需要一个账户?"
|
||||||
|
@ -3271,6 +3405,10 @@ msgstr "否定结果"
|
||||||
msgid "Negates the outcome of the binding. Messages are unaffected."
|
msgid "Negates the outcome of the binding. Messages are unaffected."
|
||||||
msgstr "否定绑定的结果。消息不受影响。"
|
msgstr "否定绑定的结果。消息不受影响。"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/ApplicationWizard.ts
|
||||||
|
msgid "New application"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/outposts/ServiceConnectionWizard.ts
|
#: src/pages/outposts/ServiceConnectionWizard.ts
|
||||||
msgid "New outpost integration"
|
msgid "New outpost integration"
|
||||||
msgstr "新前哨集成"
|
msgstr "新前哨集成"
|
||||||
|
@ -3523,6 +3661,10 @@ msgstr "OAuth 刷新代码"
|
||||||
#~ msgid "OAuth/OIDC"
|
#~ msgid "OAuth/OIDC"
|
||||||
#~ msgstr "OAuth/OIDC"
|
#~ msgstr "OAuth/OIDC"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "OAuth2/OIDC"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
msgid "OIDC JWKS"
|
msgid "OIDC JWKS"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3792,6 +3934,21 @@ msgstr "密码:屏蔽输入,密码根据来源进行验证。策略仍需应
|
||||||
msgid "Passwordless flow"
|
msgid "Passwordless flow"
|
||||||
msgstr "无密码流"
|
msgstr "无密码流"
|
||||||
|
|
||||||
|
#: src/pages/users/UserForm.ts
|
||||||
|
msgid "Path"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
||||||
|
msgid "Path new users will be created under. If left blank, the default path will be used.fo"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
|
#: src/pages/sources/plex/PlexSourceForm.ts
|
||||||
|
#: src/pages/sources/saml/SAMLSourceForm.ts
|
||||||
|
msgid "Path template for users created. Use placeholders like `%(slug)s` to insert the source slug."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/saml/SAMLSourceForm.ts
|
#: src/pages/sources/saml/SAMLSourceForm.ts
|
||||||
msgid "Persistent"
|
msgid "Persistent"
|
||||||
msgstr "持久"
|
msgstr "持久"
|
||||||
|
@ -3998,6 +4155,11 @@ msgstr "协议设置"
|
||||||
msgid "Protocol settings"
|
msgid "Protocol settings"
|
||||||
msgstr "协议设置"
|
msgstr "协议设置"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "Provide an LDAP interface for applications and users to authenticate against."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/ProviderListPage.ts
|
#: src/pages/providers/ProviderListPage.ts
|
||||||
msgid "Provide support for protocols like SAML and OAuth to assigned applications."
|
msgid "Provide support for protocols like SAML and OAuth to assigned applications."
|
||||||
msgstr "为分配的应用程序提供对 SAML 和 OAuth 等协议的支持。"
|
msgstr "为分配的应用程序提供对 SAML 和 OAuth 等协议的支持。"
|
||||||
|
@ -4028,6 +4190,7 @@ msgstr "提供商"
|
||||||
msgid "Providers"
|
msgid "Providers"
|
||||||
msgstr "提供商"
|
msgstr "提供商"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
#: src/pages/outposts/OutpostForm.ts
|
#: src/pages/outposts/OutpostForm.ts
|
||||||
#: src/pages/outposts/OutpostListPage.ts
|
#: src/pages/outposts/OutpostListPage.ts
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
|
@ -4035,8 +4198,9 @@ msgstr "提供商"
|
||||||
msgid "Proxy"
|
msgid "Proxy"
|
||||||
msgstr "代理"
|
msgstr "代理"
|
||||||
|
|
||||||
#~ msgid "Proxy details"
|
#: src/pages/applications/wizard/proxy/TypeProxyApplicationWizardPage.ts
|
||||||
#~ msgstr "代理详情"
|
msgid "Proxy details"
|
||||||
|
msgstr "代理详情"
|
||||||
|
|
||||||
#: src/pages/providers/oauth2/OAuth2ProviderForm.ts
|
#: src/pages/providers/oauth2/OAuth2ProviderForm.ts
|
||||||
msgid "Public"
|
msgid "Public"
|
||||||
|
@ -4051,6 +4215,7 @@ msgid "Public key, acquired from https://www.google.com/recaptcha/intro/v3.html.
|
||||||
msgstr "公钥,从 https://www.google.com/recaptcha/intro/v3.html 获取。"
|
msgstr "公钥,从 https://www.google.com/recaptcha/intro/v3.html 获取。"
|
||||||
|
|
||||||
#: src/pages/applications/ApplicationForm.ts
|
#: src/pages/applications/ApplicationForm.ts
|
||||||
|
#: src/pages/applications/wizard/InitialApplicationWizardPage.ts
|
||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr "发行人"
|
msgstr "发行人"
|
||||||
|
|
||||||
|
@ -4301,12 +4466,17 @@ msgstr "返回设备选择器"
|
||||||
msgid "Revoked?"
|
msgid "Revoked?"
|
||||||
msgstr "已吊销?"
|
msgstr "已吊销?"
|
||||||
|
|
||||||
|
#: src/elements/TreeView.ts
|
||||||
|
msgid "Root"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/ldap/LDAPSourceViewPage.ts
|
#: src/pages/sources/ldap/LDAPSourceViewPage.ts
|
||||||
msgid "Run sync again"
|
msgid "Run sync again"
|
||||||
msgstr "再次运行同步"
|
msgstr "再次运行同步"
|
||||||
|
|
||||||
#~ msgid "SAML"
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
#~ msgstr "SAML"
|
msgid "SAML"
|
||||||
|
msgstr "SAML"
|
||||||
|
|
||||||
#~ msgid "SAML (metadata import)"
|
#~ msgid "SAML (metadata import)"
|
||||||
#~ msgstr "SAML(元数据导入)"
|
#~ msgstr "SAML(元数据导入)"
|
||||||
|
@ -4319,8 +4489,9 @@ msgstr "SAML 属性名称"
|
||||||
msgid "SAML Metadata"
|
msgid "SAML Metadata"
|
||||||
msgstr "SAML 元数据"
|
msgstr "SAML 元数据"
|
||||||
|
|
||||||
#~ msgid "SAML details"
|
#: src/pages/applications/wizard/saml/TypeSAMLConfigApplicationWizardPage.ts
|
||||||
#~ msgstr "SAML 详情"
|
msgid "SAML details"
|
||||||
|
msgstr "SAML 详情"
|
||||||
|
|
||||||
#~ msgid "SAML details (import from metadata)"
|
#~ msgid "SAML details (import from metadata)"
|
||||||
#~ msgstr "SAML 详情(从元数据导入)"
|
#~ msgstr "SAML 详情(从元数据导入)"
|
||||||
|
@ -4720,6 +4891,14 @@ msgstr "可用于提示阶段的单个提示符。"
|
||||||
msgid "Single use"
|
msgid "Single use"
|
||||||
msgstr "一次性使用"
|
msgstr "一次性使用"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Single-page applications"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Single-page applications which handle authentication in the browser (for example, Javascript, Angular, React, Vue)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#~ msgid "Skip path regex"
|
#~ msgid "Skip path regex"
|
||||||
#~ msgstr "跳过路径正则表达式"
|
#~ msgstr "跳过路径正则表达式"
|
||||||
|
|
||||||
|
@ -5441,6 +5620,10 @@ msgstr ""
|
||||||
msgid "The following objects use {objName}"
|
msgid "The following objects use {objName}"
|
||||||
msgstr "以下对象使用 {objName}"
|
msgstr "以下对象使用 {objName}"
|
||||||
|
|
||||||
|
#: src/pages/providers/ProviderWizard.ts
|
||||||
|
msgid "The new application wizard greatly simplifies the steps required to create applications and providers."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#~ msgid ""
|
#~ msgid ""
|
||||||
#~ "The policy passes when the reputation score is above the threshold, and\n"
|
#~ "The policy passes when the reputation score is above the threshold, and\n"
|
||||||
#~ "doesn't pass when either or both of the selected options are equal or less than the\n"
|
#~ "doesn't pass when either or both of the selected options are equal or less than the\n"
|
||||||
|
@ -5502,6 +5685,10 @@ msgstr ""
|
||||||
msgid "These policies control which users can access this application."
|
msgid "These policies control which users can access this application."
|
||||||
msgstr "这些策略控制哪些用户可以访问此应用程序。"
|
msgstr "这些策略控制哪些用户可以访问此应用程序。"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthAPIApplicationWizardPage.ts
|
||||||
|
msgid "This configuration can be used to authenticate to authentik with other APIs other otherwise programmatically."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/flows/FlowInspector.ts
|
#: src/flows/FlowInspector.ts
|
||||||
msgid "This flow is completed."
|
msgid "This flow is completed."
|
||||||
msgstr "此流程已完成。"
|
msgstr "此流程已完成。"
|
||||||
|
@ -5686,6 +5873,14 @@ msgstr "传输"
|
||||||
msgid "Trusted OIDC Sources"
|
msgid "Trusted OIDC Sources"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/providers/ProviderWizard.ts
|
||||||
|
msgid "Try it now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/providers/ProviderWizard.ts
|
||||||
|
msgid "Try the new application wizard"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/interfaces/locale.ts
|
#: src/interfaces/locale.ts
|
||||||
msgid "Turkish"
|
msgid "Turkish"
|
||||||
msgstr "土耳其语"
|
msgstr "土耳其语"
|
||||||
|
@ -5739,6 +5934,10 @@ msgstr "UPN"
|
||||||
msgid "URL settings"
|
msgid "URL settings"
|
||||||
msgstr "URL 设置"
|
msgstr "URL 设置"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/saml/TypeSAMLConfigApplicationWizardPage.ts
|
||||||
|
msgid "URL that authentik will redirect back to after successful authentication."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/sources/saml/SAMLSourceForm.ts
|
#: src/pages/sources/saml/SAMLSourceForm.ts
|
||||||
msgid "URL that the initial Login request is sent to."
|
msgid "URL that the initial Login request is sent to."
|
||||||
msgstr "初始登录请求发送到的URL。"
|
msgstr "初始登录请求发送到的URL。"
|
||||||
|
@ -5759,6 +5958,10 @@ msgstr "authentik 用来检索令牌的 URL。"
|
||||||
msgid "URL used to request the initial token. This URL is only required for OAuth 1."
|
msgid "URL used to request the initial token. This URL is only required for OAuth 1."
|
||||||
msgstr "用于请求初始令牌的 URL。只有 OAuth 1 才需要此网址。"
|
msgstr "用于请求初始令牌的 URL。只有 OAuth 1 才需要此网址。"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/link/TypeLinkApplicationWizardPage.ts
|
||||||
|
msgid "URL which will be opened when a user clicks on the application."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
#: src/pages/providers/proxy/ProxyProviderForm.ts
|
||||||
msgid "Unauthenticated Paths"
|
msgid "Unauthenticated Paths"
|
||||||
msgstr "未经身份验证的路径"
|
msgstr "未经身份验证的路径"
|
||||||
|
@ -6098,6 +6301,10 @@ msgstr "用户事件"
|
||||||
msgid "User fields"
|
msgid "User fields"
|
||||||
msgstr "用户字段"
|
msgstr "用户字段"
|
||||||
|
|
||||||
|
#: src/pages/users/UserListPage.ts
|
||||||
|
msgid "User folders"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/interfaces/AdminInterface.ts
|
#: src/interfaces/AdminInterface.ts
|
||||||
msgid "User interface"
|
msgid "User interface"
|
||||||
msgstr "用户界面"
|
msgstr "用户界面"
|
||||||
|
@ -6122,6 +6329,17 @@ msgstr "用户对象筛选器"
|
||||||
msgid "User password writeback"
|
msgid "User password writeback"
|
||||||
msgstr "用户密码写回"
|
msgstr "用户密码写回"
|
||||||
|
|
||||||
|
#: src/pages/sources/ldap/LDAPSourceForm.ts
|
||||||
|
#: src/pages/sources/oauth/OAuthSourceForm.ts
|
||||||
|
#: src/pages/sources/plex/PlexSourceForm.ts
|
||||||
|
#: src/pages/sources/saml/SAMLSourceForm.ts
|
||||||
|
msgid "User path"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/pages/stages/user_write/UserWriteStageForm.ts
|
||||||
|
msgid "User path template"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/tenants/TenantForm.ts
|
#: src/pages/tenants/TenantForm.ts
|
||||||
msgid "User settings flow"
|
msgid "User settings flow"
|
||||||
msgstr "用户设置流程"
|
msgstr "用户设置流程"
|
||||||
|
@ -6357,6 +6575,10 @@ msgstr "警告:未配置 authentik 域,身份验证将不起作用。"
|
||||||
msgid "Web Certificate"
|
msgid "Web Certificate"
|
||||||
msgstr "网络证书"
|
msgstr "网络证书"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/oauth/TypeOAuthApplicationWizardPage.ts
|
||||||
|
msgid "Web application"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/pages/stages/authenticator_validate/AuthenticatorValidateStageForm.ts
|
#: src/pages/stages/authenticator_validate/AuthenticatorValidateStageForm.ts
|
||||||
msgid "WebAuthn Authenticators"
|
msgid "WebAuthn Authenticators"
|
||||||
msgstr "WebAuthn 身份验证器"
|
msgstr "WebAuthn 身份验证器"
|
||||||
|
@ -6479,6 +6701,10 @@ msgstr ""
|
||||||
msgid "X509 Subject"
|
msgid "X509 Subject"
|
||||||
msgstr "X509 Subject"
|
msgstr "X509 Subject"
|
||||||
|
|
||||||
|
#: src/pages/applications/wizard/TypeApplicationWizardPage.ts
|
||||||
|
msgid "XML-based SSO standard. Use this if your application only supports SAML."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: src/elements/oauth/UserRefreshList.ts
|
#: src/elements/oauth/UserRefreshList.ts
|
||||||
#: src/pages/applications/ApplicationCheckAccessForm.ts
|
#: src/pages/applications/ApplicationCheckAccessForm.ts
|
||||||
#: src/pages/groups/GroupListPage.ts
|
#: src/pages/groups/GroupListPage.ts
|
||||||
|
|
|
@ -8,4 +8,18 @@ To generate an API client, you can use the OpenAPI v3 schema at https://authenti
|
||||||
|
|
||||||
While testing, the API requests are authenticated by your browser session.
|
While testing, the API requests are authenticated by your browser session.
|
||||||
|
|
||||||
To send an API request from outside the browser, you need to set the `Authorization` Header to `Bearer <your token>`.
|
## Authentication
|
||||||
|
|
||||||
|
For any of the token-based methods, set the `Authorization` header to `Bearer <token>`.
|
||||||
|
|
||||||
|
### Session
|
||||||
|
|
||||||
|
When authenticating with a flow, you'll get an authenticated Session cookie, that can be used for authentication. Keep in mind that in this context, a CSRF header is also required.
|
||||||
|
|
||||||
|
### API Token
|
||||||
|
|
||||||
|
Superusers can create tokens to authenticate as any user with a static key, which can optionally be expiring and auto-rotate.
|
||||||
|
|
||||||
|
### JWT Token
|
||||||
|
|
||||||
|
OAuth2 clients can request the scope `goauthentik.io/api`, which allows their OAuth Refresh token to be used to authenticate to the API.
|
||||||
|
|
Reference in New Issue