mirror of
https://github.com/logto-io/logto.git
synced 2025-04-07 23:01:25 -05:00
refactor: add learn more link for Default API switch (#3972)
This commit is contained in:
parent
5599667576
commit
4e3b2ce351
31 changed files with 49 additions and 32 deletions
|
@ -3,7 +3,7 @@ import { forwardRef } from 'react';
|
|||
|
||||
import * as styles from './index.module.scss';
|
||||
|
||||
type Props = HTMLProps<HTMLInputElement> & {
|
||||
type Props = Omit<HTMLProps<HTMLInputElement>, 'label'> & {
|
||||
label?: ReactNode;
|
||||
};
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ export const emailUsLink = buildUrl(contactEmailLink, {
|
|||
subject: 'Cloud pricing and special offer',
|
||||
}).replace(/\+/g, '%20');
|
||||
|
||||
export const logtoBlogLink = 'https://docs.logto.io/blog?utm_source=console';
|
||||
export const logtoBlogLink = 'https://blog.logto.io/?utm_source=console';
|
||||
export const aboutCloudPreviewLink = 'https://docs.logto.io/about/cloud-preview?utm_source=console';
|
||||
|
||||
export const gtagAwTrackingId = 'AW-11124811245';
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import type { Resource } from '@logto/schemas';
|
||||
import { useForm } from 'react-hook-form';
|
||||
import { toast } from 'react-hot-toast';
|
||||
import { useTranslation } from 'react-i18next';
|
||||
import { Trans, useTranslation } from 'react-i18next';
|
||||
import { useOutletContext } from 'react-router-dom';
|
||||
|
||||
import DetailsForm from '@/components/DetailsForm';
|
||||
|
@ -9,6 +9,7 @@ import FormCard from '@/components/FormCard';
|
|||
import FormField from '@/components/FormField';
|
||||
import Switch from '@/components/Switch';
|
||||
import TextInput from '@/components/TextInput';
|
||||
import TextLink from '@/components/TextLink';
|
||||
import UnsavedChangesAlertModal from '@/components/UnsavedChangesAlertModal';
|
||||
import useApi from '@/hooks/use-api';
|
||||
import useDocumentationUrl from '@/hooks/use-documentation-url';
|
||||
|
@ -86,7 +87,23 @@ function ApiResourceSettings() {
|
|||
</FormField>
|
||||
{!isLogtoManagementApiResource && (
|
||||
<FormField title="api_resources.default_api">
|
||||
<Switch {...register('isDefault')} label={t('api_resources.default_api_label')} />
|
||||
<Switch
|
||||
{...register('isDefault')}
|
||||
label={
|
||||
<Trans
|
||||
components={{
|
||||
a: (
|
||||
<TextLink
|
||||
href="https://docs.logto.io/docs/references/resources/#default-api"
|
||||
target="_blank"
|
||||
/>
|
||||
),
|
||||
}}
|
||||
>
|
||||
{t('api_resources.default_api_label')}
|
||||
</Trans>
|
||||
}
|
||||
/>
|
||||
</FormField>
|
||||
)}
|
||||
</FormCard>
|
||||
|
|
|
@ -11,7 +11,7 @@ const api_resources = {
|
|||
'Der eindeutige Identifikator der API-Ressource muss eine absolute URI ohne Fragmentbezeichner (#) sein. Entspricht dem <a>Ressourcenparameter</a> in OAuth 2.0.',
|
||||
default_api: 'Standard-API',
|
||||
default_api_label:
|
||||
'Pro Mandant kann nur eine Standard-API festgelegt werden. Wenn eine Standard-API festgelegt ist, kann der Ressourcenparameter in der Authentifizierungsanfrage weggelassen werden. Folgende Token-Austauschvorgänge verwenden standardmäßig die API als Publikum, was zur Ausgabe von JWTs führt.',
|
||||
'Pro Mandant kann nur eine Standard-API festgelegt werden. Wenn eine Standard-API festgelegt ist, kann der Ressourcenparameter in der Authentifizierungsanfrage weggelassen werden. Folgende Token-Austauschvorgänge verwenden standardmäßig die API als Publikum, was zur Ausgabe von JWTs führt. <a>Erfahren Sie mehr</a>',
|
||||
api_resource_created: 'Die API-Ressource {{name}} wurde erfolgreich erstellt',
|
||||
};
|
||||
|
||||
|
|
|
@ -62,7 +62,7 @@ const connectors = {
|
|||
target_tip_standard:
|
||||
'Der Wert von "IdP-Name" kann eine eindeutige Kennung sein, um Ihre Social-Identitäten zu unterscheiden. Diese Einstellung kann nach der Erstellung des Connectors nicht mehr geändert werden.',
|
||||
target_tooltip:
|
||||
'„Target“ in Logto-Social-Connectors bezieht sich auf die „Quelle“ Ihrer Social-Identitäten. Im Logto-Design akzeptieren wir nicht dasselbe „Target“ einer bestimmten Plattform, um Konflikte zu vermeiden. Sie sollten sehr vorsichtig sein, bevor Sie einen Connector hinzufügen, da Sie seinen Wert NICHT ändern können, sobald Sie ihn erstellt haben. <a>Erfahren Sie mehr.</a>',
|
||||
'„Target“ in Logto-Social-Connectors bezieht sich auf die „Quelle“ Ihrer Social-Identitäten. Im Logto-Design akzeptieren wir nicht dasselbe „Target“ einer bestimmten Plattform, um Konflikte zu vermeiden. Sie sollten sehr vorsichtig sein, bevor Sie einen Connector hinzufügen, da Sie seinen Wert NICHT ändern können, sobald Sie ihn erstellt haben. <a>Erfahren Sie mehr</a>',
|
||||
target_conflict:
|
||||
'Der eingegebene IdP-Name stimmt mit dem vorhandenen <span>Namen</span> überein. Die Verwendung desselben IdP-Namens kann ein unerwartetes Anmeldeverhalten verursachen, bei dem Benutzer über zwei verschiedene Connectoren auf dasselbe Konto zugreifen können.',
|
||||
target_conflict_line2:
|
||||
|
|
|
@ -11,7 +11,7 @@ const api_resources = {
|
|||
'The unique identifier to the API resource. It must be an absolute URI and has no fragment (#) component. Equals to the <a>resource parameter</a> in OAuth 2.0.',
|
||||
default_api: 'Default API',
|
||||
default_api_label:
|
||||
'Only zero or one default API can be set per tenant.\nWhen a default API is designated, the resource parameter can be omitted in the auth request. Subsequent token exchanges will use that API as the audience by default, resulting in the issuance of JWTs.',
|
||||
'Only zero or one default API can be set per tenant.\nWhen a default API is designated, the resource parameter can be omitted in the auth request. Subsequent token exchanges will use that API as the audience by default, resulting in the issuance of JWTs. <a>Learn more</a>',
|
||||
api_resource_created: 'The API resource {{name}} has been successfully created',
|
||||
};
|
||||
|
||||
|
|
|
@ -61,7 +61,7 @@ const connectors = {
|
|||
target_tip_standard:
|
||||
'The value of “IdP name” can be a unique identifier string to distinguish your social identifies. This setting cannot be changed after the connector is built.',
|
||||
target_tooltip:
|
||||
'"IdP name" in Logto social connectors refers to the "source" of your social identities. In Logto design, we do not accept the same "IdP name" of a specific platform to avoid conflicts. You should be very careful before you add a connector since you CAN NOT change its value once you create it. <a>Learn more.</a>',
|
||||
'"IdP name" in Logto social connectors refers to the "source" of your social identities. In Logto design, we do not accept the same "IdP name" of a specific platform to avoid conflicts. You should be very careful before you add a connector since you CAN NOT change its value once you create it. <a>Learn more</a>',
|
||||
target_conflict:
|
||||
'The IdP name entered matches the existing <span>name</span> connector. Using the same idp name may cause unexpected sign-in behavior where users may access the same account through two different connectors.',
|
||||
target_conflict_line2:
|
||||
|
|
|
@ -11,7 +11,7 @@ const api_resources = {
|
|||
'El identificador único para el recurso de API. Debe ser una URI absoluta y no tiene componente de fragmento (#). Es igual al <a>parámetro de recurso</a> en OAuth 2.0.',
|
||||
default_api: 'API por defecto',
|
||||
default_api_label:
|
||||
'Sólo se puede establecer cero o una API por defecto por inquilino. Cuando se designa una API por defecto, el parámetro de recurso se puede omitir en la solicitud de autenticación. Las posteriores intercambios de tokens utilizarán esa API como audiencia por defecto, lo que dará lugar a la emisión de JWTs.',
|
||||
'Sólo se puede establecer cero o una API por defecto por inquilino. Cuando se designa una API por defecto, el parámetro de recurso se puede omitir en la solicitud de autenticación. Las posteriores intercambios de tokens utilizarán esa API como audiencia por defecto, lo que dará lugar a la emisión de JWTs. <a>Obtener más información</a>',
|
||||
api_resource_created: 'El recurso de API {{name}} se ha creado correctamente',
|
||||
};
|
||||
|
||||
|
|
|
@ -62,7 +62,7 @@ const connectors = {
|
|||
target_tip_standard:
|
||||
'El valor de "nombre del IdP" puede ser una cadena de identificador única para distinguir sus identificadores sociales. Esta configuración no se puede cambiar después de crear el conector.',
|
||||
target_tooltip:
|
||||
'El "nombre del IdP" en los conectores sociales de Logto se refiere a la "fuente" de sus identidades sociales. En el diseño de Logto, no aceptamos el mismo "nombre del IdP" de una plataforma específica para evitar conflictos. Debe ser muy cuidadoso antes de agregar un conector ya que NO PUEDE cambiar su valor una vez que lo crea. <a>Obtener más información.</a>',
|
||||
'El "nombre del IdP" en los conectores sociales de Logto se refiere a la "fuente" de sus identidades sociales. En el diseño de Logto, no aceptamos el mismo "nombre del IdP" de una plataforma específica para evitar conflictos. Debe ser muy cuidadoso antes de agregar un conector ya que NO PUEDE cambiar su valor una vez que lo crea. <a>Obtener más información</a>',
|
||||
target_conflict:
|
||||
'El nombre del IdP ingresado coincide con el conector de nombre <span></span>. Utilizar el mismo nombre del IdP puede provocar un comportamiento de inicio de sesión inesperado donde los usuarios pueden acceder a la misma cuenta a través de dos conectores diferentes.',
|
||||
target_conflict_line2:
|
||||
|
|
|
@ -11,7 +11,7 @@ const api_resources = {
|
|||
"L'identifiant unique de la ressource API. Il doit s'agir d'un URI absolu et ne doit pas comporter de fragment (#). Équivaut au <a>paramètre de ressource</> dans OAuth 2.0.",
|
||||
default_api: 'API par défaut',
|
||||
default_api_label:
|
||||
'Seulement zéro ou une API par défaut peut être définie par tenant. Lorsqu\'une API par défaut est désignée, le paramètre "resource" peut être omis dans la demande d\'authentification. Les échanges de jetons ultérieurs utiliseront cette API comme public cible par défaut, ce qui entraînera la délivrance de JWT.',
|
||||
'Seulement zéro ou une API par défaut peut être définie par tenant. Lorsqu\'une API par défaut est désignée, le paramètre "resource" peut être omis dans la demande d\'authentification. Les échanges de jetons ultérieurs utiliseront cette API comme public cible par défaut, ce qui entraînera la délivrance de JWT. <a>En savoir plus</a>',
|
||||
api_resource_created: 'La ressource API {{name}} a été créée avec succès.',
|
||||
};
|
||||
|
||||
|
|
|
@ -63,7 +63,7 @@ const connectors = {
|
|||
target_tip_standard:
|
||||
'La valeur de "nom de l\'IdP" peut être une chaîne d\'identificateur unique pour distinguer vos identifiants sociaux. Ce paramètre ne peut pas être modifié une fois que le connecteur est créé.',
|
||||
target_tooltip:
|
||||
"«Cible» dans les connecteurs sociaux de Logto fait référence à la «source» de vos identités sociales. Dans la conception de Logto, nous n'acceptons pas la même «cible» d'une plateforme spécifique pour éviter les conflits. Vous devriez être très attentif avant d'ajouter un connecteur car vous NE POUVEZ PAS changer sa valeur une fois que vous l'avez créé. <a>En savoir plus.</a>",
|
||||
"«Cible» dans les connecteurs sociaux de Logto fait référence à la «source» de vos identités sociales. Dans la conception de Logto, nous n'acceptons pas la même «cible» d'une plateforme spécifique pour éviter les conflits. Vous devriez être très attentif avant d'ajouter un connecteur car vous NE POUVEZ PAS changer sa valeur une fois que vous l'avez créé. <a>En savoir plus</a>",
|
||||
target_conflict:
|
||||
"Le nom de l'IdP saisi correspond au nom existant <span>nom</span>. Utiliser le même nom d'IdP peut entraîner un comportement de connexion inattendu où les utilisateurs peuvent accéder au même compte via deux connecteurs différents.",
|
||||
target_conflict_line2:
|
||||
|
|
|
@ -11,7 +11,7 @@ const api_resources = {
|
|||
"L'identificatore univoco della risorsa API. Deve essere un URI assoluto e non ha componenti di frammento (#). Corrisponde al parametro <a>risorsa</a> in OAuth 2.0.",
|
||||
default_api: 'API predefinita',
|
||||
default_api_label:
|
||||
'Solo zero o una API predefinita possono essere impostate per tenant. Quando viene designata una API predefinita, il parametro di risorsa può essere omesso nella richiesta di autorizzazione. Gli scambi di token successivi utilizzeranno quell API come destinatario per impostazione predefinita, con conseguente rilascio di JWT.',
|
||||
'Solo zero o una API predefinita possono essere impostate per tenant. Quando viene designata una API predefinita, il parametro di risorsa può essere omesso nella richiesta di autorizzazione. Gli scambi di token successivi utilizzeranno quell API come destinatario per impostazione predefinita, con conseguente rilascio di JWT. <a>Scopri di più</a>',
|
||||
api_resource_created: 'La risorsa API {{name}} è stata creata con successo',
|
||||
};
|
||||
|
||||
|
|
|
@ -62,7 +62,7 @@ const connectors = {
|
|||
target_tip_standard:
|
||||
'Il valore del "Nome IdP" può essere una stringa di identificatore univoco per distinguere le identità social. Questa impostazione non può essere cambiata dopo la costruzione del connettore.',
|
||||
target_tooltip:
|
||||
"'Nome IdP' nei connettori social di Logto si riferisce alla 'fonte' delle tue identità social media. Nel design di Logto, non accettiamo lo stesso 'Nome IdP' di una piattaforma specifica per evitare conflitti. Devi fare molta attenzione prima di aggiungere un connettore, poiché NON PUOI cambiarne il valore una volta creato. <a>Scopri di più.</a>",
|
||||
"'Nome IdP' nei connettori social di Logto si riferisce alla 'fonte' delle tue identità social media. Nel design di Logto, non accettiamo lo stesso 'Nome IdP' di una piattaforma specifica per evitare conflitti. Devi fare molta attenzione prima di aggiungere un connettore, poiché NON PUOI cambiarne il valore una volta creato. <a>Scopri di più</a>",
|
||||
target_conflict:
|
||||
'Il nome IdP inserito corrisponde al connettore <span>nome</span> esistente. L’utilizzo dello stesso nome IdP potrebbe causare un comportamento di accesso imprevisto in cui gli utenti possono accedere allo stesso account tramite due connettori diversi.',
|
||||
target_conflict_line2:
|
||||
|
|
|
@ -11,7 +11,7 @@ const api_resources = {
|
|||
'API リソースの一意の識別子です。絶対URIで、フラグメント(#)コンポーネントはありません。OAuth 2.0での<a>resource parameter</a>に等しいです。',
|
||||
default_api: 'デフォルトのAPI',
|
||||
default_api_label:
|
||||
'テナントごとにデフォルトのAPIを0または1つだけ設定できます。デフォルトのAPIが指定されている場合、認証リクエストでリソースパラメータを省略できます。その後のトークン交換は、デフォルトのAPIを対象として行われます。それにより、JWTが発行されます。',
|
||||
'テナントごとにデフォルトのAPIを0または1つだけ設定できます。デフォルトのAPIが指定されている場合、認証リクエストでリソースパラメータを省略できます。その後のトークン交換は、デフォルトのAPIを対象として行われます。それにより、JWTが発行されます。<a>詳細を見る</a>',
|
||||
api_resource_created: 'APIリソース{{name}}が正常に作成されました',
|
||||
};
|
||||
|
||||
|
|
|
@ -59,7 +59,7 @@ const connectors = {
|
|||
target_tip_standard:
|
||||
'「IdP名」として、ソーシャルIDを識別するための一意の識別子文字列を指定します。この設定は、コネクタが作成された後に変更できません。',
|
||||
target_tooltip:
|
||||
'Logtoのソーシャルコネクタでの「IdP名」とは、ソーシャルIDの「ソース」を指します。「IdP名」は、Plat formごとに一意でなければならず、同じ名前は許可されません。「IdP名」は一度作成されたコネクタで変更することはできません。 <a>詳細を見る。</a>',
|
||||
'Logtoのソーシャルコネクタでの「IdP名」とは、ソーシャルIDの「ソース」を指します。「IdP名」は、Plat formごとに一意でなければならず、同じ名前は許可されません。「IdP名」は一度作成されたコネクタで変更することはできません。<a>詳細を見る</a>',
|
||||
target_conflict:
|
||||
'入力されたIdP名は、既存の<span>name</span>コネクタと一致します。同じIdP名を使用すると、ユーザーが2つの異なるコネクタを通じて同じアカウントにアクセスする予期しないサインイン動作が発生する可能性があります。',
|
||||
target_conflict_line2:
|
||||
|
|
|
@ -11,7 +11,7 @@ const api_resources = {
|
|||
'API 리소스에 대한 고유한 식별자예요. 절대 URI여야 하며 조각 (#) 컴포넌트가 없어야 해요. OAuth 2.0의 <a>resource parameter</a>와 같아요.',
|
||||
default_api: 'Default API',
|
||||
default_api_label:
|
||||
'테넌트 당 기본 API는 0개 또는 1개만 지정 할 수 있어요. 기본 API가 지정되면 인증 요청에서 리소스 매개 변수를 생략할 수 있어요. 이후 토큰 교환이 기본적으로 대상에 해당하는 API를 사용하여 수행되어 JWT가 발급되어요.',
|
||||
'테넌트 당 기본 API는 0개 또는 1개만 지정 할 수 있어요. 기본 API가 지정되면 인증 요청에서 리소스 매개 변수를 생략할 수 있어요. 이후 토큰 교환이 기본적으로 대상에 해당하는 API를 사용하여 수행되어 JWT가 발급되어요. <a>자세히 알아보기</a>',
|
||||
api_resource_created: '{{name}} API 리소스가 성공적으로 생성되었어요.',
|
||||
};
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@ const api_resources = {
|
|||
'Unikalny identyfikator zasobu API. Musi to być bezwzględny adres URI bez składnika fragmentu (#). Jest równy <a>parametrowi zasobu</a> w standardzie OAuth 2.0.',
|
||||
default_api: 'Domyślne API',
|
||||
default_api_label:
|
||||
'Tylko jedno API domyślne może być ustawione na jeden najem. Kiedy określone zostanie API domyślne, parametr zasobu może zostać pominięty w żądaniu autoryzacji. Następujące procesy wymiany tokenu będą domyślnie korzystać z tego API, co umożliwi wydanie JWT.',
|
||||
'Tylko jedno API domyślne może być ustawione na jeden najem. Kiedy określone zostanie API domyślne, parametr zasobu może zostać pominięty w żądaniu autoryzacji. Następujące procesy wymiany tokenu będą domyślnie korzystać z tego API, co umożliwi wydanie JWT. <a>Dowiedz się więcej</a>',
|
||||
api_resource_created: 'Zasób API {{name}} został pomyślnie utworzony',
|
||||
};
|
||||
|
||||
|
|
|
@ -61,7 +61,7 @@ const connectors = {
|
|||
target_tip_standard:
|
||||
'Wartość „Nazwy dostawcy tożsamości” może być unikalnym ciągiem identyfikującym, który odróżnia Twoje tożsamości społecznościowe. Po utworzeniu łącznika nie możesz go zmienić.',
|
||||
target_tooltip:
|
||||
'„Nazwa dostawcy tożsamości” w łącznikach społecznościowych Logto odnosi się do "źródła" Twoich tożsamości społecznościowych. W projektowaniu Logto nie akceptujemy tych samych „Nazw dostawców tożsamości” konkretnej platformy, aby uniknąć konfliktów. Powinieneś bardzo uważać przed dodaniem łącznika, ponieważ NIE MOŻESZ zmienić jego wartości po utworzeniu. <a>Dowiedz się więcej.</a>',
|
||||
'„Nazwa dostawcy tożsamości” w łącznikach społecznościowych Logto odnosi się do "źródła" Twoich tożsamości społecznościowych. W projektowaniu Logto nie akceptujemy tych samych „Nazw dostawców tożsamości” konkretnej platformy, aby uniknąć konfliktów. Powinieneś bardzo uważać przed dodaniem łącznika, ponieważ NIE MOŻESZ zmienić jego wartości po utworzeniu. <a>Dowiedz się więcej</a>',
|
||||
target_conflict:
|
||||
'Wprowadzona nazwa IdP pasuje do istniejącego łącznika <span>nazwa</span>. Użycie tej samej nazwy IdP może spowodować nieoczekiwane zachowanie logowania, gdzie użytkownicy mogą uzyskać dostęp do tego samego konta za pośrednictwem dwóch różnych łączników.',
|
||||
target_conflict_line2:
|
||||
|
|
|
@ -11,7 +11,7 @@ const api_resources = {
|
|||
'O identificador exclusivo para o recurso da API. Deve ser um URI absoluto e não tem nenhum componente de fragmento (#). Igual ao <a>parâmetro de recurso</a> em OAuth 2.0.',
|
||||
default_api: 'API padrão',
|
||||
default_api_label:
|
||||
'Apenas uma API padrão pode ser definida por locatário. Quando uma API padrão é definida, o parâmetro de recurso pode ser omitido na solicitação de autenticação. As trocas de token subsequentes usarão essa API como audiência por padrão, resultando na emissão de JWTs.',
|
||||
'Apenas uma API padrão pode ser definida por locatário. Quando uma API padrão é definida, o parâmetro de recurso pode ser omitido na solicitação de autenticação. As trocas de token subsequentes usarão essa API como audiência por padrão, resultando na emissão de JWTs. <a>Saiba mais</a>',
|
||||
api_resource_created: 'O recurso API {{name}} foi criado com sucesso',
|
||||
};
|
||||
|
||||
|
|
|
@ -60,7 +60,7 @@ const connectors = {
|
|||
target_tip_standard:
|
||||
'O valor de "Nome do fornecedor de identidade" pode ser uma string de identificador exclusiva para distinguir suas identidades sociais. Essa configuração não pode ser alterada após a criação do conector.',
|
||||
target_tooltip:
|
||||
'"Target" nos conectores sociais Logto refere-se à "origem" de suas identidades sociais. No design do Logto, não aceitamos o mesmo "target" de uma plataforma específica para evitar conflitos. Você deve tomar muito cuidado antes de adicionar um conector, pois NÃO PODE mudar seu valor depois de criá-lo. <a>Saiba mais.</a>',
|
||||
'"Target" nos conectores sociais Logto refere-se à "origem" de suas identidades sociais. No design do Logto, não aceitamos o mesmo "target" de uma plataforma específica para evitar conflitos. Você deve tomar muito cuidado antes de adicionar um conector, pois NÃO PODE mudar seu valor depois de criá-lo. <a>Saiba mais</a>',
|
||||
target_conflict:
|
||||
'O nome de IdP inserido corresponde ao <span>nome</span> existente. Usar o mesmo nome do IDP pode causar comportamento inesperado ao entrar onde os usuários podem acessar a mesma conta por meio de dois conectores diferentes.',
|
||||
target_conflict_line2:
|
||||
|
|
|
@ -11,7 +11,7 @@ const api_resources = {
|
|||
'O identificador exclusivo para o recurso de API. Deve ser um URI absoluto e não ter um componente de fragmento (#). Igual ao <a>parâmetro resource</a> no OAuth 2.0.',
|
||||
default_api: 'API padrão',
|
||||
default_api_label:
|
||||
'Somente uma API padrão pode ser definida por inquilino. Quando uma API padrão é definida, o parâmetro de recurso pode ser omitido na solicitação de autorização. Subsequentes trocas de token usarão essa API como audiência por padrão, resultando na emissão de JWTs.',
|
||||
'Somente uma API padrão pode ser definida por inquilino. Quando uma API padrão é definida, o parâmetro de recurso pode ser omitido na solicitação de autorização. Subsequentes trocas de token usarão essa API como audiência por padrão, resultando na emissão de JWTs. <a>Saiba mais</a>',
|
||||
api_resource_created: 'O recurso de API {{name}} foi criado com sucesso',
|
||||
};
|
||||
|
||||
|
|
|
@ -62,7 +62,7 @@ const connectors = {
|
|||
target_tip_standard:
|
||||
'O valor do "nome do IdP" pode ser uma string de identificador exclusivo para distinguir suas identidades sociais. Esta configuração não pode ser alterada depois que o conector for criado.',
|
||||
target_tooltip:
|
||||
'"Target" nos conectores sociais do Logto refere-se à "origem" de suas identidades sociais. No design do Logto, não aceitamos o mesmo "alvo" de uma plataforma específica para evitar conflitos. Você deve ter muito cuidado antes de adicionar um conector, pois NÃO PODE alterar seu valor depois de criá-lo. <a>Saiba mais.</a>',
|
||||
'"Target" nos conectores sociais do Logto refere-se à "origem" de suas identidades sociais. No design do Logto, não aceitamos o mesmo "alvo" de uma plataforma específica para evitar conflitos. Você deve ter muito cuidado antes de adicionar um conector, pois NÃO PODE alterar seu valor depois de criá-lo. <a>Saiba mais</a>',
|
||||
target_conflict:
|
||||
'O nome do IdP inserido corresponde ao <span>nome</span> existente. Usar o mesmo nome de idp pode causar um comportamento de login inesperado em que os usuários podem acessar a mesma conta por meio de dois conectores diferentes.',
|
||||
target_conflict_line2:
|
||||
|
|
|
@ -11,7 +11,7 @@ const api_resources = {
|
|||
'Уникальный идентификатор для ресурса API. Он должен быть абсолютным URI и не иметь фрагмента (#). Равен параметру <a>resource</a> в OAuth 2.0.',
|
||||
default_api: 'API по умолчанию',
|
||||
default_api_label:
|
||||
'В каждом арендаторе может быть только один API по умолчанию. Когда устанавливается API по умолчанию, можно опустить параметр <a>resource</a> в запросе на аутентификацию. Последующие запросы на обмен токенами будут использовать указанное API в качестве аудитории по умолчанию, что приведет к выдаче JWT.',
|
||||
'В каждом арендаторе может быть только один API по умолчанию. Когда устанавливается API по умолчанию, можно опустить параметр <a>resource</a> в запросе на аутентификацию. Последующие запросы на обмен токенами будут использовать указанное API в качестве аудитории по умолчанию, что приведет к выдаче JWT. <a>Узнать больше</a>',
|
||||
api_resource_created: 'Ресурс API {{name}} был успешно создан',
|
||||
};
|
||||
|
||||
|
|
|
@ -61,7 +61,7 @@ const connectors = {
|
|||
target_tip_standard:
|
||||
'Значение «Название поставщика идентификации» может быть строкой уникального идентификатора, чтобы отличать ваших социальных пользователей. Эта настройка не может быть изменена после создания коннектора.',
|
||||
target_tooltip:
|
||||
'"Название поставщика идентификации" в социальных коннекторах Logto относится к "источнику" ваших социальных пользователей. В дизайне Logto мы не принимаем то же самое "название поставщика идентификации" для определенной платформы, чтобы избежать конфликтов. Вы должны быть очень внимательны, прежде чем добавлять коннектор, так как вы НЕ МОЖЕТЕ изменить его значение после создания. <a>Узнать больше.</a>',
|
||||
'"Название поставщика идентификации" в социальных коннекторах Logto относится к "источнику" ваших социальных пользователей. В дизайне Logto мы не принимаем то же самое "название поставщика идентификации" для определенной платформы, чтобы избежать конфликтов. Вы должны быть очень внимательны, прежде чем добавлять коннектор, так как вы НЕ МОЖЕТЕ изменить его значение после создания. <a>Узнать больше</a>',
|
||||
target_conflict:
|
||||
'Введенное имя поставщика идентификации совпадает с существующим коннектором <span>name</span>. Использование того же имени поставщика идентификации может вызвать неожиданное поведение входа в систему, когда пользователи могут получить доступ к одной учетной записи через два разных коннектора.',
|
||||
target_conflict_line2:
|
||||
|
|
|
@ -11,7 +11,7 @@ const api_resources = {
|
|||
'Api kaynağına özgün belirteç. Mutlak URI olmalı ve parça bileşeni (#) içermemeli. OAuth 2.0deki <a>kaynak parametresine</a> eşittir.',
|
||||
default_api: 'Varsayılan API',
|
||||
default_api_label:
|
||||
'Mandant başına sadece sıfır veya bir varsayılan API ayarlanabilir. Varsayılan bir API belirlendiğinde, auth isteğindeki kaynak parametresi çıkarılabilir. Sonraki token değişimlerinde varsayılan olarak bu API hedef alınarak JWTler oluşturulur.',
|
||||
'Mandant başına sadece sıfır veya bir varsayılan API ayarlanabilir. Varsayılan bir API belirlendiğinde, auth isteğindeki kaynak parametresi çıkarılabilir. Sonraki token değişimlerinde varsayılan olarak bu API hedef alınarak JWTler oluşturulur. <a>Daha fazla bilgi edinin</a>',
|
||||
api_resource_created: '{{name}} API kaynağı başarıyla oluşturuldu',
|
||||
};
|
||||
|
||||
|
|
|
@ -61,7 +61,7 @@ const connectors = {
|
|||
target_tip_standard:
|
||||
'“IdP adı” değeri, sosyal kimliklerinizi ayırt etmek için benzersiz bir tanımlayıcı dize olabilir. Bu ayar, connector oluşturulduktan sonra değiştirilemez.',
|
||||
target_tooltip:
|
||||
'Logto sosyal connectorlarındaki "Hedef", sosyal kimliklerinizin "kaynağı" na işaret eder. Logto tasarımında, aynı bir platformun "hedef" i kabul edilmez ve çakışmaları önlemek için benzersiz olmalıdır. Bir connector eklemeniz gerektiğinde çok dikkatli olmalısınız çünkü oluşturulduktan sonra "hedef" değerini DEĞİŞTİREMEZSİNİZ. <a>Daha fazla bilgi edinin.</a>',
|
||||
'Logto sosyal connectorlarındaki "Hedef", sosyal kimliklerinizin "kaynağı" na işaret eder. Logto tasarımında, aynı bir platformun "hedef" i kabul edilmez ve çakışmaları önlemek için benzersiz olmalıdır. Bir connector eklemeniz gerektiğinde çok dikkatli olmalısınız çünkü oluşturulduktan sonra "hedef" değerini DEĞİŞTİREMEZSİNİZ. <a>Daha fazla bilgi edinin</a>',
|
||||
target_conflict:
|
||||
'Kullanılan IdP adı, <span>adı</span> ile eşleşmektedir. Aynı idp adını kullanmak, kullanıcıların iki farklı connector aracılığıyla aynı hesaba erişebileceği şekilde beklenmeyen oturum açma davranışına neden olabilir.',
|
||||
target_conflict_line2:
|
||||
|
|
|
@ -12,7 +12,7 @@ const api_resources = {
|
|||
api_resource_created: ' API 资源 {{name}} 已成功创建。',
|
||||
default_api: '默认API',
|
||||
default_api_label:
|
||||
'每个租户只能设置零个或一个默认 API。当指定默认 API 时,可以在认证请求中省略资源参数。后续令牌交换将默认使用该 API 作为 Audience,导致 JWT 的签发。',
|
||||
'每个租户只能设置零个或一个默认 API。当指定默认 API 时,可以在认证请求中省略资源参数。后续令牌交换将默认使用该 API 作为 Audience,从而签发 JWT。<a>了解更多</a>',
|
||||
};
|
||||
|
||||
export default api_resources;
|
||||
|
|
|
@ -54,7 +54,7 @@ const connectors = {
|
|||
target_tip_standard:
|
||||
'在“身份供应商名称”字段中输入唯一的标识符字符串,用于区分社交身份来源。注意,在连接器创建成功后,无法再次修改此设置。',
|
||||
target_tooltip:
|
||||
'Logto 社交连接器的「target」指的是社交身份的「来源」。在 Logto 的设计里,我们不允许某一平台的连接器中有相同的「target」以避免身份的冲突。在添加连接器时,你需要格外小心,我们「不允许」用户在创建之后更改「target」的值。 <a>了解更多</a>',
|
||||
'Logto 社交连接器的「target」指的是社交身份的「来源」。在 Logto 的设计里,我们不允许某一平台的连接器中有相同的「target」以避免身份的冲突。在添加连接器时,你需要格外小心,我们「不允许」用户在创建之后更改「target」的值。<a>了解更多</a>',
|
||||
target_conflict:
|
||||
'此「身份供应商名称」值与现有的 <span>name</span> 连接器相同。使用相同的身份供应商名称会导致不符合预期的登录行为,用户可能通过两个不同的连接器访问同一个帐户。',
|
||||
target_conflict_line2:
|
||||
|
|
|
@ -12,7 +12,7 @@ const api_resources = {
|
|||
api_resource_created: ' API 資源 {{name}} 已成功創建。',
|
||||
default_api: '預設的 API',
|
||||
default_api_label:
|
||||
'一个租户只能设置零或一个默认 API。当指定默认 API 时,可以在身份验证请求中省略资源参数,还可以使用该 API 作为默认受众方进行令牌交换,从而发放 JWT。',
|
||||
'一个租户只能设置零或一个默认 API。当指定默认 API 时,可以在身份验证请求中省略资源参数,还可以使用该 API 作为默认受众方进行令牌交换,从而发放 JWT。<a>了解更多</a>',
|
||||
};
|
||||
|
||||
export default api_resources;
|
||||
|
|
|
@ -12,7 +12,7 @@ const api_resources = {
|
|||
api_resource_created: ' API 資源 {{name}} 已成功創建。',
|
||||
default_api: '預設 API',
|
||||
default_api_label:
|
||||
'一個租戶只能設定零個或一個預設 API。當指定了預設 API 後,可以在授權請求中省略 `resource` 參數。隨後的令牌交換將使用該 API 作為默認的 Audience,從而產生 JWT。',
|
||||
'一個租戶只能設定零個或一個預設 API。當指定了預設 API 後,可以在授權請求中省略 `resource` 參數。隨後的令牌交換將使用該 API 作為默認的 Audience,從而產生 JWT。<a>了解更多</a>',
|
||||
};
|
||||
|
||||
export default api_resources;
|
||||
|
|
|
@ -54,7 +54,7 @@ const connectors = {
|
|||
target_tip_standard:
|
||||
'在“身份供應商名稱”字段中輸入唯一的標識符字符串,用於區分社交身份來源。注意,在連接器創建成功後,無法再次修改此設置。',
|
||||
target_tooltip:
|
||||
'Logto 社交連接器的「target」指的是社交身份的「來源」。在 Logto 的設計裡,我們不允許某一平台的連接器中有相同的「target」以避免身份的衝突。在添加連接器時,你需要格外小心,我們「不允許」用戶在創建之後更改「target」的值。 <a>了解更多</a>',
|
||||
'Logto 社交連接器的「target」指的是社交身份的「來源」。在 Logto 的設計裡,我們不允許某一平台的連接器中有相同的「target」以避免身份的衝突。在添加連接器時,你需要格外小心,我們「不允許」用戶在創建之後更改「target」的值。<a>了解更多</a>',
|
||||
target_conflict:
|
||||
'此「身份供應商名稱」值與現有的 <span>name</span> 連接器相同。使用相同的身份供應商名稱會導致不符合預期的登錄行為,用戶可能通過兩個不同的連接器訪問同一個帳戶。',
|
||||
target_conflict_line2:
|
||||
|
|
Loading…
Add table
Reference in a new issue