@n8n/i18n 2.11.2 → 2.12.0
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/index.cjs +40 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +38 -0
- package/dist/index.d.mts +38 -0
- package/dist/index.mjs +40 -2
- package/dist/index.mjs.map +1 -1
- package/dist/types2.d.cts +38 -0
- package/dist/types2.d.mts +38 -0
- package/package.json +6 -6
package/dist/index.cjs
CHANGED
|
@@ -420,7 +420,7 @@ var en_default = {
|
|
|
420
420
|
"chatHub.agent.newAgent": "New Agent",
|
|
421
421
|
"chatHub.agent.unavailableAgent": "Unavailable agent",
|
|
422
422
|
"chatHub.agent.configureCredentials": "Configure credentials",
|
|
423
|
-
"chatHub.agent.addModel": "
|
|
423
|
+
"chatHub.agent.addModel": "Choose model by ID",
|
|
424
424
|
"chatHub.agent.credentialsMissing": "Credentials missing",
|
|
425
425
|
"chatHub.agent.card.menu.edit": "Edit",
|
|
426
426
|
"chatHub.agent.card.menu.delete": "Delete",
|
|
@@ -435,7 +435,7 @@ var en_default = {
|
|
|
435
435
|
"chatHub.agent.editor.description.label": "Description",
|
|
436
436
|
"chatHub.agent.editor.description.placeholder": "Enter agent description (optional)",
|
|
437
437
|
"chatHub.agent.editor.systemPrompt.label": "System Prompt",
|
|
438
|
-
"chatHub.agent.editor.systemPrompt.placeholder": "Enter system prompt",
|
|
438
|
+
"chatHub.agent.editor.systemPrompt.placeholder": "Enter system prompt (optional)",
|
|
439
439
|
"chatHub.agent.editor.model.label": "Model",
|
|
440
440
|
"chatHub.agent.editor.tools.label": "Tools",
|
|
441
441
|
"chatHub.agent.editor.loading": "Loading agent...",
|
|
@@ -449,11 +449,24 @@ var en_default = {
|
|
|
449
449
|
"chatHub.agent.editor.delete.confirm.button": "Delete",
|
|
450
450
|
"chatHub.agent.editor.delete.cancel.button": "Cancel",
|
|
451
451
|
"chatHub.agent.editor.error.load": "Failed to load agent",
|
|
452
|
+
"chatHub.agent.editor.files.label": "Files",
|
|
453
|
+
"chatHub.agent.editor.files.indexed": "Available for search",
|
|
454
|
+
"chatHub.agent.editor.files.embeddingMismatch.tooltip": "This file was indexed with {fileProvider} embedding model. It may not be searchable because the current embedding model is {currentProvider}.",
|
|
455
|
+
"chatHub.agent.editor.files.semanticSearchNotReady.tooltip": "Semantic search is not configured. This file may not be searchable.",
|
|
452
456
|
"chatHub.agent.editor.error.save": "Failed to save agent",
|
|
453
457
|
"chatHub.agent.editor.error.delete": "Failed to delete agent",
|
|
454
458
|
"chatHub.agent.editor.success.create": "Agent created successfully",
|
|
455
459
|
"chatHub.agent.editor.success.update": "Agent updated successfully",
|
|
456
460
|
"chatHub.agent.editor.success.delete": "Agent deleted successfully",
|
|
461
|
+
"chatHub.agent.editor.dropOverlay.addFile": "Add file to agent",
|
|
462
|
+
"chatHub.agent.editor.dropOverlay.unsupportedFileType": "File type not supported. Only PDF files are accepted.",
|
|
463
|
+
"chatHub.agent.editor.semanticSearch.notReady": "To upload PDF documents, contact your instance owner to configure semantic search in {settingsLink}.",
|
|
464
|
+
"chatHub.agent.editor.semanticSearch.notReady.canConfigure": "To upload PDF documents, configure semantic search in {settingsLink}.",
|
|
465
|
+
"chatHub.agent.editor.semanticSearch.settingsLink": "chat settings",
|
|
466
|
+
"chatHub.agent.editor.suggestedPrompts.label": "Suggestions",
|
|
467
|
+
"chatHub.agent.editor.suggestedPrompts.tooltip": "These are shown as clickable prompts when starting a new chat with this agent.",
|
|
468
|
+
"chatHub.agent.editor.suggestedPrompts.placeholder": "Enter a suggested prompt",
|
|
469
|
+
"chatHub.agent.editor.suggestedPrompts.addButton": "Add Prompt",
|
|
457
470
|
"chatHub.agents.loadError": "Failed to load agent",
|
|
458
471
|
"chatHub.agents.delete.confirm.message": "Are you sure you want to delete this agent?",
|
|
459
472
|
"chatHub.agents.delete.confirm.title": "Delete agent",
|
|
@@ -2335,6 +2348,9 @@ var en_default = {
|
|
|
2335
2348
|
"prompts.npsSurvey.thanks": "Thanks for your feedback",
|
|
2336
2349
|
"projectRoles.manageRoles.paywall.title": "Available on the Enterprise plan",
|
|
2337
2350
|
"projectRoles.manageRoles.paywall.text": "Create custom roles with granular permissions to control exactly what team members can do inside projects.",
|
|
2351
|
+
"projectRoles.paywall.title": "Upgrade to Enterprise",
|
|
2352
|
+
"projectRoles.paywall.description": "Upgrade to Enterprise to unlock project roles. It will allow to create custom, granular permissions that let you fine-tune access per project.",
|
|
2353
|
+
"projectRoles.paywall.viewPlans": "View plans",
|
|
2338
2354
|
"projectRoles.project:read": "View",
|
|
2339
2355
|
"projectRoles.project:read.tooltip": "View project name, icon, description, and navigate within the project",
|
|
2340
2356
|
"projectRoles.project:update": "Edit",
|
|
@@ -2742,6 +2758,26 @@ var en_default = {
|
|
|
2742
2758
|
"settings.chatHub.providers.table.models.allModels": "All models",
|
|
2743
2759
|
"settings.chatHub.providers.table.models.noModels": "No models",
|
|
2744
2760
|
"settings.chatHub.providers.table.models.more": " and {count} more",
|
|
2761
|
+
"settings.chatHub.semanticSearch.title": "Semantic Search",
|
|
2762
|
+
"settings.chatHub.semanticSearch.save.success": "Semantic search settings updated",
|
|
2763
|
+
"settings.chatHub.vectorStore.title": "Vector Store",
|
|
2764
|
+
"settings.chatHub.vectorStore.description": "Database used to store and retrieve document embeddings for agent knowledge.",
|
|
2765
|
+
"settings.chatHub.vectorStore.notShared": "Share the credential globally to ensure all users can use file knowledge in their personal agents.",
|
|
2766
|
+
"settings.chatHub.vectorStore.missing": "Vector store credential is not set up yet. Select a provider and credential to enable file knowledge for personal agents.",
|
|
2767
|
+
"settings.chatHub.vectorStore.save.error": "Error saving vector store credential",
|
|
2768
|
+
"settings.chatHub.vectorStore.changeProvider.confirm.title": "Change Vector Store Provider",
|
|
2769
|
+
"settings.chatHub.vectorStore.changeProvider.confirm.message": "Changing the vector store provider will make existing indexed documents unsearchable. Users will need to re-upload files to agents that use file knowledge.",
|
|
2770
|
+
"settings.chatHub.vectorStore.changeProvider.confirm.button": "Change Provider",
|
|
2771
|
+
"settings.chatHub.embeddingModel.title": "Embedding Model",
|
|
2772
|
+
"settings.chatHub.embeddingModel.description": "AI model used to convert documents and queries into vector embeddings.",
|
|
2773
|
+
"settings.chatHub.embeddingModel.save.error": "Error saving embedding model credential",
|
|
2774
|
+
"settings.chatHub.embeddingModel.changeProvider.confirm.title": "Change Embedding Provider",
|
|
2775
|
+
"settings.chatHub.embeddingModel.changeProvider.confirm.message": "Changing the embedding provider will make existing indexed documents unsearchable. Users will need to re-upload files to agents that use file knowledge.",
|
|
2776
|
+
"settings.chatHub.embeddingModel.changeProvider.confirm.button": "Change Provider",
|
|
2777
|
+
"settings.chatHub.embeddingModel.missing": "Embedding model credential is not set up yet. Select a provider and credential to enable file knowledge for personal agents.",
|
|
2778
|
+
"settings.chatHub.embeddingModel.notShared": "Share the credential globally to ensure all users can use file knowledge in their personal agents.",
|
|
2779
|
+
"settings.chatHub.label.provider": "Provider",
|
|
2780
|
+
"settings.chatHub.label.credential": "Credential",
|
|
2745
2781
|
"settings.goBack": "Go back",
|
|
2746
2782
|
"settings.personal": "Personal",
|
|
2747
2783
|
"settings.personal.basicInformation": "Basic Information",
|
|
@@ -3058,6 +3094,8 @@ var en_default = {
|
|
|
3058
3094
|
"settings.secretsProviderConnections.modal.providerType": "External secrets provider",
|
|
3059
3095
|
"settings.secretsProviderConnections.modal.providerType.placeholder": "External secrets provider",
|
|
3060
3096
|
"settings.secretsProviderConnections.modal.saving": "Saving...",
|
|
3097
|
+
"settings.secretsProviderConnections.modal.readOnly.notice.admin": "This vault is managed at the instance level. To make changes, go to External Secrets in Settings.",
|
|
3098
|
+
"settings.secretsProviderConnections.modal.readOnly.notice.noPermission": "This vault is managed at the instance level. Contact your instance admin to make changes.",
|
|
3061
3099
|
"settings.secretsProviderConnections.modal.unsavedChanges.title": "Close without saving?",
|
|
3062
3100
|
"settings.secretsProviderConnections.modal.unsavedChanges.text": "You have unsaved changes. Are you sure you want to close?",
|
|
3063
3101
|
"settings.secretsProviderConnections.modal.testConnection.success.serviceEnabled": "Service enabled, {count} secrets available on {providerName}.",
|