@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": "Witeri Aktione"
|
|
9
|
+
},
|
|
10
|
+
"addBlockCommand.appendInField": {
|
|
11
|
+
"source": "Append \"@block\" in \"@field\"",
|
|
12
|
+
"translation": "«@block» in «@field» drzüefüege"
|
|
13
|
+
},
|
|
14
|
+
"addBlockCommand.appendRoot": {
|
|
15
|
+
"source": "Append \"@block\"",
|
|
16
|
+
"translation": "«@block» drzuefüege"
|
|
17
|
+
},
|
|
18
|
+
"addBlockCommand.insertInField": {
|
|
19
|
+
"source": "Insert \"@block\" into \"@field\"",
|
|
20
|
+
"translation": "«@block» in «@field» drzuefüege"
|
|
21
|
+
},
|
|
22
|
+
"addButtonAfterBundle": {
|
|
23
|
+
"source": "Add after...",
|
|
24
|
+
"translation": "Noch däm drzuefüege..."
|
|
25
|
+
},
|
|
26
|
+
"addButtonBeforeBundle": {
|
|
27
|
+
"source": "Add before...",
|
|
28
|
+
"translation": "Vorhär drzuefüege..."
|
|
29
|
+
},
|
|
30
|
+
"addButtonBundleAfter": {
|
|
31
|
+
"source": "Add \"@bundle\" after",
|
|
32
|
+
"translation": "«@bundle» noch däm drzuefüege"
|
|
33
|
+
},
|
|
34
|
+
"addButtonBundleBefore": {
|
|
35
|
+
"source": "Add \"@bundle\" before",
|
|
36
|
+
"translation": "«@bundle» vorhär drzuefüege"
|
|
37
|
+
},
|
|
38
|
+
"addButtonBundleInsideField": {
|
|
39
|
+
"source": "Add \"@bundle\" inside @parentBundle » @fieldLabel",
|
|
40
|
+
"translation": "«@bundle» in @parentBundle » @fieldLabel drzuefüege"
|
|
41
|
+
},
|
|
42
|
+
"addButtonBundleToField": {
|
|
43
|
+
"source": "Add \"@bundle\" to @fieldLabel",
|
|
44
|
+
"translation": ""
|
|
45
|
+
},
|
|
46
|
+
"addButtonInsideField": {
|
|
47
|
+
"source": "Add inside @parentBundle » @fieldLabel...",
|
|
48
|
+
"translation": "In @parentBundle » @fieldLabel drzuefüege..."
|
|
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": "Kommentiere"
|
|
61
|
+
},
|
|
62
|
+
"addListItemFavoriteAdd": {
|
|
63
|
+
"source": "Add to favorites",
|
|
64
|
+
"translation": "Zu de Favorite drzuefüege"
|
|
65
|
+
},
|
|
66
|
+
"addListItemFavoriteRemove": {
|
|
67
|
+
"source": "Remove from favorites",
|
|
68
|
+
"translation": "Us de Favorite entfärne"
|
|
69
|
+
},
|
|
70
|
+
"addListSidebarTitle": {
|
|
71
|
+
"source": "Add blocks",
|
|
72
|
+
"translation": "Block drzuefüege"
|
|
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": "<p>Do gsehsch d'Lischt vo allne verfüegbare Blöck wo chönne drzuegfüegt wärde. Zieh s'Symbol in d'Sitte zum e Block drzuefüege.</p><p>Wenn e Block usgwählt isch, sin gwüssi Blöck uusggruet. Das zeigt aa, welchi Blöck in oder noch däm usgwählte Block chönne platziert wärde.</p>"
|
|
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": "Iigfüegter Tekscht"
|
|
445
|
+
},
|
|
446
|
+
"aiAgentPlaceholder": {
|
|
447
|
+
"source": "What should we work on?",
|
|
448
|
+
"translation": ""
|
|
449
|
+
},
|
|
450
|
+
"aiAgentPlaceholderReply": {
|
|
451
|
+
"source": "Reply...",
|
|
452
|
+
"translation": "Antworte..."
|
|
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": "Aahang entferne"
|
|
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": "Widerverwendeti Iigabe-Tokens (günstiger)"
|
|
569
|
+
},
|
|
570
|
+
"aiAgentTokensCachedLabel": {
|
|
571
|
+
"source": "Cached",
|
|
572
|
+
"translation": "Cache"
|
|
573
|
+
},
|
|
574
|
+
"aiAgentTokensCost": {
|
|
575
|
+
"source": "Estimated cost for this conversation",
|
|
576
|
+
"translation": "Gschätzti Chöste für die Konversation"
|
|
577
|
+
},
|
|
578
|
+
"aiAgentTokensCostLabel": {
|
|
579
|
+
"source": "Cost",
|
|
580
|
+
"translation": "Chöste"
|
|
581
|
+
},
|
|
582
|
+
"aiAgentTokensInput": {
|
|
583
|
+
"source": "Tokens used to send context to the AI",
|
|
584
|
+
"translation": "Tokens wo als Kontäxt a d'KI gschickt wärde"
|
|
585
|
+
},
|
|
586
|
+
"aiAgentTokensInputLabel": {
|
|
587
|
+
"source": "Input",
|
|
588
|
+
"translation": "Iigabe"
|
|
589
|
+
},
|
|
590
|
+
"aiAgentTokensOutput": {
|
|
591
|
+
"source": "Tokens generated by the AI in responses",
|
|
592
|
+
"translation": "Vo de KI generierti Tokens i de Antworte"
|
|
593
|
+
},
|
|
594
|
+
"aiAgentTokensOutputLabel": {
|
|
595
|
+
"source": "Output",
|
|
596
|
+
"translation": "Usgabe"
|
|
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": "Alli"
|
|
637
|
+
},
|
|
638
|
+
"allowedBlocks": {
|
|
639
|
+
"source": "Allowed Blocks",
|
|
640
|
+
"translation": ""
|
|
641
|
+
},
|
|
642
|
+
"analyzeButtonLabel": {
|
|
643
|
+
"source": "Analyze Page",
|
|
644
|
+
"translation": "Sitte analysiere"
|
|
645
|
+
},
|
|
646
|
+
"analyzeCategory": {
|
|
647
|
+
"source": "Category",
|
|
648
|
+
"translation": "Kategorie"
|
|
649
|
+
},
|
|
650
|
+
"analyzeCategoryAccessibility": {
|
|
651
|
+
"source": "Accessibility",
|
|
652
|
+
"translation": "Barrierefreiheit"
|
|
653
|
+
},
|
|
654
|
+
"analyzeCategoryContent": {
|
|
655
|
+
"source": "Content",
|
|
656
|
+
"translation": "Inhalt"
|
|
657
|
+
},
|
|
658
|
+
"analyzeCategorySeo": {
|
|
659
|
+
"source": "SEO",
|
|
660
|
+
"translation": "SEO"
|
|
661
|
+
},
|
|
662
|
+
"analyzeCategoryText": {
|
|
663
|
+
"source": "Text",
|
|
664
|
+
"translation": "Teggscht"
|
|
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": "Zletscht usgfüehrt: @time"
|
|
673
|
+
},
|
|
674
|
+
"analyzeMoreLink": {
|
|
675
|
+
"source": "More",
|
|
676
|
+
"translation": "Meh"
|
|
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": "Analysiere"
|
|
689
|
+
},
|
|
690
|
+
"analyzeStatusInapplicable": {
|
|
691
|
+
"source": "Inapplicable",
|
|
692
|
+
"translation": "Nid zuetreffe"
|
|
693
|
+
},
|
|
694
|
+
"analyzeStatusIncomplete": {
|
|
695
|
+
"source": "Incomplete",
|
|
696
|
+
"translation": "Unvollständig"
|
|
697
|
+
},
|
|
698
|
+
"analyzeStatusPass": {
|
|
699
|
+
"source": "Pass",
|
|
700
|
+
"translation": "I Ornig"
|
|
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": "Verstoss"
|
|
713
|
+
},
|
|
714
|
+
"analyzeTourText": {
|
|
715
|
+
"source": "Analyze the content of your page",
|
|
716
|
+
"translation": "Dr Inhalt vo dinere Sitte analysiere"
|
|
717
|
+
},
|
|
718
|
+
"analyzerReadabiliyAverageSentenceLength": {
|
|
719
|
+
"source": "Average sentence length @length → split sentences.",
|
|
720
|
+
"translation": "Durchschnittlichi Satzlängi @length → Sätz ufdrennen."
|
|
721
|
+
},
|
|
722
|
+
"analyzerReadabiliyDescription": {
|
|
723
|
+
"source": "Avoid texts that are hard to read.",
|
|
724
|
+
"translation": "Vermiid Teggscht wo schwär z'läse sin."
|
|
725
|
+
},
|
|
726
|
+
"analyzerReadabiliyHardToRead": {
|
|
727
|
+
"source": "Hard to read (@lang).",
|
|
728
|
+
"translation": "Schwär z'läse (@lang)."
|
|
729
|
+
},
|
|
730
|
+
"analyzerReadabiliyShorterSentences": {
|
|
731
|
+
"source": "Consider shorter sentences and simpler wording.",
|
|
732
|
+
"translation": "Bruch chürzeri Sätz und eifacheri Formulierige."
|
|
733
|
+
},
|
|
734
|
+
"analyzerReadabiliyTitle": {
|
|
735
|
+
"source": "Text readability issues",
|
|
736
|
+
"translation": "Läsbarkeitsproblem im Teggscht"
|
|
737
|
+
},
|
|
738
|
+
"anchorHide": {
|
|
739
|
+
"source": "Hide anchor links",
|
|
740
|
+
"translation": "Anker-Links verstecke"
|
|
741
|
+
},
|
|
742
|
+
"anchorShow": {
|
|
743
|
+
"source": "Show anchor links",
|
|
744
|
+
"translation": "Anker-Links aazeige"
|
|
745
|
+
},
|
|
746
|
+
"anchorToggle": {
|
|
747
|
+
"source": "Toggle anchor links",
|
|
748
|
+
"translation": "Anker-Links umschalte"
|
|
749
|
+
},
|
|
750
|
+
"artboard": {
|
|
751
|
+
"source": "Artboard",
|
|
752
|
+
"translation": "Zeichenflächi"
|
|
753
|
+
},
|
|
754
|
+
"artboardOverviewHide": {
|
|
755
|
+
"source": "Hide overview",
|
|
756
|
+
"translation": "Übersicht verstecke"
|
|
757
|
+
},
|
|
758
|
+
"artboardOverviewShow": {
|
|
759
|
+
"source": "Show overview",
|
|
760
|
+
"translation": "Übersicht aazeige"
|
|
761
|
+
},
|
|
762
|
+
"artboardOverviewToggle": {
|
|
763
|
+
"source": "Toggle overview",
|
|
764
|
+
"translation": "Übersicht umschalte"
|
|
765
|
+
},
|
|
766
|
+
"artboardOverviewTourText": {
|
|
767
|
+
"source": "Displays a top level overview of your content.",
|
|
768
|
+
"translation": "Zeigt e Übersicht über dini Inhält aa."
|
|
769
|
+
},
|
|
770
|
+
"artboardResetZoom": {
|
|
771
|
+
"source": "Reset zoom",
|
|
772
|
+
"translation": "Zoom zruggsetze"
|
|
773
|
+
},
|
|
774
|
+
"artboardScaleToFit": {
|
|
775
|
+
"source": "Scale to fit",
|
|
776
|
+
"translation": "And Höchi aapasse"
|
|
777
|
+
},
|
|
778
|
+
"artboardScrollDown": {
|
|
779
|
+
"source": "Scroll down",
|
|
780
|
+
"translation": "abescrolle"
|
|
781
|
+
},
|
|
782
|
+
"artboardScrollOnePageDown": {
|
|
783
|
+
"source": "Scroll one page down",
|
|
784
|
+
"translation": "E Sitte ufescrolle"
|
|
785
|
+
},
|
|
786
|
+
"artboardScrollOnePageUp": {
|
|
787
|
+
"source": "Scroll one page up",
|
|
788
|
+
"translation": "E Sitte abescrolle"
|
|
789
|
+
},
|
|
790
|
+
"artboardScrollToEnd": {
|
|
791
|
+
"source": "Scroll to end",
|
|
792
|
+
"translation": "Zum Schluss scrolle"
|
|
793
|
+
},
|
|
794
|
+
"artboardScrollToTop": {
|
|
795
|
+
"source": "Scroll to top",
|
|
796
|
+
"translation": "Zum Aafang scrolle"
|
|
797
|
+
},
|
|
798
|
+
"artboardScrollUp": {
|
|
799
|
+
"source": "Scroll up",
|
|
800
|
+
"translation": "ufescrolle"
|
|
801
|
+
},
|
|
802
|
+
"artboardToolbarButtonTourText": {
|
|
803
|
+
"source": "Shows the current zoom factor. Click on it to reset the zoom back to 100%.",
|
|
804
|
+
"translation": "Zeigt dr aktuäll Zoom-Faktor aa. Klick druf zum dr Zoom uf 100% zruggzsetze."
|
|
805
|
+
},
|
|
806
|
+
"assistantAddAction": {
|
|
807
|
+
"source": "Add with AI Assistant",
|
|
808
|
+
"translation": "Mitem KI-Assischtänt drzuefüege"
|
|
809
|
+
},
|
|
810
|
+
"assistantAddActionDescription": {
|
|
811
|
+
"source": "Add content using an AI assistant.",
|
|
812
|
+
"translation": "Inhält mitemne KI-Assischtänt drzuefüege."
|
|
813
|
+
},
|
|
814
|
+
"assistantAddResultError": {
|
|
815
|
+
"source": "Failed to add block from assistant.",
|
|
816
|
+
"translation": "Es het e Fähler gäh bim drzuefüege mitem KI Assischtänt"
|
|
817
|
+
},
|
|
818
|
+
"assistantDialogLead": {
|
|
819
|
+
"source": "Please enter what you'd like the assistant to generate.",
|
|
820
|
+
"translation": "Bitte git iih, was dr KI-Assischtänt söll generiere. "
|
|
821
|
+
},
|
|
822
|
+
"assistantDialogSubmit": {
|
|
823
|
+
"source": "Create blocks",
|
|
824
|
+
"translation": "Blöck erstelle"
|
|
825
|
+
},
|
|
826
|
+
"assistantDialogTitle": {
|
|
827
|
+
"source": "Generate content with AI assistant",
|
|
828
|
+
"translation": "Inhalt mit KI generiere"
|
|
829
|
+
},
|
|
830
|
+
"assistantPromptLabel": {
|
|
831
|
+
"source": "Prompt",
|
|
832
|
+
"translation": "Aawiisig"
|
|
833
|
+
},
|
|
834
|
+
"assistantPromptPlaceholder": {
|
|
835
|
+
"source": "Generate content for a page about how taxes work in Switzerland",
|
|
836
|
+
"translation": "Schrib e Teggscht zum Thema Stüüre in dr Schwiz"
|
|
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": "Mach e Rächtsklick uf e Block zum nen zu dine Favorite drzuefüege oder z'entfärne. Favorite sin hervorhebt und wärde immer oobe in dr Lischt aazeigt."
|
|
849
|
+
},
|
|
850
|
+
"blockAddListTourTitle": {
|
|
851
|
+
"source": "Favorite blocks",
|
|
852
|
+
"translation": "Lieblingsblöck"
|
|
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": "Global verstecke"
|
|
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": "Sichtbari Sproche"
|
|
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": "Uswahl abbräche"
|
|
921
|
+
},
|
|
922
|
+
"clearInput": {
|
|
923
|
+
"source": "Clear input",
|
|
924
|
+
"translation": ""
|
|
925
|
+
},
|
|
926
|
+
"clipboard": {
|
|
927
|
+
"source": "Clipboard",
|
|
928
|
+
"translation": "Zwüscheablag"
|
|
929
|
+
},
|
|
930
|
+
"clipboardCopyShortcutHelp": {
|
|
931
|
+
"source": "Copy selected blocks",
|
|
932
|
+
"translation": "Usgwählti Blöck kopiere"
|
|
933
|
+
},
|
|
934
|
+
"clipboardEmpty": {
|
|
935
|
+
"source": "No items in the clipboard",
|
|
936
|
+
"translation": "In dr Zwüscheablag hets nüt"
|
|
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>Bruch Ctrl+V zum öbbis iifüege. D'Inhält wärde denn do aazeigt.</p><p>Bruch Ctrl+F zum bestehendi Inhält z'sueche und ind Zwüscheablag iizfüege. </p>"
|
|
941
|
+
},
|
|
942
|
+
"clipboardPasteDescription": {
|
|
943
|
+
"source": "Paste blocks from clipboard",
|
|
944
|
+
"translation": "Blöck us dr Zwüscheablag iifüege"
|
|
945
|
+
},
|
|
946
|
+
"clipboardPasteError": {
|
|
947
|
+
"source": "Failed to paste:",
|
|
948
|
+
"translation": "Iifüege het nid funktioniert:"
|
|
949
|
+
},
|
|
950
|
+
"clipboardPasteErrorAllowedBundlesMultiple": {
|
|
951
|
+
"source": "Block types (@types) are not allowed here.",
|
|
952
|
+
"translation": "Block-Type (@types) sin do nid erlaubt."
|
|
953
|
+
},
|
|
954
|
+
"clipboardPasteErrorAllowedBundlesSingle": {
|
|
955
|
+
"source": "Block type \"@types\" is not allowed here.",
|
|
956
|
+
"translation": "Block-Typ «@types» isch do nid erlaubt."
|
|
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": "In däm Fäld sin maximal @count Blöck erlaubt."
|
|
969
|
+
},
|
|
970
|
+
"clipboardPasteErrorOneField": {
|
|
971
|
+
"source": "Pasting is only possible into one field at a time.",
|
|
972
|
+
"translation": "Iifüege isch nur in eis Fäld uf s'Mol möglich."
|
|
973
|
+
},
|
|
974
|
+
"clipboardPastePlaceholder": {
|
|
975
|
+
"source": "Paste text or media here",
|
|
976
|
+
"translation": "Teggscht oder Medie iifüege"
|
|
977
|
+
},
|
|
978
|
+
"clipboardPasteShortcutHelp": {
|
|
979
|
+
"source": "Paste text, image or copied blocks",
|
|
980
|
+
"translation": "Teggscht, Bild oder kopierti Blöck iifüege"
|
|
981
|
+
},
|
|
982
|
+
"clipboardTourText": {
|
|
983
|
+
"source": "Drag and drop content pasted from your clipboard into the page to create a matching block.",
|
|
984
|
+
"translation": "Zieh Inhält us dinere Zwüscheablag in d'Sitte zum e passende Block z'erstelle."
|
|
985
|
+
},
|
|
986
|
+
"close": {
|
|
987
|
+
"source": "Close",
|
|
988
|
+
"translation": "Zuemache"
|
|
989
|
+
},
|
|
990
|
+
"commandGroup.action": {
|
|
991
|
+
"source": "Actions",
|
|
992
|
+
"translation": "Aktione"
|
|
993
|
+
},
|
|
994
|
+
"commandGroup.add": {
|
|
995
|
+
"source": "Add new",
|
|
996
|
+
"translation": "Drzuefüege"
|
|
997
|
+
},
|
|
998
|
+
"commandGroup.misc": {
|
|
999
|
+
"source": "Miscellaneous",
|
|
1000
|
+
"translation": "Divärses"
|
|
1001
|
+
},
|
|
1002
|
+
"commandGroup.selection": {
|
|
1003
|
+
"source": "Selection",
|
|
1004
|
+
"translation": "Uswahl"
|
|
1005
|
+
},
|
|
1006
|
+
"commandGroup.ui": {
|
|
1007
|
+
"source": "Interface",
|
|
1008
|
+
"translation": "Oberflächi"
|
|
1009
|
+
},
|
|
1010
|
+
"commandPalette.inputPlaceholder": {
|
|
1011
|
+
"source": "Search commands...",
|
|
1012
|
+
"translation": "Aktione durchsueche..."
|
|
1013
|
+
},
|
|
1014
|
+
"commandPaletteOpen": {
|
|
1015
|
+
"source": "Open Command Palette",
|
|
1016
|
+
"translation": "Befehlspalette ufmache"
|
|
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": "Füehr Aktione eifach mit dinere Tastatuur uus, indem d'Befehlspalette ufmachsch. Di meischte Funktione wo mit Klicks verfüegbar sin, gits au in dr Befehlspalette."
|
|
1021
|
+
},
|
|
1022
|
+
"commentAdd": {
|
|
1023
|
+
"source": "Add comment",
|
|
1024
|
+
"translation": "Kommentar drzuefüege"
|
|
1025
|
+
},
|
|
1026
|
+
"commentBodyPlaceholder": {
|
|
1027
|
+
"source": "Add reply",
|
|
1028
|
+
"translation": "Antwort drzuefüege"
|
|
1029
|
+
},
|
|
1030
|
+
"commentSave": {
|
|
1031
|
+
"source": "Submit comment",
|
|
1032
|
+
"translation": "Kommentar speichere"
|
|
1033
|
+
},
|
|
1034
|
+
"comments": {
|
|
1035
|
+
"source": "Comments",
|
|
1036
|
+
"translation": "Kommentär"
|
|
1037
|
+
},
|
|
1038
|
+
"commentsMarkAsResolved": {
|
|
1039
|
+
"source": "Resolve",
|
|
1040
|
+
"translation": "Abschliesse"
|
|
1041
|
+
},
|
|
1042
|
+
"commentsTourText": {
|
|
1043
|
+
"source": "Shows all comments for the current page.",
|
|
1044
|
+
"translation": "Zeigt alli Kommentär für die aktuelli Sitte aa."
|
|
1045
|
+
},
|
|
1046
|
+
"conversionsConvertTo": {
|
|
1047
|
+
"source": "Convert to: @bundle",
|
|
1048
|
+
"translation": "Konvertiere zu: @bundle"
|
|
1049
|
+
},
|
|
1050
|
+
"copiedToClipboardMessage": {
|
|
1051
|
+
"source": "\"@text\" has been copied to your clipboard",
|
|
1052
|
+
"translation": "«@text» isch in dini Zwüscheablag kopiert worde"
|
|
1053
|
+
},
|
|
1054
|
+
"copy": {
|
|
1055
|
+
"source": "Copy",
|
|
1056
|
+
"translation": "Kopiere"
|
|
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": "Lösche"
|
|
1073
|
+
},
|
|
1074
|
+
"deleteError": {
|
|
1075
|
+
"source": "The block could not be deleted.",
|
|
1076
|
+
"translation": "S'Elemänt het nid chönne entfärnt wärde. "
|
|
1077
|
+
},
|
|
1078
|
+
"diffAfter": {
|
|
1079
|
+
"source": "After",
|
|
1080
|
+
"translation": "Nochhär"
|
|
1081
|
+
},
|
|
1082
|
+
"diffBefore": {
|
|
1083
|
+
"source": "Before",
|
|
1084
|
+
"translation": "Vorhär"
|
|
1085
|
+
},
|
|
1086
|
+
"diffModeAfter": {
|
|
1087
|
+
"source": "After",
|
|
1088
|
+
"translation": "Nochhär"
|
|
1089
|
+
},
|
|
1090
|
+
"diffModeInline": {
|
|
1091
|
+
"source": "Inline",
|
|
1092
|
+
"translation": "Inline"
|
|
1093
|
+
},
|
|
1094
|
+
"diffModeLabel": {
|
|
1095
|
+
"source": "Display",
|
|
1096
|
+
"translation": "Aazaig"
|
|
1097
|
+
},
|
|
1098
|
+
"diffModeSideBySide": {
|
|
1099
|
+
"source": "Both",
|
|
1100
|
+
"translation": "Beidi"
|
|
1101
|
+
},
|
|
1102
|
+
"diffSidebarTitle": {
|
|
1103
|
+
"source": "Changes",
|
|
1104
|
+
"translation": "Änderige"
|
|
1105
|
+
},
|
|
1106
|
+
"diffSidebarTourText": {
|
|
1107
|
+
"source": "Displays all the changes made during editing.",
|
|
1108
|
+
"translation": "Zeigt alli Änderige wo bim Bearbeite gmacht worde sin aa."
|
|
1109
|
+
},
|
|
1110
|
+
"diffStatusAdded": {
|
|
1111
|
+
"source": "Added",
|
|
1112
|
+
"translation": "Drzuegfüegt"
|
|
1113
|
+
},
|
|
1114
|
+
"diffStatusDeleted": {
|
|
1115
|
+
"source": "Deleted",
|
|
1116
|
+
"translation": "Glöscht"
|
|
1117
|
+
},
|
|
1118
|
+
"diffStatusEdited": {
|
|
1119
|
+
"source": "Edited",
|
|
1120
|
+
"translation": "Bearbeitet"
|
|
1121
|
+
},
|
|
1122
|
+
"diffStatusUnchanged": {
|
|
1123
|
+
"source": "Unchanged",
|
|
1124
|
+
"translation": "Unveränderet"
|
|
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": "Dupliziere"
|
|
1137
|
+
},
|
|
1138
|
+
"duplicateError": {
|
|
1139
|
+
"source": "The items could not be duplicated.",
|
|
1140
|
+
"translation": "D'Elemänt hän nid chönne dupliziert wärde. "
|
|
1141
|
+
},
|
|
1142
|
+
"edit": {
|
|
1143
|
+
"source": "Edit...",
|
|
1144
|
+
"translation": "Bearbeite"
|
|
1145
|
+
},
|
|
1146
|
+
"editFormBlockAdd": {
|
|
1147
|
+
"source": "Add @label",
|
|
1148
|
+
"translation": "@label drzuefüege"
|
|
1149
|
+
},
|
|
1150
|
+
"editFormBlockEdit": {
|
|
1151
|
+
"source": "Edit @label",
|
|
1152
|
+
"translation": "@label bearbeite"
|
|
1153
|
+
},
|
|
1154
|
+
"editFormBlockTranslate": {
|
|
1155
|
+
"source": "Translate @label (@language)",
|
|
1156
|
+
"translation": "@label übersetze (@language)"
|
|
1157
|
+
},
|
|
1158
|
+
"editFormEntityEdit": {
|
|
1159
|
+
"source": "Edit @label",
|
|
1160
|
+
"translation": "\"@label\" bearbeite"
|
|
1161
|
+
},
|
|
1162
|
+
"editFormEntityTranslate": {
|
|
1163
|
+
"source": "Translate \"@label\" (@language)",
|
|
1164
|
+
"translation": "\"@label\" übersetze (@language)"
|
|
1165
|
+
},
|
|
1166
|
+
"editIndicatorLabel": {
|
|
1167
|
+
"source": "Edit blocks",
|
|
1168
|
+
"translation": "Elemänt bearbeite"
|
|
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": "Fäld «@name» bearbeite"
|
|
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": "<p>Zeigt dr Titel und Status vo dr aktuälle Sitte aa.</p><p>Klick uf dr Titel zum s'Sitte-Bearbeitsformular z'öffne.</p>"
|
|
1189
|
+
},
|
|
1190
|
+
"entityTitleTourTitle": {
|
|
1191
|
+
"source": "Page",
|
|
1192
|
+
"translation": "Sitte"
|
|
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": "Dr Editor zuemache ohni z'veröffentliche"
|
|
1205
|
+
},
|
|
1206
|
+
"exitTitle": {
|
|
1207
|
+
"source": "Close",
|
|
1208
|
+
"translation": "Zuemache"
|
|
1209
|
+
},
|
|
1210
|
+
"failedToConvert": {
|
|
1211
|
+
"source": "The block could not be converted.",
|
|
1212
|
+
"translation": "S'Elemänt het nid chönne konvertiert wärde. "
|
|
1213
|
+
},
|
|
1214
|
+
"failedToTransform": {
|
|
1215
|
+
"source": "The action \"@name\" could not be executed.",
|
|
1216
|
+
"translation": "D'Aktion «@name» het nid chönne usgfüert wärde."
|
|
1217
|
+
},
|
|
1218
|
+
"fatalErrorButton": {
|
|
1219
|
+
"source": "Continue anyway...",
|
|
1220
|
+
"translation": "Trotzdem wiiterfahre..."
|
|
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": "Leider het blökkli e schwäre Fähler gha wo s'normale Funktioniere verhinderet. Du chasch eventuell wiitermache, aber es chönnt sii, dass nid alles eso funktioniert wie's sött."
|
|
1225
|
+
},
|
|
1226
|
+
"fatalErrorTitle": {
|
|
1227
|
+
"source": "blökkli has stopped working",
|
|
1228
|
+
"translation": "blökkli het ufghört z'funktioniere"
|
|
1229
|
+
},
|
|
1230
|
+
"featureHelpShortcuts": {
|
|
1231
|
+
"source": "Shortcuts",
|
|
1232
|
+
"translation": "Taschtekombinatione"
|
|
1233
|
+
},
|
|
1234
|
+
"featureHelpTitle": {
|
|
1235
|
+
"source": "Help",
|
|
1236
|
+
"translation": "Hilf"
|
|
1237
|
+
},
|
|
1238
|
+
"feature_add-list_description": {
|
|
1239
|
+
"source": "Provides the container to render a list of blocks to add or add actions.",
|
|
1240
|
+
"translation": "Stellt dr Container bereit zum e Lischt vo Blöck oder Aktione zum drzuefüege z'rendere."
|
|
1241
|
+
},
|
|
1242
|
+
"feature_add-list_label": {
|
|
1243
|
+
"source": "Add List",
|
|
1244
|
+
"translation": "Drzuefüeg-Lischt"
|
|
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": "Blöck und Sitte analysiere für SEO, Barrierefreiheit usw."
|
|
1265
|
+
},
|
|
1266
|
+
"feature_analyze_label": {
|
|
1267
|
+
"source": "Analyze",
|
|
1268
|
+
"translation": "Analysiere"
|
|
1269
|
+
},
|
|
1270
|
+
"feature_anchors_description": {
|
|
1271
|
+
"source": "Displays indicators for blocks with anchor IDs",
|
|
1272
|
+
"translation": "Zeigt Markierige für Blöck mit Anker-IDs aa."
|
|
1273
|
+
},
|
|
1274
|
+
"feature_anchors_label": {
|
|
1275
|
+
"source": "Anchors",
|
|
1276
|
+
"translation": "Anker"
|
|
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": "Packt di ganzi Sitte in e Zeichenflächi, wo mit dr Muus chamer zoome und verschiebe."
|
|
1281
|
+
},
|
|
1282
|
+
"feature_artboard_label": {
|
|
1283
|
+
"source": "Artboard",
|
|
1284
|
+
"translation": "Zeichenflächi"
|
|
1285
|
+
},
|
|
1286
|
+
"feature_artboard_setting_momentum_description": {
|
|
1287
|
+
"source": "Applies smooth animations when scrolling or zooming the artboard.",
|
|
1288
|
+
"translation": "Wendet sanfti Animatione aa bim Scrolle oder Zoome vo dr Zeichenflächi."
|
|
1289
|
+
},
|
|
1290
|
+
"feature_artboard_setting_momentum_label": {
|
|
1291
|
+
"source": "Use smooth scrolling",
|
|
1292
|
+
"translation": "Sanfts Scrolle verwände"
|
|
1293
|
+
},
|
|
1294
|
+
"feature_artboard_setting_persist_description": {
|
|
1295
|
+
"source": "Stores and restores the last position and zoom factor of the artboard.",
|
|
1296
|
+
"translation": "Speicheret und stellt di letscht Position und dr Zoom-Faktor vo dr Zeichenflächi widerhär."
|
|
1297
|
+
},
|
|
1298
|
+
"feature_artboard_setting_persist_label": {
|
|
1299
|
+
"source": "Persist position and zoom",
|
|
1300
|
+
"translation": "Position und Zoom speichere"
|
|
1301
|
+
},
|
|
1302
|
+
"feature_artboard_setting_scrollSpeed_label": {
|
|
1303
|
+
"source": "Artboard scroll speed",
|
|
1304
|
+
"translation": "Scrollgschwindigkeit vo dr Zeicheflächi"
|
|
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": "Stellt e dynamischi Aktion bereit zum ei oder mehreri Blöck vom KI-Assischtänt z'generiere."
|
|
1309
|
+
},
|
|
1310
|
+
"feature_assistant_label": {
|
|
1311
|
+
"source": "Assistant",
|
|
1312
|
+
"translation": "Assischtänt"
|
|
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": "Stellt Zwüscheablag-Integration bereit zum bestehendi Blöck z'kopiere/iizfüege oder understützti Inhält wie Teggscht oder Bilder iizfüege."
|
|
1333
|
+
},
|
|
1334
|
+
"feature_clipboard_label": {
|
|
1335
|
+
"source": "Clipboard",
|
|
1336
|
+
"translation": "Zwüscheablag"
|
|
1337
|
+
},
|
|
1338
|
+
"feature_clipboard_setting_openSidebarOnPaste_description": {
|
|
1339
|
+
"source": "Automatically opens the sidebar when pasting content from the clipboard.",
|
|
1340
|
+
"translation": "Macht d'Sitteleischte automatisch uf, wenn Inhält us dr Zwüscheablag iigfüegt wärde."
|
|
1341
|
+
},
|
|
1342
|
+
"feature_clipboard_setting_openSidebarOnPaste_label": {
|
|
1343
|
+
"source": "Open sidebar when pasting",
|
|
1344
|
+
"translation": "Sitteleischte bim Iifüege us dr Zwüscheablag ufmache"
|
|
1345
|
+
},
|
|
1346
|
+
"feature_command-palette_description": {
|
|
1347
|
+
"source": "Provides a command palette with search to access most UI features with a keyboard.",
|
|
1348
|
+
"translation": "Stellt e Befehlspalette mit Suechfunktion bereit zum di meischte UI-Funktione mit dr Tastatuur z'verwände."
|
|
1349
|
+
},
|
|
1350
|
+
"feature_command-palette_label": {
|
|
1351
|
+
"source": "Command Palette",
|
|
1352
|
+
"translation": "Befehlspalette"
|
|
1353
|
+
},
|
|
1354
|
+
"feature_comments_description": {
|
|
1355
|
+
"source": "Provides comment functionality for blocks.",
|
|
1356
|
+
"translation": "Stellt Kommentarfunktionalität für Blöck bereit."
|
|
1357
|
+
},
|
|
1358
|
+
"feature_comments_label": {
|
|
1359
|
+
"source": "Comments",
|
|
1360
|
+
"translation": "Kommentär"
|
|
1361
|
+
},
|
|
1362
|
+
"feature_conversions_description": {
|
|
1363
|
+
"source": "Provides block actions to convert one or more blocks to a different bundle.",
|
|
1364
|
+
"translation": "Stellt Block-Aktione bereit zum ei oder mehreri Blöck in es anders Bundle z'konvertiere."
|
|
1365
|
+
},
|
|
1366
|
+
"feature_conversions_label": {
|
|
1367
|
+
"source": "Conversions",
|
|
1368
|
+
"translation": "Konvertierige"
|
|
1369
|
+
},
|
|
1370
|
+
"feature_debug_description": {
|
|
1371
|
+
"source": "Provides debugging functionality.",
|
|
1372
|
+
"translation": "Stellt Debug-Funktionalität bereit."
|
|
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": "Stellt e Aktion bereit zum ei oder mehreri Blöck z'lösche."
|
|
1381
|
+
},
|
|
1382
|
+
"feature_delete_label": {
|
|
1383
|
+
"source": "Delete",
|
|
1384
|
+
"translation": "Lösche"
|
|
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": "Zeigt e Diff vo allne Änderige im Bearbeitszuestand aa."
|
|
1397
|
+
},
|
|
1398
|
+
"feature_diff_label": {
|
|
1399
|
+
"source": "Diff",
|
|
1400
|
+
"translation": "Diff"
|
|
1401
|
+
},
|
|
1402
|
+
"feature_dragging-overlay_description": {
|
|
1403
|
+
"source": "Renders an overlay when dragging or placing a block.",
|
|
1404
|
+
"translation": "Renderet es Overlay bim Ziehe oder Platziere von emne Block."
|
|
1405
|
+
},
|
|
1406
|
+
"feature_dragging-overlay_label": {
|
|
1407
|
+
"source": "Dragging Overlay",
|
|
1408
|
+
"translation": "Zieh-Overlay"
|
|
1409
|
+
},
|
|
1410
|
+
"feature_duplicate_description": {
|
|
1411
|
+
"source": "Provides an action to duplicate one or more blocks in place.",
|
|
1412
|
+
"translation": "Stellt e Aktion bereit zum ei oder mehreri Blöck an Ort und Stell z'dupliziere."
|
|
1413
|
+
},
|
|
1414
|
+
"feature_duplicate_label": {
|
|
1415
|
+
"source": "Duplicate",
|
|
1416
|
+
"translation": "Dupliziere"
|
|
1417
|
+
},
|
|
1418
|
+
"feature_edit-form_description": {
|
|
1419
|
+
"source": "Listens to edit events and renders an iframe containing the edit form.",
|
|
1420
|
+
"translation": "Losst uf Bearbeitigs-Events und renderet es iframe mit em Bearbeitigsformular."
|
|
1421
|
+
},
|
|
1422
|
+
"feature_edit-form_label": {
|
|
1423
|
+
"source": "Edit Form",
|
|
1424
|
+
"translation": "Bearbeitigsformular"
|
|
1425
|
+
},
|
|
1426
|
+
"feature_edit_description": {
|
|
1427
|
+
"source": "Provides an action to edit a block.",
|
|
1428
|
+
"translation": "Stellt e Aktion bereit zum e Block z'bearbeite."
|
|
1429
|
+
},
|
|
1430
|
+
"feature_edit_label": {
|
|
1431
|
+
"source": "Edit",
|
|
1432
|
+
"translation": "Bearbeite"
|
|
1433
|
+
},
|
|
1434
|
+
"feature_editable-field_description": {
|
|
1435
|
+
"source": "Implements a form overlay to edit a single field of a block.",
|
|
1436
|
+
"translation": "Implementiert es Formular-Overlay zum es einzels Fäld von emne Block z'bearbeite."
|
|
1437
|
+
},
|
|
1438
|
+
"feature_editable-field_label": {
|
|
1439
|
+
"source": "Editable Field",
|
|
1440
|
+
"translation": "Bearbeitbars Fäld"
|
|
1441
|
+
},
|
|
1442
|
+
"feature_editable-mask_description": {
|
|
1443
|
+
"source": "Provides a view option to hide non-editable parts of the page.",
|
|
1444
|
+
"translation": "Stellt e Aasigsoptio bereit zum nid-bearbeitbari Teile vo dr Sitte z'verstecke."
|
|
1445
|
+
},
|
|
1446
|
+
"feature_editable-mask_label": {
|
|
1447
|
+
"source": "Editable Mask",
|
|
1448
|
+
"translation": "Bearbeitigs-Maske"
|
|
1449
|
+
},
|
|
1450
|
+
"feature_entity-title_description": {
|
|
1451
|
+
"source": "Renders the title and status of the page entity.",
|
|
1452
|
+
"translation": "Renderet dr Titel und Status vo dr Sitte-Entität."
|
|
1453
|
+
},
|
|
1454
|
+
"feature_entity-title_label": {
|
|
1455
|
+
"source": "Entity Title",
|
|
1456
|
+
"translation": "Entitäts-Titel"
|
|
1457
|
+
},
|
|
1458
|
+
"feature_exit_description": {
|
|
1459
|
+
"source": "Provides a menu button to exit the editor without saving.",
|
|
1460
|
+
"translation": "Stellt e Menü-Button bereit zum dr Editor z'verloh ohni z'speichere."
|
|
1461
|
+
},
|
|
1462
|
+
"feature_exit_label": {
|
|
1463
|
+
"source": "Exit",
|
|
1464
|
+
"translation": "Verlo"
|
|
1465
|
+
},
|
|
1466
|
+
"feature_fragments_description": {
|
|
1467
|
+
"source": "Provides way to add content fragments defined by the frontend.",
|
|
1468
|
+
"translation": "Stellt e Möglichkeit bereit zum Inhaltsfragmänt vom Frontend z'definiere und drzuefüege."
|
|
1469
|
+
},
|
|
1470
|
+
"feature_fragments_label": {
|
|
1471
|
+
"source": "Fragments",
|
|
1472
|
+
"translation": "Fragmänt"
|
|
1473
|
+
},
|
|
1474
|
+
"feature_grid_description": {
|
|
1475
|
+
"source": "Provides a view option to render a grid.",
|
|
1476
|
+
"translation": "Stellt e Aasigsoptio bereit zum es Raster aazzeige."
|
|
1477
|
+
},
|
|
1478
|
+
"feature_grid_label": {
|
|
1479
|
+
"source": "Grid",
|
|
1480
|
+
"translation": "Raster"
|
|
1481
|
+
},
|
|
1482
|
+
"feature_help_description": {
|
|
1483
|
+
"source": "Provides a sidebar pane with helpful information on how to use blokkli.",
|
|
1484
|
+
"translation": "Stellt e Sitteleischte-Panel mit nützliche Informatione über d'Bedienig vo blökkli bereit."
|
|
1485
|
+
},
|
|
1486
|
+
"feature_help_label": {
|
|
1487
|
+
"source": "Help",
|
|
1488
|
+
"translation": "Hilf"
|
|
1489
|
+
},
|
|
1490
|
+
"feature_history_description": {
|
|
1491
|
+
"source": "Implements support for history features (undo, redo, list of mutations).",
|
|
1492
|
+
"translation": "Implementiert Understützig für Verlaufs-Funktione (Rückgängig, Widerhärstelle, Lischt vo Änderige)."
|
|
1493
|
+
},
|
|
1494
|
+
"feature_history_label": {
|
|
1495
|
+
"source": "History",
|
|
1496
|
+
"translation": "Verlauf"
|
|
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": "Wenn aktiviert, chasch d'Zrugg/Vorwärts-Taschte vo dinere Muus zum Rückgängig mache und Widerhärstelle bruche."
|
|
1501
|
+
},
|
|
1502
|
+
"feature_history_setting_useMouseButtons_label": {
|
|
1503
|
+
"source": "Use mouse buttons for undo/redo",
|
|
1504
|
+
"translation": "Muustaschte für Rückgängig/Wiederhärstelle bruche"
|
|
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": "Implementiert e Menü-Aktion wo e Dialog renderet zum Blöck vonere andere Entität z'importiere."
|
|
1517
|
+
},
|
|
1518
|
+
"feature_import-existing_label": {
|
|
1519
|
+
"source": "Import existing content",
|
|
1520
|
+
"translation": "Bestehendi Inhält importiere"
|
|
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": "Zeigt dr Importdialog bim Start vo blökkli aa, wenn d'Sitte leer isch."
|
|
1525
|
+
},
|
|
1526
|
+
"feature_import-existing_setting_showDialogWhenEmpty_label": {
|
|
1527
|
+
"source": "Show import dialog at start",
|
|
1528
|
+
"translation": "Importdialog bim Start aazeige wenn d'Sitte leer isch"
|
|
1529
|
+
},
|
|
1530
|
+
"feature_library_description": {
|
|
1531
|
+
"source": "Implements support for a block library to manage reusable blocks.",
|
|
1532
|
+
"translation": "Implementiert Understützig für e Block-Bibliothek zum wiederverwändbare Blöck z'verwallte."
|
|
1533
|
+
},
|
|
1534
|
+
"feature_library_label": {
|
|
1535
|
+
"source": "Library",
|
|
1536
|
+
"translation": "Bibliothek"
|
|
1537
|
+
},
|
|
1538
|
+
"feature_media-library_description": {
|
|
1539
|
+
"source": "Implements a media library to easily drag and drop media like images or videos.",
|
|
1540
|
+
"translation": "Implementiert e Medie-Bibliothek zum eifach Medie wie Bilder oder Videos per Drag-and-Drop iizfüege."
|
|
1541
|
+
},
|
|
1542
|
+
"feature_media-library_label": {
|
|
1543
|
+
"source": "Media Library",
|
|
1544
|
+
"translation": "Medie-Bibliothek"
|
|
1545
|
+
},
|
|
1546
|
+
"feature_multi-select_description": {
|
|
1547
|
+
"source": "Implements support for selecting multiple blocks using a select rectangle.",
|
|
1548
|
+
"translation": "Implementiert Understützig zum mehreri Blöck mit emne Uswahl-Rechteck z'markiere."
|
|
1549
|
+
},
|
|
1550
|
+
"feature_multi-select_label": {
|
|
1551
|
+
"source": "Multiselect",
|
|
1552
|
+
"translation": "Merfachuswahl"
|
|
1553
|
+
},
|
|
1554
|
+
"feature_options_description": {
|
|
1555
|
+
"source": "Renders the options form for one or more blocks.",
|
|
1556
|
+
"translation": "Renderet s'Optione-Formular für ei oder mehreri Blöck."
|
|
1557
|
+
},
|
|
1558
|
+
"feature_options_label": {
|
|
1559
|
+
"source": "Options",
|
|
1560
|
+
"translation": "Optione"
|
|
1561
|
+
},
|
|
1562
|
+
"feature_ownership_description": {
|
|
1563
|
+
"source": "Renders a large button to take ownership of the current edit state.",
|
|
1564
|
+
"translation": "Renderet e grosse Button zum dr Bsitz vom aktuälle Bearbeitszuestand z'übernäh."
|
|
1565
|
+
},
|
|
1566
|
+
"feature_ownership_label": {
|
|
1567
|
+
"source": "Ownership",
|
|
1568
|
+
"translation": "Bsitz"
|
|
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": "Stellt e Button bereit zum e Dialog mit emne QR-Code z'öffne zum d'Sitte ufem Smartphone z'betrachte."
|
|
1573
|
+
},
|
|
1574
|
+
"feature_preview-grant_label": {
|
|
1575
|
+
"source": "Preview Grant",
|
|
1576
|
+
"translation": "Vorschau-Freigab"
|
|
1577
|
+
},
|
|
1578
|
+
"feature_preview_description": {
|
|
1579
|
+
"source": "Provides a button to open a preview in a new window.",
|
|
1580
|
+
"translation": "Stellt e Button bereit zum e Vorschau in emne neue Fänschter z'öffne."
|
|
1581
|
+
},
|
|
1582
|
+
"feature_preview_label": {
|
|
1583
|
+
"source": "Preview",
|
|
1584
|
+
"translation": "Vorschau"
|
|
1585
|
+
},
|
|
1586
|
+
"feature_proxy_view_description": {
|
|
1587
|
+
"source": "Displays the blocks as a structure in the preview.",
|
|
1588
|
+
"translation": "Zeigt d'Blöck als Struktur in dr Vorschau aa."
|
|
1589
|
+
},
|
|
1590
|
+
"feature_proxy_view_label": {
|
|
1591
|
+
"source": "Proxy View",
|
|
1592
|
+
"translation": "Strukturaasicht"
|
|
1593
|
+
},
|
|
1594
|
+
"feature_publish_description": {
|
|
1595
|
+
"source": "Provides a menu button to publish the changes of the current entity.",
|
|
1596
|
+
"translation": "Stellt e Menü-Button bereit zum d'Änderige vo dr aktuälle Entität z'publiziere."
|
|
1597
|
+
},
|
|
1598
|
+
"feature_publish_label": {
|
|
1599
|
+
"source": "Publish",
|
|
1600
|
+
"translation": "Publiziere"
|
|
1601
|
+
},
|
|
1602
|
+
"feature_publish_setting_closeAfterPublish_description": {
|
|
1603
|
+
"source": "Immediately closes the editor after successfully publishing or saving.",
|
|
1604
|
+
"translation": "Schliesst dr Editor sofort noch em erfolgriche Publiziere oder Speichere."
|
|
1605
|
+
},
|
|
1606
|
+
"feature_publish_setting_closeAfterPublish_label": {
|
|
1607
|
+
"source": "Close editor after publishing",
|
|
1608
|
+
"translation": "Editor noch em Publiziere schliesse"
|
|
1609
|
+
},
|
|
1610
|
+
"feature_responsive-preview_description": {
|
|
1611
|
+
"source": "Provides a responsive preview of the current edit state in an iframe.",
|
|
1612
|
+
"translation": "Stellt e responsivi Vorschau vom aktuälle Bearbeitszuestand in emne iframe bereit."
|
|
1613
|
+
},
|
|
1614
|
+
"feature_responsive-preview_label": {
|
|
1615
|
+
"source": "Responsive Preview",
|
|
1616
|
+
"translation": "Responsivi Vorschau"
|
|
1617
|
+
},
|
|
1618
|
+
"feature_revert_description": {
|
|
1619
|
+
"source": "Provides a menu button to revert all changes done on the current entity.",
|
|
1620
|
+
"translation": "Stellt e Menü-Button bereit zum alli Änderige vo dr aktuälle Entität rückgängig z'mache."
|
|
1621
|
+
},
|
|
1622
|
+
"feature_revert_label": {
|
|
1623
|
+
"source": "Revert",
|
|
1624
|
+
"translation": "Zruggsetze"
|
|
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": "Stellt es Overlay mit Shortcut bereit zum uf dr aktuälle Sitte noch Blöck z'sueche oder bestehendi Inhält als Blöck drzuefüege."
|
|
1629
|
+
},
|
|
1630
|
+
"feature_search_label": {
|
|
1631
|
+
"source": "Search",
|
|
1632
|
+
"translation": "Sueche"
|
|
1633
|
+
},
|
|
1634
|
+
"feature_selection_description": {
|
|
1635
|
+
"source": "Renders an overlay that highlights the selected blocks.",
|
|
1636
|
+
"translation": "Renderet es Overlay wo di usgwählte Blöck hervorhebt."
|
|
1637
|
+
},
|
|
1638
|
+
"feature_selection_label": {
|
|
1639
|
+
"source": "Selection",
|
|
1640
|
+
"translation": "Uswahl"
|
|
1641
|
+
},
|
|
1642
|
+
"feature_settings_description": {
|
|
1643
|
+
"source": "Provides a menu button to display a settings dialog.",
|
|
1644
|
+
"translation": "Stellt e Menü-Button bereit zum e Iistelligs-Dialog aazzeige."
|
|
1645
|
+
},
|
|
1646
|
+
"feature_settings_label": {
|
|
1647
|
+
"source": "Settings",
|
|
1648
|
+
"translation": "Iistellige"
|
|
1649
|
+
},
|
|
1650
|
+
"feature_settings_setting_lowPerformanceMode_description": {
|
|
1651
|
+
"source": "Reduces the animations and interactivity to a minimum for devices with low performance.",
|
|
1652
|
+
"translation": "Reduziert d'Animatione und Interaktivität uf es Minimum für Gerät mit tiefer Leistig."
|
|
1653
|
+
},
|
|
1654
|
+
"feature_settings_setting_lowPerformanceMode_label": {
|
|
1655
|
+
"source": "Enable low performance mode",
|
|
1656
|
+
"translation": "Energie-Sparmodus aktiviere"
|
|
1657
|
+
},
|
|
1658
|
+
"feature_settings_setting_resetAllSettings_label": {
|
|
1659
|
+
"source": "Reset all settings",
|
|
1660
|
+
"translation": "Alli Iistellige Zruggsetze"
|
|
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": "Animiert UI-Elemänt wie Dialoge oder Schublade oder Interaktione wie Drag-and-Drop oder Scroll-Änderige."
|
|
1665
|
+
},
|
|
1666
|
+
"feature_settings_setting_useAnimations_label": {
|
|
1667
|
+
"source": "Use animations",
|
|
1668
|
+
"translation": "Animatione aazeige"
|
|
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": "Stellt e Sitteleischte-Button bereit zum e strukturierti Lischt vo allne Blöck uf dr aktuälle Sitte z'rendere."
|
|
1673
|
+
},
|
|
1674
|
+
"feature_structure_label": {
|
|
1675
|
+
"source": "Structure",
|
|
1676
|
+
"translation": "Struktur"
|
|
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": "Implementiert e Theme-Editor."
|
|
1689
|
+
},
|
|
1690
|
+
"feature_theme_label": {
|
|
1691
|
+
"source": "Theme",
|
|
1692
|
+
"translation": "Theme"
|
|
1693
|
+
},
|
|
1694
|
+
"feature_touch-action-bar_description": {
|
|
1695
|
+
"source": "Renders a button on touch devices to cancel touch actions.",
|
|
1696
|
+
"translation": "Renderet e Button uf Touch-Gerät zum Touch-Aktione abzbräche."
|
|
1697
|
+
},
|
|
1698
|
+
"feature_touch-action-bar_label": {
|
|
1699
|
+
"source": "Touch Action Bar",
|
|
1700
|
+
"translation": "Touch-Aktionsleischte"
|
|
1701
|
+
},
|
|
1702
|
+
"feature_tour_description": {
|
|
1703
|
+
"source": "Provides a tour overlay to get to know the editor.",
|
|
1704
|
+
"translation": "Stellt es Tour-Overlay bereit zum dr Editor kennezlehrne."
|
|
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": "Stellt Integration für Block-Transform-Plugins bereit."
|
|
1713
|
+
},
|
|
1714
|
+
"feature_transform_label": {
|
|
1715
|
+
"source": "Transform",
|
|
1716
|
+
"translation": "Transform"
|
|
1717
|
+
},
|
|
1718
|
+
"feature_translations_description": {
|
|
1719
|
+
"source": "Adds support for block translations.",
|
|
1720
|
+
"translation": "Füegt Understützig für Block-Übersetzige hinzu."
|
|
1721
|
+
},
|
|
1722
|
+
"feature_translations_label": {
|
|
1723
|
+
"source": "Translations",
|
|
1724
|
+
"translation": "Übersetzige"
|
|
1725
|
+
},
|
|
1726
|
+
"feature_validations_description": {
|
|
1727
|
+
"source": "Provides a sidebar pane to render validations.",
|
|
1728
|
+
"translation": "Stellt es Sitteleischte-Panel bereit zum Validierige z'rendere."
|
|
1729
|
+
},
|
|
1730
|
+
"feature_validations_label": {
|
|
1731
|
+
"source": "Validations",
|
|
1732
|
+
"translation": "Validierige"
|
|
1733
|
+
},
|
|
1734
|
+
"fieldIsRequired": {
|
|
1735
|
+
"source": "This field is required",
|
|
1736
|
+
"translation": "Das Fäld dörf nid leer sii"
|
|
1737
|
+
},
|
|
1738
|
+
"fragmentsAddFragmentAction": {
|
|
1739
|
+
"source": "Fragment",
|
|
1740
|
+
"translation": "Fragmänt drzuefüege"
|
|
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": "<p>Zieh s'Symbol in d'Sitte zum e Fragmänt-Block drzuefüege.</p><p>Fragmänt sin wiederverwändbare Blöck wo immer dr gliich Inhalt renderet.</p>"
|
|
1745
|
+
},
|
|
1746
|
+
"fragmentsPlaceDialogLead": {
|
|
1747
|
+
"source": "Select a block fragment to add to the page.",
|
|
1748
|
+
"translation": "Wähl es Block-Fragmänt us zum's zur Sitte drzuefüege."
|
|
1749
|
+
},
|
|
1750
|
+
"fragmentsPlaceDialogSearchLabel": {
|
|
1751
|
+
"source": "Filter fragments",
|
|
1752
|
+
"translation": "Fragmänt filtere"
|
|
1753
|
+
},
|
|
1754
|
+
"fragmentsPlaceDialogSearchPlaceholder": {
|
|
1755
|
+
"source": "Search fragments",
|
|
1756
|
+
"translation": "Fragmänt sueche"
|
|
1757
|
+
},
|
|
1758
|
+
"fragmentsPlaceDialogSubmitButton": {
|
|
1759
|
+
"source": "Add selected fragment",
|
|
1760
|
+
"translation": "Usgwählts Fragmänt drzuefüege"
|
|
1761
|
+
},
|
|
1762
|
+
"fragmentsPlaceDialogTitle": {
|
|
1763
|
+
"source": "Add fragment block",
|
|
1764
|
+
"translation": "Fragmänt-Block drzuefüege"
|
|
1765
|
+
},
|
|
1766
|
+
"gridHide": {
|
|
1767
|
+
"source": "Hide grid",
|
|
1768
|
+
"translation": "Spalte verstecke"
|
|
1769
|
+
},
|
|
1770
|
+
"gridShow": {
|
|
1771
|
+
"source": "Show grid",
|
|
1772
|
+
"translation": "Spalte aazeige"
|
|
1773
|
+
},
|
|
1774
|
+
"gridToggle": {
|
|
1775
|
+
"source": "Toggle grid",
|
|
1776
|
+
"translation": "Spalte aazeige"
|
|
1777
|
+
},
|
|
1778
|
+
"gridTourText": {
|
|
1779
|
+
"source": "Display a layout grid overlay on top of the page.",
|
|
1780
|
+
"translation": "Zeigt es Layout-Raster-Overlay über dr Sitte aa."
|
|
1781
|
+
},
|
|
1782
|
+
"helpTourText": {
|
|
1783
|
+
"source": "Shows a list of available shortcuts.",
|
|
1784
|
+
"translation": "Zeigt e Lischt vo verfüegbare Shortcuts aa."
|
|
1785
|
+
},
|
|
1786
|
+
"history": {
|
|
1787
|
+
"source": "History",
|
|
1788
|
+
"translation": "Ändergie"
|
|
1789
|
+
},
|
|
1790
|
+
"historyCurrentRevision": {
|
|
1791
|
+
"source": "Current revision",
|
|
1792
|
+
"translation": "Aktuelli Revision"
|
|
1793
|
+
},
|
|
1794
|
+
"historyEmpty": {
|
|
1795
|
+
"source": "There are now changes yet.",
|
|
1796
|
+
"translation": "S'git no keini Änderige."
|
|
1797
|
+
},
|
|
1798
|
+
"historyRedo": {
|
|
1799
|
+
"source": "Redo",
|
|
1800
|
+
"translation": "Wiederhole"
|
|
1801
|
+
},
|
|
1802
|
+
"historyRedoTourText": {
|
|
1803
|
+
"source": "Redo the previous change.",
|
|
1804
|
+
"translation": "Di vorig Änderig widerhärstelle."
|
|
1805
|
+
},
|
|
1806
|
+
"historyShowMore": {
|
|
1807
|
+
"source": "Show @count more",
|
|
1808
|
+
"translation": "@count meeh aazeige"
|
|
1809
|
+
},
|
|
1810
|
+
"historyTourText": {
|
|
1811
|
+
"source": "See a list of all changes made so far and switch back and forth between changes.",
|
|
1812
|
+
"translation": "Zeigt e Lischt vo allne bisher gmachte Änderige aa und wächsle zwüsche de Änderige hin und här."
|
|
1813
|
+
},
|
|
1814
|
+
"historyUndo": {
|
|
1815
|
+
"source": "Undo",
|
|
1816
|
+
"translation": "Rückgängig"
|
|
1817
|
+
},
|
|
1818
|
+
"historyUndoTourText": {
|
|
1819
|
+
"source": "Undo the last change.",
|
|
1820
|
+
"translation": "Di letscht Änderig rückgängig mache."
|
|
1821
|
+
},
|
|
1822
|
+
"importExistingDescription": {
|
|
1823
|
+
"source": "Import from an existing page",
|
|
1824
|
+
"translation": "Von enere bestehende Sitte importiere"
|
|
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": "Inhält chönne vonere bestehende Sitte importiert wärde. Die Elemänt wärde am Ändi vo dr lischte denn drzuegfüegt. Die Aktion chame nid ruckgängig mache. "
|
|
1829
|
+
},
|
|
1830
|
+
"importExistingDialogSubmit": {
|
|
1831
|
+
"source": "Import content",
|
|
1832
|
+
"translation": "Inhält importiere"
|
|
1833
|
+
},
|
|
1834
|
+
"importExistingDialogTitle": {
|
|
1835
|
+
"source": "Import from existing page",
|
|
1836
|
+
"translation": "Vonere bestehende Sitte importiere"
|
|
1837
|
+
},
|
|
1838
|
+
"importExistingError": {
|
|
1839
|
+
"source": "Content could not be imported.",
|
|
1840
|
+
"translation": "D'Inhält hän nid chönne übernoh wärde"
|
|
1841
|
+
},
|
|
1842
|
+
"importExistingFieldsLabel": {
|
|
1843
|
+
"source": "Which content would you like to import?",
|
|
1844
|
+
"translation": "Weli Inhält sölle importiert wärde?"
|
|
1845
|
+
},
|
|
1846
|
+
"importExistingPagesTitle": {
|
|
1847
|
+
"source": "Select page",
|
|
1848
|
+
"translation": ""
|
|
1849
|
+
},
|
|
1850
|
+
"importExistingSuccess": {
|
|
1851
|
+
"source": "Content imported successfully.",
|
|
1852
|
+
"translation": "Inhält erfolgriich importiert"
|
|
1853
|
+
},
|
|
1854
|
+
"importExistingTitle": {
|
|
1855
|
+
"source": "Import...",
|
|
1856
|
+
"translation": "Importiere..."
|
|
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": "Zur Bibliothek drzuefüege"
|
|
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": "E wiederverwändbare Block us dr Block-Bibliothek drzuefüege."
|
|
1873
|
+
},
|
|
1874
|
+
"libraryAddFromLibrary": {
|
|
1875
|
+
"source": "From library",
|
|
1876
|
+
"translation": "Us dr Bibliothek drzuefüege"
|
|
1877
|
+
},
|
|
1878
|
+
"libraryDetach": {
|
|
1879
|
+
"source": "Detach from library",
|
|
1880
|
+
"translation": "Von der Bibliothek loslöse"
|
|
1881
|
+
},
|
|
1882
|
+
"libraryDialogDescriptionLabel": {
|
|
1883
|
+
"source": "Description",
|
|
1884
|
+
"translation": "Beschriibig"
|
|
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": "Wenn es Elemänt in dr Bibliothek isch, cha das Elemänt uf mehrere Sitte gliichzittig brucht wärde. D'Änderige an däm Elemänt wärde denn sofort uf allne Sitte publiziert. "
|
|
1889
|
+
},
|
|
1890
|
+
"libraryDialogReusableInfo": {
|
|
1891
|
+
"source": "The library item will be available for placement on other pages once this page has been published.",
|
|
1892
|
+
"translation": "S'Bibliotheks-Elemänt wird verfüegbar für d'Platzierig uf andere Sitte, sobald die Sitte publiziert worde isch."
|
|
1893
|
+
},
|
|
1894
|
+
"libraryDialogSubmit": {
|
|
1895
|
+
"source": "Add to library",
|
|
1896
|
+
"translation": "Zur Bibliothe drzuefüege"
|
|
1897
|
+
},
|
|
1898
|
+
"libraryDialogTitle": {
|
|
1899
|
+
"source": "Add to library",
|
|
1900
|
+
"translation": "Zur Bibliothe drzuefüege"
|
|
1901
|
+
},
|
|
1902
|
+
"libraryDialogTitleInputPlaceholder": {
|
|
1903
|
+
"source": "e.g. Teaser Campaign 2024",
|
|
1904
|
+
"translation": "z.B. Teaser Kampagne 2023"
|
|
1905
|
+
},
|
|
1906
|
+
"libraryError": {
|
|
1907
|
+
"source": "Failed to add block to library.",
|
|
1908
|
+
"translation": "Das Elemänt het nid chönne zur Bibliothek drzuegfüegt wärde. "
|
|
1909
|
+
},
|
|
1910
|
+
"libraryItemEditOverlayBack": {
|
|
1911
|
+
"source": "Back to page",
|
|
1912
|
+
"translation": "Zrugg zur Sitte"
|
|
1913
|
+
},
|
|
1914
|
+
"libraryItemEditOverlayBackWithPage": {
|
|
1915
|
+
"source": "Back to \"@label\"",
|
|
1916
|
+
"translation": ""
|
|
1917
|
+
},
|
|
1918
|
+
"libraryItemEditOverlayTitle": {
|
|
1919
|
+
"source": "Edit reusable block",
|
|
1920
|
+
"translation": "Wiederverwändbare Block bearbeite"
|
|
1921
|
+
},
|
|
1922
|
+
"libraryPlaceBundleSelectLabel": {
|
|
1923
|
+
"source": "Bundle",
|
|
1924
|
+
"translation": "Bundle"
|
|
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": "Wähl e wiederverwändbare Block us dr Bibliothek zum dä drzuefüege. Dr Block cha spöter wider entfärnt wärde. "
|
|
1929
|
+
},
|
|
1930
|
+
"libraryPlaceDialogSubmit": {
|
|
1931
|
+
"source": "Add reusable block",
|
|
1932
|
+
"translation": "E widerverwändbare Block drzuefüege"
|
|
1933
|
+
},
|
|
1934
|
+
"libraryPlaceDialogTitle": {
|
|
1935
|
+
"source": "Add block from library",
|
|
1936
|
+
"translation": "Block us dr Bibliothek drzuefüege"
|
|
1937
|
+
},
|
|
1938
|
+
"libraryPreviewLabel": {
|
|
1939
|
+
"source": "Preview",
|
|
1940
|
+
"translation": "Vorschau"
|
|
1941
|
+
},
|
|
1942
|
+
"manageSchedule": {
|
|
1943
|
+
"source": "Manage schedule...",
|
|
1944
|
+
"translation": ""
|
|
1945
|
+
},
|
|
1946
|
+
"maskHide": {
|
|
1947
|
+
"source": "Hide non-editable areas",
|
|
1948
|
+
"translation": "Inhaltsfälder verstecke"
|
|
1949
|
+
},
|
|
1950
|
+
"maskShow": {
|
|
1951
|
+
"source": "Show non-editable areas",
|
|
1952
|
+
"translation": "Inhaltsfelder aazeige"
|
|
1953
|
+
},
|
|
1954
|
+
"maskToggle": {
|
|
1955
|
+
"source": "Toggle non-editable areas",
|
|
1956
|
+
"translation": "Inhaltsfelder aazeige"
|
|
1957
|
+
},
|
|
1958
|
+
"maskTourText": {
|
|
1959
|
+
"source": "Toggle between showing or hiding non-editable parts of the page.",
|
|
1960
|
+
"translation": "Wächsle zwüsche Aazeige oder Verstecke vo nid-bearbeitbare Teile vo dr Sitte."
|
|
1961
|
+
},
|
|
1962
|
+
"mediaLibrary": {
|
|
1963
|
+
"source": "Media Library",
|
|
1964
|
+
"translation": "Mediebibliothek"
|
|
1965
|
+
},
|
|
1966
|
+
"mediaLibraryReplaceFailed": {
|
|
1967
|
+
"source": "Failed to replace media.",
|
|
1968
|
+
"translation": "Medie het nid chönne ersetzt wärde."
|
|
1969
|
+
},
|
|
1970
|
+
"mediaLibraryReplaceMedia": {
|
|
1971
|
+
"source": "Replace @field",
|
|
1972
|
+
"translation": "@field ersetze"
|
|
1973
|
+
},
|
|
1974
|
+
"mediaLibraryTourText": {
|
|
1975
|
+
"source": "Search for media like images and drag and drop them into the page.",
|
|
1976
|
+
"translation": "Suech noch Medie wie Bilder und zieh si per Drag-and-Drop in d'Sitte."
|
|
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": "Elemänt"
|
|
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": "Alli Sproche"
|
|
2005
|
+
},
|
|
2006
|
+
"optionsCommand.selectCheckboxValue": {
|
|
2007
|
+
"source": "Select \"@value\" in \"@option\"",
|
|
2008
|
+
"translation": "«@value» in «@option» uswähle"
|
|
2009
|
+
},
|
|
2010
|
+
"optionsCommand.setOption": {
|
|
2011
|
+
"source": "Set option \"@option\" to \"@value\"",
|
|
2012
|
+
"translation": "Option «@option» «@value» setze"
|
|
2013
|
+
},
|
|
2014
|
+
"optionsCommand.unselectCheckboxValue": {
|
|
2015
|
+
"source": "Unselect \"@value\" in \"@option\"",
|
|
2016
|
+
"translation": "«@value» in «@option» abwähle"
|
|
2017
|
+
},
|
|
2018
|
+
"overlayDoubleClickInfo": {
|
|
2019
|
+
"source": "<strong>Double click</strong> to close overlay",
|
|
2020
|
+
"translation": ""
|
|
2021
|
+
},
|
|
2022
|
+
"ownershipError": {
|
|
2023
|
+
"source": "Error in assigning",
|
|
2024
|
+
"translation": "Fähler bim Zuewiise"
|
|
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": "Diese Sitte wird aktuell vo @name bearbeitet. Änderige chönne nur vo einere Person glichzittig gmacht wärde. "
|
|
2029
|
+
},
|
|
2030
|
+
"ownershipSuccess": {
|
|
2031
|
+
"source": "You are now the owner.",
|
|
2032
|
+
"translation": "Du bisch jetzt dr Bsitzer."
|
|
2033
|
+
},
|
|
2034
|
+
"ownershipTakeOwnership": {
|
|
2035
|
+
"source": "Assign to me",
|
|
2036
|
+
"translation": "Mir zuewiise"
|
|
2037
|
+
},
|
|
2038
|
+
"pageIsNotPublished": {
|
|
2039
|
+
"source": "Page is not published",
|
|
2040
|
+
"translation": "Die Sitte isch nid publiziert"
|
|
2041
|
+
},
|
|
2042
|
+
"pageIsPublished": {
|
|
2043
|
+
"source": "Page is published",
|
|
2044
|
+
"translation": "Die Sitte isch Publiziert"
|
|
2045
|
+
},
|
|
2046
|
+
"pageIsPublishedWithPendingChanges": {
|
|
2047
|
+
"source": "Page is published (changes pending)",
|
|
2048
|
+
"translation": "Die Sitte isch publiziert (es sin aber no Änderige usstehend)"
|
|
2049
|
+
},
|
|
2050
|
+
"paste": {
|
|
2051
|
+
"source": "Paste",
|
|
2052
|
+
"translation": "Iifüege"
|
|
2053
|
+
},
|
|
2054
|
+
"previewDialogLead": {
|
|
2055
|
+
"source": "Scan the QR code with your smartphone to open the preview.",
|
|
2056
|
+
"translation": "Scan dr QR-Code zum ufem Smartphone d'Vorschau aaluege. "
|
|
2057
|
+
},
|
|
2058
|
+
"previewDialogTitle": {
|
|
2059
|
+
"source": "Preview with smartphone",
|
|
2060
|
+
"translation": "Vorschau mitem Smartphone"
|
|
2061
|
+
},
|
|
2062
|
+
"previewNewWindow": {
|
|
2063
|
+
"source": "Preview (new window)",
|
|
2064
|
+
"translation": "Vorschau (neus Fänschter)"
|
|
2065
|
+
},
|
|
2066
|
+
"previewNewWindowTourText": {
|
|
2067
|
+
"source": "Opens a preview of the current changes in a new window.",
|
|
2068
|
+
"translation": "Macht e Vorschau vo de aktuälle Änderige in emne neue Fänschter uf."
|
|
2069
|
+
},
|
|
2070
|
+
"previewQrCodeText": {
|
|
2071
|
+
"source": "You can also copy the link and share it.",
|
|
2072
|
+
"translation": "Dä Link chame au kopiere und teile."
|
|
2073
|
+
},
|
|
2074
|
+
"previewWithSmartphone": {
|
|
2075
|
+
"source": "Preview (with smartphone)",
|
|
2076
|
+
"translation": "Vorschau (mitem Smartphone)"
|
|
2077
|
+
},
|
|
2078
|
+
"previewWithSmartphoneTourText": {
|
|
2079
|
+
"source": "Shows a QR code to quickly open a preview of the changes with your smartphone.",
|
|
2080
|
+
"translation": "Zeigt e QR-Code aa zum schnäll e Vorschau vo de Änderige mitem Smartphone z'öffne."
|
|
2081
|
+
},
|
|
2082
|
+
"proxyViewHide": {
|
|
2083
|
+
"source": "Show content preview",
|
|
2084
|
+
"translation": "Inhaltsvorscha aazeige"
|
|
2085
|
+
},
|
|
2086
|
+
"proxyViewShow": {
|
|
2087
|
+
"source": "Show structure view",
|
|
2088
|
+
"translation": "Strukturaasicht aazeige"
|
|
2089
|
+
},
|
|
2090
|
+
"proxyViewToggle": {
|
|
2091
|
+
"source": "Toggle structure view",
|
|
2092
|
+
"translation": "Strukturaasicht umschalte"
|
|
2093
|
+
},
|
|
2094
|
+
"proxyViewTourText": {
|
|
2095
|
+
"source": "Displays the content blocks as a structured view.",
|
|
2096
|
+
"translation": "Zeigt d'Inhaltblöck als strukturierti Aasicht aa."
|
|
2097
|
+
},
|
|
2098
|
+
"publishAlreadyScheduledDescription": {
|
|
2099
|
+
"source": "This page is already scheduled for publishing",
|
|
2100
|
+
"translation": ""
|
|
2101
|
+
},
|
|
2102
|
+
"publishAndCloseLabel": {
|
|
2103
|
+
"source": "Publish & Close",
|
|
2104
|
+
"translation": "Publiziere & Zuemache"
|
|
2105
|
+
},
|
|
2106
|
+
"publishAndCloseLabelUnpublished": {
|
|
2107
|
+
"source": "Save & Close",
|
|
2108
|
+
"translation": "Speichere & Zuemache"
|
|
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": "Alli änderige öffentlich mache."
|
|
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": "Alli Änderige speichere ohni d'Sitte z'publiziere"
|
|
2133
|
+
},
|
|
2134
|
+
"publishDialogTitle": {
|
|
2135
|
+
"source": "Publish changes",
|
|
2136
|
+
"translation": "Änderige publiziere"
|
|
2137
|
+
},
|
|
2138
|
+
"publishError": {
|
|
2139
|
+
"source": "Changes could not be published.",
|
|
2140
|
+
"translation": "D'Änderige hän nid chönne publiziert wärde."
|
|
2141
|
+
},
|
|
2142
|
+
"publishLabel": {
|
|
2143
|
+
"source": "Publish",
|
|
2144
|
+
"translation": "Publiziere"
|
|
2145
|
+
},
|
|
2146
|
+
"publishLabelUnpublished": {
|
|
2147
|
+
"source": "Save",
|
|
2148
|
+
"translation": "Speichere"
|
|
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": ""
|
|
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": "Änderige erfolgriich publiziert."
|
|
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": "Benutzerdefiniert"
|
|
2309
|
+
},
|
|
2310
|
+
"responsivePreviewTitle": {
|
|
2311
|
+
"source": "Responsive Preview",
|
|
2312
|
+
"translation": "Responsivi Vorschau"
|
|
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": "Lueg wie dini Änderige uf chliinere Bildschirm usgsähn, wie z.B. Smartphones. Klick uf dr «Ablöse»-Button zum zusätzlichi Viewport-Grösse uswähle z'chönne."
|
|
2317
|
+
},
|
|
2318
|
+
"revertDialogLead": {
|
|
2319
|
+
"source": "This will delete all changes and restore the currently published state. This action cannot be undone.",
|
|
2320
|
+
"translation": "Alli Änderige wärde glöscht und dr jetzt publizierti Zuestand wird wider härgstellt. Die Aktion chame nid rückgängig mache. "
|
|
2321
|
+
},
|
|
2322
|
+
"revertDialogSubmit": {
|
|
2323
|
+
"source": "Discard changes",
|
|
2324
|
+
"translation": "Änderige verwärfe"
|
|
2325
|
+
},
|
|
2326
|
+
"revertDialogTitle": {
|
|
2327
|
+
"source": "Irrevocably discard changes",
|
|
2328
|
+
"translation": "Änderige ändgültig verwärfe. "
|
|
2329
|
+
},
|
|
2330
|
+
"revertError": {
|
|
2331
|
+
"source": "Changes could not be discarded.",
|
|
2332
|
+
"translation": "D'Änderige hän nid chönne verworfe wärde."
|
|
2333
|
+
},
|
|
2334
|
+
"revertMenuDescription": {
|
|
2335
|
+
"source": "Restore currently published state",
|
|
2336
|
+
"translation": "Dr aktuell publizierti Stand widerhärstelle."
|
|
2337
|
+
},
|
|
2338
|
+
"revertMenuTitle": {
|
|
2339
|
+
"source": "Discard...",
|
|
2340
|
+
"translation": "Verwärfe..."
|
|
2341
|
+
},
|
|
2342
|
+
"revertSuccess": {
|
|
2343
|
+
"source": "All changes have been discarded.",
|
|
2344
|
+
"translation": "Alli Änderige sin glöcht worde."
|
|
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": "Keini Resultat gfunde"
|
|
2353
|
+
},
|
|
2354
|
+
"searchBoxOnThisPage": {
|
|
2355
|
+
"source": "On this page",
|
|
2356
|
+
"translation": "Uf dere Sitte"
|
|
2357
|
+
},
|
|
2358
|
+
"searchBoxPlaceholder": {
|
|
2359
|
+
"source": "Enter search term",
|
|
2360
|
+
"translation": "Suechbegriff iigeh"
|
|
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": "Inhält sueche"
|
|
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": "Find schnäll Blöck uf dr aktuälle Sitte oder bestehendi Inhält zum si als Blöck in d'Sitte z'zieh."
|
|
2377
|
+
},
|
|
2378
|
+
"selectAllBlocks": {
|
|
2379
|
+
"source": "Select all blocks",
|
|
2380
|
+
"translation": ""
|
|
2381
|
+
},
|
|
2382
|
+
"selectAllOfBundle": {
|
|
2383
|
+
"source": "Select all \"@bundle\" blocks",
|
|
2384
|
+
"translation": "Alli «@bundle»-Blöck uswähle"
|
|
2385
|
+
},
|
|
2386
|
+
"selectedIsNew": {
|
|
2387
|
+
"source": "New",
|
|
2388
|
+
"translation": ""
|
|
2389
|
+
},
|
|
2390
|
+
"settingsAdvanced": {
|
|
2391
|
+
"source": "Advanced",
|
|
2392
|
+
"translation": "Erwitteret"
|
|
2393
|
+
},
|
|
2394
|
+
"settingsAppearance": {
|
|
2395
|
+
"source": "Appearance",
|
|
2396
|
+
"translation": "Darstellig"
|
|
2397
|
+
},
|
|
2398
|
+
"settingsArtboard": {
|
|
2399
|
+
"source": "Artboard",
|
|
2400
|
+
"translation": "Zeichenflächi"
|
|
2401
|
+
},
|
|
2402
|
+
"settingsBehaviour": {
|
|
2403
|
+
"source": "Behaviour",
|
|
2404
|
+
"translation": "Verhalte"
|
|
2405
|
+
},
|
|
2406
|
+
"settingsBeta": {
|
|
2407
|
+
"source": "New Features",
|
|
2408
|
+
"translation": "Neui Funktione"
|
|
2409
|
+
},
|
|
2410
|
+
"settingsDialogTitle": {
|
|
2411
|
+
"source": "Change settings",
|
|
2412
|
+
"translation": "Iistellige"
|
|
2413
|
+
},
|
|
2414
|
+
"settingsMenuDescription": {
|
|
2415
|
+
"source": "Personal settings for the editor",
|
|
2416
|
+
"translation": "Persönlichi Iistellige füre Editor"
|
|
2417
|
+
},
|
|
2418
|
+
"settingsMenuTitle": {
|
|
2419
|
+
"source": "Settings",
|
|
2420
|
+
"translation": "Iistellige"
|
|
2421
|
+
},
|
|
2422
|
+
"shortcutGroupBlocks": {
|
|
2423
|
+
"source": "Blocks",
|
|
2424
|
+
"translation": "Blöck"
|
|
2425
|
+
},
|
|
2426
|
+
"shortcutGroupGeneral": {
|
|
2427
|
+
"source": "General",
|
|
2428
|
+
"translation": "Allgemein"
|
|
2429
|
+
},
|
|
2430
|
+
"shortcutGroupUi": {
|
|
2431
|
+
"source": "UI",
|
|
2432
|
+
"translation": "Oberflächi"
|
|
2433
|
+
},
|
|
2434
|
+
"sidebar.hide": {
|
|
2435
|
+
"source": "Hide @title",
|
|
2436
|
+
"translation": "@title usblände"
|
|
2437
|
+
},
|
|
2438
|
+
"sidebar.show": {
|
|
2439
|
+
"source": "Show @title",
|
|
2440
|
+
"translation": "@title aazeige"
|
|
2441
|
+
},
|
|
2442
|
+
"singleComment": {
|
|
2443
|
+
"source": "comment",
|
|
2444
|
+
"translation": "Kommentar"
|
|
2445
|
+
},
|
|
2446
|
+
"stateUnavailableText": {
|
|
2447
|
+
"source": "This could be due to missing permissions or a temporary problem. Please try again later.",
|
|
2448
|
+
"translation": "Das chönnt a fehlende Berechtigung oder emne temporäre Problem liege. Bitte versuech's spöter nomol."
|
|
2449
|
+
},
|
|
2450
|
+
"stateUnavailableTitle": {
|
|
2451
|
+
"source": "The edit state could not be loaded.",
|
|
2452
|
+
"translation": "Dr Bearbeitszuestand het nid chönne glade wärde."
|
|
2453
|
+
},
|
|
2454
|
+
"structureToolbarLabel": {
|
|
2455
|
+
"source": "Structure",
|
|
2456
|
+
"translation": "Struktur"
|
|
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": "Zeigt e strukturierti Lischt vo allne Blöck uf dr aktuälle Sitte aa. Klick uf e belibige Block zum schnäll dohii z'springe."
|
|
2461
|
+
},
|
|
2462
|
+
"systemRequirementsDialogButton": {
|
|
2463
|
+
"source": "Continue anyway",
|
|
2464
|
+
"translation": "Trotzdem wiiterfahre"
|
|
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": "blökkli het festgstellt, dass dii Browser ei oder mehreri Systemaforderige nid erfüllt. Für s'bescht Erläbnis, bruch bitte e Browser wo alli ufglischtete Aforderige understützt."
|
|
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": "blökkli isch testet und optimiert worde für di neueschte Versione vo Chrome, Firefox, Edge und Safari. Funktione wie WebGL sin guet understützt, chönne aber mängmol us Leischtigs- oder Sicherheitsgründ deaktiviert sii."
|
|
2473
|
+
},
|
|
2474
|
+
"systemRequirementsDialogTitle": {
|
|
2475
|
+
"source": "System Requirements",
|
|
2476
|
+
"translation": "Systemaforderige"
|
|
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": "blökkli brucht WebGL zum schnäll UI-Elemänt wie usgwählti Blöck und Drag-and-Drop-Indikatore z'rendere. Wenn WebGL nid understützt wird, wird blökkli uf Fallback-Rendering zruggriife, wo langsamer isch und nid alli Funktione understützt."
|
|
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": "Farbe"
|
|
2625
|
+
},
|
|
2626
|
+
"themeTourText": {
|
|
2627
|
+
"source": "Change the colors of the theme and generate a theme file.",
|
|
2628
|
+
"translation": "Änderi d'Farbe vom Theme und generier e Theme-Datei."
|
|
2629
|
+
},
|
|
2630
|
+
"toggleInteractionLayers": {
|
|
2631
|
+
"source": "Toggle interaction layers",
|
|
2632
|
+
"translation": ""
|
|
2633
|
+
},
|
|
2634
|
+
"touchBarCancelDragging": {
|
|
2635
|
+
"source": "Cancel dragging",
|
|
2636
|
+
"translation": "Platziere abbräche"
|
|
2637
|
+
},
|
|
2638
|
+
"touchBarFinishSelecting": {
|
|
2639
|
+
"source": "Finish selecting",
|
|
2640
|
+
"translation": "Merfachuswahl beände"
|
|
2641
|
+
},
|
|
2642
|
+
"tourDescription": {
|
|
2643
|
+
"source": "Explore the features of the editor",
|
|
2644
|
+
"translation": "Entdeck d'Funktione vom Editor"
|
|
2645
|
+
},
|
|
2646
|
+
"tourIntro": {
|
|
2647
|
+
"source": "Explore the most important features of the editor and learn how to get started using blökkli.",
|
|
2648
|
+
"translation": "Entdeck di wichtigschte Funktione vom Editor und lehr wie mer mit blökkli aafangt."
|
|
2649
|
+
},
|
|
2650
|
+
"tourLabel": {
|
|
2651
|
+
"source": "Take a tour",
|
|
2652
|
+
"translation": "Tour mache"
|
|
2653
|
+
},
|
|
2654
|
+
"tourNext": {
|
|
2655
|
+
"source": "Next",
|
|
2656
|
+
"translation": "Neggscht"
|
|
2657
|
+
},
|
|
2658
|
+
"tourPrev": {
|
|
2659
|
+
"source": "Previous",
|
|
2660
|
+
"translation": "Zrugg"
|
|
2661
|
+
},
|
|
2662
|
+
"tourStartButton": {
|
|
2663
|
+
"source": "Start the tour",
|
|
2664
|
+
"translation": "Tour starte"
|
|
2665
|
+
},
|
|
2666
|
+
"transformDialogButtonApply": {
|
|
2667
|
+
"source": "Apply changes",
|
|
2668
|
+
"translation": "Aawände"
|
|
2669
|
+
},
|
|
2670
|
+
"transformDialogButtonNewSuggestion": {
|
|
2671
|
+
"source": "New suggestion",
|
|
2672
|
+
"translation": ""
|
|
2673
|
+
},
|
|
2674
|
+
"transformDialogButtonPreview": {
|
|
2675
|
+
"source": "Preview",
|
|
2676
|
+
"translation": "Vorschau"
|
|
2677
|
+
},
|
|
2678
|
+
"translationsBannerButton": {
|
|
2679
|
+
"source": "Edit source language instead",
|
|
2680
|
+
"translation": "Stattdässe Quellsproch bearbeite"
|
|
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": "Du bearbeitisch grad d'<strong>@language</strong>-Übersetztig. Gwüssi Funktione wie Drzuefüege, Verschiebe oder Lösche vo Blöck sin nid verfüegbar."
|
|
2685
|
+
},
|
|
2686
|
+
"translationsBatchTranslateMenuDescription": {
|
|
2687
|
+
"source": "Translate all blocks",
|
|
2688
|
+
"translation": "Alli Elemänt übersetze"
|
|
2689
|
+
},
|
|
2690
|
+
"translationsBatchTranslateMenuTitle": {
|
|
2691
|
+
"source": "Translate...",
|
|
2692
|
+
"translation": "Übersetze..."
|
|
2693
|
+
},
|
|
2694
|
+
"translationsItemAction": {
|
|
2695
|
+
"source": "Translate",
|
|
2696
|
+
"translation": "Übersetze..."
|
|
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": "Wächsle schnäll zwüsche verfüegbare Übersetzige. E uusgrueti Sproch zeigt aa, dass dr Inhalt no nid übersetzt worde isch. E Klick druf macht s'Formular uf zum e neui Übersetztig für die Sproch z'erstelle."
|
|
2701
|
+
},
|
|
2702
|
+
"translationsTourTitle": {
|
|
2703
|
+
"source": "Translations",
|
|
2704
|
+
"translation": "Übersetzige"
|
|
2705
|
+
},
|
|
2706
|
+
"unexpectedMutationError": {
|
|
2707
|
+
"source": "An unexpected error happened.",
|
|
2708
|
+
"translation": "Es isch e unerwartete Fähler ufträte."
|
|
2709
|
+
},
|
|
2710
|
+
"validationsNoneFound": {
|
|
2711
|
+
"source": "No validation errors found.",
|
|
2712
|
+
"translation": "Keini Validierigsfähler gfunde."
|
|
2713
|
+
},
|
|
2714
|
+
"validationsToolbarLabel": {
|
|
2715
|
+
"source": "Validations",
|
|
2716
|
+
"translation": "Validierige"
|
|
2717
|
+
},
|
|
2718
|
+
"validationsTourText": {
|
|
2719
|
+
"source": "See validation errors for content or structure on the current page.",
|
|
2720
|
+
"translation": "Lueg Validierigsfähler für Inhalt oder Struktur uf dr aktuälle Sitte aa."
|
|
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
|
+
}
|