mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-08-12 03:39:01 +08:00
Fix: update docs link (#19278)
This commit is contained in:
parent
1abf00e443
commit
3ecc1e0228
@ -188,7 +188,7 @@ services:
|
||||
|
||||
# ssrf_proxy server
|
||||
# for more information, please refer to
|
||||
# https://docs.dify.ai/learn-more/faq/install-faq#id-18.-why-is-ssrf_proxy-needed
|
||||
# https://docs.dify.ai/learn-more/faq/install-faq#18-why-is-ssrf-proxy-needed%3F
|
||||
ssrf_proxy:
|
||||
image: ubuntu/squid:latest
|
||||
restart: always
|
||||
|
@ -123,7 +123,7 @@ services:
|
||||
|
||||
# ssrf_proxy server
|
||||
# for more information, please refer to
|
||||
# https://docs.dify.ai/learn-more/faq/install-faq#id-18.-why-is-ssrf_proxy-needed
|
||||
# https://docs.dify.ai/learn-more/faq/install-faq#18-why-is-ssrf-proxy-needed%3F
|
||||
ssrf_proxy:
|
||||
image: ubuntu/squid:latest
|
||||
restart: always
|
||||
|
@ -677,7 +677,7 @@ services:
|
||||
|
||||
# ssrf_proxy server
|
||||
# for more information, please refer to
|
||||
# https://docs.dify.ai/learn-more/faq/install-faq#id-18.-why-is-ssrf_proxy-needed
|
||||
# https://docs.dify.ai/learn-more/faq/install-faq#18-why-is-ssrf-proxy-needed%3F
|
||||
ssrf_proxy:
|
||||
image: ubuntu/squid:latest
|
||||
restart: always
|
||||
|
@ -98,7 +98,7 @@ const ExtraInfo = ({ isMobile, relatedApps, expand }: IExtraInfoProps) => {
|
||||
className='mt-2 inline-flex cursor-pointer items-center text-xs text-text-accent'
|
||||
href={
|
||||
locale === LanguagesSupported[1]
|
||||
? 'https://docs.dify.ai/v/zh-hans/guides/knowledge-base/integrate-knowledge-within-application'
|
||||
? 'https://docs.dify.ai/zh-hans/guides/knowledge-base/integrate-knowledge-within-application'
|
||||
: 'https://docs.dify.ai/guides/knowledge-base/integrate-knowledge-within-application'
|
||||
}
|
||||
target='_blank' rel='noopener noreferrer'
|
||||
|
@ -46,8 +46,8 @@ const HistoryPanel: FC<Props> = ({
|
||||
<div className='flex justify-between rounded-b-xl bg-background-section-burn px-3 py-2 text-xs text-text-secondary'>
|
||||
<div>{t('appDebug.feature.conversationHistory.tip')}
|
||||
<a href={`${locale === LanguagesSupported[1]
|
||||
? 'https://docs.dify.ai/v/zh-hans/guides/application-design/prompt-engineering'
|
||||
: 'https://docs.dify.ai/features/prompt-engineering'}`}
|
||||
? 'https://docs.dify.ai/zh-hans/learn-more/extended-reading/prompt-engineering/README'
|
||||
: 'https://docs.dify.ai/en/features/prompt-engineering'}`}
|
||||
target='_blank' rel='noopener noreferrer'
|
||||
className='text-[#155EEF]'>{t('appDebug.feature.conversationHistory.learnMore')}
|
||||
</a>
|
||||
|
@ -25,7 +25,7 @@ const AdvancedModeWarning: FC<Props> = ({
|
||||
<span className='text-gray-700'>{t('appDebug.promptMode.advancedWarning.description')}</span>
|
||||
<a
|
||||
className='font-medium text-[#155EEF]'
|
||||
href={`https://docs.dify.ai/${locale === LanguagesSupported[1] ? 'v/zh-hans/guides/application-design/prompt-engineering' : 'features/prompt-engineering'}`}
|
||||
href={`https://docs.dify.ai/${locale === LanguagesSupported[1] ? '/guides/features/prompt-engineering' : 'features/prompt-engineering'}`}
|
||||
target='_blank' rel='noopener noreferrer'
|
||||
>
|
||||
{t('appDebug.promptMode.advancedWarning.learnMore')}
|
||||
|
@ -310,17 +310,17 @@ function AppPreview({ mode }: { mode: AppMode }) {
|
||||
'chat': {
|
||||
title: t('app.types.chatbot'),
|
||||
description: t('app.newApp.chatbotUserDescription'),
|
||||
link: 'https://docs.dify.ai/guides/application-orchestrate#application_type',
|
||||
link: 'https://docs.dify.ai/guides/application-orchestrate/readme',
|
||||
},
|
||||
'advanced-chat': {
|
||||
title: t('app.types.advanced'),
|
||||
description: t('app.newApp.advancedUserDescription'),
|
||||
link: 'https://docs.dify.ai/guides/workflow',
|
||||
link: 'https://docs.dify.ai/en/guides/workflow/README',
|
||||
},
|
||||
'agent-chat': {
|
||||
title: t('app.types.agent'),
|
||||
description: t('app.newApp.agentUserDescription'),
|
||||
link: 'https://docs.dify.ai/guides/application-orchestrate/agent',
|
||||
link: 'https://docs.dify.ai/en/guides/application-orchestrate/agent',
|
||||
},
|
||||
'completion': {
|
||||
title: t('app.newApp.completeApp'),
|
||||
@ -330,7 +330,7 @@ function AppPreview({ mode }: { mode: AppMode }) {
|
||||
'workflow': {
|
||||
title: t('app.types.workflow'),
|
||||
description: t('app.newApp.workflowUserDescription'),
|
||||
link: 'https://docs.dify.ai/guides/workflow',
|
||||
link: 'https://docs.dify.ai/en/guides/workflow/README',
|
||||
},
|
||||
}
|
||||
const previewInfo = modeToPreviewInfoMap[mode]
|
||||
|
@ -103,7 +103,7 @@ const CustomizeModal: FC<IShareLinkProps> = ({
|
||||
window.open(
|
||||
`https://docs.dify.ai/${locale !== LanguagesSupported[1]
|
||||
? 'user-guide/launching-dify-apps/developing-with-apis'
|
||||
: `v/${locale.toLowerCase()}/guides/application-publishing/developing-with-apis`
|
||||
: `${locale.toLowerCase()}/guides/application-publishing/developing-with-apis`
|
||||
}`,
|
||||
'_blank',
|
||||
)
|
||||
|
@ -241,7 +241,7 @@ const SettingsModal: FC<ISettingsModalProps> = ({
|
||||
</div>
|
||||
<div className='system-xs-regular mt-0.5 text-text-tertiary'>
|
||||
<span>{t(`${prefixSettings}.modalTip`)}</span>
|
||||
<Link href={`${locale === LanguagesSupported[1] ? 'https://docs.dify.ai/zh-hans/guides/application-publishing/launch-your-webapp-quickly#she-zhi-ni-de-ai-zhan-dian' : 'https://docs.dify.ai/guides/application-publishing/launch-your-webapp-quickly#setting-up-your-ai-site'}`} target='_blank' rel='noopener noreferrer' className='text-text-accent'>{t('common.operation.learnMore')}</Link>
|
||||
<Link href={`${locale === LanguagesSupported[1] ? 'https://docs.dify.ai/zh-hans/guides/application-publishing/launch-your-webapp-quickly#she-zhi-ni-de-ai-zhan-dian' : 'https://docs.dify.ai/en/guides/application-publishing/launch-your-webapp-quickly/README'}`} target='_blank' rel='noopener noreferrer' className='text-text-accent'>{t('common.operation.learnMore')}</Link>
|
||||
</div>
|
||||
</div>
|
||||
{/* form body */}
|
||||
|
@ -264,8 +264,8 @@ const Documents: FC<IDocumentsProps> = ({ datasetId }) => {
|
||||
target='_blank'
|
||||
href={
|
||||
locale === LanguagesSupported[1]
|
||||
? 'https://docs.dify.ai/v/zh-hans/guides/knowledge-base/integrate-knowledge-within-application'
|
||||
: 'https://docs.dify.ai/guides/knowledge-base/integrate-knowledge-within-application'
|
||||
? 'https://docs.dify.ai/zh-hans/guides/knowledge-base/integrate-knowledge-within-application'
|
||||
: 'https://docs.dify.ai/en/guides/knowledge-base/integrate-knowledge-within-application'
|
||||
}
|
||||
>
|
||||
<span>{t('datasetDocuments.list.learnMore')}</span>
|
||||
|
@ -16,12 +16,12 @@ const InfoPanel = () => {
|
||||
</span>
|
||||
<span className='system-sm-regular text-text-tertiary'>
|
||||
{t('dataset.connectDatasetIntro.content.front')}
|
||||
<a className='system-sm-regular ml-1 text-text-accent' href='https://docs.dify.ai/guides/knowledge-base/external-knowledge-api-documentation' target='_blank' rel="noopener noreferrer">
|
||||
<a className='system-sm-regular ml-1 text-text-accent' href='https://docs.dify.ai/en/guides/knowledge-base/external-knowledge-api' target='_blank' rel="noopener noreferrer">
|
||||
{t('dataset.connectDatasetIntro.content.link')}
|
||||
</a>
|
||||
{t('dataset.connectDatasetIntro.content.end')}
|
||||
</span>
|
||||
<a className='system-sm-regular self-stretch text-text-accent' href='https://docs.dify.ai/guides/knowledge-base/connect-external-knowledge' target='_blank' rel="noopener noreferrer">
|
||||
<a className='system-sm-regular self-stretch text-text-accent' href='https://docs.dify.ai/en/guides/knowledge-base/connect-external-knowledge-base' target='_blank' rel="noopener noreferrer">
|
||||
{t('dataset.connectDatasetIntro.learnMore')}
|
||||
</a>
|
||||
</p>
|
||||
|
@ -59,7 +59,7 @@ const ExternalKnowledgeBaseCreate: React.FC<ExternalKnowledgeBaseCreateProps> =
|
||||
<span>{t('dataset.connectHelper.helper1')}</span>
|
||||
<span className='system-sm-medium text-text-secondary'>{t('dataset.connectHelper.helper2')}</span>
|
||||
<span>{t('dataset.connectHelper.helper3')}</span>
|
||||
<a className='system-sm-regular self-stretch text-text-accent' href='https://docs.dify.ai/guides/knowledge-base/connect-external-knowledge' target='_blank' rel="noopener noreferrer">
|
||||
<a className='system-sm-regular self-stretch text-text-accent' href='https://docs.dify.ai/en/guides/knowledge-base/connect-external-knowledge-base' target='_blank' rel="noopener noreferrer">
|
||||
{t('dataset.connectHelper.helper4')}
|
||||
</a>
|
||||
<span>{t('dataset.connectHelper.helper5')} </span>
|
||||
|
@ -28,7 +28,7 @@ const Contribute = ({ onRefreshData }: Props) => {
|
||||
const linkUrl = useMemo(() => {
|
||||
if (language.startsWith('zh_'))
|
||||
return 'https://docs.dify.ai/zh-hans/guides/tools#ru-he-chuang-jian-zi-ding-yi-gong-ju'
|
||||
return 'https://docs.dify.ai/guides/tools#how-to-create-custom-tools'
|
||||
return 'https://docs.dify.ai/en/guides/tools#how-to-create-custom-tools'
|
||||
}, [language])
|
||||
|
||||
const [isShowEditCollectionToolModal, setIsShowEditCustomCollectionModal] = useState(false)
|
||||
|
@ -223,7 +223,7 @@ export const AgentStrategy = memo((props: AgentStrategyProps) => {
|
||||
<Link href={
|
||||
locale === LanguagesSupported[1]
|
||||
? 'https://docs.dify.ai/zh-hans/guides/workflow/node/agent#xuan-ze-agent-ce-le'
|
||||
: 'https://docs.dify.ai/guides/workflow/node/agent#select-an-agent-strategy'
|
||||
: 'https://docs.dify.ai/en/guides/workflow/node/agent#select-an-agent-strategy'
|
||||
} className='text-text-accent-secondary' target='_blank'>
|
||||
{t('workflow.nodes.agent.learnMore')}
|
||||
</Link>
|
||||
|
@ -34,7 +34,7 @@ const DefaultValue = ({
|
||||
{t('workflow.nodes.common.errorHandle.defaultValue.desc')}
|
||||
|
||||
<a
|
||||
href='https://docs.dify.ai/guides/workflow/error-handling'
|
||||
href='https://docs.dify.ai/en/guides/workflow/error-handling/README'
|
||||
target='_blank'
|
||||
className='text-text-accent'
|
||||
>
|
||||
|
@ -8,7 +8,7 @@ export const useNodeHelpLink = (nodeType: BlockEnum) => {
|
||||
if (language === 'zh_Hans')
|
||||
return 'https://docs.dify.ai/zh-hans/guides/workflow/node/'
|
||||
|
||||
return 'https://docs.dify.ai/guides/workflow/node/'
|
||||
return 'https://docs.dify.ai/en/guides/workflow/node/'
|
||||
}, [language])
|
||||
const linkMap = useMemo(() => {
|
||||
if (language === 'zh_Hans') {
|
||||
|
@ -49,7 +49,7 @@ const DEFAULT_SCHEMA: SchemaRoot = {
|
||||
|
||||
const HELP_DOC_URL = {
|
||||
zh_Hans: 'https://docs.dify.ai/zh-hans/guides/workflow/structured-outputs',
|
||||
en_US: 'https://docs.dify.ai/guides/workflow/structured-outputs',
|
||||
en_US: 'https://docs.dify.ai/en/guides/workflow/structured-outputs',
|
||||
ja_JP: 'https://docs.dify.ai/ja-jp/guides/workflow/structured-outputs',
|
||||
}
|
||||
|
||||
|
@ -164,7 +164,7 @@ const OneMoreStep = () => {
|
||||
<Link
|
||||
className='system-xs-medium text-text-accent-secondary'
|
||||
target='_blank' rel='noopener noreferrer'
|
||||
href={'https://docs.dify.ai/user-agreement/open-source'}
|
||||
href={'https://docs.dify.ai/en/policies/agreement/README'}
|
||||
>{t('login.license.link')}</Link>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -455,7 +455,7 @@ const translation = {
|
||||
apiBasedExtension: {
|
||||
title: 'API-Erweiterungen bieten zentralisiertes API-Management und vereinfachen die Konfiguration für eine einfache Verwendung in Difys Anwendungen.',
|
||||
link: 'Erfahren Sie, wie Sie Ihre eigene API-Erweiterung entwickeln.',
|
||||
linkUrl: 'https://docs.dify.ai/features/extension/api_based_extension',
|
||||
linkUrl: 'https://docs.dify.ai/en/guides/extension/api-based-extension/README',
|
||||
add: 'API-Erweiterung hinzufügen',
|
||||
selector: {
|
||||
title: 'API-Erweiterung',
|
||||
|
@ -69,7 +69,7 @@ const translation = {
|
||||
unknownError: 'Unbekannter Fehler',
|
||||
resetAll: 'Alles zurücksetzen',
|
||||
extractOnlyMainContent: 'Extrahieren Sie nur den Hauptinhalt (keine Kopf-, Navigations- und Fußzeilen usw.)',
|
||||
firecrawlDocLink: 'https://docs.dify.ai/guides/knowledge-base/sync-from-website',
|
||||
firecrawlDocLink: 'https://docs.dify.ai/en/guides/knowledge-base/create-knowledge-and-upload-documents/import-content-data/sync-from-website',
|
||||
firecrawlTitle: 'Extrahieren von Webinhalten mit 🔥Firecrawl',
|
||||
maxDepthTooltip: 'Maximale Tiefe für das Crawlen relativ zur eingegebenen URL. Tiefe 0 kratzt nur die Seite der eingegebenen URL, Tiefe 1 kratzt die URL und alles nach der eingegebenen URL + ein / und so weiter.',
|
||||
crawlSubPage: 'Unterseiten crawlen',
|
||||
|
@ -475,7 +475,7 @@ const translation = {
|
||||
apiBasedExtension: {
|
||||
title: 'API extensions provide centralized API management, simplifying configuration for easy use across Dify\'s applications.',
|
||||
link: 'Learn how to develop your own API Extension.',
|
||||
linkUrl: 'https://docs.dify.ai/features/extension/api_based_extension',
|
||||
linkUrl: 'https://docs.dify.ai/en/guides/extension/api-based-extension/README',
|
||||
add: 'Add API Extension',
|
||||
selector: {
|
||||
title: 'API Extension',
|
||||
|
@ -80,10 +80,10 @@ const translation = {
|
||||
run: 'Run',
|
||||
firecrawlTitle: 'Extract web content with 🔥Firecrawl',
|
||||
firecrawlDoc: 'Firecrawl docs',
|
||||
firecrawlDocLink: 'https://docs.dify.ai/guides/knowledge-base/sync-from-website',
|
||||
firecrawlDocLink: 'https://docs.dify.ai/en/guides/knowledge-base/create-knowledge-and-upload-documents/import-content-data/sync-from-website',
|
||||
watercrawlTitle: 'Extract web content with Watercrawl',
|
||||
watercrawlDoc: 'Watercrawl docs',
|
||||
watercrawlDocLink: 'https://docs.dify.ai/guides/knowledge-base/sync-from-website',
|
||||
watercrawlDocLink: 'https://docs.dify.ai/en/guides/knowledge-base/create-knowledge-and-upload-documents/import-content-data/sync-from-website',
|
||||
jinaReaderTitle: 'Convert the entire site to Markdown',
|
||||
jinaReaderDoc: 'Learn more about Jina Reader',
|
||||
jinaReaderDocLink: 'https://jina.ai/reader',
|
||||
|
@ -459,7 +459,7 @@ const translation = {
|
||||
apiBasedExtension: {
|
||||
title: 'Las extensiones basadas en API proporcionan una gestión centralizada de API, simplificando la configuración para su fácil uso en las aplicaciones de Dify.',
|
||||
link: 'Aprende cómo desarrollar tu propia Extensión API.',
|
||||
linkUrl: 'https://docs.dify.ai/features/extension/api_based_extension',
|
||||
linkUrl: 'https://docs.dify.ai/en/guides/extension/api-based-extension/README',
|
||||
add: 'Agregar Extensión API',
|
||||
selector: {
|
||||
title: 'Extensión API',
|
||||
|
@ -63,7 +63,7 @@ const translation = {
|
||||
run: 'Ejecutar',
|
||||
firecrawlTitle: 'Extraer contenido web con 🔥Firecrawl',
|
||||
firecrawlDoc: 'Documentación de Firecrawl',
|
||||
firecrawlDocLink: 'https://docs.dify.ai/guides/knowledge-base/sync-from-website',
|
||||
firecrawlDocLink: 'https://docs.dify.ai/en/guides/knowledge-base/create-knowledge-and-upload-documents/import-content-data/sync-from-website',
|
||||
options: 'Opciones',
|
||||
crawlSubPage: 'Rastrear subpáginas',
|
||||
limit: 'Límite',
|
||||
|
@ -459,7 +459,7 @@ const translation = {
|
||||
apiBasedExtension: {
|
||||
title: 'افزونههای مبتنی بر API مدیریت متمرکز API را فراهم میکنند و پیکربندی را برای استفاده آسان در برنامههای Dify ساده میکنند.',
|
||||
link: 'نحوه توسعه افزونه API خود را بیاموزید.',
|
||||
linkUrl: 'https://docs.dify.ai/features/extension/api_based_extension',
|
||||
linkUrl: 'https://docs.dify.ai/en/guides/extension/api-based-extension/README',
|
||||
add: 'افزودن افزونه API',
|
||||
selector: {
|
||||
title: 'افزونه API',
|
||||
|
@ -63,7 +63,7 @@ const translation = {
|
||||
run: 'اجرا',
|
||||
firecrawlTitle: 'استخراج محتوای وب با fireFirecrawl',
|
||||
firecrawlDoc: 'مستندات Firecrawl',
|
||||
firecrawlDocLink: '<a href="https://docs.dify.ai/guides/knowledge-base/sync-from-website">https://docs.dify.ai/guides/knowledge-base/sync-from-website</a>',
|
||||
firecrawlDocLink: '<a href="https://docs.dify.ai/en/guides/knowledge-base/create-knowledge-and-upload-documents/import-content-data/sync-from-website">https://docs.dify.ai/en/guides/knowledge-base/create-knowledge-and-upload-documents/import-content-data/sync-from-website</a>',
|
||||
options: 'گزینهها',
|
||||
crawlSubPage: 'خزش صفحات فرعی',
|
||||
limit: 'محدودیت',
|
||||
|
@ -61,7 +61,7 @@ const translation = {
|
||||
preview: 'Aperçu',
|
||||
crawlSubPage: 'Explorer les sous-pages',
|
||||
configure: 'Configurer',
|
||||
firecrawlDocLink: 'https://docs.dify.ai/guides/knowledge-base/sync-from-website',
|
||||
firecrawlDocLink: 'https://docs.dify.ai/en/guides/knowledge-base/create-knowledge-and-upload-documents/import-content-data/sync-from-website',
|
||||
maxDepth: 'Profondeur maximale',
|
||||
fireCrawlNotConfigured: 'Firecrawl n’est pas configuré',
|
||||
firecrawlTitle: 'Extraire du contenu web avec 🔥Firecrawl',
|
||||
|
@ -476,7 +476,7 @@ const translation = {
|
||||
title:
|
||||
'एपीआई एक्सटेंशन केंद्रीकृत एपीआई प्रबंधन प्रदान करते हैं, जो Dify के अनुप्रयोगों में आसान उपयोग के लिए कॉन्फ़िगरेशन को सरल बनाते हैं।',
|
||||
link: 'अपना खुद का एपीआई एक्सटेंशन कैसे विकसित करें, यह जानें।',
|
||||
linkUrl: 'https://docs.dify.ai/features/extension/api_based_extension',
|
||||
linkUrl: 'https://docs.dify.ai/en/guides/extension/api-based-extension/README',
|
||||
add: 'एपीआई एक्सटेंशन जोड़ें',
|
||||
selector: {
|
||||
title: 'एपीआई एक्सटेंशन',
|
||||
|
@ -483,7 +483,7 @@ const translation = {
|
||||
title:
|
||||
'Le estensioni API forniscono una gestione centralizzata delle API, semplificando la configurazione per un facile utilizzo nelle applicazioni di Dify.',
|
||||
link: 'Scopri come sviluppare la tua estensione API.',
|
||||
linkUrl: 'https://docs.dify.ai/features/extension/api_based_extension',
|
||||
linkUrl: 'https://docs.dify.ai/en/guides/extension/api-based-extension/README',
|
||||
add: 'Aggiungi Estensione API',
|
||||
selector: {
|
||||
title: 'Estensione API',
|
||||
|
@ -475,7 +475,7 @@ const translation = {
|
||||
apiBasedExtension: {
|
||||
title: 'API拡張機能は、Difyのアプリケーション全体での簡単な使用のための設定を簡素化し、集中的なAPI管理を提供します。',
|
||||
link: '独自のAPI拡張機能を開発する方法について学ぶ。',
|
||||
linkUrl: 'https://docs.dify.ai/features/extension/api_based_extension',
|
||||
linkUrl: 'https://docs.dify.ai/en/guides/extension/api-based-extension/README',
|
||||
add: 'API拡張機能を追加',
|
||||
selector: {
|
||||
title: 'API拡張機能',
|
||||
|
@ -72,7 +72,7 @@ const translation = {
|
||||
run: '実行',
|
||||
firecrawlTitle: '🔥Firecrawlを使っでウエブコンテンツを抽出',
|
||||
firecrawlDoc: 'Firecrawlドキュメント',
|
||||
firecrawlDocLink: 'https://docs.dify.ai/guides/knowledge-base/sync-from-website',
|
||||
firecrawlDocLink: 'https://docs.dify.ai/en/guides/knowledge-base/create-knowledge-and-upload-documents/import-content-data/sync-from-website',
|
||||
jinaReaderTitle: 'サイト全体をMarkdownに変換する',
|
||||
jinaReaderDoc: 'Jina Readerの詳細',
|
||||
jinaReaderDocLink: 'https://jina.ai/reader',
|
||||
|
@ -451,7 +451,7 @@ const translation = {
|
||||
apiBasedExtension: {
|
||||
title: 'API 기반 확장은 Dify 애플리케이션 전체에서 간편한 사용을 위한 설정을 단순화하고 집중적인 API 관리를 제공합니다.',
|
||||
link: '사용자 정의 API 기반 확장을 개발하는 방법 배우기',
|
||||
linkUrl: 'https://docs.dify.ai/features/extension/api_based_extension',
|
||||
linkUrl: 'https://docs.dify.ai/en/guides/extension/api-based-extension/README',
|
||||
add: 'API 기반 확장 추가',
|
||||
selector: {
|
||||
title: 'API 기반 확장',
|
||||
|
@ -52,7 +52,7 @@ const translation = {
|
||||
failed: '생성에 실패했습니다',
|
||||
},
|
||||
website: {
|
||||
firecrawlDocLink: 'https://docs.dify.ai/guides/knowledge-base/sync-from-website',
|
||||
firecrawlDocLink: 'https://docs.dify.ai/en/guides/knowledge-base/create-knowledge-and-upload-documents/import-content-data/sync-from-website',
|
||||
limit: '한계',
|
||||
options: '옵션',
|
||||
firecrawlDoc: 'Firecrawl 문서',
|
||||
|
@ -469,7 +469,7 @@ const translation = {
|
||||
title:
|
||||
'Rozszerzenia oparte na interfejsie API zapewniają scentralizowane zarządzanie interfejsami API, upraszczając konfigurację dla łatwego użytkowania w aplikacjach Dify.',
|
||||
link: 'Dowiedz się, jak opracować własne rozszerzenie interfejsu API.',
|
||||
linkUrl: 'https://docs.dify.ai/features/extension/api_based_extension',
|
||||
linkUrl: 'https://docs.dify.ai/en/guides/extension/api-based-extension/README',
|
||||
add: 'Dodaj rozszerzenie interfejsu API',
|
||||
selector: {
|
||||
title: 'Rozszerzenie interfejsu API',
|
||||
|
@ -54,7 +54,7 @@ const translation = {
|
||||
},
|
||||
website: {
|
||||
limit: 'Ograniczać',
|
||||
firecrawlDocLink: 'https://docs.dify.ai/guides/knowledge-base/sync-from-website',
|
||||
firecrawlDocLink: 'https://docs.dify.ai/en/guides/knowledge-base/create-knowledge-and-upload-documents/import-content-data/sync-from-website',
|
||||
firecrawlDoc: 'Dokumentacja Firecrawl',
|
||||
unknownError: 'Nieznany błąd',
|
||||
fireCrawlNotConfiguredDescription: 'Skonfiguruj Firecrawl z kluczem API, aby z niego korzystać.',
|
||||
|
@ -455,7 +455,7 @@ const translation = {
|
||||
apiBasedExtension: {
|
||||
title: 'As extensões de API fornecem gerenciamento centralizado de API, simplificando a configuração para uso fácil em todos os aplicativos da Dify.',
|
||||
link: 'Saiba como desenvolver sua própria Extensão de API.',
|
||||
linkUrl: 'https://docs.dify.ai/features/extension/api_based_extension',
|
||||
linkUrl: 'https://docs.dify.ai/en/guides/extension/api-based-extension/README',
|
||||
add: 'Adicionar Extensão de API',
|
||||
selector: {
|
||||
title: 'Extensão de API',
|
||||
|
@ -58,7 +58,7 @@ const translation = {
|
||||
crawlSubPage: 'Rastrear subpáginas',
|
||||
selectAll: 'Selecionar tudo',
|
||||
resetAll: 'Redefinir tudo',
|
||||
firecrawlDocLink: 'https://docs.dify.ai/guides/knowledge-base/sync-from-website',
|
||||
firecrawlDocLink: 'https://docs.dify.ai/en/guides/knowledge-base/create-knowledge-and-upload-documents/import-content-data/sync-from-website',
|
||||
includeOnlyPaths: 'Incluir apenas caminhos',
|
||||
configure: 'Configurar',
|
||||
limit: 'Limite',
|
||||
|
@ -455,7 +455,7 @@ const translation = {
|
||||
apiBasedExtension: {
|
||||
title: 'Extensiile bazate pe API oferă o gestionare centralizată a API-urilor, simplificând configurația pentru o utilizare ușoară în aplicațiile Dify.',
|
||||
link: 'Aflați cum să dezvoltați propria extensie bazată pe API.',
|
||||
linkUrl: 'https://docs.dify.ai/features/extension/api_based_extension',
|
||||
linkUrl: 'https://docs.dify.ai/en/guides/extension/api-based-extension/README',
|
||||
add: 'Adăugați extensie API',
|
||||
selector: {
|
||||
title: 'Extensie API',
|
||||
|
@ -65,7 +65,7 @@ const translation = {
|
||||
firecrawlTitle: 'Extrageți conținut web cu 🔥Firecrawl',
|
||||
unknownError: 'Eroare necunoscută',
|
||||
scrapTimeInfo: 'Pagini răzuite {{total}} în total în {{timp}}s',
|
||||
firecrawlDocLink: 'https://docs.dify.ai/guides/knowledge-base/sync-from-website',
|
||||
firecrawlDocLink: 'https://docs.dify.ai/en/guides/knowledge-base/create-knowledge-and-upload-documents/import-content-data/sync-from-website',
|
||||
excludePaths: 'Excluderea căilor',
|
||||
resetAll: 'Resetați toate',
|
||||
extractOnlyMainContent: 'Extrageți doar conținutul principal (fără anteturi, navigări, subsoluri etc.)',
|
||||
|
@ -459,7 +459,7 @@ const translation = {
|
||||
apiBasedExtension: {
|
||||
title: 'API-расширения обеспечивают централизованное управление API, упрощая настройку для удобного использования в приложениях Dify.',
|
||||
link: 'Узнайте, как разработать собственное API-расширение.',
|
||||
linkUrl: 'https://docs.dify.ai/features/extension/api_based_extension',
|
||||
linkUrl: 'https://docs.dify.ai/en/guides/extension/api-based-extension/README',
|
||||
add: 'Добавить API Extension',
|
||||
selector: {
|
||||
title: 'API Extension',
|
||||
|
@ -63,7 +63,7 @@ const translation = {
|
||||
run: 'Запустить',
|
||||
firecrawlTitle: 'Извлечь веб-контент с помощью 🔥Firecrawl',
|
||||
firecrawlDoc: 'Документация Firecrawl',
|
||||
firecrawlDocLink: 'https://docs.dify.ai/guides/knowledge-base/sync-from-website',
|
||||
firecrawlDocLink: 'https://docs.dify.ai/en/guides/knowledge-base/create-knowledge-and-upload-documents/import-content-data/sync-from-website',
|
||||
options: 'Опции',
|
||||
crawlSubPage: 'Сканировать подстраницы',
|
||||
limit: 'Лимит',
|
||||
|
@ -452,7 +452,7 @@ const translation = {
|
||||
apiBasedExtension: {
|
||||
title: 'Razširitve API omogočajo centralizirano upravljanje API, kar poenostavi konfiguracijo za enostavno uporabo v aplikacijah Dify.',
|
||||
link: 'Naučite se, kako razviti svojo API razširitev.',
|
||||
linkUrl: 'https://docs.dify.ai/features/extension/api_based_extension',
|
||||
linkUrl: 'https://docs.dify.ai/en/guides/extension/api-based-extension/README',
|
||||
add: 'Dodaj API razširitev',
|
||||
selector: {
|
||||
title: 'API razširitev',
|
||||
@ -681,7 +681,7 @@ const translation = {
|
||||
type: 'Vrsta',
|
||||
link: 'Preberite, kako razvijete lastno razširitev API-ja.',
|
||||
title: 'Razširitve API zagotavljajo centralizirano upravljanje API, kar poenostavlja konfiguracijo za enostavno uporabo v aplikacijah Dify.',
|
||||
linkUrl: 'https://docs.dify.ai/features/extension/api_based_extension',
|
||||
linkUrl: 'https://docs.dify.ai/en/guides/extension/api-based-extension/README',
|
||||
add: 'Dodajanje razširitve API-ja',
|
||||
},
|
||||
about: {
|
||||
|
@ -71,7 +71,7 @@ const translation = {
|
||||
run: 'Zaženi',
|
||||
firecrawlTitle: 'Izvleci spletno vsebino z 🔥Firecrawl',
|
||||
firecrawlDoc: 'Firecrawl dokumentacija',
|
||||
firecrawlDocLink: 'https://docs.dify.ai/guides/knowledge-base/sync-from-website',
|
||||
firecrawlDocLink: 'https://docs.dify.ai/en/guides/knowledge-base/create-knowledge-and-upload-documents/import-content-data/sync-from-website',
|
||||
jinaReaderTitle: 'Pretvori celotno stran v Markdown',
|
||||
jinaReaderDoc: 'Več o Jina Reader',
|
||||
jinaReaderDocLink: 'https://jina.ai/reader',
|
||||
|
@ -454,7 +454,7 @@ const translation = {
|
||||
apiBasedExtension: {
|
||||
title: 'ส่วนขยาย API ให้การจัดการ API แบบรวมศูนย์ ทําให้การกําหนดค่าง่ายขึ้นเพื่อให้ใช้งานได้ง่ายในแอปพลิเคชันของ Dify',
|
||||
link: 'เรียนรู้วิธีพัฒนาส่วนขยาย API ของคุณเอง',
|
||||
linkUrl: 'https://docs.dify.ai/features/extension/api_based_extension',
|
||||
linkUrl: 'https://docs.dify.ai/en/guides/knowledge-base/create-knowledge-and-upload-documents/import-content-data/sync-from-website',
|
||||
add: 'เพิ่มส่วนขยาย API',
|
||||
selector: {
|
||||
title: 'ส่วนขยาย API',
|
||||
|
@ -71,7 +71,7 @@ const translation = {
|
||||
run: 'วิ่ง',
|
||||
firecrawlTitle: 'แยกเนื้อหาเว็บด้วย 🔥Firecrawl',
|
||||
firecrawlDoc: 'เอกสาร Firecrawl',
|
||||
firecrawlDocLink: 'https://docs.dify.ai/guides/knowledge-base/sync-from-website',
|
||||
firecrawlDocLink: 'https://docs.dify.ai/en/guides/knowledge-base/create-knowledge-and-upload-documents/import-content-data/sync-from-website',
|
||||
jinaReaderTitle: 'แปลงทั้งไซต์เป็น Markdown',
|
||||
jinaReaderDoc: 'เรียนรู้เพิ่มเติมเกี่ยวกับ Jina Reader',
|
||||
jinaReaderDocLink: 'https://jina.ai/reader',
|
||||
|
@ -459,7 +459,7 @@ const translation = {
|
||||
apiBasedExtension: {
|
||||
title: 'API uzantıları merkezi API yönetimi sağlar, Dify\'nin uygulamaları arasında kolay kullanım için yapılandırmayı basitleştirir.',
|
||||
link: 'Kendi API Uzantınızı nasıl geliştireceğinizi öğrenin.',
|
||||
linkUrl: 'https://docs.dify.ai/features/extension/api_based_extension',
|
||||
linkUrl: 'https://docs.dify.ai/en/guides/extension/api-based-extension/README',
|
||||
add: 'API Uzantısı Ekle',
|
||||
selector: {
|
||||
title: 'API Uzantısı',
|
||||
|
@ -63,7 +63,7 @@ const translation = {
|
||||
run: 'Çalıştır',
|
||||
firecrawlTitle: '🔥Firecrawl ile web içeriğini çıkarın',
|
||||
firecrawlDoc: 'Firecrawl dokümanları',
|
||||
firecrawlDocLink: 'https://docs.dify.ai/guides/knowledge-base/sync-from-website',
|
||||
firecrawlDocLink: 'https://docs.dify.ai/en/guides/knowledge-base/create-knowledge-and-upload-documents/import-content-data/sync-from-website',
|
||||
options: 'Seçenekler',
|
||||
crawlSubPage: 'Alt sayfaları tarayın',
|
||||
limit: 'Sınır',
|
||||
|
@ -456,7 +456,7 @@ const translation = {
|
||||
apiBasedExtension: {
|
||||
title: 'API-розширення забезпечують централізоване керування API, спрощуючи конфігурацію для зручного використання в різних програмах Dify.',
|
||||
link: 'Дізнайтеся, як розробити власне розширення API.',
|
||||
linkUrl: 'https://docs.dify.ai/features/extension/api_based_extension',
|
||||
linkUrl: 'https://docs.dify.ai/en/guides/extension/api-based-extension/README',
|
||||
add: 'Додати розширення API',
|
||||
selector: {
|
||||
title: 'Розширення API',
|
||||
|
@ -60,7 +60,7 @@ const translation = {
|
||||
unknownError: 'Невідома помилка',
|
||||
maxDepth: 'Максимальна глибина',
|
||||
crawlSubPage: 'Сканування підсторінок',
|
||||
firecrawlDocLink: 'https://docs.dify.ai/guides/knowledge-base/sync-from-website',
|
||||
firecrawlDocLink: 'https://docs.dify.ai/en/guides/knowledge-base/create-knowledge-and-upload-documents/import-content-data/sync-from-website',
|
||||
preview: 'Попередній перегляд',
|
||||
fireCrawlNotConfigured: 'Firecrawl не налаштовано',
|
||||
includeOnlyPaths: 'Включати лише контури',
|
||||
|
@ -455,7 +455,7 @@ const translation = {
|
||||
apiBasedExtension: {
|
||||
title: 'Các tiện ích API cung cấp quản lý API tập trung, giúp cấu hình dễ dàng sử dụng trên các ứng dụng của Dify.',
|
||||
link: 'Tìm hiểu cách phát triển Phần mở rộng API của riêng bạn.',
|
||||
linkUrl: 'https://docs.dify.ai/features/extension/api_based_extension',
|
||||
linkUrl: 'https://docs.dify.ai/en/guides/extension/api-based-extension/README',
|
||||
add: 'Thêm Phần mở rộng API',
|
||||
selector: {
|
||||
title: 'Phần mở rộng API',
|
||||
|
@ -63,7 +63,7 @@ const translation = {
|
||||
unknownError: 'Lỗi không xác định',
|
||||
extractOnlyMainContent: 'Chỉ trích xuất nội dung chính (không có đầu trang, điều hướng, chân trang, v.v.)',
|
||||
exceptionErrorTitle: 'Một ngoại lệ xảy ra trong khi chạy tác vụ Firecrawl:',
|
||||
firecrawlDocLink: 'https://docs.dify.ai/guides/knowledge-base/sync-from-website',
|
||||
firecrawlDocLink: 'https://docs.dify.ai/en/guides/knowledge-base/create-knowledge-and-upload-documents/import-content-data/sync-from-website',
|
||||
selectAll: 'Chọn tất cả',
|
||||
firecrawlTitle: 'Trích xuất nội dung web bằng 🔥Firecrawl',
|
||||
totalPageScraped: 'Tổng số trang được cạo:',
|
||||
|
@ -475,7 +475,7 @@ const translation = {
|
||||
apiBasedExtension: {
|
||||
title: 'API 扩展提供了一个集中式的 API 管理,在此统一添加 API 配置后,方便在 Dify 上的各类应用中直接使用。',
|
||||
link: '了解如何开发您自己的 API 扩展。',
|
||||
linkUrl: 'https://docs.dify.ai/v/zh-hans/guides/extension/api-based-extension',
|
||||
linkUrl: 'https://docs.dify.ai/zh-hans/guides/extension/api-based-extension',
|
||||
add: '新增 API 扩展',
|
||||
selector: {
|
||||
title: 'API 扩展',
|
||||
|
@ -79,7 +79,7 @@ const translation = {
|
||||
run: '运行',
|
||||
firecrawlTitle: '使用 🔥Firecrawl 提取网页内容',
|
||||
firecrawlDoc: 'Firecrawl 文档',
|
||||
firecrawlDocLink: 'https://docs.dify.ai/v/zh-hans/guides/knowledge-base/sync-from-website',
|
||||
firecrawlDocLink: 'https://docs.dify.ai/zh-hans/guides/knowledge-base/create-knowledge-and-upload-documents/import-content-data/sync-from-website',
|
||||
jinaReaderTitle: '将整个站点内容转换为 Markdown 格式',
|
||||
jinaReaderDoc: '了解更多关于 Jina Reader',
|
||||
jinaReaderDocLink: 'https://jina.ai/reader',
|
||||
|
@ -455,7 +455,7 @@ const translation = {
|
||||
apiBasedExtension: {
|
||||
title: 'API 擴充套件提供了一個集中式的 API 管理,在此統一新增 API 配置後,方便在 Dify 上的各類應用中直接使用。',
|
||||
link: '瞭解如何開發您自己的 API 擴充套件。',
|
||||
linkUrl: 'https://docs.dify.ai/v/zh-hans/guides/extension/api-based-extension',
|
||||
linkUrl: 'https://docs.dify.ai/zh-hans/guides/tools/extensions/api-based/api-based-extension',
|
||||
add: '新增 API 擴充套件',
|
||||
selector: {
|
||||
title: 'API 擴充套件',
|
||||
|
@ -61,7 +61,7 @@ const translation = {
|
||||
fireCrawlNotConfiguredDescription: '使用 API 金鑰配置 Firecrawl 以使用它。',
|
||||
limit: '限制',
|
||||
crawlSubPage: '抓取子頁面',
|
||||
firecrawlDocLink: 'https://docs.dify.ai/guides/knowledge-base/sync-from-website',
|
||||
firecrawlDocLink: 'https://docs.dify.ai/en/guides/knowledge-base/create-knowledge-and-upload-documents/import-content-data/sync-from-website',
|
||||
preview: '預覽',
|
||||
configure: '配置',
|
||||
excludePaths: '排除路徑',
|
||||
|
Loading…
x
Reference in New Issue
Block a user