@ai-stack/payloadcms 3.76.0-beta.1 → 3.76.0-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ai/core/generateObject.js +1 -4
- package/dist/ai/core/generateObject.js.map +1 -1
- package/dist/ai/core/generateText.js +1 -5
- package/dist/ai/core/generateText.js.map +1 -1
- package/dist/ai/core/media/generateMedia.js +1 -4
- package/dist/ai/core/media/generateMedia.js.map +1 -1
- package/dist/ai/core/media/image/generateImage.js +4 -14
- package/dist/ai/core/media/image/generateImage.js.map +1 -1
- package/dist/ai/core/media/image/handlers/multimodal.js +7 -24
- package/dist/ai/core/media/image/handlers/multimodal.js.map +1 -1
- package/dist/ai/core/media/image/handlers/standard.js +7 -2
- package/dist/ai/core/media/image/handlers/standard.js.map +1 -1
- package/dist/ai/core/media/speech/generateSpeech.js +2 -3
- package/dist/ai/core/media/speech/generateSpeech.js.map +1 -1
- package/dist/ai/core/media/types.d.ts +2 -3
- package/dist/ai/core/media/types.js.map +1 -1
- package/dist/ai/core/streamObject.js +0 -3
- package/dist/ai/core/streamObject.js.map +1 -1
- package/dist/ai/core/streamText.js +1 -4
- package/dist/ai/core/streamText.js.map +1 -1
- package/dist/ai/core/types.d.ts +2 -2
- package/dist/ai/core/types.js.map +1 -1
- package/dist/ai/providers/blocks/anthropic.js +2 -44
- package/dist/ai/providers/blocks/anthropic.js.map +1 -1
- package/dist/ai/providers/blocks/elevenlabs.js +4 -109
- package/dist/ai/providers/blocks/elevenlabs.js.map +1 -1
- package/dist/ai/providers/blocks/fal.js +2 -120
- package/dist/ai/providers/blocks/fal.js.map +1 -1
- package/dist/ai/providers/blocks/google.js +6 -240
- package/dist/ai/providers/blocks/google.js.map +1 -1
- package/dist/ai/providers/blocks/openai-compatible.js +2 -146
- package/dist/ai/providers/blocks/openai-compatible.js.map +1 -1
- package/dist/ai/providers/blocks/openai.js +2 -202
- package/dist/ai/providers/blocks/openai.js.map +1 -1
- package/dist/ai/providers/blocks/xai.js +2 -55
- package/dist/ai/providers/blocks/xai.js.map +1 -1
- package/dist/ai/providers/index.d.ts +1 -1
- package/dist/ai/providers/index.js +0 -2
- package/dist/ai/providers/index.js.map +1 -1
- package/dist/ai/providers/registry.d.ts +24 -28
- package/dist/ai/providers/registry.js +184 -138
- package/dist/ai/providers/registry.js.map +1 -1
- package/dist/ai/providers/types.d.ts +12 -33
- package/dist/ai/providers/types.js +0 -1
- package/dist/ai/providers/types.js.map +1 -1
- package/dist/ai/schemas/lexicalJsonSchema.js +1 -1
- package/dist/ai/schemas/lexicalJsonSchema.js.map +1 -1
- package/dist/ai/utilities/filterEditorSchemaByNodes.js.map +1 -0
- package/dist/ai/utilities/generateFileNameByPrompt.js.map +1 -0
- package/dist/ai/utilities/isObjectSchema.js.map +1 -0
- package/dist/ai/{utils → utilities}/nodeToSchemaMap.js +6 -6
- package/dist/ai/utilities/nodeToSchemaMap.js.map +1 -0
- package/dist/ai/{prompts.d.ts → utilities/prompts.d.ts} +1 -1
- package/dist/ai/utilities/prompts.js.map +1 -0
- package/dist/ai/utilities/systemGenerate.js.map +1 -0
- package/dist/collections/AIJobs.js +3 -12
- package/dist/collections/AIJobs.js.map +1 -1
- package/dist/collections/AIProviders.js +56 -29
- package/dist/collections/AIProviders.js.map +1 -1
- package/dist/collections/Instructions.js +91 -59
- package/dist/collections/Instructions.js.map +1 -1
- package/dist/collections/shared.d.ts +30 -0
- package/dist/collections/shared.js +15 -0
- package/dist/collections/shared.js.map +1 -0
- package/dist/endpoints/fetchFields.js +14 -6
- package/dist/endpoints/fetchFields.js.map +1 -1
- package/dist/endpoints/fetchVoices.js +1 -1
- package/dist/endpoints/fetchVoices.js.map +1 -1
- package/dist/endpoints/generate.d.ts +7 -0
- package/dist/endpoints/generate.js +268 -0
- package/dist/endpoints/generate.js.map +1 -0
- package/dist/endpoints/index.js +9 -639
- package/dist/endpoints/index.js.map +1 -1
- package/dist/endpoints/promptMentions.d.ts +2 -0
- package/dist/endpoints/promptMentions.js +166 -0
- package/dist/endpoints/promptMentions.js.map +1 -0
- package/dist/endpoints/upload.d.ts +7 -0
- package/dist/endpoints/upload.js +294 -0
- package/dist/endpoints/upload.js.map +1 -0
- package/dist/endpoints/videogenWebhook.d.ts +7 -0
- package/dist/endpoints/videogenWebhook.js +132 -0
- package/dist/endpoints/videogenWebhook.js.map +1 -0
- package/dist/exports/client.d.ts +2 -1
- package/dist/exports/client.js +2 -1
- package/dist/exports/client.js.map +1 -1
- package/dist/exports/fields.d.ts +2 -1
- package/dist/exports/fields.js +2 -1
- package/dist/exports/fields.js.map +1 -1
- package/dist/fields/ArrayComposeField/ArrayComposeField.js +1 -1
- package/dist/fields/ArrayComposeField/ArrayComposeField.js.map +1 -1
- package/dist/fields/ArrayComposeField/ArrayComposeField.jsx +1 -1
- package/dist/fields/ComposeField/ComposeField.d.ts +1 -0
- package/dist/fields/ComposeField/ComposeField.js +18 -8
- package/dist/fields/ComposeField/ComposeField.js.map +1 -1
- package/dist/fields/ComposeField/ComposeField.jsx +12 -7
- package/dist/fields/LexicalEditor/feature.server.js +1 -1
- package/dist/fields/LexicalEditor/feature.server.js.map +1 -1
- package/dist/fields/PromptEditorField/feature.client.d.ts +1 -0
- package/dist/fields/PromptEditorField/feature.client.js +173 -0
- package/dist/fields/PromptEditorField/feature.client.js.map +1 -0
- package/dist/fields/PromptEditorField/feature.client.jsx +148 -0
- package/dist/fields/PromptEditorField/feature.server.d.ts +1 -0
- package/dist/fields/PromptEditorField/feature.server.js +30 -0
- package/dist/fields/PromptEditorField/feature.server.js.map +1 -0
- package/dist/fields/PromptField.d.ts +4 -0
- package/dist/fields/PromptField.js +18 -0
- package/dist/fields/PromptField.js.map +1 -0
- package/dist/fields/SelectField/SelectField.js +0 -1
- package/dist/fields/SelectField/SelectField.js.map +1 -1
- package/dist/fields/SelectField/SelectField.jsx +0 -1
- package/dist/index.d.ts +4 -3
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/libraries/handlebars/helpers.js +2 -2
- package/dist/libraries/handlebars/helpers.js.map +1 -1
- package/dist/libraries/handlebars/replacePlaceholders.js +5 -1
- package/dist/libraries/handlebars/replacePlaceholders.js.map +1 -1
- package/dist/payload-ai.d.ts +5 -19
- package/dist/plugin.js +18 -21
- package/dist/plugin.js.map +1 -1
- package/dist/providers/FieldProvider/FieldProvider.js +11 -20
- package/dist/providers/FieldProvider/FieldProvider.js.map +1 -1
- package/dist/providers/FieldProvider/FieldProvider.jsx +8 -18
- package/dist/providers/InstructionsProvider/InstructionsProvider.js +5 -2
- package/dist/providers/InstructionsProvider/InstructionsProvider.js.map +1 -1
- package/dist/providers/InstructionsProvider/InstructionsProvider.jsx +5 -2
- package/dist/translations/de.json +47 -0
- package/dist/translations/en.json +45 -2
- package/dist/translations/es.json +45 -2
- package/dist/translations/fa.json +45 -2
- package/dist/translations/fr.json +46 -3
- package/dist/translations/hi.json +47 -0
- package/dist/translations/index.d.ts +88 -26
- package/dist/translations/index.js +18 -32
- package/dist/translations/index.js.map +1 -1
- package/dist/translations/ja.json +47 -0
- package/dist/translations/nb.json +47 -0
- package/dist/translations/nl.json +47 -0
- package/dist/translations/pl.json +45 -2
- package/dist/translations/pt.json +47 -0
- package/dist/translations/ru.json +45 -2
- package/dist/translations/th.json +47 -0
- package/dist/translations/translation-schema.json +184 -11
- package/dist/translations/uk.json +45 -2
- package/dist/translations/zh.json +47 -0
- package/dist/types.d.ts +64 -28
- package/dist/types.js.map +1 -1
- package/dist/ui/Compose/Compose.js +42 -79
- package/dist/ui/Compose/Compose.js.map +1 -1
- package/dist/ui/Compose/Compose.jsx +32 -86
- package/dist/ui/Compose/ComposePlaceholder.js +1 -1
- package/dist/ui/Compose/ComposePlaceholder.js.map +1 -1
- package/dist/ui/Compose/ComposePlaceholder.jsx +1 -1
- package/dist/ui/Compose/{compose.module.css → compose.module.scss} +3 -5
- package/dist/ui/Compose/hooks/menu/Item.d.ts +1 -1
- package/dist/ui/Compose/hooks/menu/Item.js +7 -3
- package/dist/ui/Compose/hooks/menu/Item.js.map +1 -1
- package/dist/ui/Compose/hooks/menu/Item.jsx +11 -5
- package/dist/ui/Compose/hooks/menu/TranslateMenu.js +15 -5
- package/dist/ui/Compose/hooks/menu/TranslateMenu.js.map +1 -1
- package/dist/ui/Compose/hooks/menu/TranslateMenu.jsx +11 -5
- package/dist/ui/Compose/hooks/menu/items.d.ts +8 -8
- package/dist/ui/Compose/hooks/menu/itemsMap.d.ts +2 -1
- package/dist/ui/Compose/hooks/menu/itemsMap.js.map +1 -1
- package/dist/ui/Compose/hooks/menu/types.d.ts +21 -0
- package/dist/ui/Compose/hooks/menu/types.js +3 -0
- package/dist/ui/Compose/hooks/menu/types.js.map +1 -0
- package/dist/ui/Compose/hooks/menu/useMenu.d.ts +2 -2
- package/dist/ui/Compose/hooks/menu/useMenu.js +45 -23
- package/dist/ui/Compose/hooks/menu/useMenu.js.map +1 -1
- package/dist/ui/Compose/hooks/menu/useMenu.jsx +43 -23
- package/dist/ui/Compose/hooks/mergeGeneratedValue.d.ts +14 -0
- package/dist/ui/Compose/hooks/mergeGeneratedValue.js +38 -0
- package/dist/ui/Compose/hooks/mergeGeneratedValue.js.map +1 -0
- package/dist/ui/Compose/hooks/useGenerate.js +37 -12
- package/dist/ui/Compose/hooks/useGenerate.js.map +1 -1
- package/dist/ui/Compose/hooks/useGenerateUpload.js +66 -24
- package/dist/ui/Compose/hooks/useGenerateUpload.js.map +1 -1
- package/dist/ui/Compose/hooks/useHistory.js +1 -1
- package/dist/ui/Compose/hooks/useHistory.js.map +1 -1
- package/dist/ui/Compose/hooks/useStreamingUpdate.js +4 -4
- package/dist/ui/Compose/hooks/useStreamingUpdate.js.map +1 -1
- package/dist/ui/ConfigDashboard/configDashboard.module.css +94 -0
- package/dist/ui/ConfigDashboard/index.js +27 -92
- package/dist/ui/ConfigDashboard/index.js.map +1 -1
- package/dist/ui/ConfigDashboard/index.jsx +24 -77
- package/dist/ui/DynamicModelSelect/index.js +6 -27
- package/dist/ui/DynamicModelSelect/index.js.map +1 -1
- package/dist/ui/DynamicModelSelect/index.jsx +6 -29
- package/dist/ui/DynamicProviderSelect/index.js +6 -27
- package/dist/ui/DynamicProviderSelect/index.js.map +1 -1
- package/dist/ui/DynamicProviderSelect/index.jsx +6 -29
- package/dist/ui/DynamicVoiceSelect/index.js +34 -83
- package/dist/ui/DynamicVoiceSelect/index.js.map +1 -1
- package/dist/ui/DynamicVoiceSelect/index.jsx +16 -53
- package/dist/ui/GlobalProviderOptions/index.d.ts +2 -0
- package/dist/ui/GlobalProviderOptions/index.js +118 -0
- package/dist/ui/GlobalProviderOptions/index.js.map +1 -0
- package/dist/ui/GlobalProviderOptions/index.jsx +60 -0
- package/dist/ui/Icons/Icons.js +1 -1
- package/dist/ui/Icons/Icons.js.map +1 -1
- package/dist/ui/Icons/Icons.jsx +1 -1
- package/dist/ui/Icons/LottieAnimation.js +1 -1
- package/dist/ui/Icons/LottieAnimation.js.map +1 -1
- package/dist/ui/Icons/LottieAnimation.jsx +1 -1
- package/dist/ui/InstructionProviderOptions/ProviderOptionsTree.d.ts +12 -0
- package/dist/ui/InstructionProviderOptions/ProviderOptionsTree.js +166 -0
- package/dist/ui/InstructionProviderOptions/ProviderOptionsTree.js.map +1 -0
- package/dist/ui/InstructionProviderOptions/ProviderOptionsTree.jsx +83 -0
- package/dist/ui/InstructionProviderOptions/index.d.ts +2 -0
- package/dist/ui/InstructionProviderOptions/index.js +157 -0
- package/dist/ui/InstructionProviderOptions/index.js.map +1 -0
- package/dist/ui/InstructionProviderOptions/index.jsx +92 -0
- package/dist/ui/VoicesFetcher/index.js.map +1 -1
- package/dist/ui/hooks/useAISettings.d.ts +26 -0
- package/dist/ui/hooks/useAISettings.js +73 -0
- package/dist/ui/hooks/useAISettings.js.map +1 -0
- package/dist/ui/providerOptions/updateProviderOptionsValue.d.ts +6 -0
- package/dist/ui/providerOptions/updateProviderOptionsValue.js +50 -0
- package/dist/ui/providerOptions/updateProviderOptionsValue.js.map +1 -0
- package/dist/ui/shared/handleSelectChange.d.ts +5 -0
- package/dist/ui/shared/handleSelectChange.js +12 -0
- package/dist/ui/shared/handleSelectChange.js.map +1 -0
- package/dist/ui/shared/types.d.ts +11 -0
- package/dist/ui/shared/types.js +5 -0
- package/dist/ui/shared/types.js.map +1 -0
- package/dist/utilities/ai/resolveEffectiveInstructionSettings.d.ts +15 -0
- package/dist/utilities/ai/resolveEffectiveInstructionSettings.js +136 -0
- package/dist/utilities/ai/resolveEffectiveInstructionSettings.js.map +1 -0
- package/dist/{endpoints → utilities}/buildPromptUtils.js +14 -5
- package/dist/utilities/buildPromptUtils.js.map +1 -0
- package/dist/utilities/buildSmartPrompt.js +3 -3
- package/dist/utilities/buildSmartPrompt.js.map +1 -1
- package/dist/utilities/fields/fieldToJsonSchema.js.map +1 -0
- package/dist/utilities/fields/getFieldBySchemaPath.js.map +1 -0
- package/dist/utilities/fields/getFieldInfo.js.map +1 -0
- package/dist/utilities/{updateFieldsConfig.js → fields/updateFieldsConfig.js} +8 -3
- package/dist/utilities/fields/updateFieldsConfig.js.map +1 -0
- package/dist/utilities/images/extractImageData.js.map +1 -0
- package/dist/utilities/images/extractPromptAttachments.js.map +1 -0
- package/dist/utilities/{fetchImages.d.ts → images/fetchImages.d.ts} +1 -1
- package/dist/utilities/images/fetchImages.js +49 -0
- package/dist/utilities/images/fetchImages.js.map +1 -0
- package/dist/utilities/images/resolveImageReferences.js +183 -0
- package/dist/utilities/images/resolveImageReferences.js.map +1 -0
- package/dist/utilities/init/autoSetupProviders.d.ts +3 -0
- package/dist/utilities/init/autoSetupProviders.js +216 -0
- package/dist/utilities/init/autoSetupProviders.js.map +1 -0
- package/dist/utilities/lexical/editorSchemaValidator.js.map +1 -0
- package/dist/utilities/lexical/lexicalToHTML.js.map +1 -0
- package/dist/utilities/lexical/lexicalToPromptTemplate.d.ts +2 -0
- package/dist/utilities/lexical/lexicalToPromptTemplate.js +50 -0
- package/dist/utilities/lexical/lexicalToPromptTemplate.js.map +1 -0
- package/dist/utilities/lexical/setSafeLexicalState.js.map +1 -0
- package/dist/utilities/lexical/stringToLexicalJSON.d.ts +2 -0
- package/dist/utilities/lexical/stringToLexicalJSON.js +39 -0
- package/dist/utilities/lexical/stringToLexicalJSON.js.map +1 -0
- package/dist/utilities/sanitizeLog.d.ts +1 -0
- package/dist/utilities/sanitizeLog.js +39 -0
- package/dist/utilities/sanitizeLog.js.map +1 -0
- package/dist/utilities/seedProperties.js +54 -22
- package/dist/utilities/seedProperties.js.map +1 -1
- package/package.json +36 -2
- package/dist/ai/analyse.d.ts +0 -1
- package/dist/ai/analyse.js +0 -3
- package/dist/ai/analyse.js.map +0 -1
- package/dist/ai/index.d.ts +0 -11
- package/dist/ai/index.js +0 -25
- package/dist/ai/index.js.map +0 -1
- package/dist/ai/prompts.js.map +0 -1
- package/dist/ai/utils/filterEditorSchemaByNodes.js.map +0 -1
- package/dist/ai/utils/generateFileNameByPrompt.js.map +0 -1
- package/dist/ai/utils/isObjectSchema.js.map +0 -1
- package/dist/ai/utils/nodeToSchemaMap.js.map +0 -1
- package/dist/ai/utils/systemGenerate.js.map +0 -1
- package/dist/endpoints/buildPromptUtils.js.map +0 -1
- package/dist/endpoints/chat.d.ts +0 -4
- package/dist/fields/PromptEditorField/PromptEditorField.d.ts +0 -3
- package/dist/fields/PromptEditorField/PromptEditorField.js +0 -217
- package/dist/fields/PromptEditorField/PromptEditorField.js.map +0 -1
- package/dist/fields/PromptEditorField/PromptEditorField.jsx +0 -160
- package/dist/ui/AIConfigDashboard/index.d.ts +0 -2
- package/dist/ui/AIConfigDashboard/index.js +0 -224
- package/dist/ui/AIConfigDashboard/index.js.map +0 -1
- package/dist/ui/AIConfigDashboard/index.jsx +0 -175
- package/dist/ui/ProviderOptionsEditor/index.d.ts +0 -7
- package/dist/ui/ProviderOptionsEditor/index.js +0 -291
- package/dist/ui/ProviderOptionsEditor/index.js.map +0 -1
- package/dist/ui/ProviderOptionsEditor/index.jsx +0 -210
- package/dist/utilities/editorSchemaValidator.js.map +0 -1
- package/dist/utilities/extractImageData.js.map +0 -1
- package/dist/utilities/extractPromptAttachments.js.map +0 -1
- package/dist/utilities/fetchImages.js +0 -38
- package/dist/utilities/fetchImages.js.map +0 -1
- package/dist/utilities/fieldToJsonSchema.js.map +0 -1
- package/dist/utilities/getFieldBySchemaPath.js.map +0 -1
- package/dist/utilities/getFieldInfo.js.map +0 -1
- package/dist/utilities/getProviderOptionsFields.d.ts +0 -16
- package/dist/utilities/getProviderOptionsFields.js +0 -80
- package/dist/utilities/getProviderOptionsFields.js.map +0 -1
- package/dist/utilities/isPluginActivated.d.ts +0 -2
- package/dist/utilities/isPluginActivated.js +0 -5
- package/dist/utilities/isPluginActivated.js.map +0 -1
- package/dist/utilities/lexicalToHTML.js.map +0 -1
- package/dist/utilities/resolveImageReferences.js +0 -167
- package/dist/utilities/resolveImageReferences.js.map +0 -1
- package/dist/utilities/schemaConverter.d.ts +0 -3
- package/dist/utilities/schemaConverter.js +0 -93
- package/dist/utilities/schemaConverter.js.map +0 -1
- package/dist/utilities/setSafeLexicalState.js.map +0 -1
- package/dist/utilities/updateFieldsConfig.js.map +0 -1
- /package/dist/ai/{utils → utilities}/filterEditorSchemaByNodes.d.ts +0 -0
- /package/dist/ai/{utils → utilities}/filterEditorSchemaByNodes.js +0 -0
- /package/dist/ai/{utils → utilities}/generateFileNameByPrompt.d.ts +0 -0
- /package/dist/ai/{utils → utilities}/generateFileNameByPrompt.js +0 -0
- /package/dist/ai/{utils → utilities}/isObjectSchema.d.ts +0 -0
- /package/dist/ai/{utils → utilities}/isObjectSchema.js +0 -0
- /package/dist/ai/{utils → utilities}/nodeToSchemaMap.d.ts +0 -0
- /package/dist/ai/{prompts.js → utilities/prompts.js} +0 -0
- /package/dist/ai/{utils → utilities}/systemGenerate.d.ts +0 -0
- /package/dist/ai/{utils → utilities}/systemGenerate.js +0 -0
- /package/dist/ui/Icons/{icons.module.css → icons.module.scss} +0 -0
- /package/dist/{endpoints → utilities}/buildPromptUtils.d.ts +0 -0
- /package/dist/utilities/{fieldToJsonSchema.d.ts → fields/fieldToJsonSchema.d.ts} +0 -0
- /package/dist/utilities/{fieldToJsonSchema.js → fields/fieldToJsonSchema.js} +0 -0
- /package/dist/utilities/{getFieldBySchemaPath.d.ts → fields/getFieldBySchemaPath.d.ts} +0 -0
- /package/dist/utilities/{getFieldBySchemaPath.js → fields/getFieldBySchemaPath.js} +0 -0
- /package/dist/utilities/{getFieldInfo.d.ts → fields/getFieldInfo.d.ts} +0 -0
- /package/dist/utilities/{getFieldInfo.js → fields/getFieldInfo.js} +0 -0
- /package/dist/utilities/{updateFieldsConfig.d.ts → fields/updateFieldsConfig.d.ts} +0 -0
- /package/dist/utilities/{extractImageData.d.ts → images/extractImageData.d.ts} +0 -0
- /package/dist/utilities/{extractImageData.js → images/extractImageData.js} +0 -0
- /package/dist/utilities/{extractPromptAttachments.d.ts → images/extractPromptAttachments.d.ts} +0 -0
- /package/dist/utilities/{extractPromptAttachments.js → images/extractPromptAttachments.js} +0 -0
- /package/dist/utilities/{resolveImageReferences.d.ts → images/resolveImageReferences.d.ts} +0 -0
- /package/dist/utilities/{editorSchemaValidator.d.ts → lexical/editorSchemaValidator.d.ts} +0 -0
- /package/dist/utilities/{editorSchemaValidator.js → lexical/editorSchemaValidator.js} +0 -0
- /package/dist/utilities/{lexicalToHTML.d.ts → lexical/lexicalToHTML.d.ts} +0 -0
- /package/dist/utilities/{lexicalToHTML.js → lexical/lexicalToHTML.js} +0 -0
- /package/dist/utilities/{setSafeLexicalState.d.ts → lexical/setSafeLexicalState.d.ts} +0 -0
- /package/dist/utilities/{setSafeLexicalState.js → lexical/setSafeLexicalState.js} +0 -0
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "./translation-schema.json",
|
|
3
|
+
"ai-plugin": {
|
|
4
|
+
"configDashboard": {
|
|
5
|
+
"loadingConfiguration": "कॉन्फ़िगरेशन लोड हो रहा है...",
|
|
6
|
+
"configureTitle": "आइए आपका AI प्लगइन कॉन्फ़िगर करें",
|
|
7
|
+
"configureSubtitle": "प्रोवाइडर सेट करें → कंटेंट चुनें → व्यवहार को परिष्कृत करें।",
|
|
8
|
+
"providers": "प्रोवाइडर",
|
|
9
|
+
"saveChanges": "परिवर्तन सहेजें",
|
|
10
|
+
"saving": "सहेजा जा रहा है...",
|
|
11
|
+
"selectCollectionsBody": "उन कलेक्शनों को चुनें जहाँ AI सुविधाएँ उपलब्ध हों, उन्हें चालू या बंद करें और अपने बदलाव सहेजें।",
|
|
12
|
+
"settingsSaved": "सेटिंग्स सफलतापूर्वक सहेजी गईं",
|
|
13
|
+
"failedToSave": "सेटिंग्स सहेजने में विफल",
|
|
14
|
+
"errorSaving": "सेटिंग्स सहेजते समय त्रुटि"
|
|
15
|
+
},
|
|
16
|
+
"actions": {
|
|
17
|
+
"proofread": "प्रूफरीड",
|
|
18
|
+
"rephrase": "पुनर्लेखन",
|
|
19
|
+
"translate": "अनुवाद",
|
|
20
|
+
"expand": "विस्तार",
|
|
21
|
+
"summarize": "सारांश",
|
|
22
|
+
"simplify": "सरल करें",
|
|
23
|
+
"compose": "लिखें",
|
|
24
|
+
"settings": "सेटिंग्स"
|
|
25
|
+
},
|
|
26
|
+
"actionLoading": {
|
|
27
|
+
"proofreading": "प्रूफरीड हो रहा है",
|
|
28
|
+
"rephrasing": "पुनर्लेखन हो रहा है",
|
|
29
|
+
"translating": "अनुवाद हो रहा है",
|
|
30
|
+
"expanding": "विस्तार हो रहा है",
|
|
31
|
+
"summarizing": "सारांश हो रहा है",
|
|
32
|
+
"simplifying": "सरलीकरण हो रहा है",
|
|
33
|
+
"composing": "लिखा जा रहा है"
|
|
34
|
+
},
|
|
35
|
+
"general": {
|
|
36
|
+
"search": "खोजें...",
|
|
37
|
+
"queued": "कतार में",
|
|
38
|
+
"video": "वीडियो",
|
|
39
|
+
"loading": "लोड हो रहा है...",
|
|
40
|
+
"clickToStop": "रोकने के लिए क्लिक करें"
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"localization": {
|
|
44
|
+
"selectedLocales": "Selected locales",
|
|
45
|
+
"selectLocaleToDuplicate": "Select locale to duplicate"
|
|
46
|
+
}
|
|
47
|
+
}
|
|
@@ -2,35 +2,97 @@ import type { NestedKeysStripped } from '@payloadcms/translations';
|
|
|
2
2
|
export declare const translations: {
|
|
3
3
|
en: {
|
|
4
4
|
$schema: string;
|
|
5
|
-
|
|
5
|
+
"ai-plugin": {
|
|
6
|
+
configDashboard: {
|
|
7
|
+
loadingConfiguration: string;
|
|
8
|
+
configureTitle: string;
|
|
9
|
+
configureSubtitle: string;
|
|
10
|
+
providers: string;
|
|
11
|
+
saveChanges: string;
|
|
12
|
+
saving: string;
|
|
13
|
+
selectCollectionsBody: string;
|
|
14
|
+
settingsSaved: string;
|
|
15
|
+
failedToSave: string;
|
|
16
|
+
errorSaving: string;
|
|
17
|
+
};
|
|
18
|
+
actions: {
|
|
19
|
+
proofread: string;
|
|
20
|
+
rephrase: string;
|
|
21
|
+
translate: string;
|
|
22
|
+
expand: string;
|
|
23
|
+
summarize: string;
|
|
24
|
+
simplify: string;
|
|
25
|
+
compose: string;
|
|
26
|
+
settings: string;
|
|
27
|
+
};
|
|
28
|
+
actionLoading: {
|
|
29
|
+
proofreading: string;
|
|
30
|
+
rephrasing: string;
|
|
31
|
+
translating: string;
|
|
32
|
+
expanding: string;
|
|
33
|
+
summarizing: string;
|
|
34
|
+
simplifying: string;
|
|
35
|
+
composing: string;
|
|
36
|
+
};
|
|
37
|
+
general: {
|
|
38
|
+
search: string;
|
|
39
|
+
queued: string;
|
|
40
|
+
video: string;
|
|
41
|
+
loading: string;
|
|
42
|
+
clickToStop: string;
|
|
43
|
+
};
|
|
44
|
+
};
|
|
45
|
+
localization: {
|
|
46
|
+
selectedLocales: string;
|
|
47
|
+
selectLocaleToDuplicate: string;
|
|
48
|
+
};
|
|
6
49
|
};
|
|
7
50
|
es: {
|
|
8
51
|
$schema: string;
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
52
|
+
"ai-plugin": {
|
|
53
|
+
configDashboard: {
|
|
54
|
+
loadingConfiguration: string;
|
|
55
|
+
configureTitle: string;
|
|
56
|
+
configureSubtitle: string;
|
|
57
|
+
providers: string;
|
|
58
|
+
saveChanges: string;
|
|
59
|
+
saving: string;
|
|
60
|
+
selectCollectionsBody: string;
|
|
61
|
+
settingsSaved: string;
|
|
62
|
+
failedToSave: string;
|
|
63
|
+
errorSaving: string;
|
|
64
|
+
};
|
|
65
|
+
actions: {
|
|
66
|
+
proofread: string;
|
|
67
|
+
rephrase: string;
|
|
68
|
+
translate: string;
|
|
69
|
+
expand: string;
|
|
70
|
+
summarize: string;
|
|
71
|
+
simplify: string;
|
|
72
|
+
compose: string;
|
|
73
|
+
settings: string;
|
|
74
|
+
};
|
|
75
|
+
actionLoading: {
|
|
76
|
+
proofreading: string;
|
|
77
|
+
rephrasing: string;
|
|
78
|
+
translating: string;
|
|
79
|
+
expanding: string;
|
|
80
|
+
summarizing: string;
|
|
81
|
+
simplifying: string;
|
|
82
|
+
composing: string;
|
|
83
|
+
};
|
|
84
|
+
general: {
|
|
85
|
+
search: string;
|
|
86
|
+
queued: string;
|
|
87
|
+
video: string;
|
|
88
|
+
loading: string;
|
|
89
|
+
clickToStop: string;
|
|
90
|
+
};
|
|
91
|
+
};
|
|
92
|
+
localization: {
|
|
93
|
+
selectedLocales: string;
|
|
94
|
+
selectLocaleToDuplicate: string;
|
|
95
|
+
};
|
|
34
96
|
};
|
|
35
97
|
};
|
|
36
98
|
export type PluginAITranslations = typeof translations.en;
|
|
@@ -1,36 +1,22 @@
|
|
|
1
|
+
// import de from './de.json' with { type: 'json' }
|
|
2
|
+
import en from './en.json';
|
|
3
|
+
import es from './es.json';
|
|
4
|
+
// import fa from './fa.json' with { type: 'json' }
|
|
5
|
+
// import fr from './fr.json' with { type: 'json' }
|
|
6
|
+
// import hi from './hi.json' with { type: 'json' }
|
|
7
|
+
// import ja from './ja.json' with { type: 'json' }
|
|
8
|
+
// import nb from './nb.json' with { type: 'json' }
|
|
9
|
+
// import nl from './nl.json' with { type: 'json' }
|
|
10
|
+
// import pl from './pl.json' with { type: 'json' }
|
|
11
|
+
// import pt from './pt.json' with { type: 'json' }
|
|
12
|
+
// import ru from './ru.json' with { type: 'json' }
|
|
13
|
+
// import th from './th.json' with { type: 'json' }
|
|
14
|
+
// import uk from './uk.json' with { type: 'json' }
|
|
15
|
+
// import zh from './zh.json' with { type: 'json' }
|
|
1
16
|
export const translations = {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
},
|
|
6
|
-
es: {
|
|
7
|
-
$schema: './translation-schema.json',
|
|
8
|
-
'ai-plugin': {}
|
|
9
|
-
},
|
|
10
|
-
fa: {
|
|
11
|
-
$schema: './translation-schema.json',
|
|
12
|
-
'ai-plugin': {}
|
|
13
|
-
},
|
|
14
|
-
fr: {
|
|
15
|
-
$schema: './translation-schema.json',
|
|
16
|
-
'ai-plugin': {}
|
|
17
|
-
},
|
|
18
|
-
nb: {
|
|
19
|
-
$schema: './translation-schema.json',
|
|
20
|
-
'ai-plugin': {}
|
|
21
|
-
},
|
|
22
|
-
pl: {
|
|
23
|
-
$schema: './translation-schema.json',
|
|
24
|
-
'ai-plugin': {}
|
|
25
|
-
},
|
|
26
|
-
ru: {
|
|
27
|
-
$schema: './translation-schema.json',
|
|
28
|
-
'ai-plugin': {}
|
|
29
|
-
},
|
|
30
|
-
uk: {
|
|
31
|
-
$schema: './translation-schema.json',
|
|
32
|
-
'ai-plugin': {}
|
|
33
|
-
}
|
|
17
|
+
// de,
|
|
18
|
+
en,
|
|
19
|
+
es
|
|
34
20
|
};
|
|
35
21
|
|
|
36
22
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/translations/index.ts"],"sourcesContent":["import type { NestedKeysStripped } from '@payloadcms/translations'\n\
|
|
1
|
+
{"version":3,"sources":["../../src/translations/index.ts"],"sourcesContent":["import type { NestedKeysStripped } from '@payloadcms/translations'\n\n// import de from './de.json' with { type: 'json' }\nimport en from './en.json' with { type: 'json' }\nimport es from './es.json' with { type: 'json' }\n// import fa from './fa.json' with { type: 'json' }\n// import fr from './fr.json' with { type: 'json' }\n// import hi from './hi.json' with { type: 'json' }\n// import ja from './ja.json' with { type: 'json' }\n// import nb from './nb.json' with { type: 'json' }\n// import nl from './nl.json' with { type: 'json' }\n// import pl from './pl.json' with { type: 'json' }\n// import pt from './pt.json' with { type: 'json' }\n// import ru from './ru.json' with { type: 'json' }\n// import th from './th.json' with { type: 'json' }\n// import uk from './uk.json' with { type: 'json' }\n// import zh from './zh.json' with { type: 'json' }\n\nexport const translations = {\n // de,\n en,\n es,\n // fa,\n // fr,\n // hi,\n // ja,\n // nb,\n // nl,\n // pl,\n // pt,\n // ru,\n // th,\n // uk,\n // zh,\n}\n\nexport type PluginAITranslations = typeof translations.en\n\nexport type PluginAITranslationKeys = NestedKeysStripped<PluginAITranslations>\n"],"names":["en","es","translations"],"mappings":"AAEA,mDAAmD;AACnD,OAAOA,QAAQ,YAAiC;AAChD,OAAOC,QAAQ,YAAiC;AAChD,mDAAmD;AACnD,mDAAmD;AACnD,mDAAmD;AACnD,mDAAmD;AACnD,mDAAmD;AACnD,mDAAmD;AACnD,mDAAmD;AACnD,mDAAmD;AACnD,mDAAmD;AACnD,mDAAmD;AACnD,mDAAmD;AACnD,mDAAmD;AAEnD,OAAO,MAAMC,eAAe;IAC1B,MAAM;IACNF;IACAC;AAaF,EAAC"}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "./translation-schema.json",
|
|
3
|
+
"ai-plugin": {
|
|
4
|
+
"configDashboard": {
|
|
5
|
+
"loadingConfiguration": "設定を読み込んでいます...",
|
|
6
|
+
"configureTitle": "AIプラグインを設定しましょう",
|
|
7
|
+
"configureSubtitle": "プロバイダーを設定 → コンテンツを選択 → 振る舞いを調整。",
|
|
8
|
+
"providers": "プロバイダー",
|
|
9
|
+
"saveChanges": "変更を保存",
|
|
10
|
+
"saving": "保存中...",
|
|
11
|
+
"selectCollectionsBody": "AI機能を利用できるコレクションを選択し、オン/オフを切り替えて変更を保存してください。",
|
|
12
|
+
"settingsSaved": "設定を保存しました",
|
|
13
|
+
"failedToSave": "設定の保存に失敗しました",
|
|
14
|
+
"errorSaving": "設定の保存中にエラーが発生しました"
|
|
15
|
+
},
|
|
16
|
+
"actions": {
|
|
17
|
+
"proofread": "校正",
|
|
18
|
+
"rephrase": "言い換え",
|
|
19
|
+
"translate": "翻訳",
|
|
20
|
+
"expand": "拡張",
|
|
21
|
+
"summarize": "要約",
|
|
22
|
+
"simplify": "簡略化",
|
|
23
|
+
"compose": "作成",
|
|
24
|
+
"settings": "設定"
|
|
25
|
+
},
|
|
26
|
+
"actionLoading": {
|
|
27
|
+
"proofreading": "校正中",
|
|
28
|
+
"rephrasing": "言い換え中",
|
|
29
|
+
"translating": "翻訳中",
|
|
30
|
+
"expanding": "拡張中",
|
|
31
|
+
"summarizing": "要約中",
|
|
32
|
+
"simplifying": "簡略化中",
|
|
33
|
+
"composing": "作成中"
|
|
34
|
+
},
|
|
35
|
+
"general": {
|
|
36
|
+
"search": "検索...",
|
|
37
|
+
"queued": "待機中",
|
|
38
|
+
"video": "ビデオ",
|
|
39
|
+
"loading": "読み込み中...",
|
|
40
|
+
"clickToStop": "クリックして停止"
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"localization": {
|
|
44
|
+
"selectedLocales": "Selected locales",
|
|
45
|
+
"selectLocaleToDuplicate": "Select locale to duplicate"
|
|
46
|
+
}
|
|
47
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "./translation-schema.json",
|
|
3
|
+
"ai-plugin": {
|
|
4
|
+
"configDashboard": {
|
|
5
|
+
"loadingConfiguration": "Laster konfigurasjon...",
|
|
6
|
+
"configureTitle": "La oss konfigurere AI-pluginen din",
|
|
7
|
+
"configureSubtitle": "Sett opp leverandøren → Velg innholdet → Finjuster oppførselen.",
|
|
8
|
+
"providers": "Leverandører",
|
|
9
|
+
"saveChanges": "Lagre endringer",
|
|
10
|
+
"saving": "Lagrer...",
|
|
11
|
+
"selectCollectionsBody": "Velg samlingene der KI-funksjoner skal være tilgjengelige, slå dem av/på og lagre endringene dine.",
|
|
12
|
+
"settingsSaved": "Innstillinger lagret",
|
|
13
|
+
"failedToSave": "Kunne ikke lagre innstillingene",
|
|
14
|
+
"errorSaving": "Feil ved lagring av innstillinger"
|
|
15
|
+
},
|
|
16
|
+
"actions": {
|
|
17
|
+
"proofread": "Korrekturlese",
|
|
18
|
+
"rephrase": "Omformulere",
|
|
19
|
+
"translate": "Oversette",
|
|
20
|
+
"expand": "Utvide",
|
|
21
|
+
"summarize": "Oppsummere",
|
|
22
|
+
"simplify": "Forenkle",
|
|
23
|
+
"compose": "Skrive",
|
|
24
|
+
"settings": "Innstillinger"
|
|
25
|
+
},
|
|
26
|
+
"actionLoading": {
|
|
27
|
+
"proofreading": "Korrekturleser",
|
|
28
|
+
"rephrasing": "Omformulerer",
|
|
29
|
+
"translating": "Oversetter",
|
|
30
|
+
"expanding": "Utvider",
|
|
31
|
+
"summarizing": "Oppsummerer",
|
|
32
|
+
"simplifying": "Forenkler",
|
|
33
|
+
"composing": "Skriver"
|
|
34
|
+
},
|
|
35
|
+
"general": {
|
|
36
|
+
"search": "Søk...",
|
|
37
|
+
"queued": "I kø",
|
|
38
|
+
"video": "Video",
|
|
39
|
+
"loading": "Laster...",
|
|
40
|
+
"clickToStop": "Klikk for å stoppe"
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"localization": {
|
|
44
|
+
"selectedLocales": "Selected locales",
|
|
45
|
+
"selectLocaleToDuplicate": "Select locale to duplicate"
|
|
46
|
+
}
|
|
47
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "./translation-schema.json",
|
|
3
|
+
"ai-plugin": {
|
|
4
|
+
"configDashboard": {
|
|
5
|
+
"loadingConfiguration": "Configuratie wordt geladen...",
|
|
6
|
+
"configureTitle": "Laten we je AI-plugin configureren",
|
|
7
|
+
"configureSubtitle": "Stel de provider in → Kies de inhoud → Verfijn het gedrag.",
|
|
8
|
+
"providers": "Providers",
|
|
9
|
+
"saveChanges": "Wijzigingen opslaan",
|
|
10
|
+
"saving": "Opslaan...",
|
|
11
|
+
"selectCollectionsBody": "Selecteer de collecties waar AI-functies beschikbaar moeten zijn, schakel ze in of uit en sla je wijzigingen op.",
|
|
12
|
+
"settingsSaved": "Instellingen succesvol opgeslagen",
|
|
13
|
+
"failedToSave": "Instellingen opslaan mislukt",
|
|
14
|
+
"errorSaving": "Fout bij het opslaan van instellingen"
|
|
15
|
+
},
|
|
16
|
+
"actions": {
|
|
17
|
+
"proofread": "Proeflezen",
|
|
18
|
+
"rephrase": "Herschrijven",
|
|
19
|
+
"translate": "Vertalen",
|
|
20
|
+
"expand": "Uitbreiden",
|
|
21
|
+
"summarize": "Samenvatten",
|
|
22
|
+
"simplify": "Vereenvoudigen",
|
|
23
|
+
"compose": "Opstellen",
|
|
24
|
+
"settings": "Instellingen"
|
|
25
|
+
},
|
|
26
|
+
"actionLoading": {
|
|
27
|
+
"proofreading": "Bezig met proeflezen",
|
|
28
|
+
"rephrasing": "Bezig met herschrijven",
|
|
29
|
+
"translating": "Bezig met vertalen",
|
|
30
|
+
"expanding": "Bezig met uitbreiden",
|
|
31
|
+
"summarizing": "Bezig met samenvatten",
|
|
32
|
+
"simplifying": "Bezig met vereenvoudigen",
|
|
33
|
+
"composing": "Bezig met opstellen"
|
|
34
|
+
},
|
|
35
|
+
"general": {
|
|
36
|
+
"search": "Zoeken...",
|
|
37
|
+
"queued": "In wachtrij",
|
|
38
|
+
"video": "Video",
|
|
39
|
+
"loading": "Laden...",
|
|
40
|
+
"clickToStop": "Klik om te stoppen"
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"localization": {
|
|
44
|
+
"selectedLocales": "Selected locales",
|
|
45
|
+
"selectLocaleToDuplicate": "Select locale to duplicate"
|
|
46
|
+
}
|
|
47
|
+
}
|
|
@@ -1,4 +1,47 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
2
|
+
"$schema": "./translation-schema.json",
|
|
3
|
+
"ai-plugin": {
|
|
4
|
+
"configDashboard": {
|
|
5
|
+
"loadingConfiguration": "Ładowanie konfiguracji...",
|
|
6
|
+
"configureTitle": "Skonfigurujmy Twój plugin AI",
|
|
7
|
+
"configureSubtitle": "Skonfiguruj dostawcę → Wybierz treść → Dopracuj działanie.",
|
|
8
|
+
"providers": "Dostawcy",
|
|
9
|
+
"saveChanges": "Zapisz zmiany",
|
|
10
|
+
"saving": "Zapisywanie...",
|
|
11
|
+
"selectCollectionsBody": "Wybierz kolekcje, w których funkcje AI mają być dostępne, włącz je lub wyłącz i zapisz zmiany.",
|
|
12
|
+
"settingsSaved": "Ustawienia zapisane",
|
|
13
|
+
"failedToSave": "Nie udało się zapisać ustawień",
|
|
14
|
+
"errorSaving": "Błąd podczas zapisywania ustawień"
|
|
15
|
+
},
|
|
16
|
+
"actions": {
|
|
17
|
+
"proofread": "Korekta",
|
|
18
|
+
"rephrase": "Przeformułuj",
|
|
19
|
+
"translate": "Tłumacz",
|
|
20
|
+
"expand": "Rozwiń",
|
|
21
|
+
"summarize": "Podsumuj",
|
|
22
|
+
"simplify": "Uprość",
|
|
23
|
+
"compose": "Napisz",
|
|
24
|
+
"settings": "Ustawienia"
|
|
25
|
+
},
|
|
26
|
+
"actionLoading": {
|
|
27
|
+
"proofreading": "Korygowanie",
|
|
28
|
+
"rephrasing": "Przeformułowywanie",
|
|
29
|
+
"translating": "Tłumaczenie",
|
|
30
|
+
"expanding": "Rozwijanie",
|
|
31
|
+
"summarizing": "Podsumowywanie",
|
|
32
|
+
"simplifying": "Upraszczanie",
|
|
33
|
+
"composing": "Pisanie"
|
|
34
|
+
},
|
|
35
|
+
"general": {
|
|
36
|
+
"search": "Szukaj...",
|
|
37
|
+
"queued": "W kolejce",
|
|
38
|
+
"video": "Wideo",
|
|
39
|
+
"loading": "Ładowanie...",
|
|
40
|
+
"clickToStop": "Kliknij, aby zatrzymać"
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"localization": {
|
|
44
|
+
"selectedLocales": "Selected locales",
|
|
45
|
+
"selectLocaleToDuplicate": "Select locale to duplicate"
|
|
46
|
+
}
|
|
4
47
|
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "./translation-schema.json",
|
|
3
|
+
"ai-plugin": {
|
|
4
|
+
"configDashboard": {
|
|
5
|
+
"loadingConfiguration": "A carregar configuração...",
|
|
6
|
+
"configureTitle": "Vamos configurar o seu plugin de IA",
|
|
7
|
+
"configureSubtitle": "Configure o fornecedor → Escolha o conteúdo → Refine o comportamento.",
|
|
8
|
+
"providers": "Fornecedores",
|
|
9
|
+
"saveChanges": "Guardar alterações",
|
|
10
|
+
"saving": "A guardar...",
|
|
11
|
+
"selectCollectionsBody": "Selecione as coleções onde as funcionalidades de IA devem estar disponíveis, ative ou desative e guarde as suas alterações.",
|
|
12
|
+
"settingsSaved": "Definições guardadas com sucesso",
|
|
13
|
+
"failedToSave": "Falha ao guardar definições",
|
|
14
|
+
"errorSaving": "Erro ao guardar definições"
|
|
15
|
+
},
|
|
16
|
+
"actions": {
|
|
17
|
+
"proofread": "Revisar",
|
|
18
|
+
"rephrase": "Reformular",
|
|
19
|
+
"translate": "Traduzir",
|
|
20
|
+
"expand": "Expandir",
|
|
21
|
+
"summarize": "Resumir",
|
|
22
|
+
"simplify": "Simplificar",
|
|
23
|
+
"compose": "Redigir",
|
|
24
|
+
"settings": "Definições"
|
|
25
|
+
},
|
|
26
|
+
"actionLoading": {
|
|
27
|
+
"proofreading": "A rever",
|
|
28
|
+
"rephrasing": "A reformular",
|
|
29
|
+
"translating": "A traduzir",
|
|
30
|
+
"expanding": "A expandir",
|
|
31
|
+
"summarizing": "A resumir",
|
|
32
|
+
"simplifying": "A simplificar",
|
|
33
|
+
"composing": "A redigir"
|
|
34
|
+
},
|
|
35
|
+
"general": {
|
|
36
|
+
"search": "Pesquisar...",
|
|
37
|
+
"queued": "Em fila",
|
|
38
|
+
"video": "Vídeo",
|
|
39
|
+
"loading": "A carregar...",
|
|
40
|
+
"clickToStop": "Clique para parar"
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"localization": {
|
|
44
|
+
"selectedLocales": "Selected locales",
|
|
45
|
+
"selectLocaleToDuplicate": "Select locale to duplicate"
|
|
46
|
+
}
|
|
47
|
+
}
|
|
@@ -1,4 +1,47 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
2
|
+
"$schema": "./translation-schema.json",
|
|
3
|
+
"ai-plugin": {
|
|
4
|
+
"configDashboard": {
|
|
5
|
+
"loadingConfiguration": "Загрузка конфигурации...",
|
|
6
|
+
"configureTitle": "Давайте настроим ваш AI-плагин",
|
|
7
|
+
"configureSubtitle": "Настройте провайдера → Выберите контент → Уточните поведение.",
|
|
8
|
+
"providers": "Провайдеры",
|
|
9
|
+
"saveChanges": "Сохранить изменения",
|
|
10
|
+
"saving": "Сохранение...",
|
|
11
|
+
"selectCollectionsBody": "Выберите коллекции, где должны быть доступны функции AI, включите или выключите их и сохраните изменения.",
|
|
12
|
+
"settingsSaved": "Настройки успешно сохранены",
|
|
13
|
+
"failedToSave": "Не удалось сохранить настройки",
|
|
14
|
+
"errorSaving": "Ошибка при сохранении настроек"
|
|
15
|
+
},
|
|
16
|
+
"actions": {
|
|
17
|
+
"proofread": "Корректура",
|
|
18
|
+
"rephrase": "Перефразировать",
|
|
19
|
+
"translate": "Перевести",
|
|
20
|
+
"expand": "Расширить",
|
|
21
|
+
"summarize": "Суммировать",
|
|
22
|
+
"simplify": "Упростить",
|
|
23
|
+
"compose": "Составить",
|
|
24
|
+
"settings": "Настройки"
|
|
25
|
+
},
|
|
26
|
+
"actionLoading": {
|
|
27
|
+
"proofreading": "Корректура",
|
|
28
|
+
"rephrasing": "Перефразирование",
|
|
29
|
+
"translating": "Перевод",
|
|
30
|
+
"expanding": "Расширение",
|
|
31
|
+
"summarizing": "Суммирование",
|
|
32
|
+
"simplifying": "Упрощение",
|
|
33
|
+
"composing": "Составление"
|
|
34
|
+
},
|
|
35
|
+
"general": {
|
|
36
|
+
"search": "Поиск...",
|
|
37
|
+
"queued": "В очереди",
|
|
38
|
+
"video": "Видео",
|
|
39
|
+
"loading": "Загрузка...",
|
|
40
|
+
"clickToStop": "Нажмите, чтобы остановить"
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"localization": {
|
|
44
|
+
"selectedLocales": "Selected locales",
|
|
45
|
+
"selectLocaleToDuplicate": "Select locale to duplicate"
|
|
46
|
+
}
|
|
4
47
|
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "./translation-schema.json",
|
|
3
|
+
"ai-plugin": {
|
|
4
|
+
"configDashboard": {
|
|
5
|
+
"loadingConfiguration": "กำลังโหลดการกำหนดค่า...",
|
|
6
|
+
"configureTitle": "มาเริ่มตั้งค่าปลั๊กอิน AI ของคุณกัน",
|
|
7
|
+
"configureSubtitle": "ตั้งค่าผู้ให้บริการ → เลือกเนื้อหา → ปรับแต่งพฤติกรรม",
|
|
8
|
+
"providers": "ผู้ให้บริการ",
|
|
9
|
+
"saveChanges": "บันทึกการเปลี่ยนแปลง",
|
|
10
|
+
"saving": "กำลังบันทึก...",
|
|
11
|
+
"selectCollectionsBody": "เลือกคอลเลกชันที่ต้องการให้ฟีเจอร์ AI ใช้งานได้ เปิด/ปิด แล้วบันทึกการเปลี่ยนแปลงของคุณ",
|
|
12
|
+
"settingsSaved": "บันทึกการตั้งค่าเรียบร้อยแล้ว",
|
|
13
|
+
"failedToSave": "บันทึกการตั้งค่าไม่สำเร็จ",
|
|
14
|
+
"errorSaving": "เกิดข้อผิดพลาดขณะบันทึกการตั้งค่า"
|
|
15
|
+
},
|
|
16
|
+
"actions": {
|
|
17
|
+
"proofread": "ตรวจแก้",
|
|
18
|
+
"rephrase": "ถ้อยคำใหม่",
|
|
19
|
+
"translate": "แปล",
|
|
20
|
+
"expand": "ขยายความ",
|
|
21
|
+
"summarize": "สรุป",
|
|
22
|
+
"simplify": "ทำให้ง่าย",
|
|
23
|
+
"compose": "เขียน",
|
|
24
|
+
"settings": "การตั้งค่า"
|
|
25
|
+
},
|
|
26
|
+
"actionLoading": {
|
|
27
|
+
"proofreading": "กำลังตรวจแก้",
|
|
28
|
+
"rephrasing": "กำลังเขียนใหม่",
|
|
29
|
+
"translating": "กำลังแปล",
|
|
30
|
+
"expanding": "กำลังขยายความ",
|
|
31
|
+
"summarizing": "กำลังสรุป",
|
|
32
|
+
"simplifying": "กำลังทำให้ง่าย",
|
|
33
|
+
"composing": "กำลังเขียน"
|
|
34
|
+
},
|
|
35
|
+
"general": {
|
|
36
|
+
"search": "ค้นหา...",
|
|
37
|
+
"queued": "อยู่ในคิว",
|
|
38
|
+
"video": "วิดีโอ",
|
|
39
|
+
"loading": "กำลังโหลด...",
|
|
40
|
+
"clickToStop": "คลิกเพื่อหยุด"
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"localization": {
|
|
44
|
+
"selectedLocales": "Selected locales",
|
|
45
|
+
"selectLocaleToDuplicate": "Select locale to duplicate"
|
|
46
|
+
}
|
|
47
|
+
}
|