diff --git a/web/app/components/app/configuration/config-var/config-modal/index.tsx b/web/app/components/app/configuration/config-var/config-modal/index.tsx index 3296c77fb2..606280653e 100644 --- a/web/app/components/app/configuration/config-var/config-modal/index.tsx +++ b/web/app/components/app/configuration/config-var/config-modal/index.tsx @@ -47,7 +47,7 @@ const ConfigModal: FC = ({ if (!isValid) { Toast.notify({ type: 'error', - message: t(`appDebug.varKeyError.${errorMessageKey}`, { key: t('appDebug.variableConig.varName') }), + message: t(`appDebug.varKeyError.${errorMessageKey}`, { key: t('appDebug.variableConfig.varName') }), }) return false } @@ -101,7 +101,7 @@ const ConfigModal: FC = ({ // } if (!tempPayload.label) { - Toast.notify({ type: 'error', message: t('appDebug.variableConig.errorMsg.labelNameRequired') }) + Toast.notify({ type: 'error', message: t('appDebug.variableConfig.errorMsg.labelNameRequired') }) return } if (isStringInput || type === InputVarType.number) { @@ -109,7 +109,7 @@ const ConfigModal: FC = ({ } else { if (options?.length === 0) { - Toast.notify({ type: 'error', message: t('appDebug.variableConig.errorMsg.atLeastOneOption') }) + Toast.notify({ type: 'error', message: t('appDebug.variableConfig.errorMsg.atLeastOneOption') }) return } const obj: Record = {} @@ -122,7 +122,7 @@ const ConfigModal: FC = ({ obj[o] = true }) if (hasRepeatedItem) { - Toast.notify({ type: 'error', message: t('appDebug.variableConig.errorMsg.optionRepeat') }) + Toast.notify({ type: 'error', message: t('appDebug.variableConfig.errorMsg.optionRepeat') }) return } onConfirm(tempPayload, moreInfo) @@ -131,14 +131,14 @@ const ConfigModal: FC = ({ return (
- +
handlePayloadChange('type')(InputVarType.textInput)} /> handlePayloadChange('type')(InputVarType.paragraph)} /> @@ -147,39 +147,39 @@ const ConfigModal: FC = ({
- + handlePayloadChange('variable')(e.target.value)} onBlur={handleVarKeyBlur} - placeholder={t('appDebug.variableConig.inputPlaceholder')!} + placeholder={t('appDebug.variableConfig.inputPlaceholder')!} /> - + handlePayloadChange('label')(e.target.value)} - placeholder={t('appDebug.variableConig.inputPlaceholder')!} + placeholder={t('appDebug.variableConfig.inputPlaceholder')!} /> {isStringInput && ( - + )} {type === InputVarType.select && ( - + )} - +
diff --git a/web/app/components/app/configuration/config-var/config-select/index.tsx b/web/app/components/app/configuration/config-var/config-select/index.tsx index e23c7330b1..449cb8b12f 100644 --- a/web/app/components/app/configuration/config-var/config-select/index.tsx +++ b/web/app/components/app/configuration/config-var/config-select/index.tsx @@ -77,7 +77,7 @@ const ConfigSelect: FC = ({ onClick={() => { onChange([...options, '']) }} className='flex items-center h-9 px-3 gap-2 rounded-lg cursor-pointer text-gray-400 bg-gray-100'> -
{t('appDebug.variableConig.addOption')}
+
{t('appDebug.variableConfig.addOption')}
) diff --git a/web/app/components/app/configuration/config-var/select-type-item/index.tsx b/web/app/components/app/configuration/config-var/select-type-item/index.tsx index bb5e700d11..c76aed1a10 100644 --- a/web/app/components/app/configuration/config-var/select-type-item/index.tsx +++ b/web/app/components/app/configuration/config-var/select-type-item/index.tsx @@ -18,7 +18,7 @@ const SelectTypeItem: FC = ({ onClick, }) => { const { t } = useTranslation() - const typeName = t(`appDebug.variableConig.${type}`) + const typeName = t(`appDebug.variableConfig.${type}`) return (
= ({
- - - - + + + +
- +
diff --git a/web/app/components/app/configuration/features/chat-group/opening-statement/index.tsx b/web/app/components/app/configuration/features/chat-group/opening-statement/index.tsx index d007225bda..c6e934c683 100644 --- a/web/app/components/app/configuration/features/chat-group/opening-statement/index.tsx +++ b/web/app/components/app/configuration/features/chat-group/opening-statement/index.tsx @@ -227,7 +227,7 @@ const OpeningStatement: FC = ({ onClick={() => { setTempSuggestedQuestions([...tempSuggestedQuestions, '']) }} className='mt-1 flex items-center h-9 px-3 gap-2 rounded-lg cursor-pointer text-gray-400 bg-gray-100 hover:bg-gray-200'> -
{t('appDebug.variableConig.addOption')}
+
{t('appDebug.variableConfig.addOption')}
)} diff --git a/web/app/components/app/configuration/tools/external-data-tool-modal.tsx b/web/app/components/app/configuration/tools/external-data-tool-modal.tsx index 3187990609..fea1b9c91e 100644 --- a/web/app/components/app/configuration/tools/external-data-tool-modal.tsx +++ b/web/app/components/app/configuration/tools/external-data-tool-modal.tsx @@ -189,7 +189,7 @@ const ExternalDataToolModal: FC = ({ className='!p-8 !pb-6 !max-w-none !w-[640px]' >
- {`${action} ${t('appDebug.variableConig.apiBasedVar')}`} + {`${action} ${t('appDebug.variableConfig.apiBasedVar')}`}
diff --git a/web/app/components/base/app-unavailable.tsx b/web/app/components/base/app-unavailable.tsx index c5ea7be0b9..b8b42108a9 100644 --- a/web/app/components/base/app-unavailable.tsx +++ b/web/app/components/base/app-unavailable.tsx @@ -22,7 +22,7 @@ const AppUnavailable: FC = ({ style={{ borderRight: '1px solid rgba(0,0,0,.3)', }}>{code} -
{unknownReason || (isUnknownReason ? t('share.common.appUnkonwError') : t('share.common.appUnavailable'))}
+
{unknownReason || (isUnknownReason ? t('share.common.appUnknownError') : t('share.common.appUnavailable'))}
) } diff --git a/web/app/components/base/chat/chat-with-history/config-panel/index.tsx b/web/app/components/base/chat/chat-with-history/config-panel/index.tsx index 05f253290f..c864a3925d 100644 --- a/web/app/components/base/chat/chat-with-history/config-panel/index.tsx +++ b/web/app/components/base/chat/chat-with-history/config-panel/index.tsx @@ -152,7 +152,7 @@ const ConfigPanel = () => { : (
- {t('share.chat.powerBy')} + {t('share.chat.poweredBy')} { customConfig?.replace_webapp_logo ? logo diff --git a/web/app/components/base/chat/embedded-chatbot/config-panel/index.tsx b/web/app/components/base/chat/embedded-chatbot/config-panel/index.tsx index df5d12ef14..2cc46cadf8 100644 --- a/web/app/components/base/chat/embedded-chatbot/config-panel/index.tsx +++ b/web/app/components/base/chat/embedded-chatbot/config-panel/index.tsx @@ -160,7 +160,7 @@ const ConfigPanel = () => { : (
- {t('share.chat.powerBy')} + {t('share.chat.poweredBy')} { customConfig?.replace_webapp_logo ? logo diff --git a/web/app/components/base/features/feature-panel/opening-statement/index.tsx b/web/app/components/base/features/feature-panel/opening-statement/index.tsx index 54bf8bd937..4d9350e0ad 100644 --- a/web/app/components/base/features/feature-panel/opening-statement/index.tsx +++ b/web/app/components/base/features/feature-panel/opening-statement/index.tsx @@ -248,7 +248,7 @@ const OpeningStatement: FC = ({ onClick={() => { setTempSuggestedQuestions([...tempSuggestedQuestions, '']) }} className='mt-1 flex items-center h-9 px-3 gap-2 rounded-lg cursor-pointer text-gray-400 bg-gray-100 hover:bg-gray-200'> -
{t('appDebug.variableConig.addOption')}
+
{t('appDebug.variableConfig.addOption')}
)}
diff --git a/web/app/components/datasets/create/step-two/index.tsx b/web/app/components/datasets/create/step-two/index.tsx index b25ca71311..382684a985 100644 --- a/web/app/components/datasets/create/step-two/index.tsx +++ b/web/app/components/datasets/create/step-two/index.tsx @@ -743,7 +743,7 @@ const StepTwo = ({
{hasSetIndexType && indexType === IndexingType.ECONOMICAL && (
- {t('datasetCreation.stepTwo.indexSettedTip')} + {t('datasetCreation.stepTwo.indexSettingTip')} {t('datasetCreation.stepTwo.datasetSettingLink')}
)} @@ -790,7 +790,7 @@ const StepTwo = ({ /> {!!datasetId && (
- {t('datasetCreation.stepTwo.indexSettedTip')} + {t('datasetCreation.stepTwo.indexSettingTip')} {t('datasetCreation.stepTwo.datasetSettingLink')}
)} @@ -890,7 +890,7 @@ const StepTwo = ({
-
{t('datasetCreation.stepTwo.emstimateSegment')}
+
{t('datasetCreation.stepTwo.estimateSegment')}
{ fileIndexingEstimate diff --git a/web/app/components/header/account-setting/members-page/invited-modal/index.tsx b/web/app/components/header/account-setting/members-page/invited-modal/index.tsx index 7af19b06c3..fc64d46b06 100644 --- a/web/app/components/header/account-setting/members-page/invited-modal/index.tsx +++ b/web/app/components/header/account-setting/members-page/invited-modal/index.tsx @@ -11,8 +11,8 @@ import { IS_CE_EDITION } from '@/config' import type { InvitationResult } from '@/models/common' import Tooltip from '@/app/components/base/tooltip' -export type SuccessInvationResult = Extract -export type FailedInvationResult = Extract +export type SuccessInvitationResult = Extract +export type FailedInvitationResult = Extract type IInvitedModalProps = { invitationResults: InvitationResult[] @@ -24,8 +24,8 @@ const InvitedModal = ({ }: IInvitedModalProps) => { const { t } = useTranslation() - const successInvationResults = useMemo(() => invitationResults?.filter(item => item.status === 'success') as SuccessInvationResult[], [invitationResults]) - const failedInvationResults = useMemo(() => invitationResults?.filter(item => item.status !== 'success') as FailedInvationResult[], [invitationResults]) + const successInvitationResults = useMemo(() => invitationResults?.filter(item => item.status === 'success') as SuccessInvitationResult[], [invitationResults]) + const failedInvitationResults = useMemo(() => invitationResults?.filter(item => item.status !== 'success') as FailedInvitationResult[], [invitationResults]) return (
@@ -49,20 +49,20 @@ const InvitedModal = ({
{t('common.members.invitationSentTip')}
{ - !!successInvationResults.length + !!successInvitationResults.length && <>
{t('common.members.invitationLink')}
- {successInvationResults.map(item => + {successInvitationResults.map(item => )} } { - !!failedInvationResults.length + !!failedInvitationResults.length && <> -
{t('common.members.failedinvitationEmails')}
+
{t('common.members.failedInvitationEmails')}
{ - failedInvationResults.map(item => + failedInvitationResults.map(item =>
- {t('workflow.common.needConnecttip')} + {t('workflow.common.needConnectTip')}
) diff --git a/web/app/components/workflow/hooks/use-checklist.ts b/web/app/components/workflow/hooks/use-checklist.ts index 7f45769acd..36201ddfef 100644 --- a/web/app/components/workflow/hooks/use-checklist.ts +++ b/web/app/components/workflow/hooks/use-checklist.ts @@ -138,7 +138,7 @@ export const useChecklistBeforePublish = () => { } if (!validNodes.find(n => n.id === node.id)) { - notify({ type: 'error', message: `[${node.data.title}] ${t('workflow.common.needConnecttip')}` }) + notify({ type: 'error', message: `[${node.data.title}] ${t('workflow.common.needConnectTip')}` }) return false } } diff --git a/web/app/components/workflow/nodes/_base/components/before-run-form/form-item.tsx b/web/app/components/workflow/nodes/_base/components/before-run-form/form-item.tsx index cde437c4c5..603368a4b3 100644 --- a/web/app/components/workflow/nodes/_base/components/before-run-form/form-item.tsx +++ b/web/app/components/workflow/nodes/_base/components/before-run-form/form-item.tsx @@ -104,7 +104,7 @@ const FormItem: FC = ({ type="text" value={value || ''} onChange={e => onChange(e.target.value)} - placeholder={t('appDebug.variableConig.inputPlaceholder')!} + placeholder={t('appDebug.variableConfig.inputPlaceholder')!} autoFocus={autoFocus} /> ) @@ -117,7 +117,7 @@ const FormItem: FC = ({ type="number" value={value || ''} onChange={e => onChange(e.target.value)} - placeholder={t('appDebug.variableConig.inputPlaceholder')!} + placeholder={t('appDebug.variableConfig.inputPlaceholder')!} autoFocus={autoFocus} /> ) @@ -129,7 +129,7 @@ const FormItem: FC = ({ className="w-full px-3 py-1 text-sm leading-[18px] text-gray-900 border-0 rounded-lg grow h-[120px] bg-gray-50 focus:outline-none focus:ring-1 focus:ring-inset focus:ring-gray-200" value={value || ''} onChange={e => onChange(e.target.value)} - placeholder={t('appDebug.variableConig.inputPlaceholder')!} + placeholder={t('appDebug.variableConfig.inputPlaceholder')!} autoFocus={autoFocus} /> ) @@ -207,7 +207,7 @@ const FormItem: FC = ({ key={index} isInNode value={item} - title={{t('appDebug.variableConig.content')} {index + 1} } + title={{t('appDebug.variableConfig.content')} {index + 1} } onChange={handleArrayItemChange(index)} headerRight={ (value as any).length > 1 diff --git a/web/app/components/workflow/nodes/parameter-extractor/components/extract-parameter/update.tsx b/web/app/components/workflow/nodes/parameter-extractor/components/extract-parameter/update.tsx index 2ac331558b..081a683234 100644 --- a/web/app/components/workflow/nodes/parameter-extractor/components/extract-parameter/update.tsx +++ b/web/app/components/workflow/nodes/parameter-extractor/components/extract-parameter/update.tsx @@ -99,7 +99,7 @@ const AddExtractParameter: FC = ({ if (!param.name) errMessage = t(`${errorI18nPrefix}.fieldRequired`, { field: t(`${i18nPrefix}.addExtractParameterContent.name`) }) if (!errMessage && param.type === ParamType.select && (!param.options || param.options.length === 0)) - errMessage = t(`${errorI18nPrefix}.fieldRequired`, { field: t('appDebug.variableConig.options') }) + errMessage = t(`${errorI18nPrefix}.fieldRequired`, { field: t('appDebug.variableConfig.options') }) if (!errMessage && !param.description) errMessage = t(`${errorI18nPrefix}.fieldRequired`, { field: t(`${i18nPrefix}.addExtractParameterContent.description`) }) @@ -160,7 +160,7 @@ const AddExtractParameter: FC = ({ /> {param.type === ParamType.select && ( - + )} diff --git a/web/app/signin/oneMoreStep.tsx b/web/app/signin/oneMoreStep.tsx index 42a797b4d6..a4324517a5 100644 --- a/web/app/signin/oneMoreStep.tsx +++ b/web/app/signin/oneMoreStep.tsx @@ -97,7 +97,7 @@ const OneMoreStep = () => { } needsDelay > - {t('login.donthave')} + {t('login.dontHave')}
diff --git a/web/i18n/de-DE/app-api.ts b/web/i18n/de-DE/app-api.ts index 3704dc8b21..84e0989095 100644 --- a/web/i18n/de-DE/app-api.ts +++ b/web/i18n/de-DE/app-api.ts @@ -9,7 +9,7 @@ const translation = { play: 'Abspielen', pause: 'Pause', playing: 'Wiedergabe', - merMaind: { + merMaid: { rerender: 'Neu rendern', }, never: 'Nie', diff --git a/web/i18n/de-DE/app-debug.ts b/web/i18n/de-DE/app-debug.ts index acb3f53904..c00c799519 100644 --- a/web/i18n/de-DE/app-debug.ts +++ b/web/i18n/de-DE/app-debug.ts @@ -248,7 +248,7 @@ const translation = { historyNoBeEmpty: 'Konversationsverlauf muss im Prompt gesetzt sein', queryNoBeEmpty: 'Anfrage muss im Prompt gesetzt sein', }, - variableConig: { + variableConfig: { modalTitle: 'Feldeinstellungen', description: 'Einstellung für Variable {{varName}}', fieldType: 'Feldtyp', diff --git a/web/i18n/de-DE/common.ts b/web/i18n/de-DE/common.ts index 63b3935fb4..ea679bc60c 100644 --- a/web/i18n/de-DE/common.ts +++ b/web/i18n/de-DE/common.ts @@ -191,14 +191,14 @@ const translation = { invitationSent: 'Einladung gesendet', invitationSentTip: 'Einladung gesendet, und sie können sich bei Dify anmelden, um auf Ihre Teamdaten zuzugreifen.', invitationLink: 'Einladungslink', - failedinvitationEmails: 'Die folgenden Benutzer wurden nicht erfolgreich eingeladen', + failedInvitationEmails: 'Die folgenden Benutzer wurden nicht erfolgreich eingeladen', ok: 'OK', removeFromTeam: 'Vom Team entfernen', removeFromTeamTip: 'Wird den Teamzugang entfernen', setAdmin: 'Als Administrator einstellen', setMember: 'Als normales Mitglied einstellen', setEditor: 'Als Editor einstellen', - disinvite: 'Einladung widerrufen', + disInvite: 'Einladung widerrufen', deleteMember: 'Mitglied löschen', you: '(Du)', setBuilder: 'Als Builder festlegen', diff --git a/web/i18n/de-DE/dataset-creation.ts b/web/i18n/de-DE/dataset-creation.ts index 20ab5cee0f..784a802e51 100644 --- a/web/i18n/de-DE/dataset-creation.ts +++ b/web/i18n/de-DE/dataset-creation.ts @@ -104,8 +104,8 @@ const translation = { QATitle: 'Segmentierung im Frage-und-Antwort-Format', QATip: 'Diese Option zu aktivieren, wird mehr Tokens verbrauchen', QALanguage: 'Segmentierung verwenden', - emstimateCost: 'Schätzung', - emstimateSegment: 'Geschätzte Chunks', + estimateCost: 'Schätzung', + estimateSegment: 'Geschätzte Chunks', segmentCount: 'Chunks', calculating: 'Berechnung...', fileSource: 'Dokumente vorverarbeiten', @@ -128,8 +128,8 @@ const translation = { previewSwitchTipStart: 'Die aktuelle Chunk-Vorschau ist im Textformat, ein Wechsel zur Vorschau im Frage-und-Antwort-Format wird', previewSwitchTipEnd: ' zusätzliche Tokens verbrauchen', characters: 'Zeichen', - indexSettedTip: 'Um die Indexmethode zu ändern, bitte gehen Sie zu den ', - retrivalSettedTip: 'Um die Indexmethode zu ändern, bitte gehen Sie zu den ', + indexSettingTip: 'Um die Indexmethode zu ändern, bitte gehen Sie zu den ', + retrievalSettingTip: 'Um die Indexmethode zu ändern, bitte gehen Sie zu den ', datasetSettingLink: 'Wissenseinstellungen.', websiteSource: 'Preprocess-Website', webpageUnit: 'Seiten', diff --git a/web/i18n/de-DE/login.ts b/web/i18n/de-DE/login.ts index 5bfaa4c6db..4597228463 100644 --- a/web/i18n/de-DE/login.ts +++ b/web/i18n/de-DE/login.ts @@ -31,7 +31,7 @@ const translation = { pp: 'Datenschutzbestimmungen', tosDesc: 'Mit der Anmeldung stimmst du unseren', goToInit: 'Wenn du das Konto noch nicht initialisiert hast, gehe bitte zur Initialisierungsseite', - donthave: 'Hast du nicht?', + dontHave: 'Hast du nicht?', invalidInvitationCode: 'Ungültiger Einladungscode', accountAlreadyInited: 'Konto bereits initialisiert', forgotPassword: 'Passwort vergessen?', diff --git a/web/i18n/de-DE/share-app.ts b/web/i18n/de-DE/share-app.ts index 80dc1cecb4..5ea67dd08f 100644 --- a/web/i18n/de-DE/share-app.ts +++ b/web/i18n/de-DE/share-app.ts @@ -2,7 +2,7 @@ const translation = { common: { welcome: '', appUnavailable: 'App ist nicht verfügbar', - appUnkonwError: 'App ist nicht verfügbar', + appUnknownError: 'App ist nicht verfügbar', }, chat: { newChat: 'Neuer Chat', @@ -10,7 +10,7 @@ const translation = { unpinnedTitle: 'Chats', newChatDefaultName: 'Neues Gespräch', resetChat: 'Gespräch zurücksetzen', - powerBy: 'Bereitgestellt von', + poweredBy: 'Bereitgestellt von', prompt: 'Aufforderung', privatePromptConfigTitle: 'Konversationseinstellungen', publicPromptConfigTitle: 'Anfängliche Aufforderung', diff --git a/web/i18n/de-DE/workflow.ts b/web/i18n/de-DE/workflow.ts index 122bca7980..3010983227 100644 --- a/web/i18n/de-DE/workflow.ts +++ b/web/i18n/de-DE/workflow.ts @@ -36,7 +36,7 @@ const translation = { searchVar: 'Variable suchen', variableNamePlaceholder: 'Variablenname', setVarValuePlaceholder: 'Variable setzen', - needConnecttip: 'Dieser Schritt ist mit nichts verbunden', + needConnectTip: 'Dieser Schritt ist mit nichts verbunden', maxTreeDepth: 'Maximales Limit von {{depth}} Knoten pro Ast', needEndNode: 'Der Endblock muss hinzugefügt werden', needAnswerNode: 'Der Antwortblock muss hinzugefügt werden', diff --git a/web/i18n/en-US/app-api.ts b/web/i18n/en-US/app-api.ts index f36708c1d0..631faeee9a 100644 --- a/web/i18n/en-US/app-api.ts +++ b/web/i18n/en-US/app-api.ts @@ -10,7 +10,7 @@ const translation = { pause: 'Pause', playing: 'Playing', loading: 'Loading', - merMaind: { + merMaid: { rerender: 'Redo Rerender', }, never: 'Never', diff --git a/web/i18n/en-US/app-debug.ts b/web/i18n/en-US/app-debug.ts index 86c5f720c3..b1f3f33cd8 100644 --- a/web/i18n/en-US/app-debug.ts +++ b/web/i18n/en-US/app-debug.ts @@ -301,7 +301,7 @@ const translation = { historyNoBeEmpty: 'Conversation history must be set in the prompt', queryNoBeEmpty: 'Query must be set in the prompt', }, - variableConig: { + variableConfig: { 'addModalTitle': 'Add Input Field', 'editModalTitle': 'Edit Input Field', 'description': 'Setting for variable {{varName}}', diff --git a/web/i18n/en-US/app.ts b/web/i18n/en-US/app.ts index d8cc2ffec0..3377a9b2f3 100644 --- a/web/i18n/en-US/app.ts +++ b/web/i18n/en-US/app.ts @@ -88,7 +88,7 @@ const translation = { switchTipEnd: ' switching back to Basic Orchestrate.', switchLabel: 'The app copy to be created', removeOriginal: 'Delete the original app', - switchStart: 'Start swtich', + switchStart: 'Start switch', typeSelector: { all: 'ALL Types', chatbot: 'Chatbot', diff --git a/web/i18n/en-US/common.ts b/web/i18n/en-US/common.ts index 22680c07c0..23e301485a 100644 --- a/web/i18n/en-US/common.ts +++ b/web/i18n/en-US/common.ts @@ -200,7 +200,7 @@ const translation = { invitationSent: 'Invitation sent', invitationSentTip: 'Invitation sent, and they can sign in to Dify to access your team data.', invitationLink: 'Invitation Link', - failedinvitationEmails: 'Below users were not invited successfully', + failedInvitationEmails: 'Below users were not invited successfully', ok: 'OK', removeFromTeam: 'Remove from team', removeFromTeamTip: 'Will remove team access', @@ -208,7 +208,7 @@ const translation = { setMember: 'Set to ordinary member', setBuilder: 'Set as builder', setEditor: 'Set as editor', - disinvite: 'Cancel the invitation', + disInvite: 'Cancel the invitation', deleteMember: 'Delete Member', you: '(You)', }, @@ -392,7 +392,7 @@ const translation = { selector: { pageSelected: 'Pages Selected', searchPages: 'Search pages...', - noSearchResult: 'No search resluts', + noSearchResult: 'No search results', addPages: 'Add pages', preview: 'PREVIEW', }, diff --git a/web/i18n/en-US/dataset-creation.ts b/web/i18n/en-US/dataset-creation.ts index fa17dce81e..1e4f1aac22 100644 --- a/web/i18n/en-US/dataset-creation.ts +++ b/web/i18n/en-US/dataset-creation.ts @@ -91,7 +91,7 @@ const translation = { maxLength: 'Maximum chunk length', overlap: 'Chunk overlap', overlapTip: 'Setting the chunk overlap can maintain the semantic relevance between them, enhancing the retrieve effect. It is recommended to set 10%-25% of the maximum chunk size.', - overlapCheck: 'chunk overlap should not bigger than maximun chunk length', + overlapCheck: 'chunk overlap should not bigger than maximum chunk length', rules: 'Text preprocessing rules', removeExtraSpaces: 'Replace consecutive spaces, newlines and tabs', removeUrlEmails: 'Delete all URLs and email addresses', @@ -109,8 +109,8 @@ const translation = { QATitle: 'Segmenting in Question & Answer format', QATip: 'Enable this option will consume more tokens', QALanguage: 'Segment using', - emstimateCost: 'Estimation', - emstimateSegment: 'Estimated chunks', + estimateCost: 'Estimation', + estimateSegment: 'Estimated chunks', segmentCount: 'chunks', calculating: 'Calculating...', fileSource: 'Preprocess documents', @@ -135,8 +135,8 @@ const translation = { previewSwitchTipStart: 'The current chunk preview is in text format, switching to a question-and-answer format preview will', previewSwitchTipEnd: ' consume additional tokens', characters: 'characters', - indexSettedTip: 'To change the index method & embedding model, please go to the ', - retrivalSettedTip: 'To change the retrieval setting, please go to the ', + indexSettingTip: 'To change the index method & embedding model, please go to the ', + retrievalSettingTip: 'To change the retrieval setting, please go to the ', datasetSettingLink: 'Knowledge settings.', }, stepThree: { diff --git a/web/i18n/en-US/login.ts b/web/i18n/en-US/login.ts index 2cb6ecb785..03b0d27ed5 100644 --- a/web/i18n/en-US/login.ts +++ b/web/i18n/en-US/login.ts @@ -32,7 +32,7 @@ const translation = { pp: 'Privacy Policy', tosDesc: 'By signing up, you agree to our', goToInit: 'If you have not initialized the account, please go to the initialization page', - donthave: 'Don\'t have?', + dontHave: 'Don\'t have?', invalidInvitationCode: 'Invalid invitation code', accountAlreadyInited: 'Account already initialized', forgotPassword: 'Forgot your password?', diff --git a/web/i18n/en-US/share-app.ts b/web/i18n/en-US/share-app.ts index f66e923561..b5a219c998 100644 --- a/web/i18n/en-US/share-app.ts +++ b/web/i18n/en-US/share-app.ts @@ -2,7 +2,7 @@ const translation = { common: { welcome: '', appUnavailable: 'App is unavailable', - appUnkonwError: 'App is unavailable', + appUnknownError: 'App is unavailable', }, chat: { newChat: 'New chat', @@ -10,7 +10,7 @@ const translation = { unpinnedTitle: 'Chats', newChatDefaultName: 'New conversation', resetChat: 'Reset conversation', - powerBy: 'Powered by', + poweredBy: 'Powered by', prompt: 'Prompt', privatePromptConfigTitle: 'Conversation settings', publicPromptConfigTitle: 'Initial Prompt', diff --git a/web/i18n/en-US/workflow.ts b/web/i18n/en-US/workflow.ts index 033049f0f4..0d924ba16c 100644 --- a/web/i18n/en-US/workflow.ts +++ b/web/i18n/en-US/workflow.ts @@ -36,7 +36,7 @@ const translation = { searchVar: 'Search variable', variableNamePlaceholder: 'Variable name', setVarValuePlaceholder: 'Set variable', - needConnecttip: 'This step is not connected to anything', + needConnectTip: 'This step is not connected to anything', maxTreeDepth: 'Maximum limit of {{depth}} nodes per branch', needEndNode: 'The End block must be added', needAnswerNode: 'The Answer block must be added', diff --git a/web/i18n/es-ES/app-api.ts b/web/i18n/es-ES/app-api.ts index 5d2bc078e3..1474e5fb1d 100644 --- a/web/i18n/es-ES/app-api.ts +++ b/web/i18n/es-ES/app-api.ts @@ -10,7 +10,7 @@ const translation = { pause: 'Pausa', playing: 'Reproduciendo', loading: 'Cargando', - merMaind: { + merMaid: { rerender: 'Rehacer Rerender', }, never: 'Nunca', diff --git a/web/i18n/es-ES/app-debug.ts b/web/i18n/es-ES/app-debug.ts index 68088c26a6..ab5b82e7d1 100644 --- a/web/i18n/es-ES/app-debug.ts +++ b/web/i18n/es-ES/app-debug.ts @@ -259,7 +259,7 @@ const translation = { historyNoBeEmpty: 'El historial de conversaciones debe establecerse en la indicación', queryNoBeEmpty: 'La consulta debe establecerse en la indicación', }, - variableConig: { + variableConfig: { 'addModalTitle': 'Agregar Campo de Entrada', 'editModalTitle': 'Editar Campo de Entrada', 'description': 'Configuración para la variable {{varName}}', diff --git a/web/i18n/es-ES/common.ts b/web/i18n/es-ES/common.ts index 119f465f76..0353fb4684 100644 --- a/web/i18n/es-ES/common.ts +++ b/web/i18n/es-ES/common.ts @@ -199,7 +199,7 @@ const translation = { invitationSent: 'Invitación enviada', invitationSentTip: 'Invitación enviada, y pueden iniciar sesión en Dify para acceder a tus datos del equipo.', invitationLink: 'Enlace de invitación', - failedinvitationEmails: 'Los siguientes usuarios no fueron invitados exitosamente', + failedInvitationEmails: 'Los siguientes usuarios no fueron invitados exitosamente', ok: 'OK', removeFromTeam: 'Eliminar del equipo', removeFromTeamTip: 'Se eliminará el acceso al equipo', @@ -207,7 +207,7 @@ const translation = { setMember: 'Establecer como miembro ordinario', setBuilder: 'Establecer como constructor', setEditor: 'Establecer como editor', - disinvite: 'Cancelar la invitación', + disInvite: 'Cancelar la invitación', deleteMember: 'Eliminar miembro', you: '(Tú)', }, diff --git a/web/i18n/es-ES/dataset-creation.ts b/web/i18n/es-ES/dataset-creation.ts index 66b8e9b302..d2f7df36a7 100644 --- a/web/i18n/es-ES/dataset-creation.ts +++ b/web/i18n/es-ES/dataset-creation.ts @@ -109,8 +109,8 @@ const translation = { QATitle: 'Segmentación en formato de pregunta y respuesta', QATip: 'Habilitar esta opción consumirá más tokens', QALanguage: 'Segmentar usando', - emstimateCost: 'Estimación', - emstimateSegment: 'Fragmentos estimados', + estimateCost: 'Estimación', + estimateSegment: 'Fragmentos estimados', segmentCount: 'fragmentos', calculating: 'Calculando...', fileSource: 'Preprocesar documentos', @@ -135,8 +135,8 @@ const translation = { previewSwitchTipStart: 'La vista previa actual del fragmento está en formato de texto, cambiar a una vista previa en formato de pregunta y respuesta', previewSwitchTipEnd: ' consumirá tokens adicionales', characters: 'caracteres', - indexSettedTip: 'Para cambiar el método de índice, por favor ve a la ', - retrivalSettedTip: 'Para cambiar el método de índice, por favor ve a la ', + indexSettingTip: 'Para cambiar el método de índice, por favor ve a la ', + retrievalSettingTip: 'Para cambiar el método de índice, por favor ve a la ', datasetSettingLink: 'configuración del conocimiento.', }, stepThree: { diff --git a/web/i18n/es-ES/login.ts b/web/i18n/es-ES/login.ts index dc12cfc32f..e56161895e 100644 --- a/web/i18n/es-ES/login.ts +++ b/web/i18n/es-ES/login.ts @@ -32,7 +32,7 @@ const translation = { pp: 'Política de privacidad', tosDesc: 'Al registrarte, aceptas nuestros', goToInit: 'Si no has inicializado la cuenta, por favor ve a la página de inicialización', - donthave: '¿No tienes?', + dontHave: '¿No tienes?', invalidInvitationCode: 'Código de invitación inválido', accountAlreadyInited: 'La cuenta ya está inicializada', forgotPassword: '¿Olvidaste tu contraseña?', diff --git a/web/i18n/es-ES/share-app.ts b/web/i18n/es-ES/share-app.ts index 2e436c4327..b1ac171389 100644 --- a/web/i18n/es-ES/share-app.ts +++ b/web/i18n/es-ES/share-app.ts @@ -2,7 +2,7 @@ const translation = { common: { welcome: '', appUnavailable: 'La aplicación no está disponible', - appUnkonwError: 'La aplicación no está disponible', + appUnknownError: 'La aplicación no está disponible', }, chat: { newChat: 'Nuevo chat', @@ -10,7 +10,7 @@ const translation = { unpinnedTitle: 'Chats', newChatDefaultName: 'Nueva conversación', resetChat: 'Reiniciar conversación', - powerBy: 'Desarrollado por', + poweredBy: 'Desarrollado por', prompt: 'Indicación', privatePromptConfigTitle: 'Configuración de la conversación', publicPromptConfigTitle: 'Indicación inicial', diff --git a/web/i18n/es-ES/workflow.ts b/web/i18n/es-ES/workflow.ts index 7b8413018d..dfc560b0f1 100644 --- a/web/i18n/es-ES/workflow.ts +++ b/web/i18n/es-ES/workflow.ts @@ -36,7 +36,7 @@ const translation = { searchVar: 'Buscar variable', variableNamePlaceholder: 'Nombre de la variable', setVarValuePlaceholder: 'Establecer variable', - needConnecttip: 'Este paso no está conectado a nada', + needConnectTip: 'Este paso no está conectado a nada', maxTreeDepth: 'Límite máximo de {{depth}} nodos por rama', needEndNode: 'Debe agregarse el bloque de Fin', needAnswerNode: 'Debe agregarse el bloque de Respuesta', diff --git a/web/i18n/fa-IR/app-api.ts b/web/i18n/fa-IR/app-api.ts index 0548ef2a2b..7f65481fcf 100644 --- a/web/i18n/fa-IR/app-api.ts +++ b/web/i18n/fa-IR/app-api.ts @@ -10,7 +10,7 @@ const translation = { pause: 'مکث', playing: 'در حال پخش', loading: 'در حال بارگذاری', - merMaind: { + merMaid: { rerender: 'بازسازی مجدد', }, never: 'هرگز', diff --git a/web/i18n/fa-IR/app-debug.ts b/web/i18n/fa-IR/app-debug.ts index 1ce222581d..00891f3b17 100644 --- a/web/i18n/fa-IR/app-debug.ts +++ b/web/i18n/fa-IR/app-debug.ts @@ -294,7 +294,7 @@ const translation = { historyNoBeEmpty: 'تاریخچه مکالمه باید در پرس و جو تنظیم شود', queryNoBeEmpty: 'پرس و جو باید در پرس و جو تنظیم شود', }, - variableConig: { + variableConfig: { 'addModalTitle': 'افزودن فیلد ورودی', 'editModalTitle': 'ویرایش فیلد ورودی', 'description': 'تنظیم برای متغیر {{varName}}', diff --git a/web/i18n/fa-IR/common.ts b/web/i18n/fa-IR/common.ts index 42c6865a6e..a3981fbc33 100644 --- a/web/i18n/fa-IR/common.ts +++ b/web/i18n/fa-IR/common.ts @@ -199,7 +199,7 @@ const translation = { invitationSent: 'دعوت‌نامه ارسال شد', invitationSentTip: 'دعوت‌نامه ارسال شد و آنها می‌توانند وارد Dify شوند تا به داده‌های تیم شما دسترسی پیدا کنند.', invitationLink: 'لینک دعوت', - failedinvitationEmails: 'کاربران زیر با موفقیت دعوت نشدند', + failedInvitationEmails: 'کاربران زیر با موفقیت دعوت نشدند', ok: 'تایید', removeFromTeam: 'حذف از تیم', removeFromTeamTip: 'دسترسی تیم را حذف می‌کند', @@ -207,7 +207,7 @@ const translation = { setMember: 'تنظیم به عنوان عضو عادی', setBuilder: 'تنظیم به عنوان سازنده', setEditor: 'تنظیم به عنوان ویرایشگر', - disinvite: 'لغو دعوت', + disInvite: 'لغو دعوت', deleteMember: 'حذف عضو', you: '(شما)', }, diff --git a/web/i18n/fa-IR/dataset-creation.ts b/web/i18n/fa-IR/dataset-creation.ts index f8483af140..723d470ab1 100644 --- a/web/i18n/fa-IR/dataset-creation.ts +++ b/web/i18n/fa-IR/dataset-creation.ts @@ -109,8 +109,8 @@ const translation = { QATitle: 'بخشبندی در قالب پرسش و پاسخ', QATip: 'فعال کردن این گزینه توکنهای بیشتری مصرف خواهد کرد', QALanguage: 'بخشبندی با استفاده از', - emstimateCost: 'برآورد', - emstimateSegment: 'بخشهای برآورد شده', + estimateCost: 'برآورد', + estimateSegment: 'بخشهای برآورد شده', segmentCount: 'بخشها', calculating: 'در حال محاسبه...', fileSource: 'پیشپردازش اسناد', @@ -135,8 +135,8 @@ const translation = { previewSwitchTipStart: 'پیشنمایش بخش فعلی در قالب متن است، تغییر به پیشنمایش قالب پرسش و پاسخ', previewSwitchTipEnd: ' توکنهای اضافی مصرف خواهد کرد', characters: 'کاراکترها', - indexSettedTip: 'برای تغییر روش شاخص، لطفاً به', - retrivalSettedTip: 'برای تغییر روش شاخص، لطفاً به', + indexSettingTip: 'برای تغییر روش شاخص، لطفاً به', + retrievalSettingTip: 'برای تغییر روش شاخص، لطفاً به', datasetSettingLink: 'تنظیمات دانش بروید.', }, stepThree: { diff --git a/web/i18n/fa-IR/login.ts b/web/i18n/fa-IR/login.ts index 8912561efe..4ac06c866d 100644 --- a/web/i18n/fa-IR/login.ts +++ b/web/i18n/fa-IR/login.ts @@ -32,7 +32,7 @@ const translation = { pp: 'سیاست حفظ حریم خصوصی', tosDesc: 'با ثبت نام، شما با شرایط ما موافقت می‌کنید', goToInit: 'اگر حساب را اولیه نکرده‌اید، لطفاً به صفحه اولیه‌سازی بروید', - donthave: 'ندارید؟', + dontHave: 'ندارید؟', invalidInvitationCode: 'کد دعوت نامعتبر است', accountAlreadyInited: 'حساب قبلاً اولیه شده است', forgotPassword: 'رمز عبور خود را فراموش کرده‌اید؟', diff --git a/web/i18n/fa-IR/share-app.ts b/web/i18n/fa-IR/share-app.ts index b74c893e6e..f3f1360a92 100644 --- a/web/i18n/fa-IR/share-app.ts +++ b/web/i18n/fa-IR/share-app.ts @@ -2,7 +2,7 @@ const translation = { common: { welcome: '', appUnavailable: 'اپ در دسترس نیست', - appUnkonwError: 'اپ در دسترس نیست', + appUnknownError: 'اپ در دسترس نیست', }, chat: { newChat: 'چت جدید', @@ -10,7 +10,7 @@ const translation = { unpinnedTitle: 'چت‌ها', newChatDefaultName: 'مکالمه جدید', resetChat: 'بازنشانی مکالمه', - powerBy: 'قدرت‌گرفته از', + poweredBy: 'قدرت‌گرفته از', prompt: 'پیشنهاد', privatePromptConfigTitle: 'تنظیمات مکالمه', publicPromptConfigTitle: 'پیشنهاد اولیه', diff --git a/web/i18n/fa-IR/workflow.ts b/web/i18n/fa-IR/workflow.ts index 199fd0b7f8..944fa41041 100644 --- a/web/i18n/fa-IR/workflow.ts +++ b/web/i18n/fa-IR/workflow.ts @@ -36,7 +36,7 @@ const translation = { searchVar: 'جستجوی متغیر', variableNamePlaceholder: 'نام متغیر', setVarValuePlaceholder: 'تنظیم متغیر', - needConnecttip: 'این مرحله به هیچ چیزی متصل نیست', + needConnectTip: 'این مرحله به هیچ چیزی متصل نیست', maxTreeDepth: 'حداکثر عمق {{depth}} نود در هر شاخه', needEndNode: 'بلوک پایان باید اضافه شود', needAnswerNode: 'بلوک پاسخ باید اضافه شود', diff --git a/web/i18n/fr-FR/app-api.ts b/web/i18n/fr-FR/app-api.ts index 7ace3ff3ff..af3f752f98 100644 --- a/web/i18n/fr-FR/app-api.ts +++ b/web/i18n/fr-FR/app-api.ts @@ -9,7 +9,7 @@ const translation = { play: 'Jouer', pause: 'Pause', playing: 'Jouant', - merMaind: { + merMaid: { rerender: 'Refaire Rerendu', }, never: 'Jamais', diff --git a/web/i18n/fr-FR/app-debug.ts b/web/i18n/fr-FR/app-debug.ts index b71d251956..2fd863742b 100644 --- a/web/i18n/fr-FR/app-debug.ts +++ b/web/i18n/fr-FR/app-debug.ts @@ -248,7 +248,7 @@ const translation = { historyNoBeEmpty: 'L\'historique de la conversation doit être défini dans le prompt', queryNoBeEmpty: 'La requête doit être définie dans le prompt', }, - variableConig: { + variableConfig: { 'addModalTitle': 'Add Input Field', 'editModalTitle': 'Edit Input Field', 'description': 'Setting for variable {{varName}}', diff --git a/web/i18n/fr-FR/common.ts b/web/i18n/fr-FR/common.ts index 2cd517fd59..d3ba437278 100644 --- a/web/i18n/fr-FR/common.ts +++ b/web/i18n/fr-FR/common.ts @@ -191,14 +191,14 @@ const translation = { invitationSent: 'Invitation envoyée', invitationSentTip: 'Invitation envoyée, et ils peuvent se connecter à Dify pour accéder aux données de votre équipe.', invitationLink: 'Lien d\'invitation', - failedinvitationEmails: 'Les utilisateurs ci-dessous n\'ont pas été invités avec succès', + failedInvitationEmails: 'Les utilisateurs ci-dessous n\'ont pas été invités avec succès', ok: 'D\'accord', removeFromTeam: 'Retirer de l\'équipe', removeFromTeamTip: 'Supprimera l\'accès de l\'équipe', setAdmin: 'Définir comme administrateur', setMember: 'Définir en tant que membre ordinaire', setEditor: 'Définir en tant qu\'éditeur', - disinvite: 'Annuler l\'invitation', + disInvite: 'Annuler l\'invitation', deleteMember: 'Supprimer Membre', you: '(Vous)', builder: 'Constructeur', diff --git a/web/i18n/fr-FR/dataset-creation.ts b/web/i18n/fr-FR/dataset-creation.ts index 11052c8e64..5d76983080 100644 --- a/web/i18n/fr-FR/dataset-creation.ts +++ b/web/i18n/fr-FR/dataset-creation.ts @@ -104,8 +104,8 @@ const translation = { QATitle: 'Segmentation en format Question & Réponse', QATip: 'Activer cette option consommera plus de jetons', QALanguage: 'Segmenter en utilisant', - emstimateCost: 'Estimation', - emstimateSegment: 'Morceaux estimés', + estimateCost: 'Estimation', + estimateSegment: 'Morceaux estimés', segmentCount: 'morceaux', calculating: 'En calcul...', fileSource: 'Prétraiter les documents', @@ -128,8 +128,8 @@ const translation = { previewSwitchTipStart: 'L\'aperçu actuel du morceau est en format texte, passer à un aperçu en format de questions-réponses va', previewSwitchTipEnd: 'consommer des tokens supplémentaires', characters: 'personnages', - indexSettedTip: 'Pour changer la méthode d\'index, veuillez aller à la', - retrivalSettedTip: 'Pour changer la méthode d\'index, veuillez aller à la', + indexSettingTip: 'Pour changer la méthode d\'index, veuillez aller à la', + retrievalSettingTip: 'Pour changer la méthode d\'index, veuillez aller à la', datasetSettingLink: 'Paramètres de connaissance.', webpageUnit: 'Pages', websiteSource: 'Site web de prétraitement', diff --git a/web/i18n/fr-FR/login.ts b/web/i18n/fr-FR/login.ts index 94328bb3ae..cee09cf0e7 100644 --- a/web/i18n/fr-FR/login.ts +++ b/web/i18n/fr-FR/login.ts @@ -31,7 +31,7 @@ const translation = { pp: 'Politique de Confidentialité', tosDesc: 'En vous inscrivant, vous acceptez nos', goToInit: 'Si vous n\'avez pas initialisé le compte, veuillez vous rendre sur la page d\'initialisation', - donthave: 'Vous n\'avez pas ?', + dontHave: 'Vous n\'avez pas ?', invalidInvitationCode: 'Code d\'invitation invalide', accountAlreadyInited: 'Compte déjà initialisé', forgotPassword: 'Mot de passe oublié?', diff --git a/web/i18n/fr-FR/share-app.ts b/web/i18n/fr-FR/share-app.ts index 8f9e04e941..44d03b1e35 100644 --- a/web/i18n/fr-FR/share-app.ts +++ b/web/i18n/fr-FR/share-app.ts @@ -2,7 +2,7 @@ const translation = { common: { welcome: '', appUnavailable: 'L\'application n\'est pas disponible', - appUnkonwError: 'L\'application n\'est pas disponible', + appUnknownError: 'L\'application n\'est pas disponible', }, chat: { newChat: 'Nouveau chat', @@ -10,7 +10,7 @@ const translation = { unpinnedTitle: 'Discussions', newChatDefaultName: 'Nouvelle conversation', resetChat: 'Réinitialiser la conversation', - powerBy: 'Propulsé par', + poweredBy: 'Propulsé par', prompt: 'Prompt', privatePromptConfigTitle: 'Paramètres de conversation', publicPromptConfigTitle: 'Prompt Initial', diff --git a/web/i18n/fr-FR/workflow.ts b/web/i18n/fr-FR/workflow.ts index 46f80591d6..b726bee21e 100644 --- a/web/i18n/fr-FR/workflow.ts +++ b/web/i18n/fr-FR/workflow.ts @@ -36,7 +36,7 @@ const translation = { searchVar: 'Rechercher une variable', variableNamePlaceholder: 'Nom de la variable', setVarValuePlaceholder: 'Définir la valeur de la variable', - needConnecttip: 'Cette étape n\'est connectée à rien', + needConnectTip: 'Cette étape n\'est connectée à rien', maxTreeDepth: 'Limite maximale de {{depth}} nœuds par branche', needEndNode: 'Le bloc de fin doit être ajouté', needAnswerNode: 'Le bloc de réponse doit être ajouté', diff --git a/web/i18n/hi-IN/app-api.ts b/web/i18n/hi-IN/app-api.ts index 3c9ceadd29..b983fd0ccb 100644 --- a/web/i18n/hi-IN/app-api.ts +++ b/web/i18n/hi-IN/app-api.ts @@ -10,7 +10,7 @@ const translation = { pause: 'विराम', playing: 'चल रहा है', loading: 'लोड हो रहा है', - merMaind: { + merMaid: { rerender: 'पुनः रीरेंडर करें', }, never: 'कभी नहीं', diff --git a/web/i18n/hi-IN/app-debug.ts b/web/i18n/hi-IN/app-debug.ts index 29944c8d84..1b0633ef32 100644 --- a/web/i18n/hi-IN/app-debug.ts +++ b/web/i18n/hi-IN/app-debug.ts @@ -290,7 +290,7 @@ const translation = { historyNoBeEmpty: 'संवाद इतिहास प्रॉम्प्ट में सेट होना चाहिए', queryNoBeEmpty: 'प्रश्न प्रॉम्प्ट में सेट होना चाहिए', }, - variableConig: { + variableConfig: { 'addModalTitle': 'इनपुट फ़ील्ड जोड़ें', 'editModalTitle': 'इनपुट फ़ील्ड संपादित करें', 'description': 'वेरिएबल {{varName}} के लिए सेटिंग', diff --git a/web/i18n/hi-IN/common.ts b/web/i18n/hi-IN/common.ts index 8e9a2e619b..81c5482ed1 100644 --- a/web/i18n/hi-IN/common.ts +++ b/web/i18n/hi-IN/common.ts @@ -205,7 +205,7 @@ const translation = { invitationSentTip: 'आमंत्रण भेजा गया, और वे साइन इन करके आपकी टीम डेटा तक पहुंच सकते हैं।', invitationLink: 'आमंत्रण लिंक', - failedinvitationEmails: + failedInvitationEmails: 'नीचे दिए गए उपयोगकर्ताओं को सफलतापूर्वक आमंत्रित नहीं किया गया', ok: 'ठीक है', removeFromTeam: 'टीम से हटाएं', @@ -214,7 +214,7 @@ const translation = { setMember: 'सामान्य सदस्य के रूप में सेट करें', setBuilder: 'निर्माता के रूप में सेट करें', setEditor: 'संपादक के रूप में सेट करें', - disinvite: 'आमंत्रण रद्द करें', + disInvite: 'आमंत्रण रद्द करें', deleteMember: 'सदस्य को हटाएं', you: '(आप)', datasetOperator: 'ज्ञान व्यवस्थापक', diff --git a/web/i18n/hi-IN/dataset-creation.ts b/web/i18n/hi-IN/dataset-creation.ts index 59913c71ea..30bd3f2052 100644 --- a/web/i18n/hi-IN/dataset-creation.ts +++ b/web/i18n/hi-IN/dataset-creation.ts @@ -121,8 +121,8 @@ const translation = { QATitle: 'प्रश्न और उत्तर प्रारूप में खंड करना', QATip: 'इस विकल्प को सक्षम करने से अधिक टोकन खर्च होंगे', QALanguage: 'का उपयोग करके खंड करना', - emstimateCost: 'अनुमानित लागत', - emstimateSegment: 'अनुमानित खंड', + estimateCost: 'अनुमानित लागत', + estimateSegment: 'अनुमानित खंड', segmentCount: 'खंड', calculating: 'गणना कर रहा है...', fileSource: 'दस्तावेज़ों को पूर्व-प्रसंस्करण करें', @@ -152,8 +152,8 @@ const translation = { 'वर्तमान खंड पूर्वावलोकन पाठ प्रारूप में है, प्रश्न-उत्तर प्रारूप में स्विच करने से', previewSwitchTipEnd: ' अतिरिक्त टोकन खर्च होंगे', characters: 'वर्ण', - indexSettedTip: 'इंडेक्स विधि बदलने के लिए, कृपया जाएं ', - retrivalSettedTip: 'इंडेक्स विधि बदलने के लिए, कृपया जाएं ', + indexSettingTip: 'इंडेक्स विधि बदलने के लिए, कृपया जाएं ', + retrievalSettingTip: 'इंडेक्स विधि बदलने के लिए, कृपया जाएं ', datasetSettingLink: 'ज्ञान सेटिंग्स।', }, stepThree: { diff --git a/web/i18n/hi-IN/login.ts b/web/i18n/hi-IN/login.ts index 3ecba9a186..b3ca0b1a52 100644 --- a/web/i18n/hi-IN/login.ts +++ b/web/i18n/hi-IN/login.ts @@ -36,7 +36,7 @@ const translation = { tosDesc: 'साइन अप करके, आप हमारी सहमति देते हैं', goToInit: 'यदि आपने खाता प्रारंभ नहीं किया है, तो कृपया प्रारंभिक पृष्ठ पर जाएं', - donthave: 'नहीं है?', + dontHave: 'नहीं है?', invalidInvitationCode: 'अवैध निमंत्रण कोड', accountAlreadyInited: 'खाता पहले से प्रारंभ किया गया है', forgotPassword: 'क्या आपने अपना पासवर्ड भूल गए हैं?', diff --git a/web/i18n/hi-IN/share-app.ts b/web/i18n/hi-IN/share-app.ts index 82c17f009d..a5c7816fe2 100644 --- a/web/i18n/hi-IN/share-app.ts +++ b/web/i18n/hi-IN/share-app.ts @@ -3,7 +3,7 @@ const translation = { welcome: 'आपका स्वागत है', appUnavailable: 'ऐप उपलब्ध नहीं है', appUnknownError: 'अज्ञात त्रुटि, कृपया पुनः प्रयास करें', - appUnkonwError: 'ऐप अनुपलब्ध है', + appUnknownError: 'ऐप अनुपलब्ध है', }, chat: { newChat: 'नया चैट', @@ -11,7 +11,7 @@ const translation = { unpinnedTitle: 'चैट', newChatDefaultName: 'नया संवाद', resetChat: 'संवाद रीसेट करें', - powerBy: 'संचालित है', + poweredBy: 'संचालित है', prompt: 'प्रॉम्प्ट', privatePromptConfigTitle: 'संवाद सेटिंग्स', publicPromptConfigTitle: 'प्रारंभिक प्रॉम्प्ट', diff --git a/web/i18n/hi-IN/workflow.ts b/web/i18n/hi-IN/workflow.ts index 95b77956b4..dce09c92fc 100644 --- a/web/i18n/hi-IN/workflow.ts +++ b/web/i18n/hi-IN/workflow.ts @@ -36,7 +36,7 @@ const translation = { searchVar: 'वेरिएबल खोजें', variableNamePlaceholder: 'वेरिएबल नाम', setVarValuePlaceholder: 'वेरिएबल सेट करें', - needConnecttip: 'यह चरण किसी से जुड़ा नहीं है', + needConnectTip: 'यह चरण किसी से जुड़ा नहीं है', maxTreeDepth: 'प्रति शाखा अधिकतम {{depth}} नोड्स की सीमा', needEndNode: 'अंत ब्लॉक जोड़ा जाना चाहिए', needAnswerNode: 'उत्तर ब्लॉक जोड़ा जाना चाहिए', diff --git a/web/i18n/it-IT/app-api.ts b/web/i18n/it-IT/app-api.ts index a31a771a57..48aceb5c48 100644 --- a/web/i18n/it-IT/app-api.ts +++ b/web/i18n/it-IT/app-api.ts @@ -10,7 +10,7 @@ const translation = { pause: 'Pausa', playing: 'In Riproduzione', loading: 'Caricamento', - merMaind: { + merMaid: { rerender: 'Rifare il rendering', }, never: 'Mai', diff --git a/web/i18n/it-IT/app-debug.ts b/web/i18n/it-IT/app-debug.ts index a4cf7bba2d..e4555b973a 100644 --- a/web/i18n/it-IT/app-debug.ts +++ b/web/i18n/it-IT/app-debug.ts @@ -293,7 +293,7 @@ const translation = { 'La cronologia delle conversazioni deve essere impostata nel prompt', queryNoBeEmpty: 'La query deve essere impostata nel prompt', }, - variableConig: { + variableConfig: { 'addModalTitle': 'Aggiungi Campo Input', 'editModalTitle': 'Modifica Campo Input', 'description': 'Impostazione per la variabile {{varName}}', diff --git a/web/i18n/it-IT/common.ts b/web/i18n/it-IT/common.ts index 01560b9374..9bb84135d2 100644 --- a/web/i18n/it-IT/common.ts +++ b/web/i18n/it-IT/common.ts @@ -209,7 +209,7 @@ const translation = { invitationSentTip: 'Invito inviato, e possono accedere a Dify per accedere ai dati del tuo team.', invitationLink: 'Link di Invito', - failedinvitationEmails: + failedInvitationEmails: 'Gli utenti seguenti non sono stati invitati con successo', ok: 'OK', removeFromTeam: 'Rimuovi dal team', @@ -218,7 +218,7 @@ const translation = { setMember: 'Imposta come membro ordinario', setBuilder: 'Imposta come builder', setEditor: 'Imposta come editor', - disinvite: 'Annulla l\'invito', + disInvite: 'Annulla l\'invito', deleteMember: 'Elimina Membro', you: '(Tu)', }, diff --git a/web/i18n/it-IT/dataset-creation.ts b/web/i18n/it-IT/dataset-creation.ts index 553c8218c4..917bc2d6f5 100644 --- a/web/i18n/it-IT/dataset-creation.ts +++ b/web/i18n/it-IT/dataset-creation.ts @@ -124,8 +124,8 @@ const translation = { QATitle: 'Segmentazione in formato Domanda & Risposta', QATip: 'Abilitare questa opzione consumerà più token', QALanguage: 'Segmenta usando', - emstimateCost: 'Stima', - emstimateSegment: 'Blocchi stimati', + estimateCost: 'Stima', + estimateSegment: 'Blocchi stimati', segmentCount: 'blocchi', calculating: 'Calcolo in corso...', fileSource: 'Preprocessa documenti', @@ -155,8 +155,8 @@ const translation = { 'L\'anteprima del blocco corrente è in formato testo, il passaggio a un\'anteprima in formato domanda e risposta', previewSwitchTipEnd: ' consumerà token aggiuntivi', characters: 'caratteri', - indexSettedTip: 'Per cambiare il metodo di indicizzazione, vai alle ', - retrivalSettedTip: 'Per cambiare il metodo di indicizzazione, vai alle ', + indexSettingTip: 'Per cambiare il metodo di indicizzazione, vai alle ', + retrievalSettingTip: 'Per cambiare il metodo di indicizzazione, vai alle ', datasetSettingLink: 'impostazioni della Conoscenza.', }, stepThree: { diff --git a/web/i18n/it-IT/login.ts b/web/i18n/it-IT/login.ts index 018f9dca46..b46960aa45 100644 --- a/web/i18n/it-IT/login.ts +++ b/web/i18n/it-IT/login.ts @@ -38,7 +38,7 @@ const translation = { tosDesc: 'Iscrivendoti, accetti i nostri', goToInit: 'Se non hai inizializzato l\'account, vai alla pagina di inizializzazione', - donthave: 'Non hai?', + dontHave: 'Non hai?', invalidInvitationCode: 'Codice di invito non valido', accountAlreadyInited: 'Account già inizializzato', forgotPassword: 'Hai dimenticato la password?', diff --git a/web/i18n/it-IT/share-app.ts b/web/i18n/it-IT/share-app.ts index b1f99d0ba1..772a6e902d 100644 --- a/web/i18n/it-IT/share-app.ts +++ b/web/i18n/it-IT/share-app.ts @@ -2,7 +2,7 @@ const translation = { common: { welcome: '', appUnavailable: 'L\'app non è disponibile', - appUnkonwError: 'L\'app non è disponibile', + appUnknownError: 'L\'app non è disponibile', }, chat: { newChat: 'Nuova chat', @@ -10,7 +10,7 @@ const translation = { unpinnedTitle: 'Chat', newChatDefaultName: 'Nuova conversazione', resetChat: 'Reimposta conversazione', - powerBy: 'Powered by', + poweredBy: 'Powered by', prompt: 'Prompt', privatePromptConfigTitle: 'Impostazioni conversazione', publicPromptConfigTitle: 'Prompt iniziale', diff --git a/web/i18n/it-IT/workflow.ts b/web/i18n/it-IT/workflow.ts index dbaf2d1280..3ceab9a48f 100644 --- a/web/i18n/it-IT/workflow.ts +++ b/web/i18n/it-IT/workflow.ts @@ -36,7 +36,7 @@ const translation = { searchVar: 'Cerca variabile', variableNamePlaceholder: 'Nome variabile', setVarValuePlaceholder: 'Imposta variabile', - needConnecttip: 'Questo passaggio non è collegato a nulla', + needConnectTip: 'Questo passaggio non è collegato a nulla', maxTreeDepth: 'Limite massimo di {{depth}} nodi per ramo', needEndNode: 'Deve essere aggiunto il blocco di Fine', needAnswerNode: 'Deve essere aggiunto il blocco di Risposta', diff --git a/web/i18n/ja-JP/app-api.ts b/web/i18n/ja-JP/app-api.ts index 63beaeb45c..721504f9f3 100644 --- a/web/i18n/ja-JP/app-api.ts +++ b/web/i18n/ja-JP/app-api.ts @@ -10,7 +10,7 @@ const translation = { pause: '一時停止', playing: '再生中', loading: '読み込み中', - merMaind: { + merMaid: { rerender: '再レンダリング', }, never: 'なし', diff --git a/web/i18n/ja-JP/app-debug.ts b/web/i18n/ja-JP/app-debug.ts index 6049be2406..e9ee765435 100644 --- a/web/i18n/ja-JP/app-debug.ts +++ b/web/i18n/ja-JP/app-debug.ts @@ -295,7 +295,7 @@ const translation = { historyNoBeEmpty: 'プロンプトには会話履歴を設定する必要があります', queryNoBeEmpty: 'プロンプトにクエリを設定する必要があります', }, - variableConig: { + variableConfig: { 'addModalTitle': '入力フィールドを追加', 'editModalTitle': '入力フィールドを編集', 'description': '{{varName}} の変数設定', diff --git a/web/i18n/ja-JP/common.ts b/web/i18n/ja-JP/common.ts index 4d756d4d7b..b1e2effef4 100644 --- a/web/i18n/ja-JP/common.ts +++ b/web/i18n/ja-JP/common.ts @@ -199,7 +199,7 @@ const translation = { invitationSent: '招待が送信されました', invitationSentTip: '招待が送信され、彼らはDifyにサインインしてあなた様のチームデータにアクセスできます。', invitationLink: '招待リンク', - failedinvitationEmails: '以下のユーザーは正常に招待されませんでした', + failedInvitationEmails: '以下のユーザーは正常に招待されませんでした', ok: 'OK', removeFromTeam: 'チームから削除', removeFromTeamTip: 'チームへのアクセスが削除されます', @@ -207,7 +207,7 @@ const translation = { setMember: '通常のメンバーに設定', setBuilder: 'ビルダーに設定', setEditor: 'エディターに設定', - disinvite: '招待をキャンセル', + disInvite: '招待をキャンセル', deleteMember: 'メンバーを削除', you: '(あなた様)', }, diff --git a/web/i18n/ja-JP/dataset-creation.ts b/web/i18n/ja-JP/dataset-creation.ts index 5c90dcf925..8ba4756399 100644 --- a/web/i18n/ja-JP/dataset-creation.ts +++ b/web/i18n/ja-JP/dataset-creation.ts @@ -109,8 +109,8 @@ const translation = { QATitle: '質問と回答形式でセグメント化', QATip: 'このオプションを有効にすると、追加のトークンが消費されます', QALanguage: '使用言語', - emstimateCost: '見積もり', - emstimateSegment: '推定チャンク数', + estimateCost: '見積もり', + estimateSegment: '推定チャンク数', segmentCount: 'チャンク', calculating: '計算中...', fileSource: 'ドキュメントの前処理', @@ -135,8 +135,8 @@ const translation = { previewSwitchTipStart: '現在のチャンクプレビューはテキスト形式です。質問と回答形式のプレビューに切り替えると、', previewSwitchTipEnd: ' 追加のトークンが消費されます', characters: '文字', - indexSettedTip: 'インデックス方法を変更するには、', - retrivalSettedTip: '検索方法を変更するには、', + indexSettingTip: 'インデックス方法を変更するには、', + retrievalSettingTip: '検索方法を変更するには、', datasetSettingLink: 'ナレッジ設定', }, stepThree: { diff --git a/web/i18n/ja-JP/login.ts b/web/i18n/ja-JP/login.ts index dd01e3b96a..72a26df3db 100644 --- a/web/i18n/ja-JP/login.ts +++ b/web/i18n/ja-JP/login.ts @@ -32,7 +32,7 @@ const translation = { pp: 'プライバシーポリシー', tosDesc: 'サインアップすることで、以下に同意するものとします', goToInit: 'アカウントを初期化していない場合は、初期化ページに移動してください', - donthave: 'お持ちでない場合', + dontHave: 'お持ちでない場合', invalidInvitationCode: '無効な招待コード', accountAlreadyInited: 'アカウントは既に初期化されています', forgotPassword: 'パスワードを忘れましたか?', diff --git a/web/i18n/ja-JP/share-app.ts b/web/i18n/ja-JP/share-app.ts index 503972dc48..6b7615c408 100644 --- a/web/i18n/ja-JP/share-app.ts +++ b/web/i18n/ja-JP/share-app.ts @@ -2,7 +2,7 @@ const translation = { common: { welcome: '', appUnavailable: 'アプリが利用できません', - appUnkonwError: 'アプリが利用できません', + appUnknownError: 'アプリが利用できません', }, chat: { newChat: '新しいチャット', @@ -10,7 +10,7 @@ const translation = { unpinnedTitle: 'チャット', newChatDefaultName: '新しい会話', resetChat: '会話をリセット', - powerBy: 'Powered by', + poweredBy: 'Powered by', prompt: 'プロンプト', privatePromptConfigTitle: '会話の設定', publicPromptConfigTitle: '初期プロンプト', diff --git a/web/i18n/ja-JP/workflow.ts b/web/i18n/ja-JP/workflow.ts index 57d008c28d..3c9262c35a 100644 --- a/web/i18n/ja-JP/workflow.ts +++ b/web/i18n/ja-JP/workflow.ts @@ -36,7 +36,7 @@ const translation = { searchVar: '変数を検索', variableNamePlaceholder: '変数名', setVarValuePlaceholder: '変数を設定', - needConnecttip: 'このステップは何にも接続されていません', + needConnectTip: 'このステップは何にも接続されていません', maxTreeDepth: 'ブランチごとの最大制限は{{depth}}ノードです', needEndNode: '終了ブロックを追加する必要があります', needAnswerNode: '回答ブロックを追加する必要があります', diff --git a/web/i18n/ko-KR/app-api.ts b/web/i18n/ko-KR/app-api.ts index fc978cddf4..4708fac7dd 100644 --- a/web/i18n/ko-KR/app-api.ts +++ b/web/i18n/ko-KR/app-api.ts @@ -10,7 +10,7 @@ const translation = { pause: '일시 정지', playing: '실행 중', loading: '로드 중', - merMaind: { + merMaid: { rerender: '다시 렌더링', }, never: '없음', diff --git a/web/i18n/ko-KR/app-debug.ts b/web/i18n/ko-KR/app-debug.ts index 0a2488b64c..bafe0bf8d8 100644 --- a/web/i18n/ko-KR/app-debug.ts +++ b/web/i18n/ko-KR/app-debug.ts @@ -259,7 +259,7 @@ const translation = { historyNoBeEmpty: '프롬프트에 대화 기록을 설정해야 합니다', queryNoBeEmpty: '프롬프트에 쿼리를 설정해야 합니다', }, - variableConig: { + variableConfig: { 'addModalTitle': '입력 필드 추가', 'editModalTitle': '입력 필드 편집', 'description': '{{varName}} 변수 설정', diff --git a/web/i18n/ko-KR/common.ts b/web/i18n/ko-KR/common.ts index 383a26210f..263ff39506 100644 --- a/web/i18n/ko-KR/common.ts +++ b/web/i18n/ko-KR/common.ts @@ -187,14 +187,14 @@ const translation = { invitationSent: '초대가 전송되었습니다', invitationSentTip: '초대가 전송되었으며, 그들은 Dify에 로그인하여 당신의 팀 데이터에 액세스할 수 있습니다.', invitationLink: '초대 링크', - failedinvitationEmails: '다음 사용자들은 성공적으로 초대되지 않았습니다', + failedInvitationEmails: '다음 사용자들은 성공적으로 초대되지 않았습니다', ok: '확인', removeFromTeam: '팀에서 제거', removeFromTeamTip: '팀 액세스가 제거됩니다', setAdmin: '관리자 설정', setMember: '일반 멤버 설정', setEditor: '편집자 설정', - disinvite: '초대 취소', + disInvite: '초대 취소', deleteMember: '멤버 삭제', you: '(나)', datasetOperator: '지식 관리자', diff --git a/web/i18n/ko-KR/dataset-creation.ts b/web/i18n/ko-KR/dataset-creation.ts index 5ca5ae41da..4838ac4df5 100644 --- a/web/i18n/ko-KR/dataset-creation.ts +++ b/web/i18n/ko-KR/dataset-creation.ts @@ -104,8 +104,8 @@ const translation = { QATitle: '질문과 답변 형식으로 세그먼트화', QATip: '이 옵션을 활성화하면 추가 토큰이 소비됩니다', QALanguage: '사용 언어', - emstimateCost: '예상 비용', - emstimateSegment: '예상 청크 수', + estimateCost: '예상 비용', + estimateSegment: '예상 청크 수', segmentCount: '청크', calculating: '계산 중...', fileSource: '문서 전처리', @@ -128,8 +128,8 @@ const translation = { previewSwitchTipStart: '현재 청크 미리보기는 텍스트 형식입니다. 질문과 답변 형식 미리보기로 전환하면', previewSwitchTipEnd: ' 추가 토큰이 소비됩니다', characters: '문자', - indexSettedTip: '인덱스 방식을 변경하려면,', - retrivalSettedTip: '인덱스 방식을 변경하려면,', + indexSettingTip: '인덱스 방식을 변경하려면,', + retrievalSettingTip: '인덱스 방식을 변경하려면,', datasetSettingLink: '지식 설정', webpageUnit: '페이지', websiteSource: '웹 사이트 전처리', diff --git a/web/i18n/ko-KR/login.ts b/web/i18n/ko-KR/login.ts index a4d6dbcd44..ceddeb7b9b 100644 --- a/web/i18n/ko-KR/login.ts +++ b/web/i18n/ko-KR/login.ts @@ -31,7 +31,7 @@ const translation = { pp: '개인정보 처리 방침', tosDesc: '가입함으로써 다음 내용에 동의하게 됩니다.', goToInit: '계정이 초기화되지 않았다면 초기화 페이지로 이동하세요.', - donthave: '계정이 없으신가요?', + dontHave: '계정이 없으신가요?', invalidInvitationCode: '유효하지 않은 초대 코드입니다.', accountAlreadyInited: '계정은 이미 초기화되었습니다.', forgotPassword: '비밀번호를 잊으셨나요?', diff --git a/web/i18n/ko-KR/share-app.ts b/web/i18n/ko-KR/share-app.ts index 9c0738b3d7..be2e34a5fc 100644 --- a/web/i18n/ko-KR/share-app.ts +++ b/web/i18n/ko-KR/share-app.ts @@ -2,7 +2,7 @@ const translation = { common: { welcome: '', appUnavailable: '앱을 사용할 수 없습니다', - appUnkonwError: '앱을 사용할 수 없습니다', + appUnknownError: '앱을 사용할 수 없습니다', }, chat: { newChat: '새 채팅', @@ -10,7 +10,7 @@ const translation = { unpinnedTitle: '채팅', newChatDefaultName: '새 대화', resetChat: '대화 재설정', - powerBy: 'Powered by', + poweredBy: 'Powered by', prompt: '프롬프트', privatePromptConfigTitle: '채팅 설정', publicPromptConfigTitle: '초기 프롬프트', diff --git a/web/i18n/ko-KR/workflow.ts b/web/i18n/ko-KR/workflow.ts index a511cc1816..f7d4d381f0 100644 --- a/web/i18n/ko-KR/workflow.ts +++ b/web/i18n/ko-KR/workflow.ts @@ -36,7 +36,7 @@ const translation = { searchVar: '변수 검색', variableNamePlaceholder: '변수 이름', setVarValuePlaceholder: '변수 값 설정', - needConnecttip: '이 단계는 아무것도 연결되어 있지 않습니다', + needConnectTip: '이 단계는 아무것도 연결되어 있지 않습니다', maxTreeDepth: '분기당 최대 {{depth}} 노드 제한', needEndNode: '종료 블록을 추가해야 합니다', needAnswerNode: '답변 블록을 추가해야 합니다', diff --git a/web/i18n/pl-PL/app-api.ts b/web/i18n/pl-PL/app-api.ts index 46f9cbb454..05cad56fe2 100644 --- a/web/i18n/pl-PL/app-api.ts +++ b/web/i18n/pl-PL/app-api.ts @@ -10,7 +10,7 @@ const translation = { pause: 'Pauza', playing: 'Gra', loading: 'Ładowanie', - merMaind: { + merMaid: { rerender: 'Przerób Renderowanie', }, never: 'Nigdy', diff --git a/web/i18n/pl-PL/app-debug.ts b/web/i18n/pl-PL/app-debug.ts index afb412f264..7cf6c77cb4 100644 --- a/web/i18n/pl-PL/app-debug.ts +++ b/web/i18n/pl-PL/app-debug.ts @@ -289,7 +289,7 @@ const translation = { historyNoBeEmpty: 'Historia konwersacji musi być ustawiona w monicie', queryNoBeEmpty: 'Zapytanie musi być ustawione w monicie', }, - variableConig: { + variableConfig: { 'addModalTitle': 'Dodaj Pole Wejściowe', 'editModalTitle': 'Edytuj Pole Wejściowe', 'description': 'Ustawienia dla zmiennej {{varName}}', diff --git a/web/i18n/pl-PL/common.ts b/web/i18n/pl-PL/common.ts index 56f2a31ea3..0cd993e0c5 100644 --- a/web/i18n/pl-PL/common.ts +++ b/web/i18n/pl-PL/common.ts @@ -199,14 +199,14 @@ const translation = { invitationSentTip: 'Zaproszenie zostało wysłane, a oni mogą zalogować się do Dify, aby uzyskać dostęp do danych Twojego zespołu.', invitationLink: 'Link zaproszenia', - failedinvitationEmails: 'Poniższe osoby nie zostały pomyślnie zaproszone', + failedInvitationEmails: 'Poniższe osoby nie zostały pomyślnie zaproszone', ok: 'OK', removeFromTeam: 'Usuń z zespołu', removeFromTeamTip: 'Usunie dostęp do zespołu', setAdmin: 'Ustaw jako administratora', setMember: 'Ustaw jako zwykłego członka', setEditor: 'Ustaw jako edytora', - disinvite: 'Anuluj zaproszenie', + disInvite: 'Anuluj zaproszenie', deleteMember: 'Usuń członka', you: '(Ty)', datasetOperatorTip: 'Może zarządzać tylko bazą wiedzy', diff --git a/web/i18n/pl-PL/dataset-creation.ts b/web/i18n/pl-PL/dataset-creation.ts index e751db7f99..982d7c308b 100644 --- a/web/i18n/pl-PL/dataset-creation.ts +++ b/web/i18n/pl-PL/dataset-creation.ts @@ -112,8 +112,8 @@ const translation = { QATitle: 'Segmentacja w formacie pytania i odpowiedzi', QATip: 'Włączenie tej opcji spowoduje zużycie większej liczby tokenów', QALanguage: 'Segmentacja przy użyciu', - emstimateCost: 'Oszacowanie', - emstimateSegment: 'Oszacowane bloki', + estimateCost: 'Oszacowanie', + estimateSegment: 'Oszacowane bloki', segmentCount: 'bloki', calculating: 'Obliczanie...', fileSource: 'Przetwarzaj dokumenty', @@ -141,8 +141,8 @@ const translation = { 'Aktulany podgląd bloku jest w formacie tekstu, przełączenie na podgląd w formacie pytania i odpowiedzi spowoduje', previewSwitchTipEnd: ' dodatkowe zużycie tokenów', characters: 'znaki', - indexSettedTip: 'Aby zmienić metodę indeksowania, przejdź do ', - retrivalSettedTip: 'Aby zmienić metodę indeksowania, przejdź do ', + indexSettingTip: 'Aby zmienić metodę indeksowania, przejdź do ', + retrievalSettingTip: 'Aby zmienić metodę indeksowania, przejdź do ', datasetSettingLink: 'ustawień Wiedzy.', webpageUnit: 'Stron', websiteSource: 'Witryna internetowa przetwarzania wstępnego', diff --git a/web/i18n/pl-PL/login.ts b/web/i18n/pl-PL/login.ts index 40ab94f736..be9e74f37d 100644 --- a/web/i18n/pl-PL/login.ts +++ b/web/i18n/pl-PL/login.ts @@ -36,7 +36,7 @@ const translation = { pp: 'Polityka prywatności', tosDesc: 'Założeniem konta zgadzasz się z naszymi', goToInit: 'Jeśli nie zainicjowałeś konta, przejdź do strony inicjalizacji', - donthave: 'Nie masz?', + dontHave: 'Nie masz?', invalidInvitationCode: 'Niewłaściwy kod zaproszenia', accountAlreadyInited: 'Konto już zainicjowane', forgotPassword: 'Zapomniałeś hasła?', diff --git a/web/i18n/pl-PL/share-app.ts b/web/i18n/pl-PL/share-app.ts index eb5573c1a1..90b6ca1929 100644 --- a/web/i18n/pl-PL/share-app.ts +++ b/web/i18n/pl-PL/share-app.ts @@ -2,7 +2,7 @@ const translation = { common: { welcome: '', appUnavailable: 'Aplikacja jest niedostępna', - appUnkonwError: 'Aplikacja jest niedostępna', + appUnknownError: 'Aplikacja jest niedostępna', }, chat: { newChat: 'Nowy czat', @@ -10,7 +10,7 @@ const translation = { unpinnedTitle: 'Czaty', newChatDefaultName: 'Nowa rozmowa', resetChat: 'Resetuj rozmowę', - powerBy: 'Działany przez', + poweredBy: 'Działany przez', prompt: 'Podpowiedź', privatePromptConfigTitle: 'Ustawienia rozmowy', publicPromptConfigTitle: 'Początkowa podpowiedź', diff --git a/web/i18n/pl-PL/workflow.ts b/web/i18n/pl-PL/workflow.ts index daa66a7370..3e43de6253 100644 --- a/web/i18n/pl-PL/workflow.ts +++ b/web/i18n/pl-PL/workflow.ts @@ -36,7 +36,7 @@ const translation = { searchVar: 'Szukaj zmiennej', variableNamePlaceholder: 'Nazwa zmiennej', setVarValuePlaceholder: 'Ustaw zmienną', - needConnecttip: 'Ten krok nie jest połączony z niczym', + needConnectTip: 'Ten krok nie jest połączony z niczym', maxTreeDepth: 'Maksymalny limit {{depth}} węzłów na gałąź', needEndNode: 'Należy dodać blok końcowy', needAnswerNode: 'Należy dodać blok odpowiedzi', diff --git a/web/i18n/pt-BR/app-api.ts b/web/i18n/pt-BR/app-api.ts index 4c6107b069..7bbd25695d 100644 --- a/web/i18n/pt-BR/app-api.ts +++ b/web/i18n/pt-BR/app-api.ts @@ -6,7 +6,7 @@ const translation = { ok: 'Em Serviço', copy: 'Copiar', copied: 'Copiado', - merMaind: { + merMaid: { rerender: 'Refazer Rerender', }, never: 'Nunca', diff --git a/web/i18n/pt-BR/app-debug.ts b/web/i18n/pt-BR/app-debug.ts index 9605bd5d95..df4312f887 100644 --- a/web/i18n/pt-BR/app-debug.ts +++ b/web/i18n/pt-BR/app-debug.ts @@ -265,7 +265,7 @@ const translation = { historyNoBeEmpty: 'O histórico da conversa deve ser definido na solicitação', queryNoBeEmpty: 'A consulta deve ser definida na solicitação', }, - variableConig: { + variableConfig: { 'addModalTitle': 'Adicionar Campo de Entrada', 'editModalTitle': 'Editar Campo de Entrada', 'description': 'Configuração para a variável {{varName}}', diff --git a/web/i18n/pt-BR/common.ts b/web/i18n/pt-BR/common.ts index 6cd62565f1..fd7b889074 100644 --- a/web/i18n/pt-BR/common.ts +++ b/web/i18n/pt-BR/common.ts @@ -191,14 +191,14 @@ const translation = { invitationSent: 'Convite enviado', invitationSentTip: 'Convite enviado e eles podem fazer login no Dify para acessar os dados da sua equipe.', invitationLink: 'Link do Convite', - failedinvitationEmails: 'Os seguintes usuários não foram convidados com sucesso', + failedInvitationEmails: 'Os seguintes usuários não foram convidados com sucesso', ok: 'OK', removeFromTeam: 'Remover da equipe', removeFromTeamTip: 'Removerá o acesso da equipe', setAdmin: 'Definir como administrador', setMember: 'Definir como membro comum', setEditor: 'Definir como editor', - disinvite: 'Cancelar o convite', + disInvite: 'Cancelar o convite', deleteMember: 'Excluir Membro', you: '(Você)', datasetOperatorTip: 'Só pode gerenciar a base de dados de conhecimento', diff --git a/web/i18n/pt-BR/dataset-creation.ts b/web/i18n/pt-BR/dataset-creation.ts index e7e7fe40fa..0b08de4883 100644 --- a/web/i18n/pt-BR/dataset-creation.ts +++ b/web/i18n/pt-BR/dataset-creation.ts @@ -104,8 +104,8 @@ const translation = { QATitle: 'Fragmentação no formato de Perguntas e Respostas', QATip: 'Habilitar esta opção consumirá mais tokens', QALanguage: 'Fragmentar usando', - emstimateCost: 'Estimativa', - emstimateSegment: 'Fragmentos estimados', + estimateCost: 'Estimativa', + estimateSegment: 'Fragmentos estimados', segmentCount: 'fragmentos', calculating: 'Calculando...', fileSource: 'Pré-processar documentos', @@ -128,8 +128,8 @@ const translation = { previewSwitchTipStart: 'A visualização atual do fragmento está no formato de texto, alternar para uma visualização no formato de Perguntas e Respostas irá', previewSwitchTipEnd: ' consumir tokens adicionais', characters: 'caracteres', - indexSettedTip: 'Para alterar o método de índice, por favor vá para as ', - retrivalSettedTip: 'Para alterar o método de índice, por favor vá para as ', + indexSettingTip: 'Para alterar o método de índice, por favor vá para as ', + retrievalSettingTip: 'Para alterar o método de índice, por favor vá para as ', datasetSettingLink: 'configurações do Conhecimento.', websiteSource: 'Site de pré-processamento', webpageUnit: 'Páginas', diff --git a/web/i18n/pt-BR/login.ts b/web/i18n/pt-BR/login.ts index 2c68916334..a1f278dba8 100644 --- a/web/i18n/pt-BR/login.ts +++ b/web/i18n/pt-BR/login.ts @@ -31,7 +31,7 @@ const translation = { pp: 'Política de Privacidade', tosDesc: 'Ao se inscrever, você concorda com nossos', goToInit: 'Se você não inicializou a conta, vá para a página de inicialização', - donthave: 'Não tem?', + dontHave: 'Não tem?', invalidInvitationCode: 'Código de convite inválido', accountAlreadyInited: 'Conta já iniciada', forgotPassword: 'Esqueceu sua senha?', diff --git a/web/i18n/pt-BR/share-app.ts b/web/i18n/pt-BR/share-app.ts index 27baf35275..1e1861e01b 100644 --- a/web/i18n/pt-BR/share-app.ts +++ b/web/i18n/pt-BR/share-app.ts @@ -2,7 +2,7 @@ const translation = { common: { welcome: '', appUnavailable: 'O aplicativo não está disponível', - appUnkonwError: 'O aplicativo encontrou um erro desconhecido', + appUnknownError: 'O aplicativo encontrou um erro desconhecido', }, chat: { newChat: 'Nova conversa', @@ -10,7 +10,7 @@ const translation = { unpinnedTitle: 'Conversas', newChatDefaultName: 'Nova conversa', resetChat: 'Redefinir conversa', - powerBy: 'Desenvolvido por', + poweredBy: 'Desenvolvido por', prompt: 'Prompt', privatePromptConfigTitle: 'Configurações da conversa', publicPromptConfigTitle: 'Prompt inicial', diff --git a/web/i18n/pt-BR/workflow.ts b/web/i18n/pt-BR/workflow.ts index 2c44ad1434..f43d8a7c15 100644 --- a/web/i18n/pt-BR/workflow.ts +++ b/web/i18n/pt-BR/workflow.ts @@ -36,7 +36,7 @@ const translation = { searchVar: 'Buscar variável', variableNamePlaceholder: 'Nome da variável', setVarValuePlaceholder: 'Definir valor da variável', - needConnecttip: 'Este passo não está conectado a nada', + needConnectTip: 'Este passo não está conectado a nada', maxTreeDepth: 'Limite máximo de {{depth}} nós por ramo', needEndNode: 'O bloco de fim deve ser adicionado', needAnswerNode: 'O bloco de resposta deve ser adicionado', diff --git a/web/i18n/ro-RO/app-api.ts b/web/i18n/ro-RO/app-api.ts index 0b86ec6976..e6a52ade42 100644 --- a/web/i18n/ro-RO/app-api.ts +++ b/web/i18n/ro-RO/app-api.ts @@ -10,7 +10,7 @@ const translation = { pause: 'Pauză', playing: 'În redare', loading: 'Se încarcă', - merMaind: { + merMaid: { rerender: 'Reprocesare', }, never: 'Niciodată', diff --git a/web/i18n/ro-RO/app-debug.ts b/web/i18n/ro-RO/app-debug.ts index 7363f2954f..bafeee8bb0 100644 --- a/web/i18n/ro-RO/app-debug.ts +++ b/web/i18n/ro-RO/app-debug.ts @@ -265,7 +265,7 @@ const translation = { historyNoBeEmpty: 'Istoricul conversației trebuie setat în prompt', queryNoBeEmpty: 'Interogația trebuie setată în prompt', }, - variableConig: { + variableConfig: { 'addModalTitle': 'Adăugați câmp de intrare', 'editModalTitle': 'Editați câmpul de intrare', 'description': 'Setare pentru variabila {{varName}}', diff --git a/web/i18n/ro-RO/common.ts b/web/i18n/ro-RO/common.ts index 6720ec331b..c2bf3027b8 100644 --- a/web/i18n/ro-RO/common.ts +++ b/web/i18n/ro-RO/common.ts @@ -191,14 +191,14 @@ const translation = { invitationSent: 'Invitație trimisă', invitationSentTip: 'Invitația a fost trimisă și pot să se autentifice în Dify pentru a accesa datele echipei dvs.', invitationLink: 'Link de invitație', - failedinvitationEmails: 'Următorii utilizatori nu au fost invitați cu succes', + failedInvitationEmails: 'Următorii utilizatori nu au fost invitați cu succes', ok: 'OK', removeFromTeam: 'Elimină din echipă', removeFromTeamTip: 'Va elimina accesul la echipă', setAdmin: 'Setează ca administrator', setMember: 'Setează ca membru obișnuit', setEditor: 'Setează ca editor', - disinvite: 'Anulează invitația', + disInvite: 'Anulează invitația', deleteMember: 'Șterge membru', you: '(Dvs.)', datasetOperatorTip: 'Numai poate gestiona baza de cunoștințe', diff --git a/web/i18n/ro-RO/dataset-creation.ts b/web/i18n/ro-RO/dataset-creation.ts index ae1adbc8b2..117ad412f4 100644 --- a/web/i18n/ro-RO/dataset-creation.ts +++ b/web/i18n/ro-RO/dataset-creation.ts @@ -104,8 +104,8 @@ const translation = { QATitle: 'Segmentarea în format Întrebare și Răspuns', QATip: 'Activarea acestei opțiuni va consuma mai multe jetoane', QALanguage: 'Segmentează folosind', - emstimateCost: 'Estimare', - emstimateSegment: 'Segmente estimate', + estimateCost: 'Estimare', + estimateSegment: 'Segmente estimate', segmentCount: 'segmente', calculating: 'Se calculează...', fileSource: 'Prelucrează documente', @@ -128,8 +128,8 @@ const translation = { previewSwitchTipStart: 'Previzualizarea curentă a segmentului este în format text, comutarea la o previzualizare în format întrebare și răspuns va', previewSwitchTipEnd: ' consuma jetoane suplimentare', characters: 'caractere', - indexSettedTip: 'Pentru a modifica metoda de indexare, vă rugăm să mergeți la ', - retrivalSettedTip: 'Pentru a modifica metoda de indexare, vă rugăm să mergeți la ', + indexSettingTip: 'Pentru a modifica metoda de indexare, vă rugăm să mergeți la ', + retrievalSettingTip: 'Pentru a modifica metoda de indexare, vă rugăm să mergeți la ', datasetSettingLink: 'setările Cunoștinței.', webpageUnit: 'Pagini', websiteSource: 'Site-ul web de preprocesare', diff --git a/web/i18n/ro-RO/login.ts b/web/i18n/ro-RO/login.ts index b692b7c386..6a8d899b33 100644 --- a/web/i18n/ro-RO/login.ts +++ b/web/i18n/ro-RO/login.ts @@ -32,7 +32,7 @@ const translation = { pp: 'Politica de confidențialitate', tosDesc: 'Prin înregistrarea, ești de acord cu', goToInit: 'Dacă nu ai inițializat încă contul, te rugăm să mergi la pagina de inițializare', - donthave: 'Nu ai?', + dontHave: 'Nu ai?', invalidInvitationCode: 'Cod de invitație invalid', accountAlreadyInited: 'Contul este deja inițializat', forgotPassword: 'Ați uitat parola?', diff --git a/web/i18n/ro-RO/share-app.ts b/web/i18n/ro-RO/share-app.ts index 06cf083a04..c9ec36ab03 100644 --- a/web/i18n/ro-RO/share-app.ts +++ b/web/i18n/ro-RO/share-app.ts @@ -2,7 +2,7 @@ const translation = { common: { welcome: '', appUnavailable: 'Aplicația nu este disponibilă', - appUnkonwError: 'Aplicația nu este disponibilă', + appUnknownError: 'Aplicația nu este disponibilă', }, chat: { newChat: 'Chat nou', @@ -10,7 +10,7 @@ const translation = { unpinnedTitle: 'Conversații', newChatDefaultName: 'Conversație nouă', resetChat: 'Resetează conversația', - powerBy: 'Furnizat de', + poweredBy: 'Furnizat de', prompt: 'Sugestie', privatePromptConfigTitle: 'Setări conversație', publicPromptConfigTitle: 'Sugestie inițială', diff --git a/web/i18n/ro-RO/workflow.ts b/web/i18n/ro-RO/workflow.ts index 0bfe38c0a5..05fbe1d75f 100644 --- a/web/i18n/ro-RO/workflow.ts +++ b/web/i18n/ro-RO/workflow.ts @@ -36,7 +36,7 @@ const translation = { searchVar: 'Caută variabilă', variableNamePlaceholder: 'Nume variabilă', setVarValuePlaceholder: 'Setează valoarea variabilei', - needConnecttip: 'Acest pas nu este conectat la nimic', + needConnectTip: 'Acest pas nu este conectat la nimic', maxTreeDepth: 'Limită maximă de {{depth}} noduri pe ramură', needEndNode: 'Trebuie adăugat blocul de sfârșit', needAnswerNode: 'Trebuie adăugat blocul de răspuns', diff --git a/web/i18n/ru-RU/app-api.ts b/web/i18n/ru-RU/app-api.ts index 064621b622..0c56d7a501 100644 --- a/web/i18n/ru-RU/app-api.ts +++ b/web/i18n/ru-RU/app-api.ts @@ -10,7 +10,7 @@ const translation = { pause: 'Приостановить', playing: 'Запущено', loading: 'Загрузка', - merMaind: { + merMaid: { rerender: 'Перезапустить рендеринг', }, never: 'Никогда', diff --git a/web/i18n/ru-RU/app-debug.ts b/web/i18n/ru-RU/app-debug.ts index e976c11aba..038165301e 100644 --- a/web/i18n/ru-RU/app-debug.ts +++ b/web/i18n/ru-RU/app-debug.ts @@ -301,7 +301,7 @@ const translation = { historyNoBeEmpty: 'История разговоров должна быть установлена в промпте', queryNoBeEmpty: 'Запрос должен быть установлен в промпте', }, - variableConig: { + variableConfig: { 'addModalTitle': 'Добавить поле ввода', 'editModalTitle': 'Редактировать поле ввода', 'description': 'Настройка для переменной {{varName}}', diff --git a/web/i18n/ru-RU/common.ts b/web/i18n/ru-RU/common.ts index 25a3d1031a..ef143e3e1a 100644 --- a/web/i18n/ru-RU/common.ts +++ b/web/i18n/ru-RU/common.ts @@ -199,7 +199,7 @@ const translation = { invitationSent: 'Приглашение отправлено', invitationSentTip: 'Приглашение отправлено, и они могут войти в Dify, чтобы получить доступ к данным вашей команды.', invitationLink: 'Ссылка для приглашения', - failedinvitationEmails: 'Следующие пользователи не были успешно приглашены', + failedInvitationEmails: 'Следующие пользователи не были успешно приглашены', ok: 'ОК', removeFromTeam: 'Удалить из команды', removeFromTeamTip: 'Удалить доступ к команде', @@ -207,7 +207,7 @@ const translation = { setMember: 'Назначить обычным участником', setBuilder: 'Назначить разработчиком', setEditor: 'Назначить редактором', - disinvite: 'Отменить приглашение', + disInvite: 'Отменить приглашение', deleteMember: 'Удалить участника', you: '(Вы)', }, diff --git a/web/i18n/ru-RU/dataset-creation.ts b/web/i18n/ru-RU/dataset-creation.ts index 63c0d89cf9..2b1ef37f24 100644 --- a/web/i18n/ru-RU/dataset-creation.ts +++ b/web/i18n/ru-RU/dataset-creation.ts @@ -109,8 +109,8 @@ const translation = { QATitle: 'Сегментация в формате вопрос-ответ', QATip: 'Включение этой опции приведет к потреблению большего количества токенов', QALanguage: 'Сегментировать с помощью', - emstimateCost: 'Оценка', - emstimateSegment: 'Оценочное количество фрагментов', + estimateCost: 'Оценка', + estimateSegment: 'Оценочное количество фрагментов', segmentCount: 'фрагментов', calculating: 'Вычисление...', fileSource: 'Предварительная обработка документов', @@ -135,8 +135,8 @@ const translation = { previewSwitchTipStart: 'Текущий предварительный просмотр фрагмента находится в текстовом формате, переключение на предварительный просмотр в формате вопрос-ответ', previewSwitchTipEnd: ' потребляет дополнительные токены', characters: 'символов', - indexSettedTip: 'Чтобы изменить метод индексации, пожалуйста, перейдите в ', - retrivalSettedTip: 'Чтобы изменить метод индексации, пожалуйста, перейдите в ', + indexSettingTip: 'Чтобы изменить метод индексации, пожалуйста, перейдите в ', + retrievalSettingTip: 'Чтобы изменить метод индексации, пожалуйста, перейдите в ', datasetSettingLink: 'настройки базы знаний.', }, stepThree: { diff --git a/web/i18n/ru-RU/login.ts b/web/i18n/ru-RU/login.ts index 3d8e3f320e..81918745dd 100644 --- a/web/i18n/ru-RU/login.ts +++ b/web/i18n/ru-RU/login.ts @@ -32,7 +32,7 @@ const translation = { pp: 'Политика конфиденциальности', tosDesc: 'Регистрируясь, вы соглашаетесь с нашими', goToInit: 'Если вы не инициализировали учетную запись, перейдите на страницу инициализации', - donthave: 'Нет?', + dontHave: 'Нет?', invalidInvitationCode: 'Неверный пригласительный код', accountAlreadyInited: 'Учетная запись уже инициализирована', forgotPassword: 'Забыли пароль?', diff --git a/web/i18n/ru-RU/share-app.ts b/web/i18n/ru-RU/share-app.ts index 6c06a49cef..f0166b26f1 100644 --- a/web/i18n/ru-RU/share-app.ts +++ b/web/i18n/ru-RU/share-app.ts @@ -2,7 +2,7 @@ const translation = { common: { welcome: '', appUnavailable: 'Приложение недоступно', - appUnkonwError: 'Приложение недоступно', + appUnknownError: 'Приложение недоступно', }, chat: { newChat: 'Новый чат', @@ -10,7 +10,7 @@ const translation = { unpinnedTitle: 'Чаты', newChatDefaultName: 'Новый разговор', resetChat: 'Сбросить разговор', - powerBy: 'Работает на', + poweredBy: 'Работает на', prompt: 'Подсказка', privatePromptConfigTitle: 'Настройки разговора', publicPromptConfigTitle: 'Начальная подсказка', diff --git a/web/i18n/ru-RU/workflow.ts b/web/i18n/ru-RU/workflow.ts index 54a88fd876..5dc91dae0e 100644 --- a/web/i18n/ru-RU/workflow.ts +++ b/web/i18n/ru-RU/workflow.ts @@ -36,7 +36,7 @@ const translation = { searchVar: 'Поиск переменной', variableNamePlaceholder: 'Имя переменной', setVarValuePlaceholder: 'Установить значение переменной', - needConnecttip: 'Этот шаг ни к чему не подключен', + needConnectTip: 'Этот шаг ни к чему не подключен', maxTreeDepth: 'Максимальный предел {{depth}} узлов на ветку', needEndNode: 'Необходимо добавить блок "Конец"', needAnswerNode: 'Необходимо добавить блок "Ответ"', diff --git a/web/i18n/tr-TR/app-api.ts b/web/i18n/tr-TR/app-api.ts index be6466f001..9a64de546b 100644 --- a/web/i18n/tr-TR/app-api.ts +++ b/web/i18n/tr-TR/app-api.ts @@ -10,7 +10,7 @@ const translation = { pause: 'Duraklat', playing: 'Oynatılıyor', loading: 'Yükleniyor', - merMaind: { + merMaid: { rerender: 'Yeniden İşleme', }, never: 'Asla', diff --git a/web/i18n/tr-TR/app-debug.ts b/web/i18n/tr-TR/app-debug.ts index fbf51535fe..f08d221d45 100644 --- a/web/i18n/tr-TR/app-debug.ts +++ b/web/i18n/tr-TR/app-debug.ts @@ -301,7 +301,7 @@ const translation = { historyNoBeEmpty: 'Konuşma geçmişi prompt\'ta ayarlanmalıdır', queryNoBeEmpty: 'Sorgu prompt\'ta ayarlanmalıdır', }, - variableConig: { + variableConfig: { addModalTitle: 'Giriş Alanı Ekle', editModalTitle: 'Giriş Alanı Düzenle', description: 'Değişken ayarı {{varName}}', diff --git a/web/i18n/tr-TR/common.ts b/web/i18n/tr-TR/common.ts index b0492b557a..bc9b3f1f51 100644 --- a/web/i18n/tr-TR/common.ts +++ b/web/i18n/tr-TR/common.ts @@ -199,7 +199,7 @@ const translation = { invitationSent: 'Davet gönderildi', invitationSentTip: 'Davet gönderildi, Dify\'ye giriş yaparak takım verilerinize erişebilirler.', invitationLink: 'Davet Linki', - failedinvitationEmails: 'Aşağıdaki kullanıcılar başarıyla davet edilmedi', + failedInvitationEmails: 'Aşağıdaki kullanıcılar başarıyla davet edilmedi', ok: 'Tamam', removeFromTeam: 'Takımdan Kaldır', removeFromTeamTip: 'Takım erişimi kaldırılacak', @@ -207,7 +207,7 @@ const translation = { setMember: 'Normal üye olarak ayarla', setBuilder: 'Oluşturucu olarak ayarla', setEditor: 'Editör olarak ayarla', - disinvite: 'Davetiyeyi iptal et', + disInvite: 'Davetiyeyi iptal et', deleteMember: 'Üyeyi Sil', you: '(Siz)', }, diff --git a/web/i18n/tr-TR/dataset-creation.ts b/web/i18n/tr-TR/dataset-creation.ts index b35cbc26b2..076dcd3355 100644 --- a/web/i18n/tr-TR/dataset-creation.ts +++ b/web/i18n/tr-TR/dataset-creation.ts @@ -109,8 +109,8 @@ const translation = { QATitle: 'Soru ve Yanıt formatında parçalama', QATip: 'Bu seçeneği etkinleştirmek daha fazla token tüketecektir', QALanguage: 'Kullanarak parçalara ayır', - emstimateCost: 'Tahmin', - emstimateSegment: 'Tahmini parçalar', + estimateCost: 'Tahmin', + estimateSegment: 'Tahmini parçalar', segmentCount: 'parçalar', calculating: 'Hesaplanıyor...', fileSource: 'Belgeleri ön işleme', @@ -135,8 +135,8 @@ const translation = { previewSwitchTipStart: 'Geçerli parça önizlemesi metin formatındadır, soru ve yanıt formatına geçiş ek tüketir', previewSwitchTipEnd: 'token', characters: 'karakterler', - indexSettedTip: 'Dizin yöntemini değiştirmek için, lütfen', - retrivalSettedTip: 'Dizin yöntemini değiştirmek için, lütfen', + indexSettingTip: 'Dizin yöntemini değiştirmek için, lütfen', + retrievalSettingTip: 'Dizin yöntemini değiştirmek için, lütfen', datasetSettingLink: 'Bilgi ayarlarına gidin.', }, stepThree: { diff --git a/web/i18n/tr-TR/login.ts b/web/i18n/tr-TR/login.ts index 617b58be36..8f0a9eff89 100644 --- a/web/i18n/tr-TR/login.ts +++ b/web/i18n/tr-TR/login.ts @@ -32,7 +32,7 @@ const translation = { pp: 'Gizlilik Politikası', tosDesc: 'Kaydolarak, Hizmet Şartlarımızı kabul etmiş olursunuz', goToInit: 'Hesabı başlatmadıysanız, lütfen başlatma sayfasına gidin', - donthave: 'Sahip değil misiniz?', + dontHave: 'Sahip değil misiniz?', invalidInvitationCode: 'Geçersiz davet kodu', accountAlreadyInited: 'Hesap zaten başlatılmış', forgotPassword: 'Şifrenizi mi unuttunuz?', diff --git a/web/i18n/tr-TR/share-app.ts b/web/i18n/tr-TR/share-app.ts index 4fe58a8b2b..26c6f56fb4 100644 --- a/web/i18n/tr-TR/share-app.ts +++ b/web/i18n/tr-TR/share-app.ts @@ -2,7 +2,7 @@ const translation = { common: { welcome: '', appUnavailable: 'Uygulama kullanılamıyor', - appUnkonwError: 'Uygulama kullanılamıyor', + appUnknownError: 'Uygulama kullanılamıyor', }, chat: { newChat: 'Yeni sohbet', @@ -10,7 +10,7 @@ const translation = { unpinnedTitle: 'Sohbetler', newChatDefaultName: 'Yeni konuşma', resetChat: 'Konuşmayı sıfırla', - powerBy: 'Tarafından desteklenmektedir', + poweredBy: 'Tarafından desteklenmektedir', prompt: 'Prompt', privatePromptConfigTitle: 'Konuşma ayarları', publicPromptConfigTitle: 'Başlangıç Promptu', diff --git a/web/i18n/tr-TR/workflow.ts b/web/i18n/tr-TR/workflow.ts index a0f9c55125..09684bf1ea 100644 --- a/web/i18n/tr-TR/workflow.ts +++ b/web/i18n/tr-TR/workflow.ts @@ -36,7 +36,7 @@ const translation = { searchVar: 'Değişkeni ara', variableNamePlaceholder: 'Değişken adı', setVarValuePlaceholder: 'Değişkeni ayarla', - needConnecttip: 'Bu adım hiçbir şeye bağlı değil', + needConnectTip: 'Bu adım hiçbir şeye bağlı değil', maxTreeDepth: 'Her dal için maksimum {{depth}} düğüm limiti', needEndNode: 'Son blok eklenmelidir', needAnswerNode: 'Yanıt bloğu eklenmelidir', diff --git a/web/i18n/uk-UA/app-api.ts b/web/i18n/uk-UA/app-api.ts index 0218a61baf..6f46e9a9b4 100644 --- a/web/i18n/uk-UA/app-api.ts +++ b/web/i18n/uk-UA/app-api.ts @@ -9,7 +9,7 @@ const translation = { play: 'Відтворити', pause: 'Пауза', playing: 'Відтворення', - merMaind: { + merMaid: { rerender: 'Повторити рендер', }, never: 'Ніколи', diff --git a/web/i18n/uk-UA/app-debug.ts b/web/i18n/uk-UA/app-debug.ts index 7c0ba45b3c..1fc6981122 100644 --- a/web/i18n/uk-UA/app-debug.ts +++ b/web/i18n/uk-UA/app-debug.ts @@ -259,7 +259,7 @@ const translation = { historyNoBeEmpty: 'Історію розмови необхідно встановити у підказці', // Conversation history must be set in the prompt queryNoBeEmpty: 'Запит має бути встановлений у підказці', // Query must be set in the prompt }, - variableConig: { + variableConfig: { 'addModalTitle': 'Додати Поле Введення', 'editModalTitle': 'Редагувати Поле Введення', 'description': 'Налаштування для змінної {{varName}}', diff --git a/web/i18n/uk-UA/common.ts b/web/i18n/uk-UA/common.ts index ed197f9322..36ae8bae3a 100644 --- a/web/i18n/uk-UA/common.ts +++ b/web/i18n/uk-UA/common.ts @@ -191,14 +191,14 @@ const translation = { invitationSent: 'Запрошення надіслано', invitationSentTip: 'Запрошення надіслано, і вони можуть увійти в Dify, щоб отримати доступ до даних вашої команди.', invitationLink: 'Посилання на запрошення', - failedinvitationEmails: 'Наступних користувачів не було успішно запрошено', + failedInvitationEmails: 'Наступних користувачів не було успішно запрошено', ok: 'ОК', removeFromTeam: 'Видалити з команди', removeFromTeamTip: 'Буде видалено доступ до команди', setAdmin: 'Призначити адміністратором', setMember: 'Встановити як звичайного члена', setEditor: 'Встановити як Редактор', - disinvite: 'Скасувати запрошення', + disInvite: 'Скасувати запрошення', deleteMember: 'Видалити учасника', you: '(Ви)', builder: 'Будівник', diff --git a/web/i18n/uk-UA/dataset-creation.ts b/web/i18n/uk-UA/dataset-creation.ts index 5367519fc3..ecb4dafa61 100644 --- a/web/i18n/uk-UA/dataset-creation.ts +++ b/web/i18n/uk-UA/dataset-creation.ts @@ -104,8 +104,8 @@ const translation = { QATitle: 'Сегментація у форматі "питання та відповідь"', QATip: 'Увімкнення цієї опції споживатиме більше токенів', QALanguage: 'Сегментація з використанням', - emstimateCost: 'Оцінка', - emstimateSegment: 'Орієнтовні фрагменти', + estimateCost: 'Оцінка', + estimateSegment: 'Орієнтовні фрагменти', segmentCount: 'фрагментів', calculating: 'Розраховується...', fileSource: 'Попередня обробка документа', @@ -128,8 +128,8 @@ const translation = { previewSwitchTipStart: 'Поточний попередній перегляд має текстовий формат, зміна способу подання на формат запитань та відповідей ', previewSwitchTipEnd: ' потребує додаткових токенів', characters: 'символів', - indexSettedTip: 'Щоб змінити метод індексування, будь ласка, перейдіть до ', - retrivalSettedTip: 'Щоб змінити метод індексування, будь ласка, перейдіть до ', + indexSettingTip: 'Щоб змінити метод індексування, будь ласка, перейдіть до ', + retrievalSettingTip: 'Щоб змінити метод індексування, будь ласка, перейдіть до ', datasetSettingLink: 'Налаштування знань.', webpageUnit: 'Сторінок', websiteSource: 'Веб-сайт попередньої обробки', diff --git a/web/i18n/uk-UA/login.ts b/web/i18n/uk-UA/login.ts index 77cec5ceed..7acc1920fc 100644 --- a/web/i18n/uk-UA/login.ts +++ b/web/i18n/uk-UA/login.ts @@ -31,7 +31,7 @@ const translation = { pp: 'Політика конфіденційності', tosDesc: 'Реєструючись, ви приймаєте наші', goToInit: 'Якщо ви ще не ініціалізували обліковий запис, перейдіть на сторінку ініціалізації', - donthave: 'Не маєте?', + dontHave: 'Не маєте?', invalidInvitationCode: 'Недійсний код запрошення', accountAlreadyInited: 'Обліковий запис уже ініціалізовано', forgotPassword: 'Забули пароль?', diff --git a/web/i18n/uk-UA/share-app.ts b/web/i18n/uk-UA/share-app.ts index 4b794ea974..3465a6e5b9 100644 --- a/web/i18n/uk-UA/share-app.ts +++ b/web/i18n/uk-UA/share-app.ts @@ -2,7 +2,7 @@ const translation = { common: { welcome: '', appUnavailable: 'Додаток недоступний', - appUnkonwError: 'Додаток недоступний', + appUnknownError: 'Додаток недоступний', }, chat: { newChat: 'Новий чат', @@ -10,7 +10,7 @@ const translation = { unpinnedTitle: 'Чати', newChatDefaultName: 'Нова розмова', resetChat: 'Очистити розмову', - powerBy: 'Забезпечується', + poweredBy: 'Забезпечується', prompt: 'Підказка', privatePromptConfigTitle: 'Налаштування розмови', publicPromptConfigTitle: 'Початкова підказка', diff --git a/web/i18n/uk-UA/workflow.ts b/web/i18n/uk-UA/workflow.ts index a2db964056..4e59729975 100644 --- a/web/i18n/uk-UA/workflow.ts +++ b/web/i18n/uk-UA/workflow.ts @@ -36,7 +36,7 @@ const translation = { searchVar: 'Пошук змінної', variableNamePlaceholder: 'Назва змінної', setVarValuePlaceholder: 'Встановити значення змінної', - needConnecttip: 'Цей крок ні до чого не підключений', + needConnectTip: 'Цей крок ні до чого не підключений', maxTreeDepth: 'Максимальний ліміт {{depth}} вузлів на гілку', needEndNode: 'Потрібно додати кінцевий блок', needAnswerNode: 'Потрібно додати блок відповіді', diff --git a/web/i18n/vi-VN/app-api.ts b/web/i18n/vi-VN/app-api.ts index 384f3a5292..2d4ee90e3c 100644 --- a/web/i18n/vi-VN/app-api.ts +++ b/web/i18n/vi-VN/app-api.ts @@ -9,7 +9,7 @@ const translation = { play: 'Chạy', pause: 'Tạm dừng', playing: 'Đang chạy', - merMaind: { + merMaid: { rerender: 'Vẽ lại', }, never: 'Không bao giờ', diff --git a/web/i18n/vi-VN/app-debug.ts b/web/i18n/vi-VN/app-debug.ts index 906b39d10a..4e8a1962fe 100644 --- a/web/i18n/vi-VN/app-debug.ts +++ b/web/i18n/vi-VN/app-debug.ts @@ -259,7 +259,7 @@ const translation = { historyNoBeEmpty: 'Lịch sử cuộc trò chuyện phải được thiết lập trong lời nhắc', queryNoBeEmpty: 'Truy vấn phải được thiết lập trong lời nhắc', }, - variableConig: { + variableConfig: { 'addModalTitle': 'Thêm trường nhập', 'editModalTitle': 'Chỉnh sửa trường nhập', 'description': 'Cài đặt cho biến {{varName}}', diff --git a/web/i18n/vi-VN/common.ts b/web/i18n/vi-VN/common.ts index a3eee07348..b3341bfeb5 100644 --- a/web/i18n/vi-VN/common.ts +++ b/web/i18n/vi-VN/common.ts @@ -191,14 +191,14 @@ const translation = { invitationSent: 'Lời mời đã được gửi', invitationSentTip: 'Lời mời đã được gửi, và họ có thể đăng nhập vào Dify để truy cập vào dữ liệu nhóm của bạn.', invitationLink: 'Liên kết Lời mời', - failedinvitationEmails: 'Dưới đây là danh sách email không gửi được lời mời', + failedInvitationEmails: 'Dưới đây là danh sách email không gửi được lời mời', ok: 'OK', removeFromTeam: 'Xóa khỏi nhóm', removeFromTeamTip: 'Sẽ xóa quyền truy cập nhóm', setAdmin: 'Đặt làm quản trị viên', setMember: 'Đặt thành viên bình thường', setEditor: 'Đặt làm biên tập viên', - disinvite: 'Hủy lời mời', + disInvite: 'Hủy lời mời', deleteMember: 'Xóa thành viên', you: '(Bạn)', datasetOperatorTip: 'Chỉ có thể quản lý cơ sở kiến thức', diff --git a/web/i18n/vi-VN/dataset-creation.ts b/web/i18n/vi-VN/dataset-creation.ts index 1c5a24d0bf..35fa03b567 100644 --- a/web/i18n/vi-VN/dataset-creation.ts +++ b/web/i18n/vi-VN/dataset-creation.ts @@ -104,8 +104,8 @@ const translation = { QATitle: 'Phân đoạn theo định dạng Câu hỏi & Trả lời', QATip: 'Bật tùy chọn này sẽ tiêu tốn thêm token', QALanguage: 'Phân đoạn bằng', - emstimateCost: 'Ước tính', - emstimateSegment: 'Số đoạn ước tính', + estimateCost: 'Ước tính', + estimateSegment: 'Số đoạn ước tính', segmentCount: 'đoạn', calculating: 'Đang tính toán...', fileSource: 'Tiền xử lý tài liệu', @@ -128,8 +128,8 @@ const translation = { previewSwitchTipStart: 'Xem trước đoạn hiện tại đang ở định dạng văn bản, chuyển sang xem trước dạng câu hỏi và trả lời sẽ', previewSwitchTipEnd: ' tiêu tốn thêm token', characters: 'ký tự', - indexSettedTip: 'Để thay đổi phương pháp chỉ mục, vui lòng đi tới ', - retrivalSettedTip: 'Để thay đổi phương pháp truy xuất, vui lòng đi tới ', + indexSettingTip: 'Để thay đổi phương pháp chỉ mục, vui lòng đi tới ', + retrievalSettingTip: 'Để thay đổi phương pháp truy xuất, vui lòng đi tới ', datasetSettingLink: 'cài đặt Kiến thức.', websiteSource: 'Trang web tiền xử lý', webpageUnit: 'Trang', diff --git a/web/i18n/vi-VN/login.ts b/web/i18n/vi-VN/login.ts index ba729b2dff..0ee39ffe2c 100644 --- a/web/i18n/vi-VN/login.ts +++ b/web/i18n/vi-VN/login.ts @@ -31,7 +31,7 @@ const translation = { pp: 'Chính sách bảo mật', tosDesc: 'Bằng cách đăng ký, bạn đồng ý với', goToInit: 'Nếu bạn chưa khởi tạo tài khoản, vui lòng chuyển đến trang khởi tạo', - donthave: 'Chưa có tài khoản?', + dontHave: 'Chưa có tài khoản?', invalidInvitationCode: 'Mã mời không hợp lệ', accountAlreadyInited: 'Tài khoản đã được khởi tạo', forgotPassword: 'Quên mật khẩu?', diff --git a/web/i18n/vi-VN/share-app.ts b/web/i18n/vi-VN/share-app.ts index d440ad55dc..7078ecc299 100644 --- a/web/i18n/vi-VN/share-app.ts +++ b/web/i18n/vi-VN/share-app.ts @@ -2,7 +2,7 @@ const translation = { common: { welcome: '', appUnavailable: 'Ứng dụng không khả dụng', - appUnkonwError: 'Ứng dụng gặp lỗi không xác định', + appUnknownError: 'Ứng dụng gặp lỗi không xác định', }, chat: { newChat: 'Cuộc trò chuyện mới', @@ -10,7 +10,7 @@ const translation = { unpinnedTitle: 'Trò chuyện', newChatDefaultName: 'Cuộc trò chuyện mới', resetChat: 'Đặt lại cuộc trò chuyện', - powerBy: 'Được cung cấp bởi', + poweredBy: 'Được cung cấp bởi', prompt: 'Lời nhắc', privatePromptConfigTitle: 'Cài đặt cuộc trò chuyện', publicPromptConfigTitle: 'Lời nhắc ban đầu', diff --git a/web/i18n/vi-VN/workflow.ts b/web/i18n/vi-VN/workflow.ts index fba71190d4..3e67be1b4f 100644 --- a/web/i18n/vi-VN/workflow.ts +++ b/web/i18n/vi-VN/workflow.ts @@ -36,7 +36,7 @@ const translation = { searchVar: 'Tìm kiếm biến', variableNamePlaceholder: 'Tên biến', setVarValuePlaceholder: 'Đặt giá trị biến', - needConnecttip: 'Bước này không được kết nối với bất kỳ điều gì', + needConnectTip: 'Bước này không được kết nối với bất kỳ điều gì', maxTreeDepth: 'Giới hạn tối đa {{depth}} nút trên mỗi nhánh', needEndNode: 'Phải thêm khối Kết thúc', needAnswerNode: 'Phải thêm khối Trả lời', diff --git a/web/i18n/zh-Hans/app-api.ts b/web/i18n/zh-Hans/app-api.ts index f8f6ab7083..6b9048b66e 100644 --- a/web/i18n/zh-Hans/app-api.ts +++ b/web/i18n/zh-Hans/app-api.ts @@ -10,7 +10,7 @@ const translation = { pause: '暂停', playing: '播放中', loading: '加载中', - merMaind: { + merMaid: { rerender: '重新渲染', }, never: '从未', diff --git a/web/i18n/zh-Hans/app-debug.ts b/web/i18n/zh-Hans/app-debug.ts index febf80d786..62ef300f4d 100644 --- a/web/i18n/zh-Hans/app-debug.ts +++ b/web/i18n/zh-Hans/app-debug.ts @@ -298,7 +298,7 @@ const translation = { historyNoBeEmpty: '提示词中必须设置对话历史', queryNoBeEmpty: '提示词中必须设置查询内容', }, - variableConig: { + variableConfig: { 'addModalTitle': '添加变量', 'editModalTitle': '编辑变量', 'description': '设置变量 {{varName}}', diff --git a/web/i18n/zh-Hans/common.ts b/web/i18n/zh-Hans/common.ts index 2e15bf89f8..52ab7d6f02 100644 --- a/web/i18n/zh-Hans/common.ts +++ b/web/i18n/zh-Hans/common.ts @@ -198,14 +198,14 @@ const translation = { invitationSent: '邀请已发送', invitationSentTip: '邀请已发送,对方登录 Dify 后即可访问你的团队数据。', invitationLink: '邀请链接', - failedinvitationEmails: '邀请以下邮箱失败', + failedInvitationEmails: '邀请以下邮箱失败', ok: '好的', removeFromTeam: '移除团队', removeFromTeamTip: '将取消团队访问', setAdmin: '设为管理员', setMember: '设为普通成员', setEditor: '设为编辑', - disinvite: '取消邀请', + disInvite: '取消邀请', deleteMember: '删除成员', you: '(你)', builderTip: '可以构建和编辑自己的应用程序', diff --git a/web/i18n/zh-Hans/dataset-creation.ts b/web/i18n/zh-Hans/dataset-creation.ts index 53821e71a5..58e5fd1c0f 100644 --- a/web/i18n/zh-Hans/dataset-creation.ts +++ b/web/i18n/zh-Hans/dataset-creation.ts @@ -109,8 +109,8 @@ const translation = { QATitle: '采用 Q&A 分段模式', QATip: '开启后将会消耗额外的 token', QALanguage: '分段使用', - emstimateCost: '执行嵌入预估消耗', - emstimateSegment: '预估分段数', + estimateCost: '执行嵌入预估消耗', + estimateSegment: '预估分段数', segmentCount: '段', calculating: '计算中...', fileSource: '预处理文档', @@ -135,8 +135,8 @@ const translation = { previewSwitchTipStart: '当前分段预览是文本模式,切换到 Q&A 模式将会', previewSwitchTipEnd: '消耗额外的 token', characters: '字符', - indexSettedTip: '要更改索引方法和 embedding 模型,请转到', - retrivalSettedTip: '要更改检索方法,请转到', + indexSettingTip: '要更改索引方法和 embedding 模型,请转到', + retrievalSettingTip: '要更改检索方法,请转到', datasetSettingLink: '知识库设置。', }, stepThree: { diff --git a/web/i18n/zh-Hans/login.ts b/web/i18n/zh-Hans/login.ts index 53266052f2..f0a6ab76a3 100644 --- a/web/i18n/zh-Hans/login.ts +++ b/web/i18n/zh-Hans/login.ts @@ -31,7 +31,7 @@ const translation = { pp: '隐私政策', tosDesc: '使用即代表你并同意我们的', goToInit: '如果您还没有初始化账户,请前往初始化页面', - donthave: '还没有邀请码?', + dontHave: '还没有邀请码?', invalidInvitationCode: '无效的邀请码', accountAlreadyInited: '账户已经初始化', forgotPassword: '忘记密码?', diff --git a/web/i18n/zh-Hans/share-app.ts b/web/i18n/zh-Hans/share-app.ts index 794c5e323d..968381bb37 100644 --- a/web/i18n/zh-Hans/share-app.ts +++ b/web/i18n/zh-Hans/share-app.ts @@ -2,7 +2,7 @@ const translation = { common: { welcome: '', appUnavailable: '应用不可用', - appUnkonwError: '应用不可用', + appUnknownError: '应用不可用', }, chat: { newChat: '新对话', @@ -10,7 +10,7 @@ const translation = { unpinnedTitle: '对话列表', newChatDefaultName: '新的对话', resetChat: '重置对话', - powerBy: 'Powered by', + poweredBy: 'Powered by', prompt: '提示词', privatePromptConfigTitle: '对话设置', publicPromptConfigTitle: '对话前提示词', diff --git a/web/i18n/zh-Hans/workflow.ts b/web/i18n/zh-Hans/workflow.ts index 34cfb6380e..0f00b117c1 100644 --- a/web/i18n/zh-Hans/workflow.ts +++ b/web/i18n/zh-Hans/workflow.ts @@ -36,7 +36,7 @@ const translation = { variableNamePlaceholder: '变量名', searchVar: '搜索变量', setVarValuePlaceholder: '设置变量值', - needConnecttip: '此节点尚未连接到其他节点', + needConnectTip: '此节点尚未连接到其他节点', maxTreeDepth: '每个分支最大限制 {{depth}} 个节点', needEndNode: '必须添加结束节点', needAnswerNode: '必须添加直接回复节点', diff --git a/web/i18n/zh-Hant/app-api.ts b/web/i18n/zh-Hant/app-api.ts index 18ae6dcfff..63a9778378 100644 --- a/web/i18n/zh-Hant/app-api.ts +++ b/web/i18n/zh-Hant/app-api.ts @@ -10,7 +10,7 @@ const translation = { pause: '暫停', playing: '播放中', loading: '載入中', - merMaind: { + merMaid: { rerender: '重新渲染', }, never: '從未', diff --git a/web/i18n/zh-Hant/app-debug.ts b/web/i18n/zh-Hant/app-debug.ts index ca4dfbb0cf..ad29195cb5 100644 --- a/web/i18n/zh-Hant/app-debug.ts +++ b/web/i18n/zh-Hant/app-debug.ts @@ -244,7 +244,7 @@ const translation = { historyNoBeEmpty: '提示詞中必須設定對話歷史', queryNoBeEmpty: '提示詞中必須設定查詢內容', }, - variableConig: { + variableConfig: { 'addModalTitle': '新增變數', 'editModalTitle': '編輯變數', 'description': '設定變數 {{varName}}', diff --git a/web/i18n/zh-Hant/common.ts b/web/i18n/zh-Hant/common.ts index d6c283079a..ba1e3c2da7 100644 --- a/web/i18n/zh-Hant/common.ts +++ b/web/i18n/zh-Hant/common.ts @@ -191,14 +191,14 @@ const translation = { invitationSent: '邀請已傳送', invitationSentTip: '邀請已傳送,對方登入 Dify 後即可訪問你的團隊資料。', invitationLink: '邀請連結', - failedinvitationEmails: '邀請以下郵箱失敗', + failedInvitationEmails: '邀請以下郵箱失敗', ok: '好的', removeFromTeam: '移除團隊', removeFromTeamTip: '將取消團隊訪問', setAdmin: '設為管理員', setMember: '設為普通成員', setEditor: '設為編輯', - disinvite: '取消邀請', + disInvite: '取消邀請', deleteMember: '刪除成員', you: '(你)', setBuilder: 'Set as builder (設置為建構器)', diff --git a/web/i18n/zh-Hant/dataset-creation.ts b/web/i18n/zh-Hant/dataset-creation.ts index 9a6f815ca3..5f6c42aab8 100644 --- a/web/i18n/zh-Hant/dataset-creation.ts +++ b/web/i18n/zh-Hant/dataset-creation.ts @@ -104,8 +104,8 @@ const translation = { QATitle: '採用 Q&A 分段模式', QATip: '開啟後將會消耗額外的 token', QALanguage: '分段使用', - emstimateCost: '執行嵌入預估消耗', - emstimateSegment: '預估分段數', + estimateCost: '執行嵌入預估消耗', + estimateSegment: '預估分段數', segmentCount: '段', calculating: '計算中...', fileSource: '預處理文件', @@ -128,8 +128,8 @@ const translation = { previewSwitchTipStart: '當前分段預覽是文字模式,切換到 Q&A 模式將會', previewSwitchTipEnd: '消耗額外的 token', characters: '字元', - indexSettedTip: '要更改索引方法,請轉到', - retrivalSettedTip: '要更改檢索方法,請轉到', + indexSettingTip: '要更改索引方法,請轉到', + retrievalSettingTip: '要更改檢索方法,請轉到', datasetSettingLink: '知識庫設定。', websiteSource: '預處理網站', webpageUnit: '頁面', diff --git a/web/i18n/zh-Hant/login.ts b/web/i18n/zh-Hant/login.ts index 5b6492ed16..649f618158 100644 --- a/web/i18n/zh-Hant/login.ts +++ b/web/i18n/zh-Hant/login.ts @@ -31,7 +31,7 @@ const translation = { pp: '隱私政策', tosDesc: '使用即代表你並同意我們的', goToInit: '如果您還沒有初始化賬戶,請前往初始化頁面', - donthave: '還沒有邀請碼?', + dontHave: '還沒有邀請碼?', invalidInvitationCode: '無效的邀請碼', accountAlreadyInited: '賬戶已經初始化', forgotPassword: '忘記密碼?', diff --git a/web/i18n/zh-Hant/share-app.ts b/web/i18n/zh-Hant/share-app.ts index f14ce68577..ea5f206985 100644 --- a/web/i18n/zh-Hant/share-app.ts +++ b/web/i18n/zh-Hant/share-app.ts @@ -2,7 +2,7 @@ const translation = { common: { welcome: '', appUnavailable: '應用不可用', - appUnkonwError: '應用不可用', + appUnknownError: '應用不可用', }, chat: { newChat: '新對話', @@ -10,7 +10,7 @@ const translation = { unpinnedTitle: '對話列表', newChatDefaultName: '新的對話', resetChat: '重置對話', - powerBy: 'Powered by', + poweredBy: 'Powered by', prompt: '提示詞', privatePromptConfigTitle: '對話設定', publicPromptConfigTitle: '對話前提示詞', diff --git a/web/i18n/zh-Hant/workflow.ts b/web/i18n/zh-Hant/workflow.ts index a5ad2fdb49..23c3db379c 100644 --- a/web/i18n/zh-Hant/workflow.ts +++ b/web/i18n/zh-Hant/workflow.ts @@ -36,7 +36,7 @@ const translation = { variableNamePlaceholder: '變量名', searchVar: '搜索變量', setVarValuePlaceholder: '設置變量值', - needConnecttip: '此節點尚未連接到其他節點', + needConnectTip: '此節點尚未連接到其他節點', maxTreeDepth: '每個分支最大限制 {{depth}} 個節點', needEndNode: '必須添加結束節點', needAnswerNode: '必須添加直接回覆節點',