@blokkli/editor 2.0.0-alpha.31 → 2.0.0-alpha.33
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/global/constants/index.d.ts +1 -0
- package/dist/global/constants/index.js +1 -0
- package/dist/global/types/blockOptions.d.ts +16 -0
- package/dist/global/types/features.d.ts +4 -0
- package/dist/module.d.mts +1 -24
- package/dist/module.json +1 -1
- package/dist/module.mjs +453 -10828
- package/dist/modules/agent/index.d.mts +64 -0
- package/dist/modules/agent/index.mjs +407 -0
- package/dist/modules/agent/runtime/app/composables/agentProvider.d.ts +55 -0
- package/dist/modules/agent/runtime/app/composables/agentProvider.js +875 -0
- package/dist/modules/agent/runtime/app/composables/defineBlokkliAgentPrompt.d.ts +32 -0
- package/dist/modules/agent/runtime/app/composables/defineBlokkliAgentPrompt.js +6 -0
- package/dist/modules/agent/runtime/app/composables/defineBlokkliAgentTool.d.ts +65 -0
- package/dist/modules/agent/runtime/app/composables/defineBlokkliAgentTool.js +6 -0
- package/dist/modules/agent/runtime/app/composables/index.d.ts +4 -0
- package/dist/modules/agent/runtime/app/composables/index.js +2 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Attachment/index.d.vue.ts +12 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Attachment/index.vue +62 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Attachment/index.vue.d.ts +12 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/Assistant/index.d.vue.ts +9 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/Assistant/index.vue +38 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/Assistant/index.vue.d.ts +9 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/Error/index.d.vue.ts +14 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/Error/index.vue +68 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/Error/index.vue.d.ts +14 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/ServerTool/index.d.vue.ts +10 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/ServerTool/index.vue +72 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/ServerTool/index.vue.d.ts +10 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/Tool/index.d.vue.ts +13 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/Tool/index.vue +37 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/Tool/index.vue.d.ts +13 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/Unknown/index.d.vue.ts +8 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/Unknown/index.vue +17 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/Unknown/index.vue.d.ts +8 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/User/index.d.vue.ts +11 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/User/index.vue +29 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/User/index.vue.d.ts +11 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/index.d.vue.ts +12 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/index.vue +30 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/index.vue.d.ts +12 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Thinking/index.d.vue.ts +3 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Thinking/index.vue +14 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Thinking/index.vue.d.ts +3 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/index.d.vue.ts +13 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/index.vue +46 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/index.vue.d.ts +13 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/ConversationList/index.d.vue.ts +15 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/ConversationList/index.vue +50 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/ConversationList/index.vue.d.ts +15 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/DebugGallery/index.d.vue.ts +3 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/DebugGallery/index.vue +160 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/DebugGallery/index.vue.d.ts +3 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Input/Actions/DropdownItem/index.d.vue.ts +12 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Input/Actions/DropdownItem/index.vue +15 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Input/Actions/DropdownItem/index.vue.d.ts +12 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Input/Actions/TokenUsage/index.d.vue.ts +7 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Input/Actions/TokenUsage/index.vue +67 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Input/Actions/TokenUsage/index.vue.d.ts +7 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Input/Actions/index.d.vue.ts +23 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Input/Actions/index.vue +109 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Input/Actions/index.vue.d.ts +23 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Input/index.d.vue.ts +45 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Input/index.vue +120 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Input/index.vue.d.ts +45 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/PendingMutation/index.d.vue.ts +15 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/PendingMutation/index.vue +47 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/PendingMutation/index.vue.d.ts +15 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Plan/index.d.vue.ts +14 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Plan/index.vue +55 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Plan/index.vue.d.ts +14 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/ToolCard/index.d.vue.ts +25 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/ToolCard/index.vue +36 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/ToolCard/index.vue.d.ts +25 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Welcome/de.md +19 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Welcome/en.md +18 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Welcome/index.d.vue.ts +10 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Welcome/index.vue +44 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Welcome/index.vue.d.ts +10 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/index.d.vue.ts +58 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/index.vue +274 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/index.vue.d.ts +58 -0
- package/dist/modules/agent/runtime/app/features/agent/index.d.vue.ts +3 -0
- package/dist/modules/agent/runtime/app/features/agent/index.vue +162 -0
- package/dist/modules/agent/runtime/app/features/agent/index.vue.d.ts +3 -0
- package/dist/modules/agent/runtime/app/features/agent/types.d.ts +58 -0
- package/dist/modules/agent/runtime/app/features/agent/types.js +0 -0
- package/dist/modules/agent/runtime/app/helpers/index.d.ts +55 -0
- package/dist/modules/agent/runtime/app/helpers/index.js +88 -0
- package/dist/modules/agent/runtime/app/helpers/pageStructure.d.ts +5 -0
- package/dist/modules/agent/runtime/app/helpers/pageStructure.js +106 -0
- package/dist/modules/agent/runtime/app/helpers/validation.d.ts +35 -0
- package/dist/modules/agent/runtime/app/helpers/validation.js +77 -0
- package/dist/modules/agent/runtime/app/tools/add_content_search_paragraph/index.d.ts +2 -0
- package/dist/modules/agent/runtime/app/tools/add_content_search_paragraph/index.js +69 -0
- package/dist/modules/agent/runtime/app/tools/add_fragment/index.d.ts +2 -0
- package/dist/modules/agent/runtime/app/tools/add_fragment/index.js +83 -0
- package/dist/modules/agent/runtime/app/tools/add_media_paragraph/index.d.ts +2 -0
- package/dist/modules/agent/runtime/app/tools/add_media_paragraph/index.js +62 -0
- package/dist/modules/agent/runtime/app/tools/add_paragraphs/index.d.ts +2 -0
- package/dist/modules/agent/runtime/app/tools/add_paragraphs/index.js +289 -0
- package/dist/modules/agent/runtime/app/tools/add_reusable_paragraph/index.d.ts +2 -0
- package/dist/modules/agent/runtime/app/tools/add_reusable_paragraph/index.js +76 -0
- package/dist/modules/agent/runtime/app/tools/add_template/index.d.ts +2 -0
- package/dist/modules/agent/runtime/app/tools/add_template/index.js +58 -0
- package/dist/modules/agent/runtime/app/tools/ask_question/Component.d.vue.ts +19 -0
- package/dist/modules/agent/runtime/app/tools/ask_question/Component.vue +113 -0
- package/dist/modules/agent/runtime/app/tools/ask_question/Component.vue.d.ts +19 -0
- package/dist/modules/agent/runtime/app/tools/ask_question/index.d.ts +17 -0
- package/dist/modules/agent/runtime/app/tools/ask_question/index.js +54 -0
- package/dist/modules/agent/runtime/app/tools/batch_rewrite_text/Component.d.vue.ts +29 -0
- package/dist/modules/agent/runtime/app/tools/batch_rewrite_text/Component.vue +190 -0
- package/dist/modules/agent/runtime/app/tools/batch_rewrite_text/Component.vue.d.ts +29 -0
- package/dist/modules/agent/runtime/app/tools/batch_rewrite_text/Item.d.vue.ts +20 -0
- package/dist/modules/agent/runtime/app/tools/batch_rewrite_text/Item.vue +90 -0
- package/dist/modules/agent/runtime/app/tools/batch_rewrite_text/Item.vue.d.ts +20 -0
- package/dist/modules/agent/runtime/app/tools/batch_rewrite_text/index.d.ts +18 -0
- package/dist/modules/agent/runtime/app/tools/batch_rewrite_text/index.js +55 -0
- package/dist/modules/agent/runtime/app/tools/delete_paragraphs/index.d.ts +2 -0
- package/dist/modules/agent/runtime/app/tools/delete_paragraphs/index.js +47 -0
- package/dist/modules/agent/runtime/app/tools/detach_reusable_paragraph/index.d.ts +2 -0
- package/dist/modules/agent/runtime/app/tools/detach_reusable_paragraph/index.js +47 -0
- package/dist/modules/agent/runtime/app/tools/duplicate_paragraphs/index.d.ts +2 -0
- package/dist/modules/agent/runtime/app/tools/duplicate_paragraphs/index.js +144 -0
- package/dist/modules/agent/runtime/app/tools/find_paragraphs/index.d.ts +2 -0
- package/dist/modules/agent/runtime/app/tools/find_paragraphs/index.js +180 -0
- package/dist/modules/agent/runtime/app/tools/get_all_fragments/index.d.ts +2 -0
- package/dist/modules/agent/runtime/app/tools/get_all_fragments/index.js +33 -0
- package/dist/modules/agent/runtime/app/tools/get_all_page_content/index.d.ts +2 -0
- package/dist/modules/agent/runtime/app/tools/get_all_page_content/index.js +93 -0
- package/dist/modules/agent/runtime/app/tools/get_available_bundles/index.d.ts +2 -0
- package/dist/modules/agent/runtime/app/tools/get_available_bundles/index.js +104 -0
- package/dist/modules/agent/runtime/app/tools/get_child_paragraphs/index.d.ts +2 -0
- package/dist/modules/agent/runtime/app/tools/get_child_paragraphs/index.js +108 -0
- package/dist/modules/agent/runtime/app/tools/get_content_fields/index.d.ts +2 -0
- package/dist/modules/agent/runtime/app/tools/get_content_fields/index.js +192 -0
- package/dist/modules/agent/runtime/app/tools/get_mutation_history/index.d.ts +2 -0
- package/dist/modules/agent/runtime/app/tools/get_mutation_history/index.js +102 -0
- package/dist/modules/agent/runtime/app/tools/get_page_structure/index.d.ts +2 -0
- package/dist/modules/agent/runtime/app/tools/get_page_structure/index.js +113 -0
- package/dist/modules/agent/runtime/app/tools/get_paragraph_context/index.d.ts +2 -0
- package/dist/modules/agent/runtime/app/tools/get_paragraph_context/index.js +275 -0
- package/dist/modules/agent/runtime/app/tools/get_paragraph_options/index.d.ts +2 -0
- package/dist/modules/agent/runtime/app/tools/get_paragraph_options/index.js +63 -0
- package/dist/modules/agent/runtime/app/tools/get_paragraphs_in_viewport/index.d.ts +2 -0
- package/dist/modules/agent/runtime/app/tools/get_paragraphs_in_viewport/index.js +180 -0
- package/dist/modules/agent/runtime/app/tools/get_selected_paragraphs/index.d.ts +2 -0
- package/dist/modules/agent/runtime/app/tools/get_selected_paragraphs/index.js +46 -0
- package/dist/modules/agent/runtime/app/tools/go_to_history_index/index.d.ts +2 -0
- package/dist/modules/agent/runtime/app/tools/go_to_history_index/index.js +54 -0
- package/dist/modules/agent/runtime/app/tools/move_paragraphs/index.d.ts +2 -0
- package/dist/modules/agent/runtime/app/tools/move_paragraphs/index.js +69 -0
- package/dist/modules/agent/runtime/app/tools/rearrange_paragraphs/index.d.ts +2 -0
- package/dist/modules/agent/runtime/app/tools/rearrange_paragraphs/index.js +95 -0
- package/dist/modules/agent/runtime/app/tools/replace_content_search_item/index.d.ts +2 -0
- package/dist/modules/agent/runtime/app/tools/replace_content_search_item/index.js +80 -0
- package/dist/modules/agent/runtime/app/tools/replace_media_field/index.d.ts +2 -0
- package/dist/modules/agent/runtime/app/tools/replace_media_field/index.js +85 -0
- package/dist/modules/agent/runtime/app/tools/schemas.d.ts +128 -0
- package/dist/modules/agent/runtime/app/tools/schemas.js +242 -0
- package/dist/modules/agent/runtime/app/tools/search_content/index.d.ts +2 -0
- package/dist/modules/agent/runtime/app/tools/search_content/index.js +65 -0
- package/dist/modules/agent/runtime/app/tools/search_media/index.d.ts +14 -0
- package/dist/modules/agent/runtime/app/tools/search_media/index.js +60 -0
- package/dist/modules/agent/runtime/app/tools/search_reusable_paragraphs/index.d.ts +2 -0
- package/dist/modules/agent/runtime/app/tools/search_reusable_paragraphs/index.js +75 -0
- package/dist/modules/agent/runtime/app/tools/search_templates/index.d.ts +2 -0
- package/dist/modules/agent/runtime/app/tools/search_templates/index.js +51 -0
- package/dist/modules/agent/runtime/app/tools/search_text/index.d.ts +2 -0
- package/dist/modules/agent/runtime/app/tools/search_text/index.js +114 -0
- package/dist/modules/agent/runtime/app/tools/select_media/Component.d.vue.ts +29 -0
- package/dist/modules/agent/runtime/app/tools/select_media/Component.vue +70 -0
- package/dist/modules/agent/runtime/app/tools/select_media/Component.vue.d.ts +29 -0
- package/dist/modules/agent/runtime/app/tools/select_media/index.d.ts +30 -0
- package/dist/modules/agent/runtime/app/tools/select_media/index.js +74 -0
- package/dist/modules/agent/runtime/app/tools/set_paragraph_options/index.d.ts +2 -0
- package/dist/modules/agent/runtime/app/tools/set_paragraph_options/index.js +109 -0
- package/dist/modules/agent/runtime/app/tools/swap_paragraphs/index.d.ts +2 -0
- package/dist/modules/agent/runtime/app/tools/swap_paragraphs/index.js +74 -0
- package/dist/modules/agent/runtime/app/tools/web_fetch/index.d.ts +2 -0
- package/dist/modules/agent/runtime/app/tools/web_fetch/index.js +51 -0
- package/dist/modules/agent/runtime/app/types/index.d.ts +440 -0
- package/dist/modules/agent/runtime/app/types/index.js +51 -0
- package/dist/modules/agent/runtime/server/Session.d.ts +94 -0
- package/dist/modules/agent/runtime/server/Session.js +734 -0
- package/dist/modules/agent/runtime/server/SessionManager.d.ts +21 -0
- package/dist/modules/agent/runtime/server/SessionManager.js +80 -0
- package/dist/modules/agent/runtime/server/agent.d.ts +2 -0
- package/dist/modules/agent/runtime/server/agent.js +148 -0
- package/dist/modules/agent/runtime/server/agentPrompt.d.ts +22 -0
- package/dist/modules/agent/runtime/server/agentPrompt.js +53 -0
- package/dist/modules/agent/runtime/server/default-skills/adding-new-paragraphs.d.ts +2 -0
- package/dist/modules/agent/runtime/server/default-skills/adding-new-paragraphs.js +21 -0
- package/dist/modules/agent/runtime/server/default-skills/pageReview.d.ts +2 -0
- package/dist/modules/agent/runtime/server/default-skills/pageReview.js +28 -0
- package/dist/modules/agent/runtime/server/default-skills/reusable-paragraphs.d.ts +2 -0
- package/dist/modules/agent/runtime/server/default-skills/reusable-paragraphs.js +21 -0
- package/dist/modules/agent/runtime/server/default-skills/rewriteAndTranslate.d.ts +2 -0
- package/dist/modules/agent/runtime/server/default-skills/rewriteAndTranslate.js +14 -0
- package/dist/modules/agent/runtime/server/default-system-prompts/architecture.d.ts +2 -0
- package/dist/modules/agent/runtime/server/default-system-prompts/architecture.js +39 -0
- package/dist/modules/agent/runtime/server/default-system-prompts/available-skills.d.ts +2 -0
- package/dist/modules/agent/runtime/server/default-system-prompts/available-skills.js +18 -0
- package/dist/modules/agent/runtime/server/default-system-prompts/available-tools.d.ts +2 -0
- package/dist/modules/agent/runtime/server/default-system-prompts/available-tools.js +18 -0
- package/dist/modules/agent/runtime/server/default-system-prompts/fragments.d.ts +2 -0
- package/dist/modules/agent/runtime/server/default-system-prompts/fragments.js +19 -0
- package/dist/modules/agent/runtime/server/default-system-prompts/important-rules.d.ts +2 -0
- package/dist/modules/agent/runtime/server/default-system-prompts/important-rules.js +22 -0
- package/dist/modules/agent/runtime/server/default-system-prompts/interaction.d.ts +2 -0
- package/dist/modules/agent/runtime/server/default-system-prompts/interaction.js +20 -0
- package/dist/modules/agent/runtime/server/default-system-prompts/introduction.d.ts +2 -0
- package/dist/modules/agent/runtime/server/default-system-prompts/introduction.js +14 -0
- package/dist/modules/agent/runtime/server/default-system-prompts/page-context.d.ts +2 -0
- package/dist/modules/agent/runtime/server/default-system-prompts/page-context.js +60 -0
- package/dist/modules/agent/runtime/server/default-system-prompts/paragraph-bundles.d.ts +2 -0
- package/dist/modules/agent/runtime/server/default-system-prompts/paragraph-bundles.js +37 -0
- package/dist/modules/agent/runtime/server/default-system-prompts/plan-mode.d.ts +2 -0
- package/dist/modules/agent/runtime/server/default-system-prompts/plan-mode.js +36 -0
- package/dist/modules/agent/runtime/server/default-system-prompts/security.d.ts +2 -0
- package/dist/modules/agent/runtime/server/default-system-prompts/security.js +27 -0
- package/dist/modules/agent/runtime/server/default-system-prompts/workflow.d.ts +2 -0
- package/dist/modules/agent/runtime/server/default-system-prompts/workflow.js +22 -0
- package/dist/modules/agent/runtime/server/fetch.d.ts +2 -0
- package/dist/modules/agent/runtime/server/fetch.js +127 -0
- package/dist/modules/agent/runtime/server/helpers.d.ts +77 -0
- package/dist/modules/agent/runtime/server/helpers.js +352 -0
- package/dist/modules/agent/runtime/server/providers/anthropic.d.ts +12 -0
- package/dist/modules/agent/runtime/server/providers/anthropic.js +128 -0
- package/dist/modules/agent/runtime/server/providers/openai.d.ts +12 -0
- package/dist/modules/agent/runtime/server/providers/openai.js +165 -0
- package/dist/modules/agent/runtime/server/providers/types.d.ts +74 -0
- package/dist/modules/agent/runtime/server/providers/types.js +0 -0
- package/dist/modules/agent/runtime/server/server-tools/complete_plan_step/index.d.ts +3 -0
- package/dist/modules/agent/runtime/server/server-tools/complete_plan_step/index.js +79 -0
- package/dist/modules/agent/runtime/server/server-tools/create_plan/index.d.ts +9 -0
- package/dist/modules/agent/runtime/server/server-tools/create_plan/index.js +86 -0
- package/dist/modules/agent/runtime/server/server-tools/index.d.ts +86 -0
- package/dist/modules/agent/runtime/server/server-tools/index.js +30 -0
- package/dist/modules/agent/runtime/server/server-tools/load_skill/index.d.ts +7 -0
- package/dist/modules/agent/runtime/server/server-tools/load_skill/index.js +58 -0
- package/dist/modules/agent/runtime/server/server-tools/load_tools/index.d.ts +7 -0
- package/dist/modules/agent/runtime/server/server-tools/load_tools/index.js +43 -0
- package/dist/modules/agent/runtime/server/skills/defineBlokkliAgentSkill.d.ts +23 -0
- package/dist/modules/agent/runtime/server/skills/defineBlokkliAgentSkill.js +3 -0
- package/dist/modules/agent/runtime/server/skills/index.d.ts +2 -0
- package/dist/modules/agent/runtime/server/skills/index.js +1 -0
- package/dist/modules/agent/runtime/server/skills/types.d.ts +45 -0
- package/dist/modules/agent/runtime/server/skills/types.js +0 -0
- package/dist/modules/agent/runtime/server/system-prompts/defineBlokkliAgentSystemPrompt.d.ts +21 -0
- package/dist/modules/agent/runtime/server/system-prompts/defineBlokkliAgentSystemPrompt.js +3 -0
- package/dist/modules/agent/runtime/server/system-prompts/helpers.d.ts +20 -0
- package/dist/modules/agent/runtime/server/system-prompts/helpers.js +41 -0
- package/dist/modules/agent/runtime/server/system-prompts/index.d.ts +2 -0
- package/dist/modules/agent/runtime/server/system-prompts/index.js +1 -0
- package/dist/modules/agent/runtime/server/system-prompts/types.d.ts +49 -0
- package/dist/modules/agent/runtime/server/system-prompts/types.js +0 -0
- package/dist/modules/agent/runtime/shared/placeholders.d.ts +4 -0
- package/dist/modules/agent/runtime/shared/placeholders.js +1 -0
- package/dist/modules/agent/runtime/shared/types.d.ts +426 -0
- package/dist/modules/agent/runtime/shared/types.js +147 -0
- package/dist/modules/drupal/graphql/base/query.pbConfig.graphql +27 -2
- package/dist/modules/drupal/graphql/features/agent.graphql +69 -0
- package/dist/modules/drupal/graphql/features/search.graphql +5 -0
- package/dist/modules/drupal/graphql/features/templates.graphql +36 -2
- package/dist/modules/drupal/graphql/mutations/add_multiple.graphql +25 -0
- package/dist/modules/drupal/graphql/mutations/bulk_update_field_values.graphql +15 -0
- package/dist/modules/drupal/graphql/mutations/rearrange.graphql +23 -0
- package/dist/modules/drupal/graphql/mutations/replace_entity_reference.graphql +25 -0
- package/dist/modules/drupal/graphql/mutations/swap.graphql +16 -0
- package/dist/modules/drupal/index.d.mts +18 -2
- package/dist/modules/drupal/index.mjs +60 -12
- package/dist/modules/drupal/runtime/adapter/index.js +246 -21
- package/dist/modules/drupal/runtime/components/BlokkliDrupalEditTemplate/index.d.vue.ts +9 -0
- package/dist/modules/drupal/runtime/components/BlokkliDrupalEditTemplate/index.vue +26 -0
- package/dist/modules/drupal/runtime/components/BlokkliDrupalEditTemplate/index.vue.d.ts +9 -0
- package/dist/runtime/components/Blocks/Fragment/index.vue +11 -2
- package/dist/runtime/components/BlokkliItem.vue +3 -1
- package/dist/runtime/composables/defineBlokkli.js +1 -3
- package/dist/runtime/composables/defineBlokkliFeature.d.ts +5 -3
- package/dist/runtime/composables/defineBlokkliFeature.js +2 -1
- package/dist/runtime/composables/defineBlokkliProvider.js +1 -3
- package/dist/runtime/editor/adapter/index.d.ts +45 -4
- package/dist/runtime/editor/adapter/index.js +3 -0
- package/dist/runtime/editor/components/Actions/ItemDropdown.vue +6 -1
- package/dist/runtime/editor/components/Actions/index.vue +4 -1
- package/dist/runtime/editor/components/AddListItem/index.d.vue.ts +9 -1
- package/dist/runtime/editor/components/AddListItem/index.vue +36 -2
- package/dist/runtime/editor/components/AddListItem/index.vue.d.ts +9 -1
- package/dist/runtime/editor/components/AnimationCanvas/index.vue +17 -7
- package/dist/runtime/editor/components/ArtboardTooltip/index.d.vue.ts +3 -1
- package/dist/runtime/editor/components/ArtboardTooltip/index.vue +4 -3
- package/dist/runtime/editor/components/ArtboardTooltip/index.vue.d.ts +3 -1
- package/dist/runtime/editor/components/AutoHeight/index.d.vue.ts +16 -0
- package/dist/runtime/editor/components/AutoHeight/index.vue +32 -0
- package/dist/runtime/editor/components/AutoHeight/index.vue.d.ts +16 -0
- package/dist/runtime/editor/components/BlockPreviewItem/index.d.vue.ts +5 -1
- package/dist/runtime/editor/components/BlockPreviewItem/index.vue +10 -7
- package/dist/runtime/editor/components/BlockPreviewItem/index.vue.d.ts +5 -1
- package/dist/runtime/editor/components/DiffViewer/DiffValue.d.vue.ts +7 -0
- package/dist/runtime/editor/components/DiffViewer/DiffValue.vue +21 -0
- package/dist/runtime/editor/components/DiffViewer/DiffValue.vue.d.ts +7 -0
- package/dist/runtime/editor/components/DiffViewer/State.vue +4 -9
- package/dist/runtime/editor/components/EditProvider.vue +25 -4
- package/dist/runtime/editor/components/FeaturesRenderer/index.vue +26 -8
- package/dist/runtime/editor/components/FlexTextarea/index.d.vue.ts +31 -0
- package/dist/runtime/editor/components/FlexTextarea/index.vue +179 -0
- package/dist/runtime/editor/components/FlexTextarea/index.vue.d.ts +31 -0
- package/dist/runtime/editor/components/Form/Text/index.vue +23 -11
- package/dist/runtime/editor/components/Form/Toggle/index.d.vue.ts +1 -0
- package/dist/runtime/editor/components/Form/Toggle/index.vue +7 -3
- package/dist/runtime/editor/components/Form/Toggle/index.vue.d.ts +1 -0
- package/dist/runtime/editor/components/Icon/index.vue +3 -1
- package/dist/runtime/editor/components/Indicators/index.vue +20 -10
- package/dist/runtime/editor/components/ItemIcon/index.d.vue.ts +3 -0
- package/dist/runtime/editor/components/ItemIcon/index.vue +3 -2
- package/dist/runtime/editor/components/ItemIcon/index.vue.d.ts +3 -0
- package/dist/runtime/editor/components/ItemIconBox/index.vue +4 -1
- package/dist/runtime/editor/components/NestedEditorOverlay/index.d.vue.ts +3 -1
- package/dist/runtime/editor/components/NestedEditorOverlay/index.vue +150 -71
- package/dist/runtime/editor/components/NestedEditorOverlay/index.vue.d.ts +3 -1
- package/dist/runtime/editor/components/PluginConfigForm/index.vue +6 -2
- package/dist/runtime/editor/components/RelativeTime/index.d.vue.ts +3 -2
- package/dist/runtime/editor/components/RelativeTime/index.vue +21 -7
- package/dist/runtime/editor/components/RelativeTime/index.vue.d.ts +3 -2
- package/dist/runtime/editor/components/StatusIcon/index.d.vue.ts +9 -0
- package/dist/runtime/editor/components/StatusIcon/index.vue +31 -0
- package/dist/runtime/editor/components/StatusIcon/index.vue.d.ts +9 -0
- package/dist/runtime/editor/components/SystemRequirements/index.vue +5 -1
- package/dist/runtime/editor/components/Transition/Height.vue +3 -2
- package/dist/runtime/editor/components/Transition/index.d.vue.ts +1 -1
- package/dist/runtime/editor/components/Transition/index.vue +2 -1
- package/dist/runtime/editor/components/Transition/index.vue.d.ts +1 -1
- package/dist/runtime/editor/components/index.d.ts +10 -6
- package/dist/runtime/editor/components/index.js +19 -11
- package/dist/runtime/editor/composables/index.d.ts +2 -0
- package/dist/runtime/editor/composables/index.js +2 -0
- package/dist/runtime/editor/composables/onElementResize.d.ts +3 -0
- package/dist/runtime/editor/composables/onElementResize.js +37 -0
- package/dist/runtime/editor/composables/useEditableFieldOverride.d.ts +24 -0
- package/dist/runtime/editor/composables/useEditableFieldOverride.js +130 -0
- package/dist/runtime/editor/composables/useStickyToolbar.d.ts +4 -3
- package/dist/runtime/editor/composables/useStickyToolbar.js +26 -10
- package/dist/runtime/editor/css/output.css +1 -1
- package/dist/runtime/editor/events/index.d.ts +31 -0
- package/dist/runtime/editor/features/add-list/Actions/Action.d.vue.ts +8 -1
- package/dist/runtime/editor/features/add-list/Actions/Action.vue +7 -1
- package/dist/runtime/editor/features/add-list/Actions/Action.vue.d.ts +8 -1
- package/dist/runtime/editor/features/add-list/Actions/index.d.vue.ts +11 -1
- package/dist/runtime/editor/features/add-list/Actions/index.vue +30 -10
- package/dist/runtime/editor/features/add-list/Actions/index.vue.d.ts +11 -1
- package/dist/runtime/editor/features/add-list/Blocks/index.d.vue.ts +11 -2
- package/dist/runtime/editor/features/add-list/Blocks/index.vue +27 -1
- package/dist/runtime/editor/features/add-list/Blocks/index.vue.d.ts +11 -2
- package/dist/runtime/editor/features/add-list/Help/Item.d.vue.ts +12 -0
- package/dist/runtime/editor/features/add-list/Help/Item.vue +186 -0
- package/dist/runtime/editor/features/add-list/Help/Item.vue.d.ts +12 -0
- package/dist/runtime/editor/features/add-list/Help/index.d.vue.ts +13 -0
- package/dist/runtime/editor/features/add-list/Help/index.vue +127 -0
- package/dist/runtime/editor/features/add-list/Help/index.vue.d.ts +13 -0
- package/dist/runtime/editor/features/add-list/docs.md +2 -2
- package/dist/runtime/editor/features/add-list/index.vue +108 -9
- package/dist/runtime/editor/features/add-list/types.d.ts +5 -0
- package/dist/runtime/editor/features/analyze/Main.vue +4 -1
- package/dist/runtime/editor/features/analyze/Summary/Chart.vue +9 -9
- package/dist/runtime/editor/features/analyze/index.vue +2 -14
- package/dist/runtime/editor/features/analyze/types.d.ts +4 -1
- package/dist/runtime/editor/features/artboard/Renderer.vue +43 -0
- package/dist/runtime/editor/features/assistant/docs.md +5 -5
- package/dist/runtime/editor/features/breadcrumbs/index.vue +4 -1
- package/dist/runtime/editor/features/clipboard/index.vue +6 -2
- package/dist/runtime/editor/features/comments/index.vue +1 -0
- package/dist/runtime/editor/features/comments/types.d.ts +6 -0
- package/dist/runtime/editor/features/dragging-overlay/DragItems/DragItem.d.vue.ts +1 -0
- package/dist/runtime/editor/features/dragging-overlay/DragItems/DragItem.vue +6 -31
- package/dist/runtime/editor/features/dragging-overlay/DragItems/DragItem.vue.d.ts +1 -0
- package/dist/runtime/editor/features/dragging-overlay/DragItems/index.d.vue.ts +2 -1
- package/dist/runtime/editor/features/dragging-overlay/DragItems/index.vue +42 -18
- package/dist/runtime/editor/features/dragging-overlay/DragItems/index.vue.d.ts +2 -1
- package/dist/runtime/editor/features/dragging-overlay/Renderer/fragment.glsl +77 -2
- package/dist/runtime/editor/features/dragging-overlay/Renderer/index.d.vue.ts +1 -0
- package/dist/runtime/editor/features/dragging-overlay/Renderer/index.vue +143 -52
- package/dist/runtime/editor/features/dragging-overlay/Renderer/index.vue.d.ts +1 -0
- package/dist/runtime/editor/features/dragging-overlay/Renderer/vertex.glsl +84 -31
- package/dist/runtime/editor/features/dragging-overlay/index.vue +3 -2
- package/dist/runtime/editor/features/edit/index.vue +7 -1
- package/dist/runtime/editor/features/editable-field/Overlay/Plaintext/index.vue +13 -23
- package/dist/runtime/editor/features/editable-field/Overlay/index.vue +10 -102
- package/dist/runtime/editor/features/editable-field/types.d.ts +12 -2
- package/dist/runtime/editor/features/entity-title/index.vue +7 -7
- package/dist/runtime/editor/features/fragments/index.vue +1 -1
- package/dist/runtime/editor/features/import-existing/Dialog/index.vue +8 -13
- package/dist/runtime/editor/features/library/ReusableDialog/index.vue +6 -1
- package/dist/runtime/editor/features/library/index.vue +14 -5
- package/dist/runtime/editor/features/library/types.d.ts +6 -0
- package/dist/runtime/editor/features/media-library/Library/Item.d.vue.ts +2 -2
- package/dist/runtime/editor/features/media-library/Library/Item.vue +17 -1
- package/dist/runtime/editor/features/media-library/Library/Item.vue.d.ts +2 -2
- package/dist/runtime/editor/features/media-library/Library/index.vue +6 -1
- package/dist/runtime/editor/features/media-library/index.vue +4 -4
- package/dist/runtime/editor/features/options/Form/index.vue +11 -43
- package/dist/runtime/editor/features/ownership/Banner/index.d.vue.ts +6 -3
- package/dist/runtime/editor/features/ownership/Banner/index.vue +10 -1
- package/dist/runtime/editor/features/ownership/Banner/index.vue.d.ts +6 -3
- package/dist/runtime/editor/features/ownership/index.vue +18 -6
- package/dist/runtime/editor/features/ownership/types.d.ts +5 -0
- package/dist/runtime/editor/features/publish/index.vue +5 -1
- package/dist/runtime/editor/features/search/Overlay/index.vue +5 -2
- package/dist/runtime/editor/features/search/index.vue +64 -3
- package/dist/runtime/editor/features/search/types.d.ts +16 -1
- package/dist/runtime/editor/features/selection/AddButtons/Renderer/index.vue +1 -3
- package/dist/runtime/editor/features/selection/AddButtons/index.vue +24 -4
- package/dist/runtime/editor/features/selection/Renderer/index.vue +5 -1
- package/dist/runtime/editor/features/selection/index.vue +5 -1
- package/dist/runtime/editor/features/settings/Dialog/index.vue +3 -1
- package/dist/runtime/editor/features/settings/index.vue +4 -1
- package/dist/runtime/editor/features/templates/CreateDialog/index.vue +21 -2
- package/dist/runtime/editor/features/templates/Dialog/Item/index.d.vue.ts +1 -1
- package/dist/runtime/editor/features/templates/Dialog/Item/index.vue +3 -3
- package/dist/runtime/editor/features/templates/Dialog/Item/index.vue.d.ts +1 -1
- package/dist/runtime/editor/features/templates/Dialog/index.vue +21 -5
- package/dist/runtime/editor/features/templates/ManageDialog/Item.d.vue.ts +8 -0
- package/dist/runtime/editor/features/templates/ManageDialog/Item.vue +147 -0
- package/dist/runtime/editor/features/templates/ManageDialog/Item.vue.d.ts +8 -0
- package/dist/runtime/editor/features/templates/ManageDialog/index.vue +30 -107
- package/dist/runtime/editor/features/templates/index.vue +7 -5
- package/dist/runtime/editor/features/templates/types.d.ts +11 -2
- package/dist/runtime/editor/features/transform/Dialog/index.vue +6 -1
- package/dist/runtime/editor/features/transform/index.vue +25 -20
- package/dist/runtime/editor/features/transform/types.d.ts +6 -4
- package/dist/runtime/editor/features/validations/index.vue +6 -1
- package/dist/runtime/editor/helpers/date/index.d.ts +1 -0
- package/dist/runtime/editor/helpers/date/index.js +3 -0
- package/dist/runtime/editor/helpers/options/index.d.ts +20 -0
- package/dist/runtime/editor/helpers/options/index.js +60 -0
- package/dist/runtime/editor/helpers/webgl/index.d.ts +5 -1
- package/dist/runtime/editor/helpers/webgl/index.js +45 -13
- package/dist/runtime/editor/icons/svg/stars.svg +1 -0
- package/dist/runtime/editor/plugins/Sidebar/Detached/index.d.vue.ts +1 -1
- package/dist/runtime/editor/plugins/Sidebar/Detached/index.vue +13 -10
- package/dist/runtime/editor/plugins/Sidebar/Detached/index.vue.d.ts +1 -1
- package/dist/runtime/editor/plugins/Sidebar/index.d.vue.ts +3 -1
- package/dist/runtime/editor/plugins/Sidebar/index.vue +14 -2
- package/dist/runtime/editor/plugins/Sidebar/index.vue.d.ts +3 -1
- package/dist/runtime/editor/providers/adapters.d.ts +33 -0
- package/dist/runtime/editor/providers/adapters.js +88 -0
- package/dist/runtime/editor/providers/animation.js +3 -0
- package/dist/runtime/editor/providers/definition.d.ts +8 -1
- package/dist/runtime/editor/providers/definition.js +7 -3
- package/dist/runtime/editor/providers/dom.d.ts +7 -0
- package/dist/runtime/editor/providers/dom.js +12 -0
- package/dist/runtime/editor/providers/permissions.d.ts +6 -0
- package/dist/runtime/editor/providers/permissions.js +9 -0
- package/dist/runtime/editor/providers/plugin.d.ts +1 -0
- package/dist/runtime/editor/providers/state.js +1 -0
- package/dist/runtime/editor/providers/texts.js +20 -6
- package/dist/runtime/editor/providers/types.d.ts +7 -0
- package/dist/runtime/editor/providers/types.js +4 -0
- package/dist/runtime/editor/providers/ui.d.ts +40 -0
- package/dist/runtime/editor/providers/ui.js +27 -1
- package/dist/runtime/editor/translations/de.json +2738 -0
- package/dist/runtime/editor/translations/fr.json +2738 -0
- package/dist/runtime/editor/translations/gsw_CH.json +2738 -0
- package/dist/runtime/editor/translations/it.json +2738 -0
- package/dist/runtime/editor/types/app.d.ts +9 -2
- package/dist/runtime/editor/types/definitions.d.ts +5 -0
- package/dist/runtime/editor/types/features.d.ts +3 -1
- package/dist/runtime/editor/types/permissions.d.ts +17 -0
- package/dist/runtime/editor/types/permissions.js +0 -0
- package/dist/runtime/helpers/runtimeHelpers/index.d.ts +2 -1
- package/dist/runtime/helpers/runtimeHelpers/index.js +44 -6
- package/dist/runtime/types/index.d.ts +6 -0
- package/dist/shared/editor.CGf7C_0M.mjs +10 -0
- package/dist/shared/editor.DMFfaLVE.mjs +175 -0
- package/dist/shared/{editor.BKQCh70G.d.mts → editor.Iax3GCvt.d.mts} +94 -40
- package/dist/types.d.mts +7 -1
- package/package.json +29 -7
- package/dist/runtime/css/output.css +0 -1
- package/dist/runtime/material-icons/index.d.ts +0 -12
- package/dist/runtime/material-icons/index.js +0 -1
|
@@ -0,0 +1,2738 @@
|
|
|
1
|
+
{
|
|
2
|
+
"actions": {
|
|
3
|
+
"source": "Actions",
|
|
4
|
+
"translation": ""
|
|
5
|
+
},
|
|
6
|
+
"actionsDropdownToolip": {
|
|
7
|
+
"source": "Further actions",
|
|
8
|
+
"translation": "Altre azioni"
|
|
9
|
+
},
|
|
10
|
+
"addBlockCommand.appendInField": {
|
|
11
|
+
"source": "Append \"@block\" in \"@field\"",
|
|
12
|
+
"translation": "Aggiungi «@block» in «@field»"
|
|
13
|
+
},
|
|
14
|
+
"addBlockCommand.appendRoot": {
|
|
15
|
+
"source": "Append \"@block\"",
|
|
16
|
+
"translation": "Aggiungi «@block»"
|
|
17
|
+
},
|
|
18
|
+
"addBlockCommand.insertInField": {
|
|
19
|
+
"source": "Insert \"@block\" into \"@field\"",
|
|
20
|
+
"translation": "Inserisci «@block» in «@field»"
|
|
21
|
+
},
|
|
22
|
+
"addButtonAfterBundle": {
|
|
23
|
+
"source": "Add after...",
|
|
24
|
+
"translation": "Aggiungi dopo..."
|
|
25
|
+
},
|
|
26
|
+
"addButtonBeforeBundle": {
|
|
27
|
+
"source": "Add before...",
|
|
28
|
+
"translation": "Aggiungi prima..."
|
|
29
|
+
},
|
|
30
|
+
"addButtonBundleAfter": {
|
|
31
|
+
"source": "Add \"@bundle\" after",
|
|
32
|
+
"translation": "Aggiungi «@bundle» dopo"
|
|
33
|
+
},
|
|
34
|
+
"addButtonBundleBefore": {
|
|
35
|
+
"source": "Add \"@bundle\" before",
|
|
36
|
+
"translation": "Aggiungi «@bundle» prima"
|
|
37
|
+
},
|
|
38
|
+
"addButtonBundleInsideField": {
|
|
39
|
+
"source": "Add \"@bundle\" inside @parentBundle » @fieldLabel",
|
|
40
|
+
"translation": "Aggiungi «@bundle» in @parentBundle » @fieldLabel"
|
|
41
|
+
},
|
|
42
|
+
"addButtonBundleToField": {
|
|
43
|
+
"source": "Add \"@bundle\" to @fieldLabel",
|
|
44
|
+
"translation": ""
|
|
45
|
+
},
|
|
46
|
+
"addButtonInsideField": {
|
|
47
|
+
"source": "Add inside @parentBundle » @fieldLabel...",
|
|
48
|
+
"translation": "Aggiungi in @parentBundle » @fieldLabel..."
|
|
49
|
+
},
|
|
50
|
+
"addButtonToField": {
|
|
51
|
+
"source": "Add to @fieldLabel...",
|
|
52
|
+
"translation": ""
|
|
53
|
+
},
|
|
54
|
+
"addCommentHeader": {
|
|
55
|
+
"source": "Add Comment",
|
|
56
|
+
"translation": ""
|
|
57
|
+
},
|
|
58
|
+
"addCommentToItem": {
|
|
59
|
+
"source": "Add Comment...",
|
|
60
|
+
"translation": "Commenta"
|
|
61
|
+
},
|
|
62
|
+
"addListItemFavoriteAdd": {
|
|
63
|
+
"source": "Add to favorites",
|
|
64
|
+
"translation": "Aggiungi ai preferiti"
|
|
65
|
+
},
|
|
66
|
+
"addListItemFavoriteRemove": {
|
|
67
|
+
"source": "Remove from favorites",
|
|
68
|
+
"translation": "Rimuovi dai preferiti"
|
|
69
|
+
},
|
|
70
|
+
"addListSidebarTitle": {
|
|
71
|
+
"source": "Add blocks",
|
|
72
|
+
"translation": "Aggiungi blocchi"
|
|
73
|
+
},
|
|
74
|
+
"addListTourText": {
|
|
75
|
+
"source": "<p>This shows the list of available blocks that can be placed. Add a block by dragging the icon into the page.</p><p>When an existing block is selected, some blocks may be greyed out. This indicates which blocks can be placed inside or after the selected block.</p>",
|
|
76
|
+
"translation": ""
|
|
77
|
+
},
|
|
78
|
+
"aiAgentAddBlockDone": {
|
|
79
|
+
"source": "Added @bundle",
|
|
80
|
+
"translation": ""
|
|
81
|
+
},
|
|
82
|
+
"aiAgentAddBlocksDone": {
|
|
83
|
+
"source": "Added @count blocks",
|
|
84
|
+
"translation": ""
|
|
85
|
+
},
|
|
86
|
+
"aiAgentAddBlocksRunning": {
|
|
87
|
+
"source": "Adding blocks...",
|
|
88
|
+
"translation": ""
|
|
89
|
+
},
|
|
90
|
+
"aiAgentAddContentSearchBlockDone": {
|
|
91
|
+
"source": "Added @bundle with content ID @id",
|
|
92
|
+
"translation": ""
|
|
93
|
+
},
|
|
94
|
+
"aiAgentAddContentSearchBlockRunning": {
|
|
95
|
+
"source": "Adding content block...",
|
|
96
|
+
"translation": ""
|
|
97
|
+
},
|
|
98
|
+
"aiAgentAddFragmentDone": {
|
|
99
|
+
"source": "Added fragment \"@label\"",
|
|
100
|
+
"translation": ""
|
|
101
|
+
},
|
|
102
|
+
"aiAgentAddFragmentRunning": {
|
|
103
|
+
"source": "Adding fragment...",
|
|
104
|
+
"translation": ""
|
|
105
|
+
},
|
|
106
|
+
"aiAgentAddLibraryItemDone": {
|
|
107
|
+
"source": "Added reusable block",
|
|
108
|
+
"translation": ""
|
|
109
|
+
},
|
|
110
|
+
"aiAgentAddLibraryItemRunning": {
|
|
111
|
+
"source": "Adding reusable block...",
|
|
112
|
+
"translation": ""
|
|
113
|
+
},
|
|
114
|
+
"aiAgentAddMediaBlockDone": {
|
|
115
|
+
"source": "Added @bundle with media ID @id",
|
|
116
|
+
"translation": ""
|
|
117
|
+
},
|
|
118
|
+
"aiAgentAddMediaBlockRunning": {
|
|
119
|
+
"source": "Adding media block...",
|
|
120
|
+
"translation": ""
|
|
121
|
+
},
|
|
122
|
+
"aiAgentAddTemplateDone": {
|
|
123
|
+
"source": "Added template",
|
|
124
|
+
"translation": ""
|
|
125
|
+
},
|
|
126
|
+
"aiAgentAddTemplateRunning": {
|
|
127
|
+
"source": "Adding template...",
|
|
128
|
+
"translation": ""
|
|
129
|
+
},
|
|
130
|
+
"aiAgentAlwaysApprove": {
|
|
131
|
+
"source": "Always",
|
|
132
|
+
"translation": ""
|
|
133
|
+
},
|
|
134
|
+
"aiAgentApprove": {
|
|
135
|
+
"source": "Approve",
|
|
136
|
+
"translation": ""
|
|
137
|
+
},
|
|
138
|
+
"aiAgentApprovePlan": {
|
|
139
|
+
"source": "Accept plan",
|
|
140
|
+
"translation": ""
|
|
141
|
+
},
|
|
142
|
+
"aiAgentAskQuestionOther": {
|
|
143
|
+
"source": "None of the above",
|
|
144
|
+
"translation": ""
|
|
145
|
+
},
|
|
146
|
+
"aiAgentAskQuestionOtherPlaceholder": {
|
|
147
|
+
"source": "Type your answer...",
|
|
148
|
+
"translation": ""
|
|
149
|
+
},
|
|
150
|
+
"aiAgentAskQuestionRunning": {
|
|
151
|
+
"source": "Waiting for answer...",
|
|
152
|
+
"translation": ""
|
|
153
|
+
},
|
|
154
|
+
"aiAgentAwaitingApproval": {
|
|
155
|
+
"source": "Awaiting your approval...",
|
|
156
|
+
"translation": ""
|
|
157
|
+
},
|
|
158
|
+
"aiAgentBatchRewriteAllApplied": {
|
|
159
|
+
"source": "All @count changes applied",
|
|
160
|
+
"translation": ""
|
|
161
|
+
},
|
|
162
|
+
"aiAgentBatchRewriteAllRejected": {
|
|
163
|
+
"source": "All changes rejected",
|
|
164
|
+
"translation": ""
|
|
165
|
+
},
|
|
166
|
+
"aiAgentBatchRewriteApply": {
|
|
167
|
+
"source": "Apply @count of @total",
|
|
168
|
+
"translation": ""
|
|
169
|
+
},
|
|
170
|
+
"aiAgentBatchRewriteReasonPlaceholder": {
|
|
171
|
+
"source": "Reason for rejection (optional)",
|
|
172
|
+
"translation": ""
|
|
173
|
+
},
|
|
174
|
+
"aiAgentBatchRewriteSomeApplied": {
|
|
175
|
+
"source": "@applied of @total changes applied",
|
|
176
|
+
"translation": ""
|
|
177
|
+
},
|
|
178
|
+
"aiAgentBatchRewriteTextRunning": {
|
|
179
|
+
"source": "Rewriting multiple texts...",
|
|
180
|
+
"translation": ""
|
|
181
|
+
},
|
|
182
|
+
"aiAgentBatchRewriteTitle": {
|
|
183
|
+
"source": "Rewrite @count fields",
|
|
184
|
+
"translation": ""
|
|
185
|
+
},
|
|
186
|
+
"aiAgentBlockNotFound": {
|
|
187
|
+
"source": "Block not found",
|
|
188
|
+
"translation": ""
|
|
189
|
+
},
|
|
190
|
+
"aiAgentCancelled": {
|
|
191
|
+
"source": "Cancelled",
|
|
192
|
+
"translation": ""
|
|
193
|
+
},
|
|
194
|
+
"aiAgentCompletePlanStep": {
|
|
195
|
+
"source": "Completed: @label",
|
|
196
|
+
"translation": ""
|
|
197
|
+
},
|
|
198
|
+
"aiAgentConfirm": {
|
|
199
|
+
"source": "Confirm",
|
|
200
|
+
"translation": ""
|
|
201
|
+
},
|
|
202
|
+
"aiAgentConnecting": {
|
|
203
|
+
"source": "Connecting...",
|
|
204
|
+
"translation": ""
|
|
205
|
+
},
|
|
206
|
+
"aiAgentCreatePlan": {
|
|
207
|
+
"source": "Plan: @label",
|
|
208
|
+
"translation": ""
|
|
209
|
+
},
|
|
210
|
+
"aiAgentDeleteBlockDone": {
|
|
211
|
+
"source": "Deleted @bundle",
|
|
212
|
+
"translation": ""
|
|
213
|
+
},
|
|
214
|
+
"aiAgentDeleteBlocksDone": {
|
|
215
|
+
"source": "Deleted @count blocks",
|
|
216
|
+
"translation": ""
|
|
217
|
+
},
|
|
218
|
+
"aiAgentDeleteBlocksRunning": {
|
|
219
|
+
"source": "Deleting blocks...",
|
|
220
|
+
"translation": ""
|
|
221
|
+
},
|
|
222
|
+
"aiAgentDeleteConversation": {
|
|
223
|
+
"source": "Delete conversation",
|
|
224
|
+
"translation": ""
|
|
225
|
+
},
|
|
226
|
+
"aiAgentDetachLibraryBlockDone": {
|
|
227
|
+
"source": "Detached library block",
|
|
228
|
+
"translation": ""
|
|
229
|
+
},
|
|
230
|
+
"aiAgentDetachLibraryBlockRunning": {
|
|
231
|
+
"source": "Detaching library block...",
|
|
232
|
+
"translation": ""
|
|
233
|
+
},
|
|
234
|
+
"aiAgentDetachLibraryBlocksDone": {
|
|
235
|
+
"source": "Detached @count library blocks",
|
|
236
|
+
"translation": ""
|
|
237
|
+
},
|
|
238
|
+
"aiAgentDuplicateBlockDone": {
|
|
239
|
+
"source": "Duplicated @bundle",
|
|
240
|
+
"translation": ""
|
|
241
|
+
},
|
|
242
|
+
"aiAgentDuplicateBlockToFieldDone": {
|
|
243
|
+
"source": "Duplicated @bundle to @field",
|
|
244
|
+
"translation": ""
|
|
245
|
+
},
|
|
246
|
+
"aiAgentDuplicateBlocksDone": {
|
|
247
|
+
"source": "Duplicated @count blocks",
|
|
248
|
+
"translation": ""
|
|
249
|
+
},
|
|
250
|
+
"aiAgentDuplicateBlocksRunning": {
|
|
251
|
+
"source": "Duplicating blocks...",
|
|
252
|
+
"translation": ""
|
|
253
|
+
},
|
|
254
|
+
"aiAgentDuplicateBlocksToFieldDone": {
|
|
255
|
+
"source": "Duplicated @count blocks to @field",
|
|
256
|
+
"translation": ""
|
|
257
|
+
},
|
|
258
|
+
"aiAgentErrorAuthentication": {
|
|
259
|
+
"source": "API authentication failed. Please check your API key.",
|
|
260
|
+
"translation": ""
|
|
261
|
+
},
|
|
262
|
+
"aiAgentErrorBadRequest": {
|
|
263
|
+
"source": "The request to the AI service was invalid.",
|
|
264
|
+
"translation": ""
|
|
265
|
+
},
|
|
266
|
+
"aiAgentErrorConnection": {
|
|
267
|
+
"source": "Could not connect to the AI service. Please check your network connection.",
|
|
268
|
+
"translation": ""
|
|
269
|
+
},
|
|
270
|
+
"aiAgentErrorNotFound": {
|
|
271
|
+
"source": "The configured AI model was not found. Please check the configuration.",
|
|
272
|
+
"translation": ""
|
|
273
|
+
},
|
|
274
|
+
"aiAgentErrorOverloaded": {
|
|
275
|
+
"source": "The AI service is currently overloaded. Please try again in a moment.",
|
|
276
|
+
"translation": ""
|
|
277
|
+
},
|
|
278
|
+
"aiAgentErrorRateLimit": {
|
|
279
|
+
"source": "Rate limit exceeded. Please wait a moment before trying again.",
|
|
280
|
+
"translation": ""
|
|
281
|
+
},
|
|
282
|
+
"aiAgentErrorUnauthorized": {
|
|
283
|
+
"source": "Authentication failed. Please reload the page and try again.",
|
|
284
|
+
"translation": ""
|
|
285
|
+
},
|
|
286
|
+
"aiAgentErrorUnknown": {
|
|
287
|
+
"source": "An unexpected error occurred.",
|
|
288
|
+
"translation": ""
|
|
289
|
+
},
|
|
290
|
+
"aiAgentFindBlocksDone": {
|
|
291
|
+
"source": "Found @count blocks",
|
|
292
|
+
"translation": ""
|
|
293
|
+
},
|
|
294
|
+
"aiAgentFindBlocksRunning": {
|
|
295
|
+
"source": "Finding blocks...",
|
|
296
|
+
"translation": ""
|
|
297
|
+
},
|
|
298
|
+
"aiAgentGetAllFragments": {
|
|
299
|
+
"source": "Get all fragments",
|
|
300
|
+
"translation": ""
|
|
301
|
+
},
|
|
302
|
+
"aiAgentGetAllFragmentsDone": {
|
|
303
|
+
"source": "Got all fragments",
|
|
304
|
+
"translation": ""
|
|
305
|
+
},
|
|
306
|
+
"aiAgentGetAllPageContentDone": {
|
|
307
|
+
"source": "Got content from @count blocks",
|
|
308
|
+
"translation": ""
|
|
309
|
+
},
|
|
310
|
+
"aiAgentGetAllPageContentRunning": {
|
|
311
|
+
"source": "Getting all page content...",
|
|
312
|
+
"translation": ""
|
|
313
|
+
},
|
|
314
|
+
"aiAgentGetBlockContextDone": {
|
|
315
|
+
"source": "Got context for @bundle",
|
|
316
|
+
"translation": ""
|
|
317
|
+
},
|
|
318
|
+
"aiAgentGetBlockContextRunning": {
|
|
319
|
+
"source": "Getting block context...",
|
|
320
|
+
"translation": ""
|
|
321
|
+
},
|
|
322
|
+
"aiAgentGetBlockOptionsDone": {
|
|
323
|
+
"source": "Got options of @bundle",
|
|
324
|
+
"translation": ""
|
|
325
|
+
},
|
|
326
|
+
"aiAgentGetBlockOptionsMultipleDone": {
|
|
327
|
+
"source": "Got options of @count blocks",
|
|
328
|
+
"translation": ""
|
|
329
|
+
},
|
|
330
|
+
"aiAgentGetBlockOptionsRunning": {
|
|
331
|
+
"source": "Getting block options...",
|
|
332
|
+
"translation": ""
|
|
333
|
+
},
|
|
334
|
+
"aiAgentGetBlocksInViewportDone": {
|
|
335
|
+
"source": "Got @count blocks in viewport",
|
|
336
|
+
"translation": ""
|
|
337
|
+
},
|
|
338
|
+
"aiAgentGetBlocksInViewportRunning": {
|
|
339
|
+
"source": "Getting blocks in viewport...",
|
|
340
|
+
"translation": ""
|
|
341
|
+
},
|
|
342
|
+
"aiAgentGetBundleInfoDone": {
|
|
343
|
+
"source": "Got bundle info for @field",
|
|
344
|
+
"translation": ""
|
|
345
|
+
},
|
|
346
|
+
"aiAgentGetBundleInfoRunning": {
|
|
347
|
+
"source": "Getting bundle info...",
|
|
348
|
+
"translation": ""
|
|
349
|
+
},
|
|
350
|
+
"aiAgentGetChildBlocks": {
|
|
351
|
+
"source": "Get child blocks",
|
|
352
|
+
"translation": ""
|
|
353
|
+
},
|
|
354
|
+
"aiAgentGetChildBlocksDone": {
|
|
355
|
+
"source": "Got children of @bundle",
|
|
356
|
+
"translation": ""
|
|
357
|
+
},
|
|
358
|
+
"aiAgentGetChildBlocksNone": {
|
|
359
|
+
"source": "@bundle has no child fields",
|
|
360
|
+
"translation": ""
|
|
361
|
+
},
|
|
362
|
+
"aiAgentGetContentFieldsDone": {
|
|
363
|
+
"source": "Got content fields of @bundle block",
|
|
364
|
+
"translation": ""
|
|
365
|
+
},
|
|
366
|
+
"aiAgentGetContentFieldsMultipleDone": {
|
|
367
|
+
"source": "Got content fields of @count blocks",
|
|
368
|
+
"translation": ""
|
|
369
|
+
},
|
|
370
|
+
"aiAgentGetContentFieldsRunning": {
|
|
371
|
+
"source": "Getting content fields...",
|
|
372
|
+
"translation": ""
|
|
373
|
+
},
|
|
374
|
+
"aiAgentGetEntityContentFieldsDone": {
|
|
375
|
+
"source": "Got content fields of page entity",
|
|
376
|
+
"translation": ""
|
|
377
|
+
},
|
|
378
|
+
"aiAgentGetMutationHistoryDone": {
|
|
379
|
+
"source": "Got mutation history",
|
|
380
|
+
"translation": ""
|
|
381
|
+
},
|
|
382
|
+
"aiAgentGetMutationHistoryRunning": {
|
|
383
|
+
"source": "Getting mutation history...",
|
|
384
|
+
"translation": ""
|
|
385
|
+
},
|
|
386
|
+
"aiAgentGetSelectedBlocksDone": {
|
|
387
|
+
"source": "@count block(s) selected",
|
|
388
|
+
"translation": ""
|
|
389
|
+
},
|
|
390
|
+
"aiAgentGetSelectedBlocksNone": {
|
|
391
|
+
"source": "No blocks selected",
|
|
392
|
+
"translation": ""
|
|
393
|
+
},
|
|
394
|
+
"aiAgentGetSelectedBlocksRunning": {
|
|
395
|
+
"source": "Getting selected blocks...",
|
|
396
|
+
"translation": ""
|
|
397
|
+
},
|
|
398
|
+
"aiAgentGoToHistoryIndexRunning": {
|
|
399
|
+
"source": "Navigating history...",
|
|
400
|
+
"translation": ""
|
|
401
|
+
},
|
|
402
|
+
"aiAgentLoadSkill": {
|
|
403
|
+
"source": "Using skill \"@label\"",
|
|
404
|
+
"translation": ""
|
|
405
|
+
},
|
|
406
|
+
"aiAgentLoadTools": {
|
|
407
|
+
"source": "@count tools loaded",
|
|
408
|
+
"translation": ""
|
|
409
|
+
},
|
|
410
|
+
"aiAgentMoreOptions": {
|
|
411
|
+
"source": "More options",
|
|
412
|
+
"translation": ""
|
|
413
|
+
},
|
|
414
|
+
"aiAgentMoveBlockDone": {
|
|
415
|
+
"source": "Moved @bundle",
|
|
416
|
+
"translation": ""
|
|
417
|
+
},
|
|
418
|
+
"aiAgentMoveBlocksDone": {
|
|
419
|
+
"source": "Moved @count blocks",
|
|
420
|
+
"translation": ""
|
|
421
|
+
},
|
|
422
|
+
"aiAgentMoveBlocksRunning": {
|
|
423
|
+
"source": "Moving blocks...",
|
|
424
|
+
"translation": ""
|
|
425
|
+
},
|
|
426
|
+
"aiAgentNewConversation": {
|
|
427
|
+
"source": "Start new conversation",
|
|
428
|
+
"translation": ""
|
|
429
|
+
},
|
|
430
|
+
"aiAgentNewLineHint": {
|
|
431
|
+
"source": "Shift + Enter for new line",
|
|
432
|
+
"translation": ""
|
|
433
|
+
},
|
|
434
|
+
"aiAgentNoConversations": {
|
|
435
|
+
"source": "No past conversations.",
|
|
436
|
+
"translation": ""
|
|
437
|
+
},
|
|
438
|
+
"aiAgentPastConversations": {
|
|
439
|
+
"source": "Past conversations",
|
|
440
|
+
"translation": ""
|
|
441
|
+
},
|
|
442
|
+
"aiAgentPastedText": {
|
|
443
|
+
"source": "Pasted text",
|
|
444
|
+
"translation": "Testo incollato"
|
|
445
|
+
},
|
|
446
|
+
"aiAgentPlaceholder": {
|
|
447
|
+
"source": "What should we work on?",
|
|
448
|
+
"translation": ""
|
|
449
|
+
},
|
|
450
|
+
"aiAgentPlaceholderReply": {
|
|
451
|
+
"source": "Reply...",
|
|
452
|
+
"translation": "Rispondi..."
|
|
453
|
+
},
|
|
454
|
+
"aiAgentPlanCompleted": {
|
|
455
|
+
"source": "Plan completed: @label",
|
|
456
|
+
"translation": ""
|
|
457
|
+
},
|
|
458
|
+
"aiAgentProcessing": {
|
|
459
|
+
"source": "Processing...",
|
|
460
|
+
"translation": ""
|
|
461
|
+
},
|
|
462
|
+
"aiAgentRearrangeBlocksDone": {
|
|
463
|
+
"source": "Rearranged @count blocks",
|
|
464
|
+
"translation": ""
|
|
465
|
+
},
|
|
466
|
+
"aiAgentRearrangeBlocksRunning": {
|
|
467
|
+
"source": "Rearranging blocks...",
|
|
468
|
+
"translation": ""
|
|
469
|
+
},
|
|
470
|
+
"aiAgentRedoDone": {
|
|
471
|
+
"source": "Redid @count changes",
|
|
472
|
+
"translation": ""
|
|
473
|
+
},
|
|
474
|
+
"aiAgentReject": {
|
|
475
|
+
"source": "Reject",
|
|
476
|
+
"translation": ""
|
|
477
|
+
},
|
|
478
|
+
"aiAgentRemoveAttachment": {
|
|
479
|
+
"source": "Remove attachment",
|
|
480
|
+
"translation": "Rimuovi allegato"
|
|
481
|
+
},
|
|
482
|
+
"aiAgentReplaceContentSearchItemDone": {
|
|
483
|
+
"source": "Replaced content reference on @field",
|
|
484
|
+
"translation": ""
|
|
485
|
+
},
|
|
486
|
+
"aiAgentReplaceContentSearchItemRunning": {
|
|
487
|
+
"source": "Replacing content reference...",
|
|
488
|
+
"translation": ""
|
|
489
|
+
},
|
|
490
|
+
"aiAgentReplaceMediaDone": {
|
|
491
|
+
"source": "Replaced media on @field",
|
|
492
|
+
"translation": ""
|
|
493
|
+
},
|
|
494
|
+
"aiAgentReplaceMediaRunning": {
|
|
495
|
+
"source": "Replacing media...",
|
|
496
|
+
"translation": ""
|
|
497
|
+
},
|
|
498
|
+
"aiAgentSearchLibraryDone": {
|
|
499
|
+
"source": "Searched library",
|
|
500
|
+
"translation": ""
|
|
501
|
+
},
|
|
502
|
+
"aiAgentSearchLibraryRunning": {
|
|
503
|
+
"source": "Searching reusable blocks...",
|
|
504
|
+
"translation": ""
|
|
505
|
+
},
|
|
506
|
+
"aiAgentSearchMediaAllDone": {
|
|
507
|
+
"source": "Searched all media",
|
|
508
|
+
"translation": ""
|
|
509
|
+
},
|
|
510
|
+
"aiAgentSearchMediaDone": {
|
|
511
|
+
"source": "Searched media for '@query'",
|
|
512
|
+
"translation": ""
|
|
513
|
+
},
|
|
514
|
+
"aiAgentSearchMediaRunning": {
|
|
515
|
+
"source": "Searching media...",
|
|
516
|
+
"translation": ""
|
|
517
|
+
},
|
|
518
|
+
"aiAgentSearchTemplatesAllDone": {
|
|
519
|
+
"source": "Searched all templates",
|
|
520
|
+
"translation": ""
|
|
521
|
+
},
|
|
522
|
+
"aiAgentSearchTemplatesDone": {
|
|
523
|
+
"source": "Searched templates for '@query'",
|
|
524
|
+
"translation": ""
|
|
525
|
+
},
|
|
526
|
+
"aiAgentSearchTemplatesRunning": {
|
|
527
|
+
"source": "Searching templates...",
|
|
528
|
+
"translation": ""
|
|
529
|
+
},
|
|
530
|
+
"aiAgentSearchTextDone": {
|
|
531
|
+
"source": "Found @count blocks matching '@query'",
|
|
532
|
+
"translation": ""
|
|
533
|
+
},
|
|
534
|
+
"aiAgentSearchTextError": {
|
|
535
|
+
"source": "Invalid regex pattern",
|
|
536
|
+
"translation": ""
|
|
537
|
+
},
|
|
538
|
+
"aiAgentSearchTextRunning": {
|
|
539
|
+
"source": "Searching text...",
|
|
540
|
+
"translation": ""
|
|
541
|
+
},
|
|
542
|
+
"aiAgentSelectMediaRunning": {
|
|
543
|
+
"source": "Selecting media...",
|
|
544
|
+
"translation": ""
|
|
545
|
+
},
|
|
546
|
+
"aiAgentSetBlockOptionsRunning": {
|
|
547
|
+
"source": "Setting block options...",
|
|
548
|
+
"translation": ""
|
|
549
|
+
},
|
|
550
|
+
"aiAgentShowTranscript": {
|
|
551
|
+
"source": "Show transcript...",
|
|
552
|
+
"translation": ""
|
|
553
|
+
},
|
|
554
|
+
"aiAgentSwapBlocksDone": {
|
|
555
|
+
"source": "Swapped @bundleA and @bundleB",
|
|
556
|
+
"translation": ""
|
|
557
|
+
},
|
|
558
|
+
"aiAgentSwapBlocksRunning": {
|
|
559
|
+
"source": "Swapping blocks...",
|
|
560
|
+
"translation": ""
|
|
561
|
+
},
|
|
562
|
+
"aiAgentThinking": {
|
|
563
|
+
"source": "Thinking...",
|
|
564
|
+
"translation": ""
|
|
565
|
+
},
|
|
566
|
+
"aiAgentTokensCached": {
|
|
567
|
+
"source": "Reused input tokens (cheaper)",
|
|
568
|
+
"translation": "Token di input riutilizzati (più economici)"
|
|
569
|
+
},
|
|
570
|
+
"aiAgentTokensCachedLabel": {
|
|
571
|
+
"source": "Cached",
|
|
572
|
+
"translation": "Cache"
|
|
573
|
+
},
|
|
574
|
+
"aiAgentTokensCost": {
|
|
575
|
+
"source": "Estimated cost for this conversation",
|
|
576
|
+
"translation": "Costo stimato per questa conversazione"
|
|
577
|
+
},
|
|
578
|
+
"aiAgentTokensCostLabel": {
|
|
579
|
+
"source": "Cost",
|
|
580
|
+
"translation": "Costo"
|
|
581
|
+
},
|
|
582
|
+
"aiAgentTokensInput": {
|
|
583
|
+
"source": "Tokens used to send context to the AI",
|
|
584
|
+
"translation": "Token utilizzati per inviare il contesto all'IA"
|
|
585
|
+
},
|
|
586
|
+
"aiAgentTokensInputLabel": {
|
|
587
|
+
"source": "Input",
|
|
588
|
+
"translation": "Input"
|
|
589
|
+
},
|
|
590
|
+
"aiAgentTokensOutput": {
|
|
591
|
+
"source": "Tokens generated by the AI in responses",
|
|
592
|
+
"translation": "Token generati dall'IA nelle risposte"
|
|
593
|
+
},
|
|
594
|
+
"aiAgentTokensOutputLabel": {
|
|
595
|
+
"source": "Output",
|
|
596
|
+
"translation": "Output"
|
|
597
|
+
},
|
|
598
|
+
"aiAgentTourText": {
|
|
599
|
+
"source": "Chat with an AI assistant to edit page content.",
|
|
600
|
+
"translation": ""
|
|
601
|
+
},
|
|
602
|
+
"aiAgentUndoDone": {
|
|
603
|
+
"source": "Undid @count changes",
|
|
604
|
+
"translation": ""
|
|
605
|
+
},
|
|
606
|
+
"aiAgentUnknownMessage": {
|
|
607
|
+
"source": "Unknown message type",
|
|
608
|
+
"translation": ""
|
|
609
|
+
},
|
|
610
|
+
"aiAgentUpdateOptionsOnBlockDone": {
|
|
611
|
+
"source": "Updated @count option(s) on block",
|
|
612
|
+
"translation": ""
|
|
613
|
+
},
|
|
614
|
+
"aiAgentUpdateOptionsOnBlocksDone": {
|
|
615
|
+
"source": "Updated @count option(s) on @blockCount blocks",
|
|
616
|
+
"translation": ""
|
|
617
|
+
},
|
|
618
|
+
"aiAgentViewAttachment": {
|
|
619
|
+
"source": "View attachment",
|
|
620
|
+
"translation": ""
|
|
621
|
+
},
|
|
622
|
+
"aiAgentWebFetchDone": {
|
|
623
|
+
"source": "Fetched '@title'",
|
|
624
|
+
"translation": ""
|
|
625
|
+
},
|
|
626
|
+
"aiAgentWebFetchRunning": {
|
|
627
|
+
"source": "Fetching web page...",
|
|
628
|
+
"translation": ""
|
|
629
|
+
},
|
|
630
|
+
"aiAgentWelcomeDisclaimer": {
|
|
631
|
+
"source": "@agent can make mistakes! Always check the output. <strong>Do not enter sensitive information.</strong>",
|
|
632
|
+
"translation": ""
|
|
633
|
+
},
|
|
634
|
+
"all": {
|
|
635
|
+
"source": "All",
|
|
636
|
+
"translation": ""
|
|
637
|
+
},
|
|
638
|
+
"allowedBlocks": {
|
|
639
|
+
"source": "Allowed Blocks",
|
|
640
|
+
"translation": ""
|
|
641
|
+
},
|
|
642
|
+
"analyzeButtonLabel": {
|
|
643
|
+
"source": "Analyze Page",
|
|
644
|
+
"translation": ""
|
|
645
|
+
},
|
|
646
|
+
"analyzeCategory": {
|
|
647
|
+
"source": "Category",
|
|
648
|
+
"translation": ""
|
|
649
|
+
},
|
|
650
|
+
"analyzeCategoryAccessibility": {
|
|
651
|
+
"source": "Accessibility",
|
|
652
|
+
"translation": ""
|
|
653
|
+
},
|
|
654
|
+
"analyzeCategoryContent": {
|
|
655
|
+
"source": "Content",
|
|
656
|
+
"translation": ""
|
|
657
|
+
},
|
|
658
|
+
"analyzeCategorySeo": {
|
|
659
|
+
"source": "SEO",
|
|
660
|
+
"translation": ""
|
|
661
|
+
},
|
|
662
|
+
"analyzeCategoryText": {
|
|
663
|
+
"source": "Text",
|
|
664
|
+
"translation": ""
|
|
665
|
+
},
|
|
666
|
+
"analyzeClickButton": {
|
|
667
|
+
"source": "Click the button above to run the analysis.",
|
|
668
|
+
"translation": ""
|
|
669
|
+
},
|
|
670
|
+
"analyzeLastRun": {
|
|
671
|
+
"source": "Last run: @time",
|
|
672
|
+
"translation": ""
|
|
673
|
+
},
|
|
674
|
+
"analyzeMoreLink": {
|
|
675
|
+
"source": "More",
|
|
676
|
+
"translation": ""
|
|
677
|
+
},
|
|
678
|
+
"analyzeNotAvailableInStructureView": {
|
|
679
|
+
"source": "Analyze is not available in structure view.",
|
|
680
|
+
"translation": ""
|
|
681
|
+
},
|
|
682
|
+
"analyzeResultsOutdated": {
|
|
683
|
+
"source": "Results are outdated. Click the button to update.",
|
|
684
|
+
"translation": ""
|
|
685
|
+
},
|
|
686
|
+
"analyzeSidebarTitle": {
|
|
687
|
+
"source": "Analyze",
|
|
688
|
+
"translation": ""
|
|
689
|
+
},
|
|
690
|
+
"analyzeStatusInapplicable": {
|
|
691
|
+
"source": "Inapplicable",
|
|
692
|
+
"translation": ""
|
|
693
|
+
},
|
|
694
|
+
"analyzeStatusIncomplete": {
|
|
695
|
+
"source": "Incomplete",
|
|
696
|
+
"translation": ""
|
|
697
|
+
},
|
|
698
|
+
"analyzeStatusPass": {
|
|
699
|
+
"source": "Pass",
|
|
700
|
+
"translation": ""
|
|
701
|
+
},
|
|
702
|
+
"analyzeStatusStale": {
|
|
703
|
+
"source": "Stale",
|
|
704
|
+
"translation": ""
|
|
705
|
+
},
|
|
706
|
+
"analyzeStatusUpToDate": {
|
|
707
|
+
"source": "Up-to-date",
|
|
708
|
+
"translation": ""
|
|
709
|
+
},
|
|
710
|
+
"analyzeStatusViolation": {
|
|
711
|
+
"source": "Violation",
|
|
712
|
+
"translation": ""
|
|
713
|
+
},
|
|
714
|
+
"analyzeTourText": {
|
|
715
|
+
"source": "Analyze the content of your page",
|
|
716
|
+
"translation": ""
|
|
717
|
+
},
|
|
718
|
+
"analyzerReadabiliyAverageSentenceLength": {
|
|
719
|
+
"source": "Average sentence length @length → split sentences.",
|
|
720
|
+
"translation": ""
|
|
721
|
+
},
|
|
722
|
+
"analyzerReadabiliyDescription": {
|
|
723
|
+
"source": "Avoid texts that are hard to read.",
|
|
724
|
+
"translation": ""
|
|
725
|
+
},
|
|
726
|
+
"analyzerReadabiliyHardToRead": {
|
|
727
|
+
"source": "Hard to read (@lang).",
|
|
728
|
+
"translation": ""
|
|
729
|
+
},
|
|
730
|
+
"analyzerReadabiliyShorterSentences": {
|
|
731
|
+
"source": "Consider shorter sentences and simpler wording.",
|
|
732
|
+
"translation": ""
|
|
733
|
+
},
|
|
734
|
+
"analyzerReadabiliyTitle": {
|
|
735
|
+
"source": "Text readability issues",
|
|
736
|
+
"translation": ""
|
|
737
|
+
},
|
|
738
|
+
"anchorHide": {
|
|
739
|
+
"source": "Hide anchor links",
|
|
740
|
+
"translation": ""
|
|
741
|
+
},
|
|
742
|
+
"anchorShow": {
|
|
743
|
+
"source": "Show anchor links",
|
|
744
|
+
"translation": ""
|
|
745
|
+
},
|
|
746
|
+
"anchorToggle": {
|
|
747
|
+
"source": "Toggle anchor links",
|
|
748
|
+
"translation": ""
|
|
749
|
+
},
|
|
750
|
+
"artboard": {
|
|
751
|
+
"source": "Artboard",
|
|
752
|
+
"translation": ""
|
|
753
|
+
},
|
|
754
|
+
"artboardOverviewHide": {
|
|
755
|
+
"source": "Hide overview",
|
|
756
|
+
"translation": ""
|
|
757
|
+
},
|
|
758
|
+
"artboardOverviewShow": {
|
|
759
|
+
"source": "Show overview",
|
|
760
|
+
"translation": ""
|
|
761
|
+
},
|
|
762
|
+
"artboardOverviewToggle": {
|
|
763
|
+
"source": "Toggle overview",
|
|
764
|
+
"translation": ""
|
|
765
|
+
},
|
|
766
|
+
"artboardOverviewTourText": {
|
|
767
|
+
"source": "Displays a top level overview of your content.",
|
|
768
|
+
"translation": ""
|
|
769
|
+
},
|
|
770
|
+
"artboardResetZoom": {
|
|
771
|
+
"source": "Reset zoom",
|
|
772
|
+
"translation": ""
|
|
773
|
+
},
|
|
774
|
+
"artboardScaleToFit": {
|
|
775
|
+
"source": "Scale to fit",
|
|
776
|
+
"translation": ""
|
|
777
|
+
},
|
|
778
|
+
"artboardScrollDown": {
|
|
779
|
+
"source": "Scroll down",
|
|
780
|
+
"translation": ""
|
|
781
|
+
},
|
|
782
|
+
"artboardScrollOnePageDown": {
|
|
783
|
+
"source": "Scroll one page down",
|
|
784
|
+
"translation": ""
|
|
785
|
+
},
|
|
786
|
+
"artboardScrollOnePageUp": {
|
|
787
|
+
"source": "Scroll one page up",
|
|
788
|
+
"translation": ""
|
|
789
|
+
},
|
|
790
|
+
"artboardScrollToEnd": {
|
|
791
|
+
"source": "Scroll to end",
|
|
792
|
+
"translation": ""
|
|
793
|
+
},
|
|
794
|
+
"artboardScrollToTop": {
|
|
795
|
+
"source": "Scroll to top",
|
|
796
|
+
"translation": ""
|
|
797
|
+
},
|
|
798
|
+
"artboardScrollUp": {
|
|
799
|
+
"source": "Scroll up",
|
|
800
|
+
"translation": ""
|
|
801
|
+
},
|
|
802
|
+
"artboardToolbarButtonTourText": {
|
|
803
|
+
"source": "Shows the current zoom factor. Click on it to reset the zoom back to 100%.",
|
|
804
|
+
"translation": ""
|
|
805
|
+
},
|
|
806
|
+
"assistantAddAction": {
|
|
807
|
+
"source": "Add with AI Assistant",
|
|
808
|
+
"translation": ""
|
|
809
|
+
},
|
|
810
|
+
"assistantAddActionDescription": {
|
|
811
|
+
"source": "Add content using an AI assistant.",
|
|
812
|
+
"translation": ""
|
|
813
|
+
},
|
|
814
|
+
"assistantAddResultError": {
|
|
815
|
+
"source": "Failed to add block from assistant.",
|
|
816
|
+
"translation": ""
|
|
817
|
+
},
|
|
818
|
+
"assistantDialogLead": {
|
|
819
|
+
"source": "Please enter what you'd like the assistant to generate.",
|
|
820
|
+
"translation": ""
|
|
821
|
+
},
|
|
822
|
+
"assistantDialogSubmit": {
|
|
823
|
+
"source": "Create blocks",
|
|
824
|
+
"translation": ""
|
|
825
|
+
},
|
|
826
|
+
"assistantDialogTitle": {
|
|
827
|
+
"source": "Generate content with AI assistant",
|
|
828
|
+
"translation": ""
|
|
829
|
+
},
|
|
830
|
+
"assistantPromptLabel": {
|
|
831
|
+
"source": "Prompt",
|
|
832
|
+
"translation": ""
|
|
833
|
+
},
|
|
834
|
+
"assistantPromptPlaceholder": {
|
|
835
|
+
"source": "Generate content for a page about how taxes work in Switzerland",
|
|
836
|
+
"translation": ""
|
|
837
|
+
},
|
|
838
|
+
"availableBlocks": {
|
|
839
|
+
"source": "Available blocks",
|
|
840
|
+
"translation": ""
|
|
841
|
+
},
|
|
842
|
+
"availableFragments": {
|
|
843
|
+
"source": "Available fragments",
|
|
844
|
+
"translation": ""
|
|
845
|
+
},
|
|
846
|
+
"blockAddListTourText": {
|
|
847
|
+
"source": "Right-click on a block to add or remove them from your favorites. Favorites are highlighted and always displayed at the top of the list.",
|
|
848
|
+
"translation": ""
|
|
849
|
+
},
|
|
850
|
+
"blockAddListTourTitle": {
|
|
851
|
+
"source": "Favorite blocks",
|
|
852
|
+
"translation": ""
|
|
853
|
+
},
|
|
854
|
+
"blockNotImplemented": {
|
|
855
|
+
"source": "Missing component for block bundle <strong>@bundle</strong>.",
|
|
856
|
+
"translation": ""
|
|
857
|
+
},
|
|
858
|
+
"blockOption_bkHiddenGlobally_description": {
|
|
859
|
+
"source": "Always hides the block.",
|
|
860
|
+
"translation": ""
|
|
861
|
+
},
|
|
862
|
+
"blockOption_bkHiddenGlobally_label": {
|
|
863
|
+
"source": "Hide globally",
|
|
864
|
+
"translation": ""
|
|
865
|
+
},
|
|
866
|
+
"blockOption_bkVisibleLanguages_description": {
|
|
867
|
+
"source": "Only show on specific languages.",
|
|
868
|
+
"translation": ""
|
|
869
|
+
},
|
|
870
|
+
"blockOption_bkVisibleLanguages_label": {
|
|
871
|
+
"source": "Visible languages",
|
|
872
|
+
"translation": ""
|
|
873
|
+
},
|
|
874
|
+
"blockSchedulerChangesPreview": {
|
|
875
|
+
"source": "Changes to be applied",
|
|
876
|
+
"translation": ""
|
|
877
|
+
},
|
|
878
|
+
"blockSchedulerDialogLead": {
|
|
879
|
+
"source": "Schedule automatic publishing and unpublishing dates for the selected blocks.",
|
|
880
|
+
"translation": ""
|
|
881
|
+
},
|
|
882
|
+
"blockSchedulerDialogPublishOn": {
|
|
883
|
+
"source": "Publish on",
|
|
884
|
+
"translation": ""
|
|
885
|
+
},
|
|
886
|
+
"blockSchedulerDialogSubmit": {
|
|
887
|
+
"source": "Save schedule",
|
|
888
|
+
"translation": ""
|
|
889
|
+
},
|
|
890
|
+
"blockSchedulerDialogTitle": {
|
|
891
|
+
"source": "Manage scheduling",
|
|
892
|
+
"translation": ""
|
|
893
|
+
},
|
|
894
|
+
"blockSchedulerDialogUnpublishOn": {
|
|
895
|
+
"source": "Unpublish on",
|
|
896
|
+
"translation": ""
|
|
897
|
+
},
|
|
898
|
+
"blockSchedulerMixedDates": {
|
|
899
|
+
"source": "Selected blocks have different dates: @dates",
|
|
900
|
+
"translation": ""
|
|
901
|
+
},
|
|
902
|
+
"blockSchedulerNoChanges": {
|
|
903
|
+
"source": "No changes to be applied.",
|
|
904
|
+
"translation": ""
|
|
905
|
+
},
|
|
906
|
+
"blockSchedulerOverride": {
|
|
907
|
+
"source": "Set date for all",
|
|
908
|
+
"translation": ""
|
|
909
|
+
},
|
|
910
|
+
"blockSchedulerSuccessMessage": {
|
|
911
|
+
"source": "Successfully updated schedule dates.",
|
|
912
|
+
"translation": ""
|
|
913
|
+
},
|
|
914
|
+
"bundle": {
|
|
915
|
+
"source": "Bundle",
|
|
916
|
+
"translation": ""
|
|
917
|
+
},
|
|
918
|
+
"cancelSelection": {
|
|
919
|
+
"source": "Cancel selection",
|
|
920
|
+
"translation": ""
|
|
921
|
+
},
|
|
922
|
+
"clearInput": {
|
|
923
|
+
"source": "Clear input",
|
|
924
|
+
"translation": ""
|
|
925
|
+
},
|
|
926
|
+
"clipboard": {
|
|
927
|
+
"source": "Clipboard",
|
|
928
|
+
"translation": "Appunti"
|
|
929
|
+
},
|
|
930
|
+
"clipboardCopyShortcutHelp": {
|
|
931
|
+
"source": "Copy selected blocks",
|
|
932
|
+
"translation": ""
|
|
933
|
+
},
|
|
934
|
+
"clipboardEmpty": {
|
|
935
|
+
"source": "No items in the clipboard",
|
|
936
|
+
"translation": "Nessun elemento negli appunti"
|
|
937
|
+
},
|
|
938
|
+
"clipboardExplanation": {
|
|
939
|
+
"source": "<p>\n Use Ctrl-V on the page to paste content. These\n will then be displayed here.\n </p>\n <p>\n Use Ctrl-F to search for existing content and paste it into\n the clipboard.\n </p>",
|
|
940
|
+
"translation": "<p>\n Utilizzare Ctrl-V sulla pagina per incollare i contenuti. Questi\n saranno poi visualizzati qui.\n </p>\n <p>\n Utilizzare Ctrl-F per cercare contenuti esistenti e incollarli negli appunti.\n </p>"
|
|
941
|
+
},
|
|
942
|
+
"clipboardPasteDescription": {
|
|
943
|
+
"source": "Paste blocks from clipboard",
|
|
944
|
+
"translation": ""
|
|
945
|
+
},
|
|
946
|
+
"clipboardPasteError": {
|
|
947
|
+
"source": "Failed to paste:",
|
|
948
|
+
"translation": ""
|
|
949
|
+
},
|
|
950
|
+
"clipboardPasteErrorAllowedBundlesMultiple": {
|
|
951
|
+
"source": "Block types (@types) are not allowed here.",
|
|
952
|
+
"translation": ""
|
|
953
|
+
},
|
|
954
|
+
"clipboardPasteErrorAllowedBundlesSingle": {
|
|
955
|
+
"source": "Block type \"@types\" is not allowed here.",
|
|
956
|
+
"translation": ""
|
|
957
|
+
},
|
|
958
|
+
"clipboardPasteErrorAllowedFragmentsMultiple": {
|
|
959
|
+
"source": "Fragments (@types) are not allowed here.",
|
|
960
|
+
"translation": ""
|
|
961
|
+
},
|
|
962
|
+
"clipboardPasteErrorAllowedFragmentsSingle": {
|
|
963
|
+
"source": "Fragment \"@types\" is not allowed here.",
|
|
964
|
+
"translation": ""
|
|
965
|
+
},
|
|
966
|
+
"clipboardPasteErrorCardinality": {
|
|
967
|
+
"source": "This field only allows up to @count blocks.",
|
|
968
|
+
"translation": ""
|
|
969
|
+
},
|
|
970
|
+
"clipboardPasteErrorOneField": {
|
|
971
|
+
"source": "Pasting is only possible into one field at a time.",
|
|
972
|
+
"translation": ""
|
|
973
|
+
},
|
|
974
|
+
"clipboardPastePlaceholder": {
|
|
975
|
+
"source": "Paste text or media here",
|
|
976
|
+
"translation": "Paste text or media here"
|
|
977
|
+
},
|
|
978
|
+
"clipboardPasteShortcutHelp": {
|
|
979
|
+
"source": "Paste text, image or copied blocks",
|
|
980
|
+
"translation": ""
|
|
981
|
+
},
|
|
982
|
+
"clipboardTourText": {
|
|
983
|
+
"source": "Drag and drop content pasted from your clipboard into the page to create a matching block.",
|
|
984
|
+
"translation": ""
|
|
985
|
+
},
|
|
986
|
+
"close": {
|
|
987
|
+
"source": "Close",
|
|
988
|
+
"translation": "Chiudi"
|
|
989
|
+
},
|
|
990
|
+
"commandGroup.action": {
|
|
991
|
+
"source": "Actions",
|
|
992
|
+
"translation": ""
|
|
993
|
+
},
|
|
994
|
+
"commandGroup.add": {
|
|
995
|
+
"source": "Add new",
|
|
996
|
+
"translation": ""
|
|
997
|
+
},
|
|
998
|
+
"commandGroup.misc": {
|
|
999
|
+
"source": "Miscellaneous",
|
|
1000
|
+
"translation": ""
|
|
1001
|
+
},
|
|
1002
|
+
"commandGroup.selection": {
|
|
1003
|
+
"source": "Selection",
|
|
1004
|
+
"translation": ""
|
|
1005
|
+
},
|
|
1006
|
+
"commandGroup.ui": {
|
|
1007
|
+
"source": "Interface",
|
|
1008
|
+
"translation": ""
|
|
1009
|
+
},
|
|
1010
|
+
"commandPalette.inputPlaceholder": {
|
|
1011
|
+
"source": "Search commands...",
|
|
1012
|
+
"translation": ""
|
|
1013
|
+
},
|
|
1014
|
+
"commandPaletteOpen": {
|
|
1015
|
+
"source": "Open Command Palette",
|
|
1016
|
+
"translation": ""
|
|
1017
|
+
},
|
|
1018
|
+
"commandPaletteTourText": {
|
|
1019
|
+
"source": "Easily perform actions using your keyboard by launching the command palette. Most of the features available using clicks is also available in the command palette.",
|
|
1020
|
+
"translation": ""
|
|
1021
|
+
},
|
|
1022
|
+
"commentAdd": {
|
|
1023
|
+
"source": "Add comment",
|
|
1024
|
+
"translation": ""
|
|
1025
|
+
},
|
|
1026
|
+
"commentBodyPlaceholder": {
|
|
1027
|
+
"source": "Add reply",
|
|
1028
|
+
"translation": ""
|
|
1029
|
+
},
|
|
1030
|
+
"commentSave": {
|
|
1031
|
+
"source": "Submit comment",
|
|
1032
|
+
"translation": "Salva commento"
|
|
1033
|
+
},
|
|
1034
|
+
"comments": {
|
|
1035
|
+
"source": "Comments",
|
|
1036
|
+
"translation": "Commenti"
|
|
1037
|
+
},
|
|
1038
|
+
"commentsMarkAsResolved": {
|
|
1039
|
+
"source": "Resolve",
|
|
1040
|
+
"translation": ""
|
|
1041
|
+
},
|
|
1042
|
+
"commentsTourText": {
|
|
1043
|
+
"source": "Shows all comments for the current page.",
|
|
1044
|
+
"translation": ""
|
|
1045
|
+
},
|
|
1046
|
+
"conversionsConvertTo": {
|
|
1047
|
+
"source": "Convert to: @bundle",
|
|
1048
|
+
"translation": ""
|
|
1049
|
+
},
|
|
1050
|
+
"copiedToClipboardMessage": {
|
|
1051
|
+
"source": "\"@text\" has been copied to your clipboard",
|
|
1052
|
+
"translation": ""
|
|
1053
|
+
},
|
|
1054
|
+
"copy": {
|
|
1055
|
+
"source": "Copy",
|
|
1056
|
+
"translation": ""
|
|
1057
|
+
},
|
|
1058
|
+
"created": {
|
|
1059
|
+
"source": "Created",
|
|
1060
|
+
"translation": ""
|
|
1061
|
+
},
|
|
1062
|
+
"createdBy": {
|
|
1063
|
+
"source": "Created by",
|
|
1064
|
+
"translation": ""
|
|
1065
|
+
},
|
|
1066
|
+
"dateUpdated": {
|
|
1067
|
+
"source": "Updated",
|
|
1068
|
+
"translation": ""
|
|
1069
|
+
},
|
|
1070
|
+
"deleteButton": {
|
|
1071
|
+
"source": "Delete",
|
|
1072
|
+
"translation": "Elimina"
|
|
1073
|
+
},
|
|
1074
|
+
"deleteError": {
|
|
1075
|
+
"source": "The block could not be deleted.",
|
|
1076
|
+
"translation": "L'elemento non può essere rimosso."
|
|
1077
|
+
},
|
|
1078
|
+
"diffAfter": {
|
|
1079
|
+
"source": "After",
|
|
1080
|
+
"translation": ""
|
|
1081
|
+
},
|
|
1082
|
+
"diffBefore": {
|
|
1083
|
+
"source": "Before",
|
|
1084
|
+
"translation": ""
|
|
1085
|
+
},
|
|
1086
|
+
"diffModeAfter": {
|
|
1087
|
+
"source": "After",
|
|
1088
|
+
"translation": ""
|
|
1089
|
+
},
|
|
1090
|
+
"diffModeInline": {
|
|
1091
|
+
"source": "Inline",
|
|
1092
|
+
"translation": ""
|
|
1093
|
+
},
|
|
1094
|
+
"diffModeLabel": {
|
|
1095
|
+
"source": "Display",
|
|
1096
|
+
"translation": ""
|
|
1097
|
+
},
|
|
1098
|
+
"diffModeSideBySide": {
|
|
1099
|
+
"source": "Both",
|
|
1100
|
+
"translation": ""
|
|
1101
|
+
},
|
|
1102
|
+
"diffSidebarTitle": {
|
|
1103
|
+
"source": "Changes",
|
|
1104
|
+
"translation": ""
|
|
1105
|
+
},
|
|
1106
|
+
"diffSidebarTourText": {
|
|
1107
|
+
"source": "Displays all the changes made during editing.",
|
|
1108
|
+
"translation": ""
|
|
1109
|
+
},
|
|
1110
|
+
"diffStatusAdded": {
|
|
1111
|
+
"source": "Added",
|
|
1112
|
+
"translation": ""
|
|
1113
|
+
},
|
|
1114
|
+
"diffStatusDeleted": {
|
|
1115
|
+
"source": "Deleted",
|
|
1116
|
+
"translation": ""
|
|
1117
|
+
},
|
|
1118
|
+
"diffStatusEdited": {
|
|
1119
|
+
"source": "Edited",
|
|
1120
|
+
"translation": ""
|
|
1121
|
+
},
|
|
1122
|
+
"diffStatusUnchanged": {
|
|
1123
|
+
"source": "Unchanged",
|
|
1124
|
+
"translation": ""
|
|
1125
|
+
},
|
|
1126
|
+
"downloadLogsButton": {
|
|
1127
|
+
"source": "Download Logs",
|
|
1128
|
+
"translation": ""
|
|
1129
|
+
},
|
|
1130
|
+
"draggingOverlaySelectBundle": {
|
|
1131
|
+
"source": "Select block type to create",
|
|
1132
|
+
"translation": ""
|
|
1133
|
+
},
|
|
1134
|
+
"duplicate": {
|
|
1135
|
+
"source": "Duplicate",
|
|
1136
|
+
"translation": "Duplica"
|
|
1137
|
+
},
|
|
1138
|
+
"duplicateError": {
|
|
1139
|
+
"source": "The items could not be duplicated.",
|
|
1140
|
+
"translation": "Gli elementi non possono essere duplicati."
|
|
1141
|
+
},
|
|
1142
|
+
"edit": {
|
|
1143
|
+
"source": "Edit...",
|
|
1144
|
+
"translation": "Modifica"
|
|
1145
|
+
},
|
|
1146
|
+
"editFormBlockAdd": {
|
|
1147
|
+
"source": "Add @label",
|
|
1148
|
+
"translation": ""
|
|
1149
|
+
},
|
|
1150
|
+
"editFormBlockEdit": {
|
|
1151
|
+
"source": "Edit @label",
|
|
1152
|
+
"translation": ""
|
|
1153
|
+
},
|
|
1154
|
+
"editFormBlockTranslate": {
|
|
1155
|
+
"source": "Translate @label (@language)",
|
|
1156
|
+
"translation": ""
|
|
1157
|
+
},
|
|
1158
|
+
"editFormEntityEdit": {
|
|
1159
|
+
"source": "Edit @label",
|
|
1160
|
+
"translation": ""
|
|
1161
|
+
},
|
|
1162
|
+
"editFormEntityTranslate": {
|
|
1163
|
+
"source": "Translate \"@label\" (@language)",
|
|
1164
|
+
"translation": ""
|
|
1165
|
+
},
|
|
1166
|
+
"editIndicatorLabel": {
|
|
1167
|
+
"source": "Edit blocks",
|
|
1168
|
+
"translation": "Modifica elementi"
|
|
1169
|
+
},
|
|
1170
|
+
"editIndicatorLabelReview": {
|
|
1171
|
+
"source": "Review changes",
|
|
1172
|
+
"translation": ""
|
|
1173
|
+
},
|
|
1174
|
+
"editIndicatorLabelView": {
|
|
1175
|
+
"source": "View changes",
|
|
1176
|
+
"translation": ""
|
|
1177
|
+
},
|
|
1178
|
+
"editableCommandEdit": {
|
|
1179
|
+
"source": "Edit field \"@name\"",
|
|
1180
|
+
"translation": ""
|
|
1181
|
+
},
|
|
1182
|
+
"editableFieldDiscard": {
|
|
1183
|
+
"source": "Discard",
|
|
1184
|
+
"translation": ""
|
|
1185
|
+
},
|
|
1186
|
+
"entityTitleTourText": {
|
|
1187
|
+
"source": "<p>Shows the title and status of the current page.</p><p>Click on the title to open the page edit form.</p>",
|
|
1188
|
+
"translation": ""
|
|
1189
|
+
},
|
|
1190
|
+
"entityTitleTourTitle": {
|
|
1191
|
+
"source": "Page",
|
|
1192
|
+
"translation": ""
|
|
1193
|
+
},
|
|
1194
|
+
"errorCapturedMessage": {
|
|
1195
|
+
"source": "Error in \"@label\": @errorMessage",
|
|
1196
|
+
"translation": ""
|
|
1197
|
+
},
|
|
1198
|
+
"errorCapturedMessageDisabled": {
|
|
1199
|
+
"source": "\"@label\" has errored more than 3 times. The feature will be disabled.",
|
|
1200
|
+
"translation": ""
|
|
1201
|
+
},
|
|
1202
|
+
"exitDescription": {
|
|
1203
|
+
"source": "Close editor without publishing",
|
|
1204
|
+
"translation": "Chiudi l'editor senza pubblicare"
|
|
1205
|
+
},
|
|
1206
|
+
"exitTitle": {
|
|
1207
|
+
"source": "Close",
|
|
1208
|
+
"translation": "Chiudi"
|
|
1209
|
+
},
|
|
1210
|
+
"failedToConvert": {
|
|
1211
|
+
"source": "The block could not be converted.",
|
|
1212
|
+
"translation": "L'elemento non può essere convertito."
|
|
1213
|
+
},
|
|
1214
|
+
"failedToTransform": {
|
|
1215
|
+
"source": "The action \"@name\" could not be executed.",
|
|
1216
|
+
"translation": "The action \"@name\" could not be executed."
|
|
1217
|
+
},
|
|
1218
|
+
"fatalErrorButton": {
|
|
1219
|
+
"source": "Continue anyway...",
|
|
1220
|
+
"translation": ""
|
|
1221
|
+
},
|
|
1222
|
+
"fatalErrorText": {
|
|
1223
|
+
"source": "Unfortunately blökkli has encountered a fatal error which prevents it from working normally. You may be able to continue using it, but things may not work as expected.",
|
|
1224
|
+
"translation": ""
|
|
1225
|
+
},
|
|
1226
|
+
"fatalErrorTitle": {
|
|
1227
|
+
"source": "blökkli has stopped working",
|
|
1228
|
+
"translation": ""
|
|
1229
|
+
},
|
|
1230
|
+
"featureHelpShortcuts": {
|
|
1231
|
+
"source": "Shortcuts",
|
|
1232
|
+
"translation": ""
|
|
1233
|
+
},
|
|
1234
|
+
"featureHelpTitle": {
|
|
1235
|
+
"source": "Help",
|
|
1236
|
+
"translation": ""
|
|
1237
|
+
},
|
|
1238
|
+
"feature_add-list_description": {
|
|
1239
|
+
"source": "Provides the container to render a list of blocks to add or add actions.",
|
|
1240
|
+
"translation": "Fornisce il contenitore per visualizzare un elenco di blocchi da aggiungere o azioni."
|
|
1241
|
+
},
|
|
1242
|
+
"feature_add-list_label": {
|
|
1243
|
+
"source": "Add List",
|
|
1244
|
+
"translation": "Elenco di aggiunta"
|
|
1245
|
+
},
|
|
1246
|
+
"feature_add-list_setting_hideDisabledBlocks_description": {
|
|
1247
|
+
"source": "Hides blocks from the \"Add List\" if they can't be added to anywhere.",
|
|
1248
|
+
"translation": ""
|
|
1249
|
+
},
|
|
1250
|
+
"feature_add-list_setting_hideDisabledBlocks_label": {
|
|
1251
|
+
"source": "Hide blocks that can't be added",
|
|
1252
|
+
"translation": ""
|
|
1253
|
+
},
|
|
1254
|
+
"feature_agent_description": {
|
|
1255
|
+
"source": "Chat with an AI assistant to edit page content.",
|
|
1256
|
+
"translation": ""
|
|
1257
|
+
},
|
|
1258
|
+
"feature_agent_label": {
|
|
1259
|
+
"source": "AI Agent",
|
|
1260
|
+
"translation": ""
|
|
1261
|
+
},
|
|
1262
|
+
"feature_analyze_description": {
|
|
1263
|
+
"source": "Analyze blocks and page for SEO, accessibility, etc.",
|
|
1264
|
+
"translation": "Analizza i blocchi e la pagina per SEO, accessibilità, ecc."
|
|
1265
|
+
},
|
|
1266
|
+
"feature_analyze_label": {
|
|
1267
|
+
"source": "Analyze",
|
|
1268
|
+
"translation": "Analizza"
|
|
1269
|
+
},
|
|
1270
|
+
"feature_anchors_description": {
|
|
1271
|
+
"source": "Displays indicators for blocks with anchor IDs",
|
|
1272
|
+
"translation": "Visualizza indicatori per blocchi con ID di ancoraggio"
|
|
1273
|
+
},
|
|
1274
|
+
"feature_anchors_label": {
|
|
1275
|
+
"source": "Anchors",
|
|
1276
|
+
"translation": "Ancoraggi"
|
|
1277
|
+
},
|
|
1278
|
+
"feature_artboard_description": {
|
|
1279
|
+
"source": "Wraps the entire page in an artboard that can be zoomed and moved using the mouse.",
|
|
1280
|
+
"translation": "Avvolge l'intera pagina in un'area di lavoro che può essere ingrandita e spostata con il mouse."
|
|
1281
|
+
},
|
|
1282
|
+
"feature_artboard_label": {
|
|
1283
|
+
"source": "Artboard",
|
|
1284
|
+
"translation": "Area di lavoro"
|
|
1285
|
+
},
|
|
1286
|
+
"feature_artboard_setting_momentum_description": {
|
|
1287
|
+
"source": "Applies smooth animations when scrolling or zooming the artboard.",
|
|
1288
|
+
"translation": "Applica animazioni fluide durante lo scorrimento o lo zoom dell'area di lavoro."
|
|
1289
|
+
},
|
|
1290
|
+
"feature_artboard_setting_momentum_label": {
|
|
1291
|
+
"source": "Use smooth scrolling",
|
|
1292
|
+
"translation": "Usa scorrimento fluido"
|
|
1293
|
+
},
|
|
1294
|
+
"feature_artboard_setting_persist_description": {
|
|
1295
|
+
"source": "Stores and restores the last position and zoom factor of the artboard.",
|
|
1296
|
+
"translation": "Memorizza e ripristina l'ultima posizione e il fattore di zoom dell'area di lavoro."
|
|
1297
|
+
},
|
|
1298
|
+
"feature_artboard_setting_persist_label": {
|
|
1299
|
+
"source": "Persist position and zoom",
|
|
1300
|
+
"translation": "Mantieni posizione e zoom"
|
|
1301
|
+
},
|
|
1302
|
+
"feature_artboard_setting_scrollSpeed_label": {
|
|
1303
|
+
"source": "Artboard scroll speed",
|
|
1304
|
+
"translation": "Velocità di scorrimento dell'area di lavoro"
|
|
1305
|
+
},
|
|
1306
|
+
"feature_assistant_description": {
|
|
1307
|
+
"source": "Provides a dynamic add block action to add one or more blocks generated by an AI assistant.",
|
|
1308
|
+
"translation": "Fornisce un'azione dinamica per aggiungere uno o più blocchi generati da un assistente IA."
|
|
1309
|
+
},
|
|
1310
|
+
"feature_assistant_label": {
|
|
1311
|
+
"source": "Assistant",
|
|
1312
|
+
"translation": "Assistente"
|
|
1313
|
+
},
|
|
1314
|
+
"feature_block-scheduler_description": {
|
|
1315
|
+
"source": "Adds support for scheduling blocks.",
|
|
1316
|
+
"translation": ""
|
|
1317
|
+
},
|
|
1318
|
+
"feature_block-scheduler_label": {
|
|
1319
|
+
"source": "Block Scheduler",
|
|
1320
|
+
"translation": ""
|
|
1321
|
+
},
|
|
1322
|
+
"feature_breadcrumbs_description": {
|
|
1323
|
+
"source": "Provides a breadcrumb of the selection.",
|
|
1324
|
+
"translation": ""
|
|
1325
|
+
},
|
|
1326
|
+
"feature_breadcrumbs_label": {
|
|
1327
|
+
"source": "Breadcrumbs",
|
|
1328
|
+
"translation": ""
|
|
1329
|
+
},
|
|
1330
|
+
"feature_clipboard_description": {
|
|
1331
|
+
"source": "Provides clipboard integration to copy/paste existing blocks or paste supported clipboard content like text or images.",
|
|
1332
|
+
"translation": "Fornisce l'integrazione degli appunti per copiare/incollare blocchi esistenti o incollare contenuti supportati come testo o immagini."
|
|
1333
|
+
},
|
|
1334
|
+
"feature_clipboard_label": {
|
|
1335
|
+
"source": "Clipboard",
|
|
1336
|
+
"translation": "Appunti"
|
|
1337
|
+
},
|
|
1338
|
+
"feature_clipboard_setting_openSidebarOnPaste_description": {
|
|
1339
|
+
"source": "Automatically opens the sidebar when pasting content from the clipboard.",
|
|
1340
|
+
"translation": "Apre automaticamente la barra laterale quando si incolla contenuto dagli appunti."
|
|
1341
|
+
},
|
|
1342
|
+
"feature_clipboard_setting_openSidebarOnPaste_label": {
|
|
1343
|
+
"source": "Open sidebar when pasting",
|
|
1344
|
+
"translation": "Apri barra laterale quando si incolla"
|
|
1345
|
+
},
|
|
1346
|
+
"feature_command-palette_description": {
|
|
1347
|
+
"source": "Provides a command palette with search to access most UI features with a keyboard.",
|
|
1348
|
+
"translation": "Fornisce una tavolozza di comandi con ricerca per accedere alla maggior parte delle funzionalità dell'interfaccia con la tastiera."
|
|
1349
|
+
},
|
|
1350
|
+
"feature_command-palette_label": {
|
|
1351
|
+
"source": "Command Palette",
|
|
1352
|
+
"translation": "Tavolozza di comandi"
|
|
1353
|
+
},
|
|
1354
|
+
"feature_comments_description": {
|
|
1355
|
+
"source": "Provides comment functionality for blocks.",
|
|
1356
|
+
"translation": "Fornisce la funzionalità di commento per i blocchi."
|
|
1357
|
+
},
|
|
1358
|
+
"feature_comments_label": {
|
|
1359
|
+
"source": "Comments",
|
|
1360
|
+
"translation": "Commenti"
|
|
1361
|
+
},
|
|
1362
|
+
"feature_conversions_description": {
|
|
1363
|
+
"source": "Provides block actions to convert one or more blocks to a different bundle.",
|
|
1364
|
+
"translation": "Fornisce azioni di blocco per convertire uno o più blocchi in un tipo diverso."
|
|
1365
|
+
},
|
|
1366
|
+
"feature_conversions_label": {
|
|
1367
|
+
"source": "Conversions",
|
|
1368
|
+
"translation": "Conversioni"
|
|
1369
|
+
},
|
|
1370
|
+
"feature_debug_description": {
|
|
1371
|
+
"source": "Provides debugging functionality.",
|
|
1372
|
+
"translation": "Fornisce la funzionalità di debug."
|
|
1373
|
+
},
|
|
1374
|
+
"feature_debug_label": {
|
|
1375
|
+
"source": "Debug",
|
|
1376
|
+
"translation": "Debug"
|
|
1377
|
+
},
|
|
1378
|
+
"feature_delete_description": {
|
|
1379
|
+
"source": "Provides an action to delete one or more blocks.",
|
|
1380
|
+
"translation": "Fornisce un'azione per eliminare uno o più blocchi."
|
|
1381
|
+
},
|
|
1382
|
+
"feature_delete_label": {
|
|
1383
|
+
"source": "Delete",
|
|
1384
|
+
"translation": "Elimina"
|
|
1385
|
+
},
|
|
1386
|
+
"feature_dev-mode_description": {
|
|
1387
|
+
"source": "Feature enabled in development mode.",
|
|
1388
|
+
"translation": ""
|
|
1389
|
+
},
|
|
1390
|
+
"feature_dev-mode_label": {
|
|
1391
|
+
"source": "Dev Mode",
|
|
1392
|
+
"translation": ""
|
|
1393
|
+
},
|
|
1394
|
+
"feature_diff_description": {
|
|
1395
|
+
"source": "Displays a diff of all changes in the edit state.",
|
|
1396
|
+
"translation": "Visualizza un differenziale di tutte le modifiche nello stato di modifica."
|
|
1397
|
+
},
|
|
1398
|
+
"feature_diff_label": {
|
|
1399
|
+
"source": "Diff",
|
|
1400
|
+
"translation": "Differenze"
|
|
1401
|
+
},
|
|
1402
|
+
"feature_dragging-overlay_description": {
|
|
1403
|
+
"source": "Renders an overlay when dragging or placing a block.",
|
|
1404
|
+
"translation": "Visualizza una sovrapposizione durante il trascinamento o il posizionamento di un blocco."
|
|
1405
|
+
},
|
|
1406
|
+
"feature_dragging-overlay_label": {
|
|
1407
|
+
"source": "Dragging Overlay",
|
|
1408
|
+
"translation": "Sovrapposizione di trascinamento"
|
|
1409
|
+
},
|
|
1410
|
+
"feature_duplicate_description": {
|
|
1411
|
+
"source": "Provides an action to duplicate one or more blocks in place.",
|
|
1412
|
+
"translation": "Fornisce un'azione per duplicare uno o più blocchi sul posto."
|
|
1413
|
+
},
|
|
1414
|
+
"feature_duplicate_label": {
|
|
1415
|
+
"source": "Duplicate",
|
|
1416
|
+
"translation": "Duplica"
|
|
1417
|
+
},
|
|
1418
|
+
"feature_edit-form_description": {
|
|
1419
|
+
"source": "Listens to edit events and renders an iframe containing the edit form.",
|
|
1420
|
+
"translation": "Ascolta gli eventi di modifica e visualizza un iframe contenente il modulo di modifica."
|
|
1421
|
+
},
|
|
1422
|
+
"feature_edit-form_label": {
|
|
1423
|
+
"source": "Edit Form",
|
|
1424
|
+
"translation": "Modulo di modifica"
|
|
1425
|
+
},
|
|
1426
|
+
"feature_edit_description": {
|
|
1427
|
+
"source": "Provides an action to edit a block.",
|
|
1428
|
+
"translation": "Fornisce un'azione per modificare un blocco."
|
|
1429
|
+
},
|
|
1430
|
+
"feature_edit_label": {
|
|
1431
|
+
"source": "Edit",
|
|
1432
|
+
"translation": "Modifica"
|
|
1433
|
+
},
|
|
1434
|
+
"feature_editable-field_description": {
|
|
1435
|
+
"source": "Implements a form overlay to edit a single field of a block.",
|
|
1436
|
+
"translation": "Implementa una sovrapposizione di modulo per modificare un singolo campo di un blocco."
|
|
1437
|
+
},
|
|
1438
|
+
"feature_editable-field_label": {
|
|
1439
|
+
"source": "Editable Field",
|
|
1440
|
+
"translation": "Campo modificabile"
|
|
1441
|
+
},
|
|
1442
|
+
"feature_editable-mask_description": {
|
|
1443
|
+
"source": "Provides a view option to hide non-editable parts of the page.",
|
|
1444
|
+
"translation": "Fornisce un'opzione di visualizzazione per nascondere le parti non modificabili della pagina."
|
|
1445
|
+
},
|
|
1446
|
+
"feature_editable-mask_label": {
|
|
1447
|
+
"source": "Editable Mask",
|
|
1448
|
+
"translation": "Maschera modificabile"
|
|
1449
|
+
},
|
|
1450
|
+
"feature_entity-title_description": {
|
|
1451
|
+
"source": "Renders the title and status of the page entity.",
|
|
1452
|
+
"translation": "Visualizza il titolo e lo stato dell'entità della pagina."
|
|
1453
|
+
},
|
|
1454
|
+
"feature_entity-title_label": {
|
|
1455
|
+
"source": "Entity Title",
|
|
1456
|
+
"translation": "Titolo dell'entità"
|
|
1457
|
+
},
|
|
1458
|
+
"feature_exit_description": {
|
|
1459
|
+
"source": "Provides a menu button to exit the editor without saving.",
|
|
1460
|
+
"translation": "Fornisce un pulsante di menu per uscire dall'editor senza salvare."
|
|
1461
|
+
},
|
|
1462
|
+
"feature_exit_label": {
|
|
1463
|
+
"source": "Exit",
|
|
1464
|
+
"translation": "Esci"
|
|
1465
|
+
},
|
|
1466
|
+
"feature_fragments_description": {
|
|
1467
|
+
"source": "Provides way to add content fragments defined by the frontend.",
|
|
1468
|
+
"translation": "Consente di aggiungere frammenti di contenuto definiti dal frontend."
|
|
1469
|
+
},
|
|
1470
|
+
"feature_fragments_label": {
|
|
1471
|
+
"source": "Fragments",
|
|
1472
|
+
"translation": "Frammenti"
|
|
1473
|
+
},
|
|
1474
|
+
"feature_grid_description": {
|
|
1475
|
+
"source": "Provides a view option to render a grid.",
|
|
1476
|
+
"translation": "Fornisce un'opzione di visualizzazione per visualizzare una griglia."
|
|
1477
|
+
},
|
|
1478
|
+
"feature_grid_label": {
|
|
1479
|
+
"source": "Grid",
|
|
1480
|
+
"translation": "Griglia"
|
|
1481
|
+
},
|
|
1482
|
+
"feature_help_description": {
|
|
1483
|
+
"source": "Provides a sidebar pane with helpful information on how to use blokkli.",
|
|
1484
|
+
"translation": "Fornisce un pannello della barra laterale con informazioni utili su come utilizzare blökkli."
|
|
1485
|
+
},
|
|
1486
|
+
"feature_help_label": {
|
|
1487
|
+
"source": "Help",
|
|
1488
|
+
"translation": "Aiuto"
|
|
1489
|
+
},
|
|
1490
|
+
"feature_history_description": {
|
|
1491
|
+
"source": "Implements support for history features (undo, redo, list of mutations).",
|
|
1492
|
+
"translation": "Implementa il supporto per le funzionalità di cronologia (annulla, ripeti, elenco delle mutazioni)."
|
|
1493
|
+
},
|
|
1494
|
+
"feature_history_label": {
|
|
1495
|
+
"source": "History",
|
|
1496
|
+
"translation": "Cronologia"
|
|
1497
|
+
},
|
|
1498
|
+
"feature_history_setting_useMouseButtons_description": {
|
|
1499
|
+
"source": "When enabled you can use the backwards/forwards buttons on your mouse to undo and redo.",
|
|
1500
|
+
"translation": "Quando abilitato, è possibile utilizzare i pulsanti indietro/avanti del mouse per annullare e ripetere."
|
|
1501
|
+
},
|
|
1502
|
+
"feature_history_setting_useMouseButtons_label": {
|
|
1503
|
+
"source": "Use mouse buttons for undo/redo",
|
|
1504
|
+
"translation": "Usa i pulsanti del mouse per annulla/ripeti"
|
|
1505
|
+
},
|
|
1506
|
+
"feature_hover_description": {
|
|
1507
|
+
"source": "Renders a border around blocks that are currently being hovered.",
|
|
1508
|
+
"translation": ""
|
|
1509
|
+
},
|
|
1510
|
+
"feature_hover_label": {
|
|
1511
|
+
"source": "Hover",
|
|
1512
|
+
"translation": ""
|
|
1513
|
+
},
|
|
1514
|
+
"feature_import-existing_description": {
|
|
1515
|
+
"source": "Implements a menu action that renders a dialog to import blocks from another entity.",
|
|
1516
|
+
"translation": "Implementa un'azione di menu che visualizza una finestra di dialogo per importare blocchi da un'altra entità."
|
|
1517
|
+
},
|
|
1518
|
+
"feature_import-existing_label": {
|
|
1519
|
+
"source": "Import existing content",
|
|
1520
|
+
"translation": "Importa contenuto esistente"
|
|
1521
|
+
},
|
|
1522
|
+
"feature_import-existing_setting_showDialogWhenEmpty_description": {
|
|
1523
|
+
"source": "Displays the import dialog when starting blökkli if the page is empty.",
|
|
1524
|
+
"translation": "Visualizza la finestra di dialogo di importazione all'avvio di blökkli se la pagina è vuota."
|
|
1525
|
+
},
|
|
1526
|
+
"feature_import-existing_setting_showDialogWhenEmpty_label": {
|
|
1527
|
+
"source": "Show import dialog at start",
|
|
1528
|
+
"translation": "Mostra finestra di dialogo di importazione all'avvio"
|
|
1529
|
+
},
|
|
1530
|
+
"feature_library_description": {
|
|
1531
|
+
"source": "Implements support for a block library to manage reusable blocks.",
|
|
1532
|
+
"translation": "Implementa il supporto per una biblioteca di blocchi per gestire blocchi riutilizzabili."
|
|
1533
|
+
},
|
|
1534
|
+
"feature_library_label": {
|
|
1535
|
+
"source": "Library",
|
|
1536
|
+
"translation": "Biblioteca"
|
|
1537
|
+
},
|
|
1538
|
+
"feature_media-library_description": {
|
|
1539
|
+
"source": "Implements a media library to easily drag and drop media like images or videos.",
|
|
1540
|
+
"translation": "Implementa una biblioteca multimediale per trascinare e rilasciare facilmente media come immagini o video."
|
|
1541
|
+
},
|
|
1542
|
+
"feature_media-library_label": {
|
|
1543
|
+
"source": "Media Library",
|
|
1544
|
+
"translation": "Biblioteca multimediale"
|
|
1545
|
+
},
|
|
1546
|
+
"feature_multi-select_description": {
|
|
1547
|
+
"source": "Implements support for selecting multiple blocks using a select rectangle.",
|
|
1548
|
+
"translation": "Implementa il supporto per la selezione di più blocchi utilizzando un rettangolo di selezione."
|
|
1549
|
+
},
|
|
1550
|
+
"feature_multi-select_label": {
|
|
1551
|
+
"source": "Multiselect",
|
|
1552
|
+
"translation": "Selezione multipla"
|
|
1553
|
+
},
|
|
1554
|
+
"feature_options_description": {
|
|
1555
|
+
"source": "Renders the options form for one or more blocks.",
|
|
1556
|
+
"translation": "Visualizza il modulo delle opzioni per uno o più blocchi."
|
|
1557
|
+
},
|
|
1558
|
+
"feature_options_label": {
|
|
1559
|
+
"source": "Options",
|
|
1560
|
+
"translation": "Opzioni"
|
|
1561
|
+
},
|
|
1562
|
+
"feature_ownership_description": {
|
|
1563
|
+
"source": "Renders a large button to take ownership of the current edit state.",
|
|
1564
|
+
"translation": "Visualizza un grande pulsante per prendere la proprietà dello stato di modifica corrente."
|
|
1565
|
+
},
|
|
1566
|
+
"feature_ownership_label": {
|
|
1567
|
+
"source": "Ownership",
|
|
1568
|
+
"translation": "Proprietà"
|
|
1569
|
+
},
|
|
1570
|
+
"feature_preview-grant_description": {
|
|
1571
|
+
"source": "Provides a button to open a dialog with a QR code to preview the page on a smartphone.",
|
|
1572
|
+
"translation": "Fornisce un pulsante per aprire una finestra di dialogo con un codice QR per visualizzare l'anteprima della pagina su uno smartphone."
|
|
1573
|
+
},
|
|
1574
|
+
"feature_preview-grant_label": {
|
|
1575
|
+
"source": "Preview Grant",
|
|
1576
|
+
"translation": "Accesso all'anteprima"
|
|
1577
|
+
},
|
|
1578
|
+
"feature_preview_description": {
|
|
1579
|
+
"source": "Provides a button to open a preview in a new window.",
|
|
1580
|
+
"translation": "Fornisce un pulsante per aprire un'anteprima in una nuova finestra."
|
|
1581
|
+
},
|
|
1582
|
+
"feature_preview_label": {
|
|
1583
|
+
"source": "Preview",
|
|
1584
|
+
"translation": "Anteprima"
|
|
1585
|
+
},
|
|
1586
|
+
"feature_proxy_view_description": {
|
|
1587
|
+
"source": "Displays the blocks as a structure in the preview.",
|
|
1588
|
+
"translation": "Visualizza i blocchi come struttura nell'anteprima."
|
|
1589
|
+
},
|
|
1590
|
+
"feature_proxy_view_label": {
|
|
1591
|
+
"source": "Proxy View",
|
|
1592
|
+
"translation": "Vista strutturata"
|
|
1593
|
+
},
|
|
1594
|
+
"feature_publish_description": {
|
|
1595
|
+
"source": "Provides a menu button to publish the changes of the current entity.",
|
|
1596
|
+
"translation": "Fornisce un pulsante di menu per pubblicare le modifiche dell'entità corrente."
|
|
1597
|
+
},
|
|
1598
|
+
"feature_publish_label": {
|
|
1599
|
+
"source": "Publish",
|
|
1600
|
+
"translation": "Pubblica"
|
|
1601
|
+
},
|
|
1602
|
+
"feature_publish_setting_closeAfterPublish_description": {
|
|
1603
|
+
"source": "Immediately closes the editor after successfully publishing or saving.",
|
|
1604
|
+
"translation": "Chiude immediatamente l'editor dopo una pubblicazione o un salvataggio riusciti."
|
|
1605
|
+
},
|
|
1606
|
+
"feature_publish_setting_closeAfterPublish_label": {
|
|
1607
|
+
"source": "Close editor after publishing",
|
|
1608
|
+
"translation": "Chiudi editor dopo la pubblicazione"
|
|
1609
|
+
},
|
|
1610
|
+
"feature_responsive-preview_description": {
|
|
1611
|
+
"source": "Provides a responsive preview of the current edit state in an iframe.",
|
|
1612
|
+
"translation": "Fornisce un'anteprima responsive dello stato di modifica corrente in un iframe."
|
|
1613
|
+
},
|
|
1614
|
+
"feature_responsive-preview_label": {
|
|
1615
|
+
"source": "Responsive Preview",
|
|
1616
|
+
"translation": "Anteprima responsive"
|
|
1617
|
+
},
|
|
1618
|
+
"feature_revert_description": {
|
|
1619
|
+
"source": "Provides a menu button to revert all changes done on the current entity.",
|
|
1620
|
+
"translation": "Fornisce un pulsante di menu per annullare tutte le modifiche effettuate sull'entità corrente."
|
|
1621
|
+
},
|
|
1622
|
+
"feature_revert_label": {
|
|
1623
|
+
"source": "Revert",
|
|
1624
|
+
"translation": "Annulla"
|
|
1625
|
+
},
|
|
1626
|
+
"feature_search_description": {
|
|
1627
|
+
"source": "Provides an overlay with shortcut to search for blocks on the current page or existing content to add as blocks.",
|
|
1628
|
+
"translation": "Fornisce una sovrapposizione con scorciatoia per cercare blocchi nella pagina corrente o contenuto esistente da aggiungere come blocchi."
|
|
1629
|
+
},
|
|
1630
|
+
"feature_search_label": {
|
|
1631
|
+
"source": "Search",
|
|
1632
|
+
"translation": "Cerca"
|
|
1633
|
+
},
|
|
1634
|
+
"feature_selection_description": {
|
|
1635
|
+
"source": "Renders an overlay that highlights the selected blocks.",
|
|
1636
|
+
"translation": "Visualizza una sovrapposizione che evidenzia i blocchi selezionati."
|
|
1637
|
+
},
|
|
1638
|
+
"feature_selection_label": {
|
|
1639
|
+
"source": "Selection",
|
|
1640
|
+
"translation": "Selezione"
|
|
1641
|
+
},
|
|
1642
|
+
"feature_settings_description": {
|
|
1643
|
+
"source": "Provides a menu button to display a settings dialog.",
|
|
1644
|
+
"translation": "Fornisce un pulsante di menu per visualizzare una finestra di dialogo delle impostazioni."
|
|
1645
|
+
},
|
|
1646
|
+
"feature_settings_label": {
|
|
1647
|
+
"source": "Settings",
|
|
1648
|
+
"translation": "Impostazioni"
|
|
1649
|
+
},
|
|
1650
|
+
"feature_settings_setting_lowPerformanceMode_description": {
|
|
1651
|
+
"source": "Reduces the animations and interactivity to a minimum for devices with low performance.",
|
|
1652
|
+
"translation": "Riduce le animazioni e l'interattività al minimo per dispositivi con prestazioni basse."
|
|
1653
|
+
},
|
|
1654
|
+
"feature_settings_setting_lowPerformanceMode_label": {
|
|
1655
|
+
"source": "Enable low performance mode",
|
|
1656
|
+
"translation": "Abilita modalità basse prestazioni"
|
|
1657
|
+
},
|
|
1658
|
+
"feature_settings_setting_resetAllSettings_label": {
|
|
1659
|
+
"source": "Reset all settings",
|
|
1660
|
+
"translation": "Ripristina tutte le impostazioni"
|
|
1661
|
+
},
|
|
1662
|
+
"feature_settings_setting_useAnimations_description": {
|
|
1663
|
+
"source": "Animates UI elements like dialogs or drawers or interactions like drag and drop or scroll changes.",
|
|
1664
|
+
"translation": "Anima elementi dell'interfaccia come finestre di dialogo o cassetti, o interazioni come trascina e rilascia o modifiche di scorrimento."
|
|
1665
|
+
},
|
|
1666
|
+
"feature_settings_setting_useAnimations_label": {
|
|
1667
|
+
"source": "Use animations",
|
|
1668
|
+
"translation": "Usa animazioni"
|
|
1669
|
+
},
|
|
1670
|
+
"feature_structure_description": {
|
|
1671
|
+
"source": "Provides a sidebar button to render a structured list of all blocks on the current page.",
|
|
1672
|
+
"translation": "Fornisce un pulsante della barra laterale per visualizzare un elenco strutturato di tutti i blocchi nella pagina corrente."
|
|
1673
|
+
},
|
|
1674
|
+
"feature_structure_label": {
|
|
1675
|
+
"source": "Structure",
|
|
1676
|
+
"translation": "Struttura"
|
|
1677
|
+
},
|
|
1678
|
+
"feature_templates_description": {
|
|
1679
|
+
"source": "Add blocks from templates.",
|
|
1680
|
+
"translation": ""
|
|
1681
|
+
},
|
|
1682
|
+
"feature_templates_label": {
|
|
1683
|
+
"source": "Templates",
|
|
1684
|
+
"translation": ""
|
|
1685
|
+
},
|
|
1686
|
+
"feature_theme_description": {
|
|
1687
|
+
"source": "Implements a theme editor.",
|
|
1688
|
+
"translation": "Implementa un editor di temi."
|
|
1689
|
+
},
|
|
1690
|
+
"feature_theme_label": {
|
|
1691
|
+
"source": "Theme",
|
|
1692
|
+
"translation": "Tema"
|
|
1693
|
+
},
|
|
1694
|
+
"feature_touch-action-bar_description": {
|
|
1695
|
+
"source": "Renders a button on touch devices to cancel touch actions.",
|
|
1696
|
+
"translation": "Visualizza un pulsante sui dispositivi touch per annullare le azioni touch."
|
|
1697
|
+
},
|
|
1698
|
+
"feature_touch-action-bar_label": {
|
|
1699
|
+
"source": "Touch Action Bar",
|
|
1700
|
+
"translation": "Barra delle azioni touch"
|
|
1701
|
+
},
|
|
1702
|
+
"feature_tour_description": {
|
|
1703
|
+
"source": "Provides a tour overlay to get to know the editor.",
|
|
1704
|
+
"translation": "Fornisce una sovrapposizione di tour per conoscere l'editor."
|
|
1705
|
+
},
|
|
1706
|
+
"feature_tour_label": {
|
|
1707
|
+
"source": "Tour",
|
|
1708
|
+
"translation": "Tour"
|
|
1709
|
+
},
|
|
1710
|
+
"feature_transform_description": {
|
|
1711
|
+
"source": "Provides integration for block transform plugins.",
|
|
1712
|
+
"translation": "Fornisce l'integrazione per i plugin di trasformazione dei blocchi."
|
|
1713
|
+
},
|
|
1714
|
+
"feature_transform_label": {
|
|
1715
|
+
"source": "Transform",
|
|
1716
|
+
"translation": "Trasforma"
|
|
1717
|
+
},
|
|
1718
|
+
"feature_translations_description": {
|
|
1719
|
+
"source": "Adds support for block translations.",
|
|
1720
|
+
"translation": "Aggiunge il supporto per le traduzioni dei blocchi."
|
|
1721
|
+
},
|
|
1722
|
+
"feature_translations_label": {
|
|
1723
|
+
"source": "Translations",
|
|
1724
|
+
"translation": "Traduzioni"
|
|
1725
|
+
},
|
|
1726
|
+
"feature_validations_description": {
|
|
1727
|
+
"source": "Provides a sidebar pane to render validations.",
|
|
1728
|
+
"translation": "Fornisce un pannello della barra laterale per visualizzare le validazioni."
|
|
1729
|
+
},
|
|
1730
|
+
"feature_validations_label": {
|
|
1731
|
+
"source": "Validations",
|
|
1732
|
+
"translation": "Validazioni"
|
|
1733
|
+
},
|
|
1734
|
+
"fieldIsRequired": {
|
|
1735
|
+
"source": "This field is required",
|
|
1736
|
+
"translation": "Questo campo è obbligatorio"
|
|
1737
|
+
},
|
|
1738
|
+
"fragmentsAddFragmentAction": {
|
|
1739
|
+
"source": "Fragment",
|
|
1740
|
+
"translation": ""
|
|
1741
|
+
},
|
|
1742
|
+
"fragmentsAddFragmentDescription": {
|
|
1743
|
+
"source": "<p>Drag the icon into the page to add a fragment block.</p><p>Fragments are reusable blocks that always render the same content.</p>",
|
|
1744
|
+
"translation": ""
|
|
1745
|
+
},
|
|
1746
|
+
"fragmentsPlaceDialogLead": {
|
|
1747
|
+
"source": "Select a block fragment to add to the page.",
|
|
1748
|
+
"translation": ""
|
|
1749
|
+
},
|
|
1750
|
+
"fragmentsPlaceDialogSearchLabel": {
|
|
1751
|
+
"source": "Filter fragments",
|
|
1752
|
+
"translation": ""
|
|
1753
|
+
},
|
|
1754
|
+
"fragmentsPlaceDialogSearchPlaceholder": {
|
|
1755
|
+
"source": "Search fragments",
|
|
1756
|
+
"translation": ""
|
|
1757
|
+
},
|
|
1758
|
+
"fragmentsPlaceDialogSubmitButton": {
|
|
1759
|
+
"source": "Add selected fragment",
|
|
1760
|
+
"translation": ""
|
|
1761
|
+
},
|
|
1762
|
+
"fragmentsPlaceDialogTitle": {
|
|
1763
|
+
"source": "Add fragment block",
|
|
1764
|
+
"translation": ""
|
|
1765
|
+
},
|
|
1766
|
+
"gridHide": {
|
|
1767
|
+
"source": "Hide grid",
|
|
1768
|
+
"translation": "Nascondi griglia"
|
|
1769
|
+
},
|
|
1770
|
+
"gridShow": {
|
|
1771
|
+
"source": "Show grid",
|
|
1772
|
+
"translation": "Mostra griglia"
|
|
1773
|
+
},
|
|
1774
|
+
"gridToggle": {
|
|
1775
|
+
"source": "Toggle grid",
|
|
1776
|
+
"translation": ""
|
|
1777
|
+
},
|
|
1778
|
+
"gridTourText": {
|
|
1779
|
+
"source": "Display a layout grid overlay on top of the page.",
|
|
1780
|
+
"translation": ""
|
|
1781
|
+
},
|
|
1782
|
+
"helpTourText": {
|
|
1783
|
+
"source": "Shows a list of available shortcuts.",
|
|
1784
|
+
"translation": ""
|
|
1785
|
+
},
|
|
1786
|
+
"history": {
|
|
1787
|
+
"source": "History",
|
|
1788
|
+
"translation": "Cronologia"
|
|
1789
|
+
},
|
|
1790
|
+
"historyCurrentRevision": {
|
|
1791
|
+
"source": "Current revision",
|
|
1792
|
+
"translation": "Revisione attuale"
|
|
1793
|
+
},
|
|
1794
|
+
"historyEmpty": {
|
|
1795
|
+
"source": "There are now changes yet.",
|
|
1796
|
+
"translation": ""
|
|
1797
|
+
},
|
|
1798
|
+
"historyRedo": {
|
|
1799
|
+
"source": "Redo",
|
|
1800
|
+
"translation": ""
|
|
1801
|
+
},
|
|
1802
|
+
"historyRedoTourText": {
|
|
1803
|
+
"source": "Redo the previous change.",
|
|
1804
|
+
"translation": ""
|
|
1805
|
+
},
|
|
1806
|
+
"historyShowMore": {
|
|
1807
|
+
"source": "Show @count more",
|
|
1808
|
+
"translation": "Mostra altre @count"
|
|
1809
|
+
},
|
|
1810
|
+
"historyTourText": {
|
|
1811
|
+
"source": "See a list of all changes made so far and switch back and forth between changes.",
|
|
1812
|
+
"translation": ""
|
|
1813
|
+
},
|
|
1814
|
+
"historyUndo": {
|
|
1815
|
+
"source": "Undo",
|
|
1816
|
+
"translation": ""
|
|
1817
|
+
},
|
|
1818
|
+
"historyUndoTourText": {
|
|
1819
|
+
"source": "Undo the last change.",
|
|
1820
|
+
"translation": ""
|
|
1821
|
+
},
|
|
1822
|
+
"importExistingDescription": {
|
|
1823
|
+
"source": "Import from an existing page",
|
|
1824
|
+
"translation": "Importa da una pagina esistente"
|
|
1825
|
+
},
|
|
1826
|
+
"importExistingDialogLead": {
|
|
1827
|
+
"source": "Import content from an existing page. The items will be added to the end of the list. This action can be undone.",
|
|
1828
|
+
"translation": "Importa contenuti da una pagina esistente. Gli elementi verranno aggiunti alla fine della lista. Questa azione può essere annullata."
|
|
1829
|
+
},
|
|
1830
|
+
"importExistingDialogSubmit": {
|
|
1831
|
+
"source": "Import content",
|
|
1832
|
+
"translation": "Importa contenuti"
|
|
1833
|
+
},
|
|
1834
|
+
"importExistingDialogTitle": {
|
|
1835
|
+
"source": "Import from existing page",
|
|
1836
|
+
"translation": "Importa da una pagina esistente"
|
|
1837
|
+
},
|
|
1838
|
+
"importExistingError": {
|
|
1839
|
+
"source": "Content could not be imported.",
|
|
1840
|
+
"translation": "I contenuti non possono essere importati."
|
|
1841
|
+
},
|
|
1842
|
+
"importExistingFieldsLabel": {
|
|
1843
|
+
"source": "Which content would you like to import?",
|
|
1844
|
+
"translation": "Quali contenuti vuoi importare?"
|
|
1845
|
+
},
|
|
1846
|
+
"importExistingPagesTitle": {
|
|
1847
|
+
"source": "Select page",
|
|
1848
|
+
"translation": ""
|
|
1849
|
+
},
|
|
1850
|
+
"importExistingSuccess": {
|
|
1851
|
+
"source": "Content imported successfully.",
|
|
1852
|
+
"translation": "Contenuti importati con successo."
|
|
1853
|
+
},
|
|
1854
|
+
"importExistingTitle": {
|
|
1855
|
+
"source": "Import...",
|
|
1856
|
+
"translation": "Importa..."
|
|
1857
|
+
},
|
|
1858
|
+
"interactionLayerOff": {
|
|
1859
|
+
"source": "Show interaction layers",
|
|
1860
|
+
"translation": ""
|
|
1861
|
+
},
|
|
1862
|
+
"interactionLayersOn": {
|
|
1863
|
+
"source": "Hide interaction layers",
|
|
1864
|
+
"translation": ""
|
|
1865
|
+
},
|
|
1866
|
+
"libraryAdd": {
|
|
1867
|
+
"source": "Add to library...",
|
|
1868
|
+
"translation": "Aggiungi alla biblioteca"
|
|
1869
|
+
},
|
|
1870
|
+
"libraryAddDescription": {
|
|
1871
|
+
"source": "<p>Add a reusable block from the block library. Changes to that block will become visible on all pages.</p>",
|
|
1872
|
+
"translation": ""
|
|
1873
|
+
},
|
|
1874
|
+
"libraryAddFromLibrary": {
|
|
1875
|
+
"source": "From library",
|
|
1876
|
+
"translation": ""
|
|
1877
|
+
},
|
|
1878
|
+
"libraryDetach": {
|
|
1879
|
+
"source": "Detach from library",
|
|
1880
|
+
"translation": ""
|
|
1881
|
+
},
|
|
1882
|
+
"libraryDialogDescriptionLabel": {
|
|
1883
|
+
"source": "Description",
|
|
1884
|
+
"translation": "Descrizione"
|
|
1885
|
+
},
|
|
1886
|
+
"libraryDialogLead": {
|
|
1887
|
+
"source": "When you add an item to the library, you can use it on multiple pages at the same time. Changes to this item are then immediately published on all pages.",
|
|
1888
|
+
"translation": "Aggiungendo un elemento alla biblioteca, puoi utilizzarlo su più pagine contemporaneamente. Le modifiche a questo elemento saranno pubblicate immediatamente su tutte le pagine."
|
|
1889
|
+
},
|
|
1890
|
+
"libraryDialogReusableInfo": {
|
|
1891
|
+
"source": "The library item will be available for placement on other pages once this page has been published.",
|
|
1892
|
+
"translation": ""
|
|
1893
|
+
},
|
|
1894
|
+
"libraryDialogSubmit": {
|
|
1895
|
+
"source": "Add to library",
|
|
1896
|
+
"translation": "Aggiungi alla biblioteca"
|
|
1897
|
+
},
|
|
1898
|
+
"libraryDialogTitle": {
|
|
1899
|
+
"source": "Add to library",
|
|
1900
|
+
"translation": "Aggiungi alla biblioteca"
|
|
1901
|
+
},
|
|
1902
|
+
"libraryDialogTitleInputPlaceholder": {
|
|
1903
|
+
"source": "e.g. Teaser Campaign 2024",
|
|
1904
|
+
"translation": "es. Anteprima Campagna 2023"
|
|
1905
|
+
},
|
|
1906
|
+
"libraryError": {
|
|
1907
|
+
"source": "Failed to add block to library.",
|
|
1908
|
+
"translation": "L'elemento non può essere reso riutilizzabile."
|
|
1909
|
+
},
|
|
1910
|
+
"libraryItemEditOverlayBack": {
|
|
1911
|
+
"source": "Back to page",
|
|
1912
|
+
"translation": ""
|
|
1913
|
+
},
|
|
1914
|
+
"libraryItemEditOverlayBackWithPage": {
|
|
1915
|
+
"source": "Back to \"@label\"",
|
|
1916
|
+
"translation": ""
|
|
1917
|
+
},
|
|
1918
|
+
"libraryItemEditOverlayTitle": {
|
|
1919
|
+
"source": "Edit reusable block",
|
|
1920
|
+
"translation": ""
|
|
1921
|
+
},
|
|
1922
|
+
"libraryPlaceBundleSelectLabel": {
|
|
1923
|
+
"source": "Bundle",
|
|
1924
|
+
"translation": ""
|
|
1925
|
+
},
|
|
1926
|
+
"libraryPlaceDialogLead": {
|
|
1927
|
+
"source": "Select a reusable block from the library to add it to your layout. You can detach the block later.",
|
|
1928
|
+
"translation": ""
|
|
1929
|
+
},
|
|
1930
|
+
"libraryPlaceDialogSubmit": {
|
|
1931
|
+
"source": "Add reusable block",
|
|
1932
|
+
"translation": ""
|
|
1933
|
+
},
|
|
1934
|
+
"libraryPlaceDialogTitle": {
|
|
1935
|
+
"source": "Add block from library",
|
|
1936
|
+
"translation": ""
|
|
1937
|
+
},
|
|
1938
|
+
"libraryPreviewLabel": {
|
|
1939
|
+
"source": "Preview",
|
|
1940
|
+
"translation": "Anteprima"
|
|
1941
|
+
},
|
|
1942
|
+
"manageSchedule": {
|
|
1943
|
+
"source": "Manage schedule...",
|
|
1944
|
+
"translation": ""
|
|
1945
|
+
},
|
|
1946
|
+
"maskHide": {
|
|
1947
|
+
"source": "Hide non-editable areas",
|
|
1948
|
+
"translation": "Nascondi campi di contenuto"
|
|
1949
|
+
},
|
|
1950
|
+
"maskShow": {
|
|
1951
|
+
"source": "Show non-editable areas",
|
|
1952
|
+
"translation": "Mostra campi di contenuto"
|
|
1953
|
+
},
|
|
1954
|
+
"maskToggle": {
|
|
1955
|
+
"source": "Toggle non-editable areas",
|
|
1956
|
+
"translation": ""
|
|
1957
|
+
},
|
|
1958
|
+
"maskTourText": {
|
|
1959
|
+
"source": "Toggle between showing or hiding non-editable parts of the page.",
|
|
1960
|
+
"translation": ""
|
|
1961
|
+
},
|
|
1962
|
+
"mediaLibrary": {
|
|
1963
|
+
"source": "Media Library",
|
|
1964
|
+
"translation": ""
|
|
1965
|
+
},
|
|
1966
|
+
"mediaLibraryReplaceFailed": {
|
|
1967
|
+
"source": "Failed to replace media.",
|
|
1968
|
+
"translation": ""
|
|
1969
|
+
},
|
|
1970
|
+
"mediaLibraryReplaceMedia": {
|
|
1971
|
+
"source": "Replace @field",
|
|
1972
|
+
"translation": ""
|
|
1973
|
+
},
|
|
1974
|
+
"mediaLibraryTourText": {
|
|
1975
|
+
"source": "Search for media like images and drag and drop them into the page.",
|
|
1976
|
+
"translation": ""
|
|
1977
|
+
},
|
|
1978
|
+
"mediaSelectConfirm": {
|
|
1979
|
+
"source": "Use selected",
|
|
1980
|
+
"translation": ""
|
|
1981
|
+
},
|
|
1982
|
+
"mediaSelectTitle": {
|
|
1983
|
+
"source": "Select a media item",
|
|
1984
|
+
"translation": ""
|
|
1985
|
+
},
|
|
1986
|
+
"multipleItemsLabel": {
|
|
1987
|
+
"source": "Items",
|
|
1988
|
+
"translation": "Elementi"
|
|
1989
|
+
},
|
|
1990
|
+
"nameDescription": {
|
|
1991
|
+
"source": "Name / Description",
|
|
1992
|
+
"translation": ""
|
|
1993
|
+
},
|
|
1994
|
+
"notSet": {
|
|
1995
|
+
"source": "Not set",
|
|
1996
|
+
"translation": ""
|
|
1997
|
+
},
|
|
1998
|
+
"notSupported": {
|
|
1999
|
+
"source": "Not supported",
|
|
2000
|
+
"translation": ""
|
|
2001
|
+
},
|
|
2002
|
+
"optionBkVisibleLanguagesAll": {
|
|
2003
|
+
"source": "All languages",
|
|
2004
|
+
"translation": ""
|
|
2005
|
+
},
|
|
2006
|
+
"optionsCommand.selectCheckboxValue": {
|
|
2007
|
+
"source": "Select \"@value\" in \"@option\"",
|
|
2008
|
+
"translation": ""
|
|
2009
|
+
},
|
|
2010
|
+
"optionsCommand.setOption": {
|
|
2011
|
+
"source": "Set option \"@option\" to \"@value\"",
|
|
2012
|
+
"translation": ""
|
|
2013
|
+
},
|
|
2014
|
+
"optionsCommand.unselectCheckboxValue": {
|
|
2015
|
+
"source": "Unselect \"@value\" in \"@option\"",
|
|
2016
|
+
"translation": ""
|
|
2017
|
+
},
|
|
2018
|
+
"overlayDoubleClickInfo": {
|
|
2019
|
+
"source": "<strong>Double click</strong> to close overlay",
|
|
2020
|
+
"translation": ""
|
|
2021
|
+
},
|
|
2022
|
+
"ownershipError": {
|
|
2023
|
+
"source": "Error in assigning",
|
|
2024
|
+
"translation": "Errore nell'assegnazione"
|
|
2025
|
+
},
|
|
2026
|
+
"ownershipNote": {
|
|
2027
|
+
"source": "This page is currently being edited by @name. Changes can only be made by one person at a time.",
|
|
2028
|
+
"translation": "Questa pagina è attualmente in lavorazione da @name. Le modifiche possono essere effettuate solo da una persona alla volta."
|
|
2029
|
+
},
|
|
2030
|
+
"ownershipSuccess": {
|
|
2031
|
+
"source": "You are now the owner.",
|
|
2032
|
+
"translation": "Ora sei il proprietario."
|
|
2033
|
+
},
|
|
2034
|
+
"ownershipTakeOwnership": {
|
|
2035
|
+
"source": "Assign to me",
|
|
2036
|
+
"translation": "Assegna a me"
|
|
2037
|
+
},
|
|
2038
|
+
"pageIsNotPublished": {
|
|
2039
|
+
"source": "Page is not published",
|
|
2040
|
+
"translation": "Pagina non pubblicata"
|
|
2041
|
+
},
|
|
2042
|
+
"pageIsPublished": {
|
|
2043
|
+
"source": "Page is published",
|
|
2044
|
+
"translation": "Pagina pubblicata"
|
|
2045
|
+
},
|
|
2046
|
+
"pageIsPublishedWithPendingChanges": {
|
|
2047
|
+
"source": "Page is published (changes pending)",
|
|
2048
|
+
"translation": "Pagina pubblicata (modifiche in attesa)"
|
|
2049
|
+
},
|
|
2050
|
+
"paste": {
|
|
2051
|
+
"source": "Paste",
|
|
2052
|
+
"translation": ""
|
|
2053
|
+
},
|
|
2054
|
+
"previewDialogLead": {
|
|
2055
|
+
"source": "Scan the QR code with your smartphone to open the preview.",
|
|
2056
|
+
"translation": "Scansiona il codice QR con il tuo smartphone per aprire l'anteprima."
|
|
2057
|
+
},
|
|
2058
|
+
"previewDialogTitle": {
|
|
2059
|
+
"source": "Preview with smartphone",
|
|
2060
|
+
"translation": "Anteprima con smartphone"
|
|
2061
|
+
},
|
|
2062
|
+
"previewNewWindow": {
|
|
2063
|
+
"source": "Preview (new window)",
|
|
2064
|
+
"translation": "Anteprima (nuova finestra)"
|
|
2065
|
+
},
|
|
2066
|
+
"previewNewWindowTourText": {
|
|
2067
|
+
"source": "Opens a preview of the current changes in a new window.",
|
|
2068
|
+
"translation": ""
|
|
2069
|
+
},
|
|
2070
|
+
"previewQrCodeText": {
|
|
2071
|
+
"source": "You can also copy the link and share it.",
|
|
2072
|
+
"translation": ""
|
|
2073
|
+
},
|
|
2074
|
+
"previewWithSmartphone": {
|
|
2075
|
+
"source": "Preview (with smartphone)",
|
|
2076
|
+
"translation": "Anteprima (con smartphone)"
|
|
2077
|
+
},
|
|
2078
|
+
"previewWithSmartphoneTourText": {
|
|
2079
|
+
"source": "Shows a QR code to quickly open a preview of the changes with your smartphone.",
|
|
2080
|
+
"translation": ""
|
|
2081
|
+
},
|
|
2082
|
+
"proxyViewHide": {
|
|
2083
|
+
"source": "Show content preview",
|
|
2084
|
+
"translation": ""
|
|
2085
|
+
},
|
|
2086
|
+
"proxyViewShow": {
|
|
2087
|
+
"source": "Show structure view",
|
|
2088
|
+
"translation": ""
|
|
2089
|
+
},
|
|
2090
|
+
"proxyViewToggle": {
|
|
2091
|
+
"source": "Toggle structure view",
|
|
2092
|
+
"translation": ""
|
|
2093
|
+
},
|
|
2094
|
+
"proxyViewTourText": {
|
|
2095
|
+
"source": "Displays the content blocks as a structured view.",
|
|
2096
|
+
"translation": ""
|
|
2097
|
+
},
|
|
2098
|
+
"publishAlreadyScheduledDescription": {
|
|
2099
|
+
"source": "This page is already scheduled for publishing",
|
|
2100
|
+
"translation": ""
|
|
2101
|
+
},
|
|
2102
|
+
"publishAndCloseLabel": {
|
|
2103
|
+
"source": "Publish & Close",
|
|
2104
|
+
"translation": ""
|
|
2105
|
+
},
|
|
2106
|
+
"publishAndCloseLabelUnpublished": {
|
|
2107
|
+
"source": "Save & Close",
|
|
2108
|
+
"translation": ""
|
|
2109
|
+
},
|
|
2110
|
+
"publishCurrentPage": {
|
|
2111
|
+
"source": "Current page",
|
|
2112
|
+
"translation": ""
|
|
2113
|
+
},
|
|
2114
|
+
"publishCurrentlyPublished": {
|
|
2115
|
+
"source": "Page is published",
|
|
2116
|
+
"translation": ""
|
|
2117
|
+
},
|
|
2118
|
+
"publishCurrentlyUnpublished": {
|
|
2119
|
+
"source": "Page is unpublished",
|
|
2120
|
+
"translation": ""
|
|
2121
|
+
},
|
|
2122
|
+
"publishDescription": {
|
|
2123
|
+
"source": "Publish all changes.",
|
|
2124
|
+
"translation": "Rendi pubbliche tutte le modifiche"
|
|
2125
|
+
},
|
|
2126
|
+
"publishDescriptionScheduled": {
|
|
2127
|
+
"source": "View or change the scheduled publication",
|
|
2128
|
+
"translation": ""
|
|
2129
|
+
},
|
|
2130
|
+
"publishDescriptionUnpublished": {
|
|
2131
|
+
"source": "Save all changes while keeping page unpublished",
|
|
2132
|
+
"translation": ""
|
|
2133
|
+
},
|
|
2134
|
+
"publishDialogTitle": {
|
|
2135
|
+
"source": "Publish changes",
|
|
2136
|
+
"translation": ""
|
|
2137
|
+
},
|
|
2138
|
+
"publishError": {
|
|
2139
|
+
"source": "Changes could not be published.",
|
|
2140
|
+
"translation": "Le modifiche non possono essere pubblicate."
|
|
2141
|
+
},
|
|
2142
|
+
"publishLabel": {
|
|
2143
|
+
"source": "Publish",
|
|
2144
|
+
"translation": "Pubblica"
|
|
2145
|
+
},
|
|
2146
|
+
"publishLabelUnpublished": {
|
|
2147
|
+
"source": "Save",
|
|
2148
|
+
"translation": ""
|
|
2149
|
+
},
|
|
2150
|
+
"publishManageSchedule": {
|
|
2151
|
+
"source": "Manage scheduling",
|
|
2152
|
+
"translation": ""
|
|
2153
|
+
},
|
|
2154
|
+
"publishMode": {
|
|
2155
|
+
"source": "Publish mode",
|
|
2156
|
+
"translation": ""
|
|
2157
|
+
},
|
|
2158
|
+
"publishModeImmediateDescription": {
|
|
2159
|
+
"source": "Publish changes immediately",
|
|
2160
|
+
"translation": ""
|
|
2161
|
+
},
|
|
2162
|
+
"publishModeImmediateTitle": {
|
|
2163
|
+
"source": "Publish",
|
|
2164
|
+
"translation": ""
|
|
2165
|
+
},
|
|
2166
|
+
"publishModeSaveDescription": {
|
|
2167
|
+
"source": "Save changes without publishing",
|
|
2168
|
+
"translation": ""
|
|
2169
|
+
},
|
|
2170
|
+
"publishModeSaveTitle": {
|
|
2171
|
+
"source": "Save",
|
|
2172
|
+
"translation": ""
|
|
2173
|
+
},
|
|
2174
|
+
"publishModeScheduledDescription": {
|
|
2175
|
+
"source": "Schedule changes for publishing",
|
|
2176
|
+
"translation": ""
|
|
2177
|
+
},
|
|
2178
|
+
"publishModeScheduledTitle": {
|
|
2179
|
+
"source": "Schedule",
|
|
2180
|
+
"translation": ""
|
|
2181
|
+
},
|
|
2182
|
+
"publishName": {
|
|
2183
|
+
"source": "Name",
|
|
2184
|
+
"translation": ""
|
|
2185
|
+
},
|
|
2186
|
+
"publishPublicationScheduled": {
|
|
2187
|
+
"source": "Publication scheduled",
|
|
2188
|
+
"translation": ""
|
|
2189
|
+
},
|
|
2190
|
+
"publishPublishContent": {
|
|
2191
|
+
"source": "Publish content",
|
|
2192
|
+
"translation": ""
|
|
2193
|
+
},
|
|
2194
|
+
"publishPublishContents": {
|
|
2195
|
+
"source": "Publish @count contents",
|
|
2196
|
+
"translation": ""
|
|
2197
|
+
},
|
|
2198
|
+
"publishRemainsPublished": {
|
|
2199
|
+
"source": "Remains published",
|
|
2200
|
+
"translation": ""
|
|
2201
|
+
},
|
|
2202
|
+
"publishRemainsUnpublished": {
|
|
2203
|
+
"source": "Remains unpublished",
|
|
2204
|
+
"translation": ""
|
|
2205
|
+
},
|
|
2206
|
+
"publishRemoveSchedule": {
|
|
2207
|
+
"source": "Remove schedule",
|
|
2208
|
+
"translation": ""
|
|
2209
|
+
},
|
|
2210
|
+
"publishResultPublishChangesNowPublished": {
|
|
2211
|
+
"source": "Changes are published, page is now published",
|
|
2212
|
+
"translation": ""
|
|
2213
|
+
},
|
|
2214
|
+
"publishResultPublishChangesRemainPublished": {
|
|
2215
|
+
"source": "Changes are published, page remains published",
|
|
2216
|
+
"translation": ""
|
|
2217
|
+
},
|
|
2218
|
+
"publishResultSaveChanges": {
|
|
2219
|
+
"source": "Changes are saved, page remains unpublished",
|
|
2220
|
+
"translation": ""
|
|
2221
|
+
},
|
|
2222
|
+
"publishResultScheduledChanges": {
|
|
2223
|
+
"source": "Changes will be published on @date",
|
|
2224
|
+
"translation": ""
|
|
2225
|
+
},
|
|
2226
|
+
"publishResultScheduledPage": {
|
|
2227
|
+
"source": "Page will be published on @date",
|
|
2228
|
+
"translation": ""
|
|
2229
|
+
},
|
|
2230
|
+
"publishRevisionLogMessage": {
|
|
2231
|
+
"source": "Change description",
|
|
2232
|
+
"translation": "Descrizione delle modifiche"
|
|
2233
|
+
},
|
|
2234
|
+
"publishRevisionLogMessageDescription": {
|
|
2235
|
+
"source": "Briefly describe the changes made",
|
|
2236
|
+
"translation": ""
|
|
2237
|
+
},
|
|
2238
|
+
"publishSaveContent": {
|
|
2239
|
+
"source": "Save content",
|
|
2240
|
+
"translation": ""
|
|
2241
|
+
},
|
|
2242
|
+
"publishSaveContents": {
|
|
2243
|
+
"source": "Save @count contents",
|
|
2244
|
+
"translation": ""
|
|
2245
|
+
},
|
|
2246
|
+
"publishScheduleDate": {
|
|
2247
|
+
"source": "Publication date",
|
|
2248
|
+
"translation": ""
|
|
2249
|
+
},
|
|
2250
|
+
"publishScheduleDateTooSoon": {
|
|
2251
|
+
"source": "The scheduled date must be at least 2 minutes in the future",
|
|
2252
|
+
"translation": ""
|
|
2253
|
+
},
|
|
2254
|
+
"publishSchedulePublication": {
|
|
2255
|
+
"source": "Schedule publication",
|
|
2256
|
+
"translation": ""
|
|
2257
|
+
},
|
|
2258
|
+
"publishSchedulePublications": {
|
|
2259
|
+
"source": "Schedule @count publications",
|
|
2260
|
+
"translation": ""
|
|
2261
|
+
},
|
|
2262
|
+
"publishScheduleSuccess": {
|
|
2263
|
+
"source": "Publication scheduled for @date",
|
|
2264
|
+
"translation": ""
|
|
2265
|
+
},
|
|
2266
|
+
"publishScheduledBlockPlural": {
|
|
2267
|
+
"source": "@count blocks are scheduled to be published on @date",
|
|
2268
|
+
"translation": ""
|
|
2269
|
+
},
|
|
2270
|
+
"publishScheduledBlockSingular": {
|
|
2271
|
+
"source": "1 block is scheduled to be published on @date",
|
|
2272
|
+
"translation": ""
|
|
2273
|
+
},
|
|
2274
|
+
"publishScheduledInfo": {
|
|
2275
|
+
"source": "You can still make changes until the scheduled publication date.",
|
|
2276
|
+
"translation": ""
|
|
2277
|
+
},
|
|
2278
|
+
"publishStatus": {
|
|
2279
|
+
"source": "Status",
|
|
2280
|
+
"translation": ""
|
|
2281
|
+
},
|
|
2282
|
+
"publishSuccess": {
|
|
2283
|
+
"source": "Changes published successfully.",
|
|
2284
|
+
"translation": "Modifiche pubblicate con successo."
|
|
2285
|
+
},
|
|
2286
|
+
"publishSuccessfullyPublished": {
|
|
2287
|
+
"source": "Successfully published",
|
|
2288
|
+
"translation": ""
|
|
2289
|
+
},
|
|
2290
|
+
"publishSuccessfullySaved": {
|
|
2291
|
+
"source": "Successfully saved",
|
|
2292
|
+
"translation": ""
|
|
2293
|
+
},
|
|
2294
|
+
"publishSummary": {
|
|
2295
|
+
"source": "Summary",
|
|
2296
|
+
"translation": ""
|
|
2297
|
+
},
|
|
2298
|
+
"publishWillBePublished": {
|
|
2299
|
+
"source": "Will be published",
|
|
2300
|
+
"translation": ""
|
|
2301
|
+
},
|
|
2302
|
+
"publishWillBeScheduled": {
|
|
2303
|
+
"source": "Will be scheduled",
|
|
2304
|
+
"translation": ""
|
|
2305
|
+
},
|
|
2306
|
+
"responsivePreviewCustomViewport": {
|
|
2307
|
+
"source": "Custom",
|
|
2308
|
+
"translation": ""
|
|
2309
|
+
},
|
|
2310
|
+
"responsivePreviewTitle": {
|
|
2311
|
+
"source": "Responsive Preview",
|
|
2312
|
+
"translation": ""
|
|
2313
|
+
},
|
|
2314
|
+
"responsivePreviewTourText": {
|
|
2315
|
+
"source": "See how your changes look like on smaller screens, such as smartphones. Click on the \"detach\" button to be able to select additional viewport sizes.",
|
|
2316
|
+
"translation": ""
|
|
2317
|
+
},
|
|
2318
|
+
"revertDialogLead": {
|
|
2319
|
+
"source": "This will delete all changes and restore the currently published state. This action cannot be undone.",
|
|
2320
|
+
"translation": "Questo eliminerà tutte le modifiche e ripristinerà lo stato attualmente pubblicato. Questa azione non può essere annullata."
|
|
2321
|
+
},
|
|
2322
|
+
"revertDialogSubmit": {
|
|
2323
|
+
"source": "Discard changes",
|
|
2324
|
+
"translation": "Scarta modifiche"
|
|
2325
|
+
},
|
|
2326
|
+
"revertDialogTitle": {
|
|
2327
|
+
"source": "Irrevocably discard changes",
|
|
2328
|
+
"translation": "Scarta irrevocabilmente le modifiche"
|
|
2329
|
+
},
|
|
2330
|
+
"revertError": {
|
|
2331
|
+
"source": "Changes could not be discarded.",
|
|
2332
|
+
"translation": "Le modifiche non possono essere scartate."
|
|
2333
|
+
},
|
|
2334
|
+
"revertMenuDescription": {
|
|
2335
|
+
"source": "Restore currently published state",
|
|
2336
|
+
"translation": "Ripristina lo stato attualmente pubblicato"
|
|
2337
|
+
},
|
|
2338
|
+
"revertMenuTitle": {
|
|
2339
|
+
"source": "Discard...",
|
|
2340
|
+
"translation": "Annulla..."
|
|
2341
|
+
},
|
|
2342
|
+
"revertSuccess": {
|
|
2343
|
+
"source": "All changes have been discarded.",
|
|
2344
|
+
"translation": "Tutte le modifiche sono state scartate."
|
|
2345
|
+
},
|
|
2346
|
+
"scheduledFor": {
|
|
2347
|
+
"source": "The changes will be published on this date.",
|
|
2348
|
+
"translation": ""
|
|
2349
|
+
},
|
|
2350
|
+
"searchBoxNoResultsFound": {
|
|
2351
|
+
"source": "No results found",
|
|
2352
|
+
"translation": "Nessun risultato trovato"
|
|
2353
|
+
},
|
|
2354
|
+
"searchBoxOnThisPage": {
|
|
2355
|
+
"source": "On this page",
|
|
2356
|
+
"translation": "Su questa pagina"
|
|
2357
|
+
},
|
|
2358
|
+
"searchBoxPlaceholder": {
|
|
2359
|
+
"source": "Enter search term",
|
|
2360
|
+
"translation": "Inserisci un termine di ricerca"
|
|
2361
|
+
},
|
|
2362
|
+
"searchContentReplace": {
|
|
2363
|
+
"source": "Replace @field",
|
|
2364
|
+
"translation": ""
|
|
2365
|
+
},
|
|
2366
|
+
"searchContentReplaceFailed": {
|
|
2367
|
+
"source": "Failed to replace content.",
|
|
2368
|
+
"translation": ""
|
|
2369
|
+
},
|
|
2370
|
+
"searchToolbarLabel": {
|
|
2371
|
+
"source": "Search content",
|
|
2372
|
+
"translation": "Cerca contenuti"
|
|
2373
|
+
},
|
|
2374
|
+
"searchTourText": {
|
|
2375
|
+
"source": "Quickly find blocks on the current page or existing content to drag and drop as blocks into the page.",
|
|
2376
|
+
"translation": ""
|
|
2377
|
+
},
|
|
2378
|
+
"selectAllBlocks": {
|
|
2379
|
+
"source": "Select all blocks",
|
|
2380
|
+
"translation": ""
|
|
2381
|
+
},
|
|
2382
|
+
"selectAllOfBundle": {
|
|
2383
|
+
"source": "Select all \"@bundle\" blocks",
|
|
2384
|
+
"translation": ""
|
|
2385
|
+
},
|
|
2386
|
+
"selectedIsNew": {
|
|
2387
|
+
"source": "New",
|
|
2388
|
+
"translation": ""
|
|
2389
|
+
},
|
|
2390
|
+
"settingsAdvanced": {
|
|
2391
|
+
"source": "Advanced",
|
|
2392
|
+
"translation": ""
|
|
2393
|
+
},
|
|
2394
|
+
"settingsAppearance": {
|
|
2395
|
+
"source": "Appearance",
|
|
2396
|
+
"translation": ""
|
|
2397
|
+
},
|
|
2398
|
+
"settingsArtboard": {
|
|
2399
|
+
"source": "Artboard",
|
|
2400
|
+
"translation": ""
|
|
2401
|
+
},
|
|
2402
|
+
"settingsBehaviour": {
|
|
2403
|
+
"source": "Behaviour",
|
|
2404
|
+
"translation": "Comportamento"
|
|
2405
|
+
},
|
|
2406
|
+
"settingsBeta": {
|
|
2407
|
+
"source": "New Features",
|
|
2408
|
+
"translation": ""
|
|
2409
|
+
},
|
|
2410
|
+
"settingsDialogTitle": {
|
|
2411
|
+
"source": "Change settings",
|
|
2412
|
+
"translation": "Impostazioni"
|
|
2413
|
+
},
|
|
2414
|
+
"settingsMenuDescription": {
|
|
2415
|
+
"source": "Personal settings for the editor",
|
|
2416
|
+
"translation": "Impostazioni personali per l'editor"
|
|
2417
|
+
},
|
|
2418
|
+
"settingsMenuTitle": {
|
|
2419
|
+
"source": "Settings",
|
|
2420
|
+
"translation": "Impostazioni"
|
|
2421
|
+
},
|
|
2422
|
+
"shortcutGroupBlocks": {
|
|
2423
|
+
"source": "Blocks",
|
|
2424
|
+
"translation": ""
|
|
2425
|
+
},
|
|
2426
|
+
"shortcutGroupGeneral": {
|
|
2427
|
+
"source": "General",
|
|
2428
|
+
"translation": ""
|
|
2429
|
+
},
|
|
2430
|
+
"shortcutGroupUi": {
|
|
2431
|
+
"source": "UI",
|
|
2432
|
+
"translation": ""
|
|
2433
|
+
},
|
|
2434
|
+
"sidebar.hide": {
|
|
2435
|
+
"source": "Hide @title",
|
|
2436
|
+
"translation": ""
|
|
2437
|
+
},
|
|
2438
|
+
"sidebar.show": {
|
|
2439
|
+
"source": "Show @title",
|
|
2440
|
+
"translation": ""
|
|
2441
|
+
},
|
|
2442
|
+
"singleComment": {
|
|
2443
|
+
"source": "comment",
|
|
2444
|
+
"translation": ""
|
|
2445
|
+
},
|
|
2446
|
+
"stateUnavailableText": {
|
|
2447
|
+
"source": "This could be due to missing permissions or a temporary problem. Please try again later.",
|
|
2448
|
+
"translation": ""
|
|
2449
|
+
},
|
|
2450
|
+
"stateUnavailableTitle": {
|
|
2451
|
+
"source": "The edit state could not be loaded.",
|
|
2452
|
+
"translation": ""
|
|
2453
|
+
},
|
|
2454
|
+
"structureToolbarLabel": {
|
|
2455
|
+
"source": "Structure",
|
|
2456
|
+
"translation": "Struttura"
|
|
2457
|
+
},
|
|
2458
|
+
"structureTourText": {
|
|
2459
|
+
"source": "Shows a structured list of all blocks on the current page. Click on any block to quickly jump to it.",
|
|
2460
|
+
"translation": ""
|
|
2461
|
+
},
|
|
2462
|
+
"systemRequirementsDialogButton": {
|
|
2463
|
+
"source": "Continue anyway",
|
|
2464
|
+
"translation": ""
|
|
2465
|
+
},
|
|
2466
|
+
"systemRequirementsDialogLead": {
|
|
2467
|
+
"source": "blökkli has detected that your browser does not meet one or more system requirements. For the best experience, please use a browser that supports all the listed requirements.",
|
|
2468
|
+
"translation": ""
|
|
2469
|
+
},
|
|
2470
|
+
"systemRequirementsDialogText": {
|
|
2471
|
+
"source": "blökkli has been tested and optimized for the latest versions of Chrome, Firefox, Edge, and Safari. Features like WebGL are well supported, but they may sometimes be disabled for performance or security reasons.",
|
|
2472
|
+
"translation": ""
|
|
2473
|
+
},
|
|
2474
|
+
"systemRequirementsDialogTitle": {
|
|
2475
|
+
"source": "System Requirements",
|
|
2476
|
+
"translation": ""
|
|
2477
|
+
},
|
|
2478
|
+
"systemRequirementsWebglText": {
|
|
2479
|
+
"source": "blökkli uses WebGL for fast rendering of UI elements such as selected blocks and drag-and-drop indicators. If WebGL is not supported, Blökkli will resort to fallback rendering, which is slower and lacks full feature support.",
|
|
2480
|
+
"translation": ""
|
|
2481
|
+
},
|
|
2482
|
+
"templatesAddTemplate": {
|
|
2483
|
+
"source": "Template",
|
|
2484
|
+
"translation": ""
|
|
2485
|
+
},
|
|
2486
|
+
"templatesAddTemplateDescription": {
|
|
2487
|
+
"source": "<p>Drag the icon into the page to add blocks from a template.</p><p>Templates are copied to your page and can be changed without affecting other pages.</p>",
|
|
2488
|
+
"translation": ""
|
|
2489
|
+
},
|
|
2490
|
+
"templatesCanNotBeDefault": {
|
|
2491
|
+
"source": "Only single blocks can be made default.",
|
|
2492
|
+
"translation": ""
|
|
2493
|
+
},
|
|
2494
|
+
"templatesCreate": {
|
|
2495
|
+
"source": "Create template...",
|
|
2496
|
+
"translation": ""
|
|
2497
|
+
},
|
|
2498
|
+
"templatesCreateDialogDefaultDescription": {
|
|
2499
|
+
"source": "If set, this template is used automatically when adding a new block of this type.",
|
|
2500
|
+
"translation": ""
|
|
2501
|
+
},
|
|
2502
|
+
"templatesCreateDialogDefaultLabel": {
|
|
2503
|
+
"source": "Use as default",
|
|
2504
|
+
"translation": ""
|
|
2505
|
+
},
|
|
2506
|
+
"templatesCreateDialogDescriptionLabel": {
|
|
2507
|
+
"source": "Description",
|
|
2508
|
+
"translation": ""
|
|
2509
|
+
},
|
|
2510
|
+
"templatesCreateDialogDescriptionPlaceholder": {
|
|
2511
|
+
"source": "Optional description of the template",
|
|
2512
|
+
"translation": ""
|
|
2513
|
+
},
|
|
2514
|
+
"templatesCreateDialogLabelLabel": {
|
|
2515
|
+
"source": "Name",
|
|
2516
|
+
"translation": ""
|
|
2517
|
+
},
|
|
2518
|
+
"templatesCreateDialogLabelPlaceholder": {
|
|
2519
|
+
"source": "e.g. Hero Section",
|
|
2520
|
+
"translation": ""
|
|
2521
|
+
},
|
|
2522
|
+
"templatesCreateDialogLead": {
|
|
2523
|
+
"source": "Create a reusable template from the selected blocks. Templates can be added to any page.",
|
|
2524
|
+
"translation": ""
|
|
2525
|
+
},
|
|
2526
|
+
"templatesCreateDialogPreviewLabel": {
|
|
2527
|
+
"source": "Preview",
|
|
2528
|
+
"translation": ""
|
|
2529
|
+
},
|
|
2530
|
+
"templatesCreateDialogSubmit": {
|
|
2531
|
+
"source": "Create template",
|
|
2532
|
+
"translation": ""
|
|
2533
|
+
},
|
|
2534
|
+
"templatesCreateDialogTitle": {
|
|
2535
|
+
"source": "Create template",
|
|
2536
|
+
"translation": ""
|
|
2537
|
+
},
|
|
2538
|
+
"templatesCreateError": {
|
|
2539
|
+
"source": "Failed to create template.",
|
|
2540
|
+
"translation": ""
|
|
2541
|
+
},
|
|
2542
|
+
"templatesDefaultPill": {
|
|
2543
|
+
"source": "Default",
|
|
2544
|
+
"translation": ""
|
|
2545
|
+
},
|
|
2546
|
+
"templatesDefaultPillDescription": {
|
|
2547
|
+
"source": "This template is used when new blocks of this type are created.",
|
|
2548
|
+
"translation": ""
|
|
2549
|
+
},
|
|
2550
|
+
"templatesDeleteError": {
|
|
2551
|
+
"source": "Failed to delete template.",
|
|
2552
|
+
"translation": ""
|
|
2553
|
+
},
|
|
2554
|
+
"templatesDeleteSuccess": {
|
|
2555
|
+
"source": "Template deleted successfully.",
|
|
2556
|
+
"translation": ""
|
|
2557
|
+
},
|
|
2558
|
+
"templatesEditOverlayTitle": {
|
|
2559
|
+
"source": "Edit template",
|
|
2560
|
+
"translation": ""
|
|
2561
|
+
},
|
|
2562
|
+
"templatesManageDialogCancelDelete": {
|
|
2563
|
+
"source": "Cancel",
|
|
2564
|
+
"translation": ""
|
|
2565
|
+
},
|
|
2566
|
+
"templatesManageDialogConfirmDelete": {
|
|
2567
|
+
"source": "Delete",
|
|
2568
|
+
"translation": ""
|
|
2569
|
+
},
|
|
2570
|
+
"templatesManageDialogDelete": {
|
|
2571
|
+
"source": "Delete",
|
|
2572
|
+
"translation": ""
|
|
2573
|
+
},
|
|
2574
|
+
"templatesManageDialogEdit": {
|
|
2575
|
+
"source": "Edit",
|
|
2576
|
+
"translation": ""
|
|
2577
|
+
},
|
|
2578
|
+
"templatesManageDialogLead": {
|
|
2579
|
+
"source": "View, edit and delete your block templates.",
|
|
2580
|
+
"translation": ""
|
|
2581
|
+
},
|
|
2582
|
+
"templatesManageDialogNoResults": {
|
|
2583
|
+
"source": "No templates found.",
|
|
2584
|
+
"translation": ""
|
|
2585
|
+
},
|
|
2586
|
+
"templatesManageDialogTitle": {
|
|
2587
|
+
"source": "Manage templates",
|
|
2588
|
+
"translation": ""
|
|
2589
|
+
},
|
|
2590
|
+
"templatesMenuDescription": {
|
|
2591
|
+
"source": "Edit and delete block templates",
|
|
2592
|
+
"translation": ""
|
|
2593
|
+
},
|
|
2594
|
+
"templatesMenuLabel": {
|
|
2595
|
+
"source": "Templates...",
|
|
2596
|
+
"translation": ""
|
|
2597
|
+
},
|
|
2598
|
+
"templatesMissingDefaultPermissions": {
|
|
2599
|
+
"source": "Missing permission to create default templates.",
|
|
2600
|
+
"translation": ""
|
|
2601
|
+
},
|
|
2602
|
+
"templatesNoResults": {
|
|
2603
|
+
"source": "No templates available for this field.",
|
|
2604
|
+
"translation": ""
|
|
2605
|
+
},
|
|
2606
|
+
"templatesPlaceDialogDescription": {
|
|
2607
|
+
"source": "Templates create copies of blocks that can be edited freely on this page without affecting other pages.",
|
|
2608
|
+
"translation": ""
|
|
2609
|
+
},
|
|
2610
|
+
"templatesPlaceDialogSubmitButton": {
|
|
2611
|
+
"source": "Add template blocks",
|
|
2612
|
+
"translation": ""
|
|
2613
|
+
},
|
|
2614
|
+
"templatesPlaceDialogTitle": {
|
|
2615
|
+
"source": "Add blocks from template",
|
|
2616
|
+
"translation": ""
|
|
2617
|
+
},
|
|
2618
|
+
"templatesSuccessMessage": {
|
|
2619
|
+
"source": "Successfully created template \"@label\"",
|
|
2620
|
+
"translation": ""
|
|
2621
|
+
},
|
|
2622
|
+
"theme": {
|
|
2623
|
+
"source": "Theme",
|
|
2624
|
+
"translation": ""
|
|
2625
|
+
},
|
|
2626
|
+
"themeTourText": {
|
|
2627
|
+
"source": "Change the colors of the theme and generate a theme file.",
|
|
2628
|
+
"translation": ""
|
|
2629
|
+
},
|
|
2630
|
+
"toggleInteractionLayers": {
|
|
2631
|
+
"source": "Toggle interaction layers",
|
|
2632
|
+
"translation": ""
|
|
2633
|
+
},
|
|
2634
|
+
"touchBarCancelDragging": {
|
|
2635
|
+
"source": "Cancel dragging",
|
|
2636
|
+
"translation": ""
|
|
2637
|
+
},
|
|
2638
|
+
"touchBarFinishSelecting": {
|
|
2639
|
+
"source": "Finish selecting",
|
|
2640
|
+
"translation": ""
|
|
2641
|
+
},
|
|
2642
|
+
"tourDescription": {
|
|
2643
|
+
"source": "Explore the features of the editor",
|
|
2644
|
+
"translation": ""
|
|
2645
|
+
},
|
|
2646
|
+
"tourIntro": {
|
|
2647
|
+
"source": "Explore the most important features of the editor and learn how to get started using blökkli.",
|
|
2648
|
+
"translation": ""
|
|
2649
|
+
},
|
|
2650
|
+
"tourLabel": {
|
|
2651
|
+
"source": "Take a tour",
|
|
2652
|
+
"translation": ""
|
|
2653
|
+
},
|
|
2654
|
+
"tourNext": {
|
|
2655
|
+
"source": "Next",
|
|
2656
|
+
"translation": ""
|
|
2657
|
+
},
|
|
2658
|
+
"tourPrev": {
|
|
2659
|
+
"source": "Previous",
|
|
2660
|
+
"translation": ""
|
|
2661
|
+
},
|
|
2662
|
+
"tourStartButton": {
|
|
2663
|
+
"source": "Start the tour",
|
|
2664
|
+
"translation": ""
|
|
2665
|
+
},
|
|
2666
|
+
"transformDialogButtonApply": {
|
|
2667
|
+
"source": "Apply changes",
|
|
2668
|
+
"translation": ""
|
|
2669
|
+
},
|
|
2670
|
+
"transformDialogButtonNewSuggestion": {
|
|
2671
|
+
"source": "New suggestion",
|
|
2672
|
+
"translation": ""
|
|
2673
|
+
},
|
|
2674
|
+
"transformDialogButtonPreview": {
|
|
2675
|
+
"source": "Preview",
|
|
2676
|
+
"translation": ""
|
|
2677
|
+
},
|
|
2678
|
+
"translationsBannerButton": {
|
|
2679
|
+
"source": "Edit source language instead",
|
|
2680
|
+
"translation": ""
|
|
2681
|
+
},
|
|
2682
|
+
"translationsBannerText": {
|
|
2683
|
+
"source": "You are currently editing the <strong>@language</strong> translation. Some features like adding, moving or deleting blocks are not available.",
|
|
2684
|
+
"translation": ""
|
|
2685
|
+
},
|
|
2686
|
+
"translationsBatchTranslateMenuDescription": {
|
|
2687
|
+
"source": "Translate all blocks",
|
|
2688
|
+
"translation": "Traduci tutti gli elementi"
|
|
2689
|
+
},
|
|
2690
|
+
"translationsBatchTranslateMenuTitle": {
|
|
2691
|
+
"source": "Translate...",
|
|
2692
|
+
"translation": "Traduci..."
|
|
2693
|
+
},
|
|
2694
|
+
"translationsItemAction": {
|
|
2695
|
+
"source": "Translate",
|
|
2696
|
+
"translation": "Traduci..."
|
|
2697
|
+
},
|
|
2698
|
+
"translationsTourText": {
|
|
2699
|
+
"source": "Quickly switch between available translations. A greyed out language indicates the content is not yet translated. Clicking on it opens the form to create a new translation for this language.",
|
|
2700
|
+
"translation": ""
|
|
2701
|
+
},
|
|
2702
|
+
"translationsTourTitle": {
|
|
2703
|
+
"source": "Translations",
|
|
2704
|
+
"translation": ""
|
|
2705
|
+
},
|
|
2706
|
+
"unexpectedMutationError": {
|
|
2707
|
+
"source": "An unexpected error happened.",
|
|
2708
|
+
"translation": ""
|
|
2709
|
+
},
|
|
2710
|
+
"validationsNoneFound": {
|
|
2711
|
+
"source": "No validation errors found.",
|
|
2712
|
+
"translation": "Nessun errore di validazione trovato."
|
|
2713
|
+
},
|
|
2714
|
+
"validationsToolbarLabel": {
|
|
2715
|
+
"source": "Validations",
|
|
2716
|
+
"translation": "Validazioni"
|
|
2717
|
+
},
|
|
2718
|
+
"validationsTourText": {
|
|
2719
|
+
"source": "See validation errors for content or structure on the current page.",
|
|
2720
|
+
"translation": ""
|
|
2721
|
+
},
|
|
2722
|
+
"viewBannerReviewText": {
|
|
2723
|
+
"source": "You can view and add comments but cannot edit content.",
|
|
2724
|
+
"translation": ""
|
|
2725
|
+
},
|
|
2726
|
+
"viewBannerReviewTitle": {
|
|
2727
|
+
"source": "You are in review mode.",
|
|
2728
|
+
"translation": ""
|
|
2729
|
+
},
|
|
2730
|
+
"viewBannerViewText": {
|
|
2731
|
+
"source": "You can view comments but cannot edit content.",
|
|
2732
|
+
"translation": ""
|
|
2733
|
+
},
|
|
2734
|
+
"viewBannerViewTitle": {
|
|
2735
|
+
"source": "You are in view-only mode.",
|
|
2736
|
+
"translation": ""
|
|
2737
|
+
}
|
|
2738
|
+
}
|