@blokkli/editor 2.0.0-alpha.32 → 2.0.0-alpha.34
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/features.d.ts +4 -0
- package/dist/module.d.mts +5 -27
- package/dist/module.json +1 -1
- package/dist/module.mjs +430 -10823
- 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/defineBlokkliFeature.d.ts +5 -3
- package/dist/runtime/composables/defineBlokkliFeature.js +2 -1
- 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/BlockPreviewRenderer/index.d.vue.ts +1 -1
- package/dist/runtime/editor/components/BlockPreviewRenderer/index.vue.d.ts +1 -1
- package/dist/runtime/editor/components/Dialog/index.d.vue.ts +2 -2
- package/dist/runtime/editor/components/Dialog/index.vue.d.ts +2 -2
- 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 +29 -8
- 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/index.d.vue.ts +2 -1
- package/dist/runtime/editor/features/dragging-overlay/DragItems/index.vue +32 -13
- 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 +7 -0
- package/dist/runtime/editor/providers/definition.js +6 -0
- 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/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 +8 -2
- package/package.json +29 -7
|
@@ -0,0 +1,2738 @@
|
|
|
1
|
+
{
|
|
2
|
+
"actions": {
|
|
3
|
+
"source": "Actions",
|
|
4
|
+
"translation": "Aktonen"
|
|
5
|
+
},
|
|
6
|
+
"actionsDropdownToolip": {
|
|
7
|
+
"source": "Further actions",
|
|
8
|
+
"translation": "Weitere Aktionen"
|
|
9
|
+
},
|
|
10
|
+
"addBlockCommand.appendInField": {
|
|
11
|
+
"source": "Append \"@block\" in \"@field\"",
|
|
12
|
+
"translation": "«@block» in «@field» anfügen"
|
|
13
|
+
},
|
|
14
|
+
"addBlockCommand.appendRoot": {
|
|
15
|
+
"source": "Append \"@block\"",
|
|
16
|
+
"translation": "«@block» anfügen"
|
|
17
|
+
},
|
|
18
|
+
"addBlockCommand.insertInField": {
|
|
19
|
+
"source": "Insert \"@block\" into \"@field\"",
|
|
20
|
+
"translation": "«@block» in «@field» einfügen"
|
|
21
|
+
},
|
|
22
|
+
"addButtonAfterBundle": {
|
|
23
|
+
"source": "Add after...",
|
|
24
|
+
"translation": "Danach hinzufügen..."
|
|
25
|
+
},
|
|
26
|
+
"addButtonBeforeBundle": {
|
|
27
|
+
"source": "Add before...",
|
|
28
|
+
"translation": "Vorher hinzufügen..."
|
|
29
|
+
},
|
|
30
|
+
"addButtonBundleAfter": {
|
|
31
|
+
"source": "Add \"@bundle\" after",
|
|
32
|
+
"translation": "«@bundle» danach hinzufügen"
|
|
33
|
+
},
|
|
34
|
+
"addButtonBundleBefore": {
|
|
35
|
+
"source": "Add \"@bundle\" before",
|
|
36
|
+
"translation": "«@bundle» Vorher hinzufügen"
|
|
37
|
+
},
|
|
38
|
+
"addButtonBundleInsideField": {
|
|
39
|
+
"source": "Add \"@bundle\" inside @parentBundle » @fieldLabel",
|
|
40
|
+
"translation": "«@bundle» in @parentBundle » @fieldLabel hinzufügen"
|
|
41
|
+
},
|
|
42
|
+
"addButtonBundleToField": {
|
|
43
|
+
"source": "Add \"@bundle\" to @fieldLabel",
|
|
44
|
+
"translation": "«@bundle» in @fieldLabel hinzufügen"
|
|
45
|
+
},
|
|
46
|
+
"addButtonInsideField": {
|
|
47
|
+
"source": "Add inside @parentBundle » @fieldLabel...",
|
|
48
|
+
"translation": "In @parentBundle » @fieldLabel hinzufügen..."
|
|
49
|
+
},
|
|
50
|
+
"addButtonToField": {
|
|
51
|
+
"source": "Add to @fieldLabel...",
|
|
52
|
+
"translation": "In @fieldLabel hinzufügen..."
|
|
53
|
+
},
|
|
54
|
+
"addCommentHeader": {
|
|
55
|
+
"source": "Add Comment",
|
|
56
|
+
"translation": "Kommentar hinzufügen"
|
|
57
|
+
},
|
|
58
|
+
"addCommentToItem": {
|
|
59
|
+
"source": "Add Comment...",
|
|
60
|
+
"translation": "Kommentar hinzufügen..."
|
|
61
|
+
},
|
|
62
|
+
"addListItemFavoriteAdd": {
|
|
63
|
+
"source": "Add to favorites",
|
|
64
|
+
"translation": "Zu Favoriten hinzufügen"
|
|
65
|
+
},
|
|
66
|
+
"addListItemFavoriteRemove": {
|
|
67
|
+
"source": "Remove from favorites",
|
|
68
|
+
"translation": "Aus Favoriten entfernen"
|
|
69
|
+
},
|
|
70
|
+
"addListSidebarTitle": {
|
|
71
|
+
"source": "Add blocks",
|
|
72
|
+
"translation": "Block hinzufügen"
|
|
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>Hier sehen Sie die Liste der verfügbaren Blöcke. Ziehen Sie einen Block auf die Seite um ihn hinzuzufügen.</p><p>Wenn ein bestehender Block ausgewählt ist sind möglicherweise einige Blöcke ausgegraut. Das bedeutet, dass nur die hervorgehobenen Blöcke im oder nach dem ausgewählten Block hinzugefügt werden können.</p>"
|
|
77
|
+
},
|
|
78
|
+
"aiAgentAddBlockDone": {
|
|
79
|
+
"source": "Added @bundle",
|
|
80
|
+
"translation": "@bundle hinzugefügt"
|
|
81
|
+
},
|
|
82
|
+
"aiAgentAddBlocksDone": {
|
|
83
|
+
"source": "Added @count blocks",
|
|
84
|
+
"translation": "@count Blöcke hinzugefügt"
|
|
85
|
+
},
|
|
86
|
+
"aiAgentAddBlocksRunning": {
|
|
87
|
+
"source": "Adding blocks...",
|
|
88
|
+
"translation": "Blöcke hinzufügen..."
|
|
89
|
+
},
|
|
90
|
+
"aiAgentAddContentSearchBlockDone": {
|
|
91
|
+
"source": "Added @bundle with content ID @id",
|
|
92
|
+
"translation": "@bundle mit Inhalts-ID @id hinzugefügt"
|
|
93
|
+
},
|
|
94
|
+
"aiAgentAddContentSearchBlockRunning": {
|
|
95
|
+
"source": "Adding content block...",
|
|
96
|
+
"translation": "Inhalts-Block hinzufügen..."
|
|
97
|
+
},
|
|
98
|
+
"aiAgentAddFragmentDone": {
|
|
99
|
+
"source": "Added fragment \"@label\"",
|
|
100
|
+
"translation": "Fragment «@label» hinzugefügt"
|
|
101
|
+
},
|
|
102
|
+
"aiAgentAddFragmentRunning": {
|
|
103
|
+
"source": "Adding fragment...",
|
|
104
|
+
"translation": "Fragment hinzufügen..."
|
|
105
|
+
},
|
|
106
|
+
"aiAgentAddLibraryItemDone": {
|
|
107
|
+
"source": "Added reusable block",
|
|
108
|
+
"translation": "Wiederverwendbaren Block hinzugefügt"
|
|
109
|
+
},
|
|
110
|
+
"aiAgentAddLibraryItemRunning": {
|
|
111
|
+
"source": "Adding reusable block...",
|
|
112
|
+
"translation": "Wiederverwendbaren Block hinzufügen..."
|
|
113
|
+
},
|
|
114
|
+
"aiAgentAddMediaBlockDone": {
|
|
115
|
+
"source": "Added @bundle with media ID @id",
|
|
116
|
+
"translation": "@bundle mit Medien-ID @id hinzugefügt"
|
|
117
|
+
},
|
|
118
|
+
"aiAgentAddMediaBlockRunning": {
|
|
119
|
+
"source": "Adding media block...",
|
|
120
|
+
"translation": "Medien-Block hinzufügen..."
|
|
121
|
+
},
|
|
122
|
+
"aiAgentAddTemplateDone": {
|
|
123
|
+
"source": "Added template",
|
|
124
|
+
"translation": "Vorlage hinzugefügt"
|
|
125
|
+
},
|
|
126
|
+
"aiAgentAddTemplateRunning": {
|
|
127
|
+
"source": "Adding template...",
|
|
128
|
+
"translation": "Vorlage hinzufügen..."
|
|
129
|
+
},
|
|
130
|
+
"aiAgentAlwaysApprove": {
|
|
131
|
+
"source": "Always",
|
|
132
|
+
"translation": "Immer"
|
|
133
|
+
},
|
|
134
|
+
"aiAgentApprove": {
|
|
135
|
+
"source": "Approve",
|
|
136
|
+
"translation": "Bestätigen"
|
|
137
|
+
},
|
|
138
|
+
"aiAgentApprovePlan": {
|
|
139
|
+
"source": "Accept plan",
|
|
140
|
+
"translation": "Plan akzeptieren"
|
|
141
|
+
},
|
|
142
|
+
"aiAgentAskQuestionOther": {
|
|
143
|
+
"source": "None of the above",
|
|
144
|
+
"translation": "Keine der Optionen"
|
|
145
|
+
},
|
|
146
|
+
"aiAgentAskQuestionOtherPlaceholder": {
|
|
147
|
+
"source": "Type your answer...",
|
|
148
|
+
"translation": "Eigene Antwort eingeben..."
|
|
149
|
+
},
|
|
150
|
+
"aiAgentAskQuestionRunning": {
|
|
151
|
+
"source": "Waiting for answer...",
|
|
152
|
+
"translation": "Auf Antwort warten..."
|
|
153
|
+
},
|
|
154
|
+
"aiAgentAwaitingApproval": {
|
|
155
|
+
"source": "Awaiting your approval...",
|
|
156
|
+
"translation": "Wartet auf Ihre Bestätigung..."
|
|
157
|
+
},
|
|
158
|
+
"aiAgentBatchRewriteAllApplied": {
|
|
159
|
+
"source": "All @count changes applied",
|
|
160
|
+
"translation": "Alle @count Änderungen angewendet"
|
|
161
|
+
},
|
|
162
|
+
"aiAgentBatchRewriteAllRejected": {
|
|
163
|
+
"source": "All changes rejected",
|
|
164
|
+
"translation": "Alle Änderungen abgelehnt"
|
|
165
|
+
},
|
|
166
|
+
"aiAgentBatchRewriteApply": {
|
|
167
|
+
"source": "Apply @count of @total",
|
|
168
|
+
"translation": "@count von @total anwenden"
|
|
169
|
+
},
|
|
170
|
+
"aiAgentBatchRewriteReasonPlaceholder": {
|
|
171
|
+
"source": "Reason for rejection (optional)",
|
|
172
|
+
"translation": "Grund für Ablehnung (optional)"
|
|
173
|
+
},
|
|
174
|
+
"aiAgentBatchRewriteSomeApplied": {
|
|
175
|
+
"source": "@applied of @total changes applied",
|
|
176
|
+
"translation": "@applied von @total Änderungen angewendet"
|
|
177
|
+
},
|
|
178
|
+
"aiAgentBatchRewriteTextRunning": {
|
|
179
|
+
"source": "Rewriting multiple texts...",
|
|
180
|
+
"translation": "Mehrere Texte umschreiben..."
|
|
181
|
+
},
|
|
182
|
+
"aiAgentBatchRewriteTitle": {
|
|
183
|
+
"source": "Rewrite @count fields",
|
|
184
|
+
"translation": "@count Felder umschreiben"
|
|
185
|
+
},
|
|
186
|
+
"aiAgentBlockNotFound": {
|
|
187
|
+
"source": "Block not found",
|
|
188
|
+
"translation": "Block nicht gefunden"
|
|
189
|
+
},
|
|
190
|
+
"aiAgentCancelled": {
|
|
191
|
+
"source": "Cancelled",
|
|
192
|
+
"translation": "Abgebrochen"
|
|
193
|
+
},
|
|
194
|
+
"aiAgentCompletePlanStep": {
|
|
195
|
+
"source": "Completed: @label",
|
|
196
|
+
"translation": "Abgeschlossen: @label"
|
|
197
|
+
},
|
|
198
|
+
"aiAgentConfirm": {
|
|
199
|
+
"source": "Confirm",
|
|
200
|
+
"translation": "Bestätigen"
|
|
201
|
+
},
|
|
202
|
+
"aiAgentConnecting": {
|
|
203
|
+
"source": "Connecting...",
|
|
204
|
+
"translation": "Verbinden..."
|
|
205
|
+
},
|
|
206
|
+
"aiAgentCreatePlan": {
|
|
207
|
+
"source": "Plan: @label",
|
|
208
|
+
"translation": "Plan: @label"
|
|
209
|
+
},
|
|
210
|
+
"aiAgentDeleteBlockDone": {
|
|
211
|
+
"source": "Deleted @bundle",
|
|
212
|
+
"translation": "@bundle gelöscht"
|
|
213
|
+
},
|
|
214
|
+
"aiAgentDeleteBlocksDone": {
|
|
215
|
+
"source": "Deleted @count blocks",
|
|
216
|
+
"translation": "@count Blöcke gelöscht"
|
|
217
|
+
},
|
|
218
|
+
"aiAgentDeleteBlocksRunning": {
|
|
219
|
+
"source": "Deleting blocks...",
|
|
220
|
+
"translation": "Blöcke löschen..."
|
|
221
|
+
},
|
|
222
|
+
"aiAgentDeleteConversation": {
|
|
223
|
+
"source": "Delete conversation",
|
|
224
|
+
"translation": "Konversation löschen"
|
|
225
|
+
},
|
|
226
|
+
"aiAgentDetachLibraryBlockDone": {
|
|
227
|
+
"source": "Detached library block",
|
|
228
|
+
"translation": "Bibliotheks-Block abgetrennt"
|
|
229
|
+
},
|
|
230
|
+
"aiAgentDetachLibraryBlockRunning": {
|
|
231
|
+
"source": "Detaching library block...",
|
|
232
|
+
"translation": "Bibliotheks-Block abtrennen..."
|
|
233
|
+
},
|
|
234
|
+
"aiAgentDetachLibraryBlocksDone": {
|
|
235
|
+
"source": "Detached @count library blocks",
|
|
236
|
+
"translation": "@count Bibliotheks-Blöcke abgetrennt"
|
|
237
|
+
},
|
|
238
|
+
"aiAgentDuplicateBlockDone": {
|
|
239
|
+
"source": "Duplicated @bundle",
|
|
240
|
+
"translation": "@bundle dupliziert"
|
|
241
|
+
},
|
|
242
|
+
"aiAgentDuplicateBlockToFieldDone": {
|
|
243
|
+
"source": "Duplicated @bundle to @field",
|
|
244
|
+
"translation": "@bundle nach @field dupliziert"
|
|
245
|
+
},
|
|
246
|
+
"aiAgentDuplicateBlocksDone": {
|
|
247
|
+
"source": "Duplicated @count blocks",
|
|
248
|
+
"translation": "@count Blöcke dupliziert"
|
|
249
|
+
},
|
|
250
|
+
"aiAgentDuplicateBlocksRunning": {
|
|
251
|
+
"source": "Duplicating blocks...",
|
|
252
|
+
"translation": "Blöcke duplizieren..."
|
|
253
|
+
},
|
|
254
|
+
"aiAgentDuplicateBlocksToFieldDone": {
|
|
255
|
+
"source": "Duplicated @count blocks to @field",
|
|
256
|
+
"translation": "@count Blöcke nach @field dupliziert"
|
|
257
|
+
},
|
|
258
|
+
"aiAgentErrorAuthentication": {
|
|
259
|
+
"source": "API authentication failed. Please check your API key.",
|
|
260
|
+
"translation": "API-Authentifizierung ist fehlgeschlagen. Bitte API-Key überprüfen."
|
|
261
|
+
},
|
|
262
|
+
"aiAgentErrorBadRequest": {
|
|
263
|
+
"source": "The request to the AI service was invalid.",
|
|
264
|
+
"translation": "Die Anfrage an den KI-Dienst ist ungültig."
|
|
265
|
+
},
|
|
266
|
+
"aiAgentErrorConnection": {
|
|
267
|
+
"source": "Could not connect to the AI service. Please check your network connection.",
|
|
268
|
+
"translation": "Fehler beim Verbinden mit dem KI-Dienst."
|
|
269
|
+
},
|
|
270
|
+
"aiAgentErrorNotFound": {
|
|
271
|
+
"source": "The configured AI model was not found. Please check the configuration.",
|
|
272
|
+
"translation": "Das konfigurierte KI-Model konnte nicht gefunden werden. Bitte Konfiguration überprüfen."
|
|
273
|
+
},
|
|
274
|
+
"aiAgentErrorOverloaded": {
|
|
275
|
+
"source": "The AI service is currently overloaded. Please try again in a moment.",
|
|
276
|
+
"translation": "Der KI-Dienst ist aktuell überlastet. Bitte versuchen Sie es später noch einmal."
|
|
277
|
+
},
|
|
278
|
+
"aiAgentErrorRateLimit": {
|
|
279
|
+
"source": "Rate limit exceeded. Please wait a moment before trying again.",
|
|
280
|
+
"translation": "Das Limit wurde überschritten. Bitte warten Sie einen Moment, bevor Sie es erneut versuchen."
|
|
281
|
+
},
|
|
282
|
+
"aiAgentErrorUnauthorized": {
|
|
283
|
+
"source": "Authentication failed. Please reload the page and try again.",
|
|
284
|
+
"translation": "Authentifizierung fehlgeschlagen. Bitte laden Sie die Seite neu und versuchen Sie es erneut."
|
|
285
|
+
},
|
|
286
|
+
"aiAgentErrorUnknown": {
|
|
287
|
+
"source": "An unexpected error occurred.",
|
|
288
|
+
"translation": "Ein unerwarteter Fehler ist aufgetreten."
|
|
289
|
+
},
|
|
290
|
+
"aiAgentFindBlocksDone": {
|
|
291
|
+
"source": "Found @count blocks",
|
|
292
|
+
"translation": "@count Blöcke gefunden"
|
|
293
|
+
},
|
|
294
|
+
"aiAgentFindBlocksRunning": {
|
|
295
|
+
"source": "Finding blocks...",
|
|
296
|
+
"translation": "Blöcke suchen..."
|
|
297
|
+
},
|
|
298
|
+
"aiAgentGetAllFragments": {
|
|
299
|
+
"source": "Get all fragments",
|
|
300
|
+
"translation": "Alle Fragmente abrufen"
|
|
301
|
+
},
|
|
302
|
+
"aiAgentGetAllFragmentsDone": {
|
|
303
|
+
"source": "Got all fragments",
|
|
304
|
+
"translation": "Alle Fragmente abgerufen"
|
|
305
|
+
},
|
|
306
|
+
"aiAgentGetAllPageContentDone": {
|
|
307
|
+
"source": "Got content from @count blocks",
|
|
308
|
+
"translation": "Inhalt von @count Blöcken abgerufen"
|
|
309
|
+
},
|
|
310
|
+
"aiAgentGetAllPageContentRunning": {
|
|
311
|
+
"source": "Getting all page content...",
|
|
312
|
+
"translation": "Gesamten Seiteninhalt abrufen..."
|
|
313
|
+
},
|
|
314
|
+
"aiAgentGetBlockContextDone": {
|
|
315
|
+
"source": "Got context for @bundle",
|
|
316
|
+
"translation": "Kontext für @bundle abgerufen"
|
|
317
|
+
},
|
|
318
|
+
"aiAgentGetBlockContextRunning": {
|
|
319
|
+
"source": "Getting block context...",
|
|
320
|
+
"translation": "Block-Kontext abrufen..."
|
|
321
|
+
},
|
|
322
|
+
"aiAgentGetBlockOptionsDone": {
|
|
323
|
+
"source": "Got options of @bundle",
|
|
324
|
+
"translation": "Optionen von @bundle abgerufen"
|
|
325
|
+
},
|
|
326
|
+
"aiAgentGetBlockOptionsMultipleDone": {
|
|
327
|
+
"source": "Got options of @count blocks",
|
|
328
|
+
"translation": "Optionen von @count Blöcken abgerufen"
|
|
329
|
+
},
|
|
330
|
+
"aiAgentGetBlockOptionsRunning": {
|
|
331
|
+
"source": "Getting block options...",
|
|
332
|
+
"translation": "Block-Optionen abrufen..."
|
|
333
|
+
},
|
|
334
|
+
"aiAgentGetBlocksInViewportDone": {
|
|
335
|
+
"source": "Got @count blocks in viewport",
|
|
336
|
+
"translation": "@count Blöcke im Viewport abgerufen"
|
|
337
|
+
},
|
|
338
|
+
"aiAgentGetBlocksInViewportRunning": {
|
|
339
|
+
"source": "Getting blocks in viewport...",
|
|
340
|
+
"translation": "Blöcke im Viewport abrufen..."
|
|
341
|
+
},
|
|
342
|
+
"aiAgentGetBundleInfoDone": {
|
|
343
|
+
"source": "Got bundle info for @field",
|
|
344
|
+
"translation": "Bundle-Info für @field abgerufen"
|
|
345
|
+
},
|
|
346
|
+
"aiAgentGetBundleInfoRunning": {
|
|
347
|
+
"source": "Getting bundle info...",
|
|
348
|
+
"translation": "Bundle-Info abrufen..."
|
|
349
|
+
},
|
|
350
|
+
"aiAgentGetChildBlocks": {
|
|
351
|
+
"source": "Get child blocks",
|
|
352
|
+
"translation": "Kind-Blöcke abrufen"
|
|
353
|
+
},
|
|
354
|
+
"aiAgentGetChildBlocksDone": {
|
|
355
|
+
"source": "Got children of @bundle",
|
|
356
|
+
"translation": "Kind-Blöcke von @bundle abgerufen"
|
|
357
|
+
},
|
|
358
|
+
"aiAgentGetChildBlocksNone": {
|
|
359
|
+
"source": "@bundle has no child fields",
|
|
360
|
+
"translation": "@bundle hat keine Kind-Felder"
|
|
361
|
+
},
|
|
362
|
+
"aiAgentGetContentFieldsDone": {
|
|
363
|
+
"source": "Got content fields of @bundle block",
|
|
364
|
+
"translation": "Inhaltsfelder von @bundle abgerufen"
|
|
365
|
+
},
|
|
366
|
+
"aiAgentGetContentFieldsMultipleDone": {
|
|
367
|
+
"source": "Got content fields of @count blocks",
|
|
368
|
+
"translation": "Inhaltsfelder von @count Blöcken geladen"
|
|
369
|
+
},
|
|
370
|
+
"aiAgentGetContentFieldsRunning": {
|
|
371
|
+
"source": "Getting content fields...",
|
|
372
|
+
"translation": "Inhaltsfelder abrufen..."
|
|
373
|
+
},
|
|
374
|
+
"aiAgentGetEntityContentFieldsDone": {
|
|
375
|
+
"source": "Got content fields of page entity",
|
|
376
|
+
"translation": "Inhaltsfelder der Seite abgerufen"
|
|
377
|
+
},
|
|
378
|
+
"aiAgentGetMutationHistoryDone": {
|
|
379
|
+
"source": "Got mutation history",
|
|
380
|
+
"translation": "Änderungsverlauf abgerufen"
|
|
381
|
+
},
|
|
382
|
+
"aiAgentGetMutationHistoryRunning": {
|
|
383
|
+
"source": "Getting mutation history...",
|
|
384
|
+
"translation": "Änderungsverlauf abrufen..."
|
|
385
|
+
},
|
|
386
|
+
"aiAgentGetSelectedBlocksDone": {
|
|
387
|
+
"source": "@count block(s) selected",
|
|
388
|
+
"translation": "@count Blöcke ausgewählt"
|
|
389
|
+
},
|
|
390
|
+
"aiAgentGetSelectedBlocksNone": {
|
|
391
|
+
"source": "No blocks selected",
|
|
392
|
+
"translation": "Keine Blöcke ausgewählt"
|
|
393
|
+
},
|
|
394
|
+
"aiAgentGetSelectedBlocksRunning": {
|
|
395
|
+
"source": "Getting selected blocks...",
|
|
396
|
+
"translation": "Ausgewählte Blöcke laden..."
|
|
397
|
+
},
|
|
398
|
+
"aiAgentGoToHistoryIndexRunning": {
|
|
399
|
+
"source": "Navigating history...",
|
|
400
|
+
"translation": "Im Verlauf navigieren..."
|
|
401
|
+
},
|
|
402
|
+
"aiAgentLoadSkill": {
|
|
403
|
+
"source": "Using skill \"@label\"",
|
|
404
|
+
"translation": "Skill «@label» lesen"
|
|
405
|
+
},
|
|
406
|
+
"aiAgentLoadTools": {
|
|
407
|
+
"source": "@count tools loaded",
|
|
408
|
+
"translation": "@count Tools geladen"
|
|
409
|
+
},
|
|
410
|
+
"aiAgentMoreOptions": {
|
|
411
|
+
"source": "More options",
|
|
412
|
+
"translation": "Weitere Optionen"
|
|
413
|
+
},
|
|
414
|
+
"aiAgentMoveBlockDone": {
|
|
415
|
+
"source": "Moved @bundle",
|
|
416
|
+
"translation": "@bundle verschoben"
|
|
417
|
+
},
|
|
418
|
+
"aiAgentMoveBlocksDone": {
|
|
419
|
+
"source": "Moved @count blocks",
|
|
420
|
+
"translation": "@count Blöcke verschoben"
|
|
421
|
+
},
|
|
422
|
+
"aiAgentMoveBlocksRunning": {
|
|
423
|
+
"source": "Moving blocks...",
|
|
424
|
+
"translation": "Blöcke verschieben..."
|
|
425
|
+
},
|
|
426
|
+
"aiAgentNewConversation": {
|
|
427
|
+
"source": "Start new conversation",
|
|
428
|
+
"translation": "Neue Konversation starten"
|
|
429
|
+
},
|
|
430
|
+
"aiAgentNewLineHint": {
|
|
431
|
+
"source": "Shift + Enter for new line",
|
|
432
|
+
"translation": "Shift + Enter für neue Zeile"
|
|
433
|
+
},
|
|
434
|
+
"aiAgentNoConversations": {
|
|
435
|
+
"source": "No past conversations.",
|
|
436
|
+
"translation": "Keine früheren Konversationen."
|
|
437
|
+
},
|
|
438
|
+
"aiAgentPastConversations": {
|
|
439
|
+
"source": "Past conversations",
|
|
440
|
+
"translation": "Frühere Konversationen"
|
|
441
|
+
},
|
|
442
|
+
"aiAgentPastedText": {
|
|
443
|
+
"source": "Pasted text",
|
|
444
|
+
"translation": "Eingefügter Text"
|
|
445
|
+
},
|
|
446
|
+
"aiAgentPlaceholder": {
|
|
447
|
+
"source": "What should we work on?",
|
|
448
|
+
"translation": "Woran sollen wir arbeiten?"
|
|
449
|
+
},
|
|
450
|
+
"aiAgentPlaceholderReply": {
|
|
451
|
+
"source": "Reply...",
|
|
452
|
+
"translation": "Antworten..."
|
|
453
|
+
},
|
|
454
|
+
"aiAgentPlanCompleted": {
|
|
455
|
+
"source": "Plan completed: @label",
|
|
456
|
+
"translation": "Plan abgeschlossen: @label"
|
|
457
|
+
},
|
|
458
|
+
"aiAgentProcessing": {
|
|
459
|
+
"source": "Processing...",
|
|
460
|
+
"translation": "Verarbeiten..."
|
|
461
|
+
},
|
|
462
|
+
"aiAgentRearrangeBlocksDone": {
|
|
463
|
+
"source": "Rearranged @count blocks",
|
|
464
|
+
"translation": "@count Blöcke neu angeordnet"
|
|
465
|
+
},
|
|
466
|
+
"aiAgentRearrangeBlocksRunning": {
|
|
467
|
+
"source": "Rearranging blocks...",
|
|
468
|
+
"translation": "Blöcke werden neu angeordnet..."
|
|
469
|
+
},
|
|
470
|
+
"aiAgentRedoDone": {
|
|
471
|
+
"source": "Redid @count changes",
|
|
472
|
+
"translation": "@count Änderungen wiederhergestellt"
|
|
473
|
+
},
|
|
474
|
+
"aiAgentReject": {
|
|
475
|
+
"source": "Reject",
|
|
476
|
+
"translation": "Ablehnen"
|
|
477
|
+
},
|
|
478
|
+
"aiAgentRemoveAttachment": {
|
|
479
|
+
"source": "Remove attachment",
|
|
480
|
+
"translation": "Anhang entfernen"
|
|
481
|
+
},
|
|
482
|
+
"aiAgentReplaceContentSearchItemDone": {
|
|
483
|
+
"source": "Replaced content reference on @field",
|
|
484
|
+
"translation": "Inhaltsreferenz auf @field ersetzt"
|
|
485
|
+
},
|
|
486
|
+
"aiAgentReplaceContentSearchItemRunning": {
|
|
487
|
+
"source": "Replacing content reference...",
|
|
488
|
+
"translation": "Inhaltsreferenz ersetzen..."
|
|
489
|
+
},
|
|
490
|
+
"aiAgentReplaceMediaDone": {
|
|
491
|
+
"source": "Replaced media on @field",
|
|
492
|
+
"translation": "Medien auf @field ersetzt"
|
|
493
|
+
},
|
|
494
|
+
"aiAgentReplaceMediaRunning": {
|
|
495
|
+
"source": "Replacing media...",
|
|
496
|
+
"translation": "Medien ersetzen..."
|
|
497
|
+
},
|
|
498
|
+
"aiAgentSearchLibraryDone": {
|
|
499
|
+
"source": "Searched library",
|
|
500
|
+
"translation": "Bibliothek durchsucht"
|
|
501
|
+
},
|
|
502
|
+
"aiAgentSearchLibraryRunning": {
|
|
503
|
+
"source": "Searching reusable blocks...",
|
|
504
|
+
"translation": "Wiederverwendbare Blöcke suchen..."
|
|
505
|
+
},
|
|
506
|
+
"aiAgentSearchMediaAllDone": {
|
|
507
|
+
"source": "Searched all media",
|
|
508
|
+
"translation": "Alle Medien durchsucht"
|
|
509
|
+
},
|
|
510
|
+
"aiAgentSearchMediaDone": {
|
|
511
|
+
"source": "Searched media for '@query'",
|
|
512
|
+
"translation": "Medien nach «@query» durchsucht"
|
|
513
|
+
},
|
|
514
|
+
"aiAgentSearchMediaRunning": {
|
|
515
|
+
"source": "Searching media...",
|
|
516
|
+
"translation": "Medien suchen..."
|
|
517
|
+
},
|
|
518
|
+
"aiAgentSearchTemplatesAllDone": {
|
|
519
|
+
"source": "Searched all templates",
|
|
520
|
+
"translation": "Alle Vorlagen durchsucht"
|
|
521
|
+
},
|
|
522
|
+
"aiAgentSearchTemplatesDone": {
|
|
523
|
+
"source": "Searched templates for '@query'",
|
|
524
|
+
"translation": "Vorlagen nach «@query» durchsucht"
|
|
525
|
+
},
|
|
526
|
+
"aiAgentSearchTemplatesRunning": {
|
|
527
|
+
"source": "Searching templates...",
|
|
528
|
+
"translation": "Vorlagen suchen..."
|
|
529
|
+
},
|
|
530
|
+
"aiAgentSearchTextDone": {
|
|
531
|
+
"source": "Found @count blocks matching '@query'",
|
|
532
|
+
"translation": "@count Blöcke mit «@query» gefunden"
|
|
533
|
+
},
|
|
534
|
+
"aiAgentSearchTextError": {
|
|
535
|
+
"source": "Invalid regex pattern",
|
|
536
|
+
"translation": "Ungültiges Regex-Muster"
|
|
537
|
+
},
|
|
538
|
+
"aiAgentSearchTextRunning": {
|
|
539
|
+
"source": "Searching text...",
|
|
540
|
+
"translation": "Text suchen..."
|
|
541
|
+
},
|
|
542
|
+
"aiAgentSelectMediaRunning": {
|
|
543
|
+
"source": "Selecting media...",
|
|
544
|
+
"translation": "Medien auswählen..."
|
|
545
|
+
},
|
|
546
|
+
"aiAgentSetBlockOptionsRunning": {
|
|
547
|
+
"source": "Setting block options...",
|
|
548
|
+
"translation": "Block-Optionen setzen..."
|
|
549
|
+
},
|
|
550
|
+
"aiAgentShowTranscript": {
|
|
551
|
+
"source": "Show transcript...",
|
|
552
|
+
"translation": "Transkript anzeigen..."
|
|
553
|
+
},
|
|
554
|
+
"aiAgentSwapBlocksDone": {
|
|
555
|
+
"source": "Swapped @bundleA and @bundleB",
|
|
556
|
+
"translation": "@bundleA und @bundleB getauscht"
|
|
557
|
+
},
|
|
558
|
+
"aiAgentSwapBlocksRunning": {
|
|
559
|
+
"source": "Swapping blocks...",
|
|
560
|
+
"translation": "Blöcke tauschen..."
|
|
561
|
+
},
|
|
562
|
+
"aiAgentThinking": {
|
|
563
|
+
"source": "Thinking...",
|
|
564
|
+
"translation": "Überlegen..."
|
|
565
|
+
},
|
|
566
|
+
"aiAgentTokensCached": {
|
|
567
|
+
"source": "Reused input tokens (cheaper)",
|
|
568
|
+
"translation": "Wiederverwendete Eingabe-Tokens (günstiger)"
|
|
569
|
+
},
|
|
570
|
+
"aiAgentTokensCachedLabel": {
|
|
571
|
+
"source": "Cached",
|
|
572
|
+
"translation": "Cache"
|
|
573
|
+
},
|
|
574
|
+
"aiAgentTokensCost": {
|
|
575
|
+
"source": "Estimated cost for this conversation",
|
|
576
|
+
"translation": "Geschätzte Kosten für diese Konversation"
|
|
577
|
+
},
|
|
578
|
+
"aiAgentTokensCostLabel": {
|
|
579
|
+
"source": "Cost",
|
|
580
|
+
"translation": "Kosten"
|
|
581
|
+
},
|
|
582
|
+
"aiAgentTokensInput": {
|
|
583
|
+
"source": "Tokens used to send context to the AI",
|
|
584
|
+
"translation": "Tokens, die als Kontext an die KI gesendet werden"
|
|
585
|
+
},
|
|
586
|
+
"aiAgentTokensInputLabel": {
|
|
587
|
+
"source": "Input",
|
|
588
|
+
"translation": "Eingabe"
|
|
589
|
+
},
|
|
590
|
+
"aiAgentTokensOutput": {
|
|
591
|
+
"source": "Tokens generated by the AI in responses",
|
|
592
|
+
"translation": "Von der KI generierte Tokens in Antworten"
|
|
593
|
+
},
|
|
594
|
+
"aiAgentTokensOutputLabel": {
|
|
595
|
+
"source": "Output",
|
|
596
|
+
"translation": "Ausgabe"
|
|
597
|
+
},
|
|
598
|
+
"aiAgentTourText": {
|
|
599
|
+
"source": "Chat with an AI assistant to edit page content.",
|
|
600
|
+
"translation": "Chatten Sie mit einem KI-Assistenten, um Seiteninhalte zu bearbeiten."
|
|
601
|
+
},
|
|
602
|
+
"aiAgentUndoDone": {
|
|
603
|
+
"source": "Undid @count changes",
|
|
604
|
+
"translation": "@count Änderungen rückgängig gemacht"
|
|
605
|
+
},
|
|
606
|
+
"aiAgentUnknownMessage": {
|
|
607
|
+
"source": "Unknown message type",
|
|
608
|
+
"translation": "Unbekannter Nachrichtentyp"
|
|
609
|
+
},
|
|
610
|
+
"aiAgentUpdateOptionsOnBlockDone": {
|
|
611
|
+
"source": "Updated @count option(s) on block",
|
|
612
|
+
"translation": "@count Option(en) auf Block aktualisiert"
|
|
613
|
+
},
|
|
614
|
+
"aiAgentUpdateOptionsOnBlocksDone": {
|
|
615
|
+
"source": "Updated @count option(s) on @blockCount blocks",
|
|
616
|
+
"translation": "@count Option(en) auf @blockCount Blöcken aktualisiert"
|
|
617
|
+
},
|
|
618
|
+
"aiAgentViewAttachment": {
|
|
619
|
+
"source": "View attachment",
|
|
620
|
+
"translation": "Anhang anzeigen"
|
|
621
|
+
},
|
|
622
|
+
"aiAgentWebFetchDone": {
|
|
623
|
+
"source": "Fetched '@title'",
|
|
624
|
+
"translation": "«@title» abgerufen"
|
|
625
|
+
},
|
|
626
|
+
"aiAgentWebFetchRunning": {
|
|
627
|
+
"source": "Fetching web page...",
|
|
628
|
+
"translation": "Webseite abrufen..."
|
|
629
|
+
},
|
|
630
|
+
"aiAgentWelcomeDisclaimer": {
|
|
631
|
+
"source": "@agent can make mistakes! Always check the output. <strong>Do not enter sensitive information.</strong>",
|
|
632
|
+
"translation": "@agent kann Fehler machen! Überprüfen Sie immer die Resultate. <strong>Geben Sie keine vertraulichen Informationen ein.</strong>"
|
|
633
|
+
},
|
|
634
|
+
"all": {
|
|
635
|
+
"source": "All",
|
|
636
|
+
"translation": "Alle"
|
|
637
|
+
},
|
|
638
|
+
"allowedBlocks": {
|
|
639
|
+
"source": "Allowed Blocks",
|
|
640
|
+
"translation": "Erlaubte Blöcke"
|
|
641
|
+
},
|
|
642
|
+
"analyzeButtonLabel": {
|
|
643
|
+
"source": "Analyze Page",
|
|
644
|
+
"translation": "Seite analysieren"
|
|
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": "Texte"
|
|
665
|
+
},
|
|
666
|
+
"analyzeClickButton": {
|
|
667
|
+
"source": "Click the button above to run the analysis.",
|
|
668
|
+
"translation": "Klicken Sie auf den Button oben um die Analyse auszuführen."
|
|
669
|
+
},
|
|
670
|
+
"analyzeLastRun": {
|
|
671
|
+
"source": "Last run: @time",
|
|
672
|
+
"translation": "Zuletzt ausgeführt: @time"
|
|
673
|
+
},
|
|
674
|
+
"analyzeMoreLink": {
|
|
675
|
+
"source": "More",
|
|
676
|
+
"translation": "Mehr"
|
|
677
|
+
},
|
|
678
|
+
"analyzeNotAvailableInStructureView": {
|
|
679
|
+
"source": "Analyze is not available in structure view.",
|
|
680
|
+
"translation": "«Analysieren» ist in der strukturierten Vorschau nicht verfügbar."
|
|
681
|
+
},
|
|
682
|
+
"analyzeResultsOutdated": {
|
|
683
|
+
"source": "Results are outdated. Click the button to update.",
|
|
684
|
+
"translation": "Resultate sind veraltet. Klicken Sie auf den Button um zu aktualisieren."
|
|
685
|
+
},
|
|
686
|
+
"analyzeSidebarTitle": {
|
|
687
|
+
"source": "Analyze",
|
|
688
|
+
"translation": "Analysieren"
|
|
689
|
+
},
|
|
690
|
+
"analyzeStatusInapplicable": {
|
|
691
|
+
"source": "Inapplicable",
|
|
692
|
+
"translation": "Nicht anwendbar"
|
|
693
|
+
},
|
|
694
|
+
"analyzeStatusIncomplete": {
|
|
695
|
+
"source": "Incomplete",
|
|
696
|
+
"translation": "Unvollständig"
|
|
697
|
+
},
|
|
698
|
+
"analyzeStatusPass": {
|
|
699
|
+
"source": "Pass",
|
|
700
|
+
"translation": "Bestanden"
|
|
701
|
+
},
|
|
702
|
+
"analyzeStatusStale": {
|
|
703
|
+
"source": "Stale",
|
|
704
|
+
"translation": "Veraltet"
|
|
705
|
+
},
|
|
706
|
+
"analyzeStatusUpToDate": {
|
|
707
|
+
"source": "Up-to-date",
|
|
708
|
+
"translation": "Aktuell"
|
|
709
|
+
},
|
|
710
|
+
"analyzeStatusViolation": {
|
|
711
|
+
"source": "Violation",
|
|
712
|
+
"translation": "Fehler"
|
|
713
|
+
},
|
|
714
|
+
"analyzeTourText": {
|
|
715
|
+
"source": "Analyze the content of your page",
|
|
716
|
+
"translation": "Inhalte auf dieser Seite analysieren."
|
|
717
|
+
},
|
|
718
|
+
"analyzerReadabiliyAverageSentenceLength": {
|
|
719
|
+
"source": "Average sentence length @length → split sentences.",
|
|
720
|
+
"translation": "Durchschnittliche Satzlänge: @length. In einzelne Sätze aufteilen."
|
|
721
|
+
},
|
|
722
|
+
"analyzerReadabiliyDescription": {
|
|
723
|
+
"source": "Avoid texts that are hard to read.",
|
|
724
|
+
"translation": "Vermeiden Sie Texte die schwer lesbar sind."
|
|
725
|
+
},
|
|
726
|
+
"analyzerReadabiliyHardToRead": {
|
|
727
|
+
"source": "Hard to read (@lang).",
|
|
728
|
+
"translation": "Schwierig zu lesen (@lang)."
|
|
729
|
+
},
|
|
730
|
+
"analyzerReadabiliyShorterSentences": {
|
|
731
|
+
"source": "Consider shorter sentences and simpler wording.",
|
|
732
|
+
"translation": "Verwenden Sie kürzere Sätze und einfachere Formulierungen."
|
|
733
|
+
},
|
|
734
|
+
"analyzerReadabiliyTitle": {
|
|
735
|
+
"source": "Text readability issues",
|
|
736
|
+
"translation": "Probleme bei Lesbarkeit"
|
|
737
|
+
},
|
|
738
|
+
"anchorHide": {
|
|
739
|
+
"source": "Hide anchor links",
|
|
740
|
+
"translation": "Anker-Links verstecken"
|
|
741
|
+
},
|
|
742
|
+
"anchorShow": {
|
|
743
|
+
"source": "Show anchor links",
|
|
744
|
+
"translation": "Anker-Links anzeigen"
|
|
745
|
+
},
|
|
746
|
+
"anchorToggle": {
|
|
747
|
+
"source": "Toggle anchor links",
|
|
748
|
+
"translation": "Anzeige von Anker-Links umschalten"
|
|
749
|
+
},
|
|
750
|
+
"artboard": {
|
|
751
|
+
"source": "Artboard",
|
|
752
|
+
"translation": "Vorschau"
|
|
753
|
+
},
|
|
754
|
+
"artboardOverviewHide": {
|
|
755
|
+
"source": "Hide overview",
|
|
756
|
+
"translation": "Übersicht verstecken"
|
|
757
|
+
},
|
|
758
|
+
"artboardOverviewShow": {
|
|
759
|
+
"source": "Show overview",
|
|
760
|
+
"translation": "Übersicht anzeigen"
|
|
761
|
+
},
|
|
762
|
+
"artboardOverviewToggle": {
|
|
763
|
+
"source": "Toggle overview",
|
|
764
|
+
"translation": "Übersicht umschalten"
|
|
765
|
+
},
|
|
766
|
+
"artboardOverviewTourText": {
|
|
767
|
+
"source": "Displays a top level overview of your content.",
|
|
768
|
+
"translation": "Zeigt eine schematische Übersicht aller Inhalte an."
|
|
769
|
+
},
|
|
770
|
+
"artboardResetZoom": {
|
|
771
|
+
"source": "Reset zoom",
|
|
772
|
+
"translation": "Zoom zurücksetzen"
|
|
773
|
+
},
|
|
774
|
+
"artboardScaleToFit": {
|
|
775
|
+
"source": "Scale to fit",
|
|
776
|
+
"translation": "An Höhe anpassen"
|
|
777
|
+
},
|
|
778
|
+
"artboardScrollDown": {
|
|
779
|
+
"source": "Scroll down",
|
|
780
|
+
"translation": "runterscrollen"
|
|
781
|
+
},
|
|
782
|
+
"artboardScrollOnePageDown": {
|
|
783
|
+
"source": "Scroll one page down",
|
|
784
|
+
"translation": "Eine Seite hochscrollen"
|
|
785
|
+
},
|
|
786
|
+
"artboardScrollOnePageUp": {
|
|
787
|
+
"source": "Scroll one page up",
|
|
788
|
+
"translation": "Eine Seite runterscrollen"
|
|
789
|
+
},
|
|
790
|
+
"artboardScrollToEnd": {
|
|
791
|
+
"source": "Scroll to end",
|
|
792
|
+
"translation": "Zum Ende scrollen"
|
|
793
|
+
},
|
|
794
|
+
"artboardScrollToTop": {
|
|
795
|
+
"source": "Scroll to top",
|
|
796
|
+
"translation": "Zum Anfang scrollen"
|
|
797
|
+
},
|
|
798
|
+
"artboardScrollUp": {
|
|
799
|
+
"source": "Scroll up",
|
|
800
|
+
"translation": "hochscrollen"
|
|
801
|
+
},
|
|
802
|
+
"artboardToolbarButtonTourText": {
|
|
803
|
+
"source": "Shows the current zoom factor. Click on it to reset the zoom back to 100%.",
|
|
804
|
+
"translation": "Zeigt den aktuellen Zoom-Wert. Klicken Sie auf den Button um den Zoom auf 100% zurückzusetzen."
|
|
805
|
+
},
|
|
806
|
+
"assistantAddAction": {
|
|
807
|
+
"source": "Add with AI Assistant",
|
|
808
|
+
"translation": "Mit KI-Assistent hinzufügen"
|
|
809
|
+
},
|
|
810
|
+
"assistantAddActionDescription": {
|
|
811
|
+
"source": "Add content using an AI assistant.",
|
|
812
|
+
"translation": "Fügen Sie Inhalte mit dem KI-Assistenten hinzu."
|
|
813
|
+
},
|
|
814
|
+
"assistantAddResultError": {
|
|
815
|
+
"source": "Failed to add block from assistant.",
|
|
816
|
+
"translation": "Fehler beim hinzufügen mit KI."
|
|
817
|
+
},
|
|
818
|
+
"assistantDialogLead": {
|
|
819
|
+
"source": "Please enter what you'd like the assistant to generate.",
|
|
820
|
+
"translation": "Geben Sie ein was der KI-Assistent generieren soll."
|
|
821
|
+
},
|
|
822
|
+
"assistantDialogSubmit": {
|
|
823
|
+
"source": "Create blocks",
|
|
824
|
+
"translation": "Blöcke erstellen"
|
|
825
|
+
},
|
|
826
|
+
"assistantDialogTitle": {
|
|
827
|
+
"source": "Generate content with AI assistant",
|
|
828
|
+
"translation": "Inhalt mit KI generieren"
|
|
829
|
+
},
|
|
830
|
+
"assistantPromptLabel": {
|
|
831
|
+
"source": "Prompt",
|
|
832
|
+
"translation": "Anweisung"
|
|
833
|
+
},
|
|
834
|
+
"assistantPromptPlaceholder": {
|
|
835
|
+
"source": "Generate content for a page about how taxes work in Switzerland",
|
|
836
|
+
"translation": "Schreibe Text zum Thema Steuern in der Schweiz"
|
|
837
|
+
},
|
|
838
|
+
"availableBlocks": {
|
|
839
|
+
"source": "Available blocks",
|
|
840
|
+
"translation": "Verfügbare Blöcke"
|
|
841
|
+
},
|
|
842
|
+
"availableFragments": {
|
|
843
|
+
"source": "Available fragments",
|
|
844
|
+
"translation": "Verfügbare Fragmente"
|
|
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": "Klicken Sie mit der rechten Maustaste auf den Block um ihn zu den Favoriten hinzuzufügen oder zu entfernen. Favoriten werden hervorgehoben und an erster Stelle dargestellt."
|
|
849
|
+
},
|
|
850
|
+
"blockAddListTourTitle": {
|
|
851
|
+
"source": "Favorite blocks",
|
|
852
|
+
"translation": "Favoriten-Blöcke"
|
|
853
|
+
},
|
|
854
|
+
"blockNotImplemented": {
|
|
855
|
+
"source": "Missing component for block bundle <strong>@bundle</strong>.",
|
|
856
|
+
"translation": "Keine Komponente für Block-Typ <strong>@bundle</strong> gefunden."
|
|
857
|
+
},
|
|
858
|
+
"blockOption_bkHiddenGlobally_description": {
|
|
859
|
+
"source": "Always hides the block.",
|
|
860
|
+
"translation": "Den Block immer verstecken."
|
|
861
|
+
},
|
|
862
|
+
"blockOption_bkHiddenGlobally_label": {
|
|
863
|
+
"source": "Hide globally",
|
|
864
|
+
"translation": "Global verstecken"
|
|
865
|
+
},
|
|
866
|
+
"blockOption_bkVisibleLanguages_description": {
|
|
867
|
+
"source": "Only show on specific languages.",
|
|
868
|
+
"translation": "Nur auf bestimmten Sprachen anzeigen."
|
|
869
|
+
},
|
|
870
|
+
"blockOption_bkVisibleLanguages_label": {
|
|
871
|
+
"source": "Visible languages",
|
|
872
|
+
"translation": "Sichtbare Sprachen"
|
|
873
|
+
},
|
|
874
|
+
"blockSchedulerChangesPreview": {
|
|
875
|
+
"source": "Changes to be applied",
|
|
876
|
+
"translation": "Anzuwendende Änderungen"
|
|
877
|
+
},
|
|
878
|
+
"blockSchedulerDialogLead": {
|
|
879
|
+
"source": "Schedule automatic publishing and unpublishing dates for the selected blocks.",
|
|
880
|
+
"translation": "Planen Sie automatische Veröffentlichungs- und Depublikationsdaten für die ausgewählten Blöcke."
|
|
881
|
+
},
|
|
882
|
+
"blockSchedulerDialogPublishOn": {
|
|
883
|
+
"source": "Publish on",
|
|
884
|
+
"translation": "Veröffentlichen am"
|
|
885
|
+
},
|
|
886
|
+
"blockSchedulerDialogSubmit": {
|
|
887
|
+
"source": "Save schedule",
|
|
888
|
+
"translation": "Planung speichern"
|
|
889
|
+
},
|
|
890
|
+
"blockSchedulerDialogTitle": {
|
|
891
|
+
"source": "Manage scheduling",
|
|
892
|
+
"translation": "Planung verwalten"
|
|
893
|
+
},
|
|
894
|
+
"blockSchedulerDialogUnpublishOn": {
|
|
895
|
+
"source": "Unpublish on",
|
|
896
|
+
"translation": "Depublizieren am"
|
|
897
|
+
},
|
|
898
|
+
"blockSchedulerMixedDates": {
|
|
899
|
+
"source": "Selected blocks have different dates: @dates",
|
|
900
|
+
"translation": "Ausgewählte Blöcke haben unterschiedliche Daten: @dates"
|
|
901
|
+
},
|
|
902
|
+
"blockSchedulerNoChanges": {
|
|
903
|
+
"source": "No changes to be applied.",
|
|
904
|
+
"translation": "Keine Änderungen vorhanden."
|
|
905
|
+
},
|
|
906
|
+
"blockSchedulerOverride": {
|
|
907
|
+
"source": "Set date for all",
|
|
908
|
+
"translation": "Datum für alle setzen"
|
|
909
|
+
},
|
|
910
|
+
"blockSchedulerSuccessMessage": {
|
|
911
|
+
"source": "Successfully updated schedule dates.",
|
|
912
|
+
"translation": "Planungsdaten erfolgreich aktualisiert."
|
|
913
|
+
},
|
|
914
|
+
"bundle": {
|
|
915
|
+
"source": "Bundle",
|
|
916
|
+
"translation": "Typ"
|
|
917
|
+
},
|
|
918
|
+
"cancelSelection": {
|
|
919
|
+
"source": "Cancel selection",
|
|
920
|
+
"translation": "Auswahl abbrechen"
|
|
921
|
+
},
|
|
922
|
+
"clearInput": {
|
|
923
|
+
"source": "Clear input",
|
|
924
|
+
"translation": "Eingabe löschen"
|
|
925
|
+
},
|
|
926
|
+
"clipboard": {
|
|
927
|
+
"source": "Clipboard",
|
|
928
|
+
"translation": "Zwischenablage"
|
|
929
|
+
},
|
|
930
|
+
"clipboardCopyShortcutHelp": {
|
|
931
|
+
"source": "Copy selected blocks",
|
|
932
|
+
"translation": "Ausgewählte Blöcke kopieren"
|
|
933
|
+
},
|
|
934
|
+
"clipboardEmpty": {
|
|
935
|
+
"source": "No items in the clipboard",
|
|
936
|
+
"translation": "Keine Elemente in der Zwischenablage"
|
|
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>Verwenden Sie Ctrl-V auf der Seite um Inhalte einzufügen. Diese werden dann hier angezeigt.</p><p>Verwenden Sie Ctrl-F um bestehende Inhalte zu suchen und in die Zwischenablage einzufügen.</p>"
|
|
941
|
+
},
|
|
942
|
+
"clipboardPasteDescription": {
|
|
943
|
+
"source": "Paste blocks from clipboard",
|
|
944
|
+
"translation": "Blöcke aus Zwischenablage einfügen"
|
|
945
|
+
},
|
|
946
|
+
"clipboardPasteError": {
|
|
947
|
+
"source": "Failed to paste:",
|
|
948
|
+
"translation": "Einfügen fehlgeschlagen:"
|
|
949
|
+
},
|
|
950
|
+
"clipboardPasteErrorAllowedBundlesMultiple": {
|
|
951
|
+
"source": "Block types (@types) are not allowed here.",
|
|
952
|
+
"translation": "Die Block-Typen (@types) sind hier nicht erlaubt."
|
|
953
|
+
},
|
|
954
|
+
"clipboardPasteErrorAllowedBundlesSingle": {
|
|
955
|
+
"source": "Block type \"@types\" is not allowed here.",
|
|
956
|
+
"translation": "Der Block-Typ «@types» ist hier nicht erlaubt."
|
|
957
|
+
},
|
|
958
|
+
"clipboardPasteErrorAllowedFragmentsMultiple": {
|
|
959
|
+
"source": "Fragments (@types) are not allowed here.",
|
|
960
|
+
"translation": "Die Fragmente (@types) sind hier nicht erlaubt."
|
|
961
|
+
},
|
|
962
|
+
"clipboardPasteErrorAllowedFragmentsSingle": {
|
|
963
|
+
"source": "Fragment \"@types\" is not allowed here.",
|
|
964
|
+
"translation": "Das Fragment «@types» ist hier nicht erlaubt."
|
|
965
|
+
},
|
|
966
|
+
"clipboardPasteErrorCardinality": {
|
|
967
|
+
"source": "This field only allows up to @count blocks.",
|
|
968
|
+
"translation": "Dieses Feld erlaubt nur bis zu @count Blöcke."
|
|
969
|
+
},
|
|
970
|
+
"clipboardPasteErrorOneField": {
|
|
971
|
+
"source": "Pasting is only possible into one field at a time.",
|
|
972
|
+
"translation": "Blöcke können nur in einem Feld gleichzeitig eingefügt werden."
|
|
973
|
+
},
|
|
974
|
+
"clipboardPastePlaceholder": {
|
|
975
|
+
"source": "Paste text or media here",
|
|
976
|
+
"translation": "Text oder Medien einfügen"
|
|
977
|
+
},
|
|
978
|
+
"clipboardPasteShortcutHelp": {
|
|
979
|
+
"source": "Paste text, image or copied blocks",
|
|
980
|
+
"translation": "Text, Bild oder kopierte Blöcke einfügen"
|
|
981
|
+
},
|
|
982
|
+
"clipboardTourText": {
|
|
983
|
+
"source": "Drag and drop content pasted from your clipboard into the page to create a matching block.",
|
|
984
|
+
"translation": "Ziehen Sie Inhalte, die aus Ihrer Zwischenablage eingefügt wurden, in die Seite hinein, um einen passenden Block zu erstellen."
|
|
985
|
+
},
|
|
986
|
+
"close": {
|
|
987
|
+
"source": "Close",
|
|
988
|
+
"translation": "Schliessen"
|
|
989
|
+
},
|
|
990
|
+
"commandGroup.action": {
|
|
991
|
+
"source": "Actions",
|
|
992
|
+
"translation": "Aktionen"
|
|
993
|
+
},
|
|
994
|
+
"commandGroup.add": {
|
|
995
|
+
"source": "Add new",
|
|
996
|
+
"translation": "Hinzufügen"
|
|
997
|
+
},
|
|
998
|
+
"commandGroup.misc": {
|
|
999
|
+
"source": "Miscellaneous",
|
|
1000
|
+
"translation": "Diverse"
|
|
1001
|
+
},
|
|
1002
|
+
"commandGroup.selection": {
|
|
1003
|
+
"source": "Selection",
|
|
1004
|
+
"translation": "Auswahl"
|
|
1005
|
+
},
|
|
1006
|
+
"commandGroup.ui": {
|
|
1007
|
+
"source": "Interface",
|
|
1008
|
+
"translation": "Oberfläche"
|
|
1009
|
+
},
|
|
1010
|
+
"commandPalette.inputPlaceholder": {
|
|
1011
|
+
"source": "Search commands...",
|
|
1012
|
+
"translation": "Befehle durchsuchen..."
|
|
1013
|
+
},
|
|
1014
|
+
"commandPaletteOpen": {
|
|
1015
|
+
"source": "Open Command Palette",
|
|
1016
|
+
"translation": "Befehle öffnen"
|
|
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ühren Sie Aktionen ganz einfach mit Ihrer Tastatur aus, indem Sie «Befehle» öffnen. Fast alle Funktionen sind auch über «Befehle» ausführbar."
|
|
1021
|
+
},
|
|
1022
|
+
"commentAdd": {
|
|
1023
|
+
"source": "Add comment",
|
|
1024
|
+
"translation": "Kommentar hinzufügen"
|
|
1025
|
+
},
|
|
1026
|
+
"commentBodyPlaceholder": {
|
|
1027
|
+
"source": "Add reply",
|
|
1028
|
+
"translation": "Antwort hinzufügen"
|
|
1029
|
+
},
|
|
1030
|
+
"commentSave": {
|
|
1031
|
+
"source": "Submit comment",
|
|
1032
|
+
"translation": "Kommentar speichern"
|
|
1033
|
+
},
|
|
1034
|
+
"comments": {
|
|
1035
|
+
"source": "Comments",
|
|
1036
|
+
"translation": "Kommentare"
|
|
1037
|
+
},
|
|
1038
|
+
"commentsMarkAsResolved": {
|
|
1039
|
+
"source": "Resolve",
|
|
1040
|
+
"translation": "Erledigen"
|
|
1041
|
+
},
|
|
1042
|
+
"commentsTourText": {
|
|
1043
|
+
"source": "Shows all comments for the current page.",
|
|
1044
|
+
"translation": "Zeigt alle Kommentare auf der aktuellen Seite an."
|
|
1045
|
+
},
|
|
1046
|
+
"conversionsConvertTo": {
|
|
1047
|
+
"source": "Convert to: @bundle",
|
|
1048
|
+
"translation": "Konvertieren zu: @bundle"
|
|
1049
|
+
},
|
|
1050
|
+
"copiedToClipboardMessage": {
|
|
1051
|
+
"source": "\"@text\" has been copied to your clipboard",
|
|
1052
|
+
"translation": "«@text» wurde in die Zwischenablage kopiert"
|
|
1053
|
+
},
|
|
1054
|
+
"copy": {
|
|
1055
|
+
"source": "Copy",
|
|
1056
|
+
"translation": "Kopieren"
|
|
1057
|
+
},
|
|
1058
|
+
"created": {
|
|
1059
|
+
"source": "Created",
|
|
1060
|
+
"translation": "Erstellt"
|
|
1061
|
+
},
|
|
1062
|
+
"createdBy": {
|
|
1063
|
+
"source": "Created by",
|
|
1064
|
+
"translation": "Erstellt von"
|
|
1065
|
+
},
|
|
1066
|
+
"dateUpdated": {
|
|
1067
|
+
"source": "Updated",
|
|
1068
|
+
"translation": "Aktualisiert"
|
|
1069
|
+
},
|
|
1070
|
+
"deleteButton": {
|
|
1071
|
+
"source": "Delete",
|
|
1072
|
+
"translation": "Löschen"
|
|
1073
|
+
},
|
|
1074
|
+
"deleteError": {
|
|
1075
|
+
"source": "The block could not be deleted.",
|
|
1076
|
+
"translation": "Das Element konnte nicht entfernt werden."
|
|
1077
|
+
},
|
|
1078
|
+
"diffAfter": {
|
|
1079
|
+
"source": "After",
|
|
1080
|
+
"translation": "Nachher"
|
|
1081
|
+
},
|
|
1082
|
+
"diffBefore": {
|
|
1083
|
+
"source": "Before",
|
|
1084
|
+
"translation": "Vorher"
|
|
1085
|
+
},
|
|
1086
|
+
"diffModeAfter": {
|
|
1087
|
+
"source": "After",
|
|
1088
|
+
"translation": "Nachher"
|
|
1089
|
+
},
|
|
1090
|
+
"diffModeInline": {
|
|
1091
|
+
"source": "Inline",
|
|
1092
|
+
"translation": "Hervorgehoben"
|
|
1093
|
+
},
|
|
1094
|
+
"diffModeLabel": {
|
|
1095
|
+
"source": "Display",
|
|
1096
|
+
"translation": "Darstellung"
|
|
1097
|
+
},
|
|
1098
|
+
"diffModeSideBySide": {
|
|
1099
|
+
"source": "Both",
|
|
1100
|
+
"translation": "Beide"
|
|
1101
|
+
},
|
|
1102
|
+
"diffSidebarTitle": {
|
|
1103
|
+
"source": "Changes",
|
|
1104
|
+
"translation": "Änderungen"
|
|
1105
|
+
},
|
|
1106
|
+
"diffSidebarTourText": {
|
|
1107
|
+
"source": "Displays all the changes made during editing.",
|
|
1108
|
+
"translation": "Zeigt die Änderungen an die während dem Bearbeiten durchgeführt wurden."
|
|
1109
|
+
},
|
|
1110
|
+
"diffStatusAdded": {
|
|
1111
|
+
"source": "Added",
|
|
1112
|
+
"translation": "Hinzugefügt"
|
|
1113
|
+
},
|
|
1114
|
+
"diffStatusDeleted": {
|
|
1115
|
+
"source": "Deleted",
|
|
1116
|
+
"translation": "Gelöscht"
|
|
1117
|
+
},
|
|
1118
|
+
"diffStatusEdited": {
|
|
1119
|
+
"source": "Edited",
|
|
1120
|
+
"translation": "Bearbeitet"
|
|
1121
|
+
},
|
|
1122
|
+
"diffStatusUnchanged": {
|
|
1123
|
+
"source": "Unchanged",
|
|
1124
|
+
"translation": "Keine Änderung"
|
|
1125
|
+
},
|
|
1126
|
+
"downloadLogsButton": {
|
|
1127
|
+
"source": "Download Logs",
|
|
1128
|
+
"translation": "Fehlerprotokoll herunterladen"
|
|
1129
|
+
},
|
|
1130
|
+
"draggingOverlaySelectBundle": {
|
|
1131
|
+
"source": "Select block type to create",
|
|
1132
|
+
"translation": "Block-Typ zum Erstellen auswählen"
|
|
1133
|
+
},
|
|
1134
|
+
"duplicate": {
|
|
1135
|
+
"source": "Duplicate",
|
|
1136
|
+
"translation": "Duplizieren"
|
|
1137
|
+
},
|
|
1138
|
+
"duplicateError": {
|
|
1139
|
+
"source": "The items could not be duplicated.",
|
|
1140
|
+
"translation": "Die Elemente konnten nicht dupliziert werden."
|
|
1141
|
+
},
|
|
1142
|
+
"edit": {
|
|
1143
|
+
"source": "Edit...",
|
|
1144
|
+
"translation": "Bearbeiten..."
|
|
1145
|
+
},
|
|
1146
|
+
"editFormBlockAdd": {
|
|
1147
|
+
"source": "Add @label",
|
|
1148
|
+
"translation": "@label hinzufügen"
|
|
1149
|
+
},
|
|
1150
|
+
"editFormBlockEdit": {
|
|
1151
|
+
"source": "Edit @label",
|
|
1152
|
+
"translation": "@label bearbeiten"
|
|
1153
|
+
},
|
|
1154
|
+
"editFormBlockTranslate": {
|
|
1155
|
+
"source": "Translate @label (@language)",
|
|
1156
|
+
"translation": "@label übersetzen (@language)"
|
|
1157
|
+
},
|
|
1158
|
+
"editFormEntityEdit": {
|
|
1159
|
+
"source": "Edit @label",
|
|
1160
|
+
"translation": "\"@label\" bearbeiten"
|
|
1161
|
+
},
|
|
1162
|
+
"editFormEntityTranslate": {
|
|
1163
|
+
"source": "Translate \"@label\" (@language)",
|
|
1164
|
+
"translation": "\"@label\" übersetzen (@language)"
|
|
1165
|
+
},
|
|
1166
|
+
"editIndicatorLabel": {
|
|
1167
|
+
"source": "Edit blocks",
|
|
1168
|
+
"translation": "Elemente bearbeiten"
|
|
1169
|
+
},
|
|
1170
|
+
"editIndicatorLabelReview": {
|
|
1171
|
+
"source": "Review changes",
|
|
1172
|
+
"translation": "Änderungen überprüfen"
|
|
1173
|
+
},
|
|
1174
|
+
"editIndicatorLabelView": {
|
|
1175
|
+
"source": "View changes",
|
|
1176
|
+
"translation": "Änderungen ansehen"
|
|
1177
|
+
},
|
|
1178
|
+
"editableCommandEdit": {
|
|
1179
|
+
"source": "Edit field \"@name\"",
|
|
1180
|
+
"translation": "Feld «@name» bearbeiten"
|
|
1181
|
+
},
|
|
1182
|
+
"editableFieldDiscard": {
|
|
1183
|
+
"source": "Discard",
|
|
1184
|
+
"translation": "Verwerfen"
|
|
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 den Titel und Status der aktuellen Seite an.</p><p>Klicken Sie auf den Titel um das Bearbeitungsformular anzuzeigen.</p>"
|
|
1189
|
+
},
|
|
1190
|
+
"entityTitleTourTitle": {
|
|
1191
|
+
"source": "Page",
|
|
1192
|
+
"translation": "Seite"
|
|
1193
|
+
},
|
|
1194
|
+
"errorCapturedMessage": {
|
|
1195
|
+
"source": "Error in \"@label\": @errorMessage",
|
|
1196
|
+
"translation": "Fehler in «@label»: @errorMessage"
|
|
1197
|
+
},
|
|
1198
|
+
"errorCapturedMessageDisabled": {
|
|
1199
|
+
"source": "\"@label\" has errored more than 3 times. The feature will be disabled.",
|
|
1200
|
+
"translation": "«@label» hat mehr als 3 Fehler verursacht. Die Funktion wird deaktiviert."
|
|
1201
|
+
},
|
|
1202
|
+
"exitDescription": {
|
|
1203
|
+
"source": "Close editor without publishing",
|
|
1204
|
+
"translation": "Editor schliessen ohne veröffentlichen"
|
|
1205
|
+
},
|
|
1206
|
+
"exitTitle": {
|
|
1207
|
+
"source": "Close",
|
|
1208
|
+
"translation": "Schliessen"
|
|
1209
|
+
},
|
|
1210
|
+
"failedToConvert": {
|
|
1211
|
+
"source": "The block could not be converted.",
|
|
1212
|
+
"translation": "Das Element konnte nicht konvertiert werden."
|
|
1213
|
+
},
|
|
1214
|
+
"failedToTransform": {
|
|
1215
|
+
"source": "The action \"@name\" could not be executed.",
|
|
1216
|
+
"translation": "Die Aktion «@name» konnte nicht ausgeführt werden."
|
|
1217
|
+
},
|
|
1218
|
+
"fatalErrorButton": {
|
|
1219
|
+
"source": "Continue anyway...",
|
|
1220
|
+
"translation": "Trotzdem fortfahren..."
|
|
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 hat blökkli einen schwerwiegenden Fehler festgestellt. Möglicherweise können Sie den Editor weiterhin verwenden, aber es kann sein, dass nicht alles wie erwartet funktioniert."
|
|
1225
|
+
},
|
|
1226
|
+
"fatalErrorTitle": {
|
|
1227
|
+
"source": "blökkli has stopped working",
|
|
1228
|
+
"translation": "blökkli funktioniert nicht mehr"
|
|
1229
|
+
},
|
|
1230
|
+
"featureHelpShortcuts": {
|
|
1231
|
+
"source": "Shortcuts",
|
|
1232
|
+
"translation": "Tastenkombinationen"
|
|
1233
|
+
},
|
|
1234
|
+
"featureHelpTitle": {
|
|
1235
|
+
"source": "Help",
|
|
1236
|
+
"translation": "Hilfe"
|
|
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 den Container bereit, um eine Liste von Blöcken zum Hinzufügen oder Aktionen anzuzeigen."
|
|
1241
|
+
},
|
|
1242
|
+
"feature_add-list_label": {
|
|
1243
|
+
"source": "Add List",
|
|
1244
|
+
"translation": "Hinzufügen-Liste"
|
|
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": "Versteckt Blöcke in der «Hinzufügen-Liste», wenn sie nirgendwo hinzugefügt werden können."
|
|
1249
|
+
},
|
|
1250
|
+
"feature_add-list_setting_hideDisabledBlocks_label": {
|
|
1251
|
+
"source": "Hide blocks that can't be added",
|
|
1252
|
+
"translation": "Blöcke verstecken, die nicht hinzugefügt werden können"
|
|
1253
|
+
},
|
|
1254
|
+
"feature_agent_description": {
|
|
1255
|
+
"source": "Chat with an AI assistant to edit page content.",
|
|
1256
|
+
"translation": "Mit einem KI-Assistenten chatten, um Seiteninhalte zu bearbeiten."
|
|
1257
|
+
},
|
|
1258
|
+
"feature_agent_label": {
|
|
1259
|
+
"source": "AI Agent",
|
|
1260
|
+
"translation": "KI-Agent"
|
|
1261
|
+
},
|
|
1262
|
+
"feature_analyze_description": {
|
|
1263
|
+
"source": "Analyze blocks and page for SEO, accessibility, etc.",
|
|
1264
|
+
"translation": "Analysiert Blöcke und Seite für SEO, Barrierefreiheit, etc."
|
|
1265
|
+
},
|
|
1266
|
+
"feature_analyze_label": {
|
|
1267
|
+
"source": "Analyze",
|
|
1268
|
+
"translation": "Analysieren"
|
|
1269
|
+
},
|
|
1270
|
+
"feature_anchors_description": {
|
|
1271
|
+
"source": "Displays indicators for blocks with anchor IDs",
|
|
1272
|
+
"translation": "Zeigt Indikatoren für Blöcke mit Anker-IDs an"
|
|
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": "Umhüllt die gesamte Seite in einer Arbeitsfläche, die mit der Maus gezoomt und bewegt werden kann."
|
|
1281
|
+
},
|
|
1282
|
+
"feature_artboard_label": {
|
|
1283
|
+
"source": "Artboard",
|
|
1284
|
+
"translation": "Arbeitsfläche"
|
|
1285
|
+
},
|
|
1286
|
+
"feature_artboard_setting_momentum_description": {
|
|
1287
|
+
"source": "Applies smooth animations when scrolling or zooming the artboard.",
|
|
1288
|
+
"translation": "Verwendet sanftes Scrollen und Vergrössern der Vorschau."
|
|
1289
|
+
},
|
|
1290
|
+
"feature_artboard_setting_momentum_label": {
|
|
1291
|
+
"source": "Use smooth scrolling",
|
|
1292
|
+
"translation": "Sanftes Scrollen verwenden"
|
|
1293
|
+
},
|
|
1294
|
+
"feature_artboard_setting_persist_description": {
|
|
1295
|
+
"source": "Stores and restores the last position and zoom factor of the artboard.",
|
|
1296
|
+
"translation": "Speichern und Wiederherstellen der letzten Position und Skalierung der Vorschau."
|
|
1297
|
+
},
|
|
1298
|
+
"feature_artboard_setting_persist_label": {
|
|
1299
|
+
"source": "Persist position and zoom",
|
|
1300
|
+
"translation": "Position und Zoom speichern"
|
|
1301
|
+
},
|
|
1302
|
+
"feature_artboard_setting_scrollSpeed_label": {
|
|
1303
|
+
"source": "Artboard scroll speed",
|
|
1304
|
+
"translation": "Scrollgeschwindigkeit der Vorschau"
|
|
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 eine dynamische Aktion bereit, um einen oder mehrere Blöcke hinzuzufügen, die von einem KI-Assistenten generiert wurden."
|
|
1309
|
+
},
|
|
1310
|
+
"feature_assistant_label": {
|
|
1311
|
+
"source": "Assistant",
|
|
1312
|
+
"translation": "Assistent"
|
|
1313
|
+
},
|
|
1314
|
+
"feature_block-scheduler_description": {
|
|
1315
|
+
"source": "Adds support for scheduling blocks.",
|
|
1316
|
+
"translation": "Ermöglicht das zeitgesteuerte Veröffentlichen von Blöcken."
|
|
1317
|
+
},
|
|
1318
|
+
"feature_block-scheduler_label": {
|
|
1319
|
+
"source": "Block Scheduler",
|
|
1320
|
+
"translation": "Block-Planung"
|
|
1321
|
+
},
|
|
1322
|
+
"feature_breadcrumbs_description": {
|
|
1323
|
+
"source": "Provides a breadcrumb of the selection.",
|
|
1324
|
+
"translation": "Zeigt den Breadcrumbs-Pfad der Auswahl an."
|
|
1325
|
+
},
|
|
1326
|
+
"feature_breadcrumbs_label": {
|
|
1327
|
+
"source": "Breadcrumbs",
|
|
1328
|
+
"translation": "Breadcrumbs"
|
|
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 Zwischenablage-Integration bereit zum Kopieren/Einfügen von bestehenden Blöcken oder zum Einfügen von unterstützten Inhalten wie Text oder Bildern."
|
|
1333
|
+
},
|
|
1334
|
+
"feature_clipboard_label": {
|
|
1335
|
+
"source": "Clipboard",
|
|
1336
|
+
"translation": "Zwischenablage"
|
|
1337
|
+
},
|
|
1338
|
+
"feature_clipboard_setting_openSidebarOnPaste_description": {
|
|
1339
|
+
"source": "Automatically opens the sidebar when pasting content from the clipboard.",
|
|
1340
|
+
"translation": "Öffnet automatisch die Seitenleiste wenn Inhalte aus der Zwischenablage eingefügt werden."
|
|
1341
|
+
},
|
|
1342
|
+
"feature_clipboard_setting_openSidebarOnPaste_label": {
|
|
1343
|
+
"source": "Open sidebar when pasting",
|
|
1344
|
+
"translation": "Seitenleiste beim Einfügen aus der Zwischenablage öffnen"
|
|
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 eine Befehlspalette mit Suche bereit, um die meisten UI-Funktionen mit der Tastatur zu verwenden."
|
|
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öcke bereit."
|
|
1357
|
+
},
|
|
1358
|
+
"feature_comments_label": {
|
|
1359
|
+
"source": "Comments",
|
|
1360
|
+
"translation": "Kommentare"
|
|
1361
|
+
},
|
|
1362
|
+
"feature_conversions_description": {
|
|
1363
|
+
"source": "Provides block actions to convert one or more blocks to a different bundle.",
|
|
1364
|
+
"translation": "Stellt Block-Aktionen bereit, um einen oder mehrere Blöcke in einen anderen Typ zu konvertieren."
|
|
1365
|
+
},
|
|
1366
|
+
"feature_conversions_label": {
|
|
1367
|
+
"source": "Conversions",
|
|
1368
|
+
"translation": "Konvertierungen"
|
|
1369
|
+
},
|
|
1370
|
+
"feature_debug_description": {
|
|
1371
|
+
"source": "Provides debugging functionality.",
|
|
1372
|
+
"translation": "Stellt Debugging-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 eine Aktion bereit, um einen oder mehrere Blöcke zu löschen."
|
|
1381
|
+
},
|
|
1382
|
+
"feature_delete_label": {
|
|
1383
|
+
"source": "Delete",
|
|
1384
|
+
"translation": "Löschen"
|
|
1385
|
+
},
|
|
1386
|
+
"feature_dev-mode_description": {
|
|
1387
|
+
"source": "Feature enabled in development mode.",
|
|
1388
|
+
"translation": "Funktion ist im Dev Mode aktiviert."
|
|
1389
|
+
},
|
|
1390
|
+
"feature_dev-mode_label": {
|
|
1391
|
+
"source": "Dev Mode",
|
|
1392
|
+
"translation": "Dev Mode"
|
|
1393
|
+
},
|
|
1394
|
+
"feature_diff_description": {
|
|
1395
|
+
"source": "Displays a diff of all changes in the edit state.",
|
|
1396
|
+
"translation": "Zeigt die Änderungen an die während dem Bearbeiten durchgeführt wurden."
|
|
1397
|
+
},
|
|
1398
|
+
"feature_diff_label": {
|
|
1399
|
+
"source": "Diff",
|
|
1400
|
+
"translation": "Änderungen"
|
|
1401
|
+
},
|
|
1402
|
+
"feature_dragging-overlay_description": {
|
|
1403
|
+
"source": "Renders an overlay when dragging or placing a block.",
|
|
1404
|
+
"translation": "Zeigt ein Overlay beim Ziehen oder Platzieren eines Blocks an."
|
|
1405
|
+
},
|
|
1406
|
+
"feature_dragging-overlay_label": {
|
|
1407
|
+
"source": "Dragging Overlay",
|
|
1408
|
+
"translation": "Drag-Overlay"
|
|
1409
|
+
},
|
|
1410
|
+
"feature_duplicate_description": {
|
|
1411
|
+
"source": "Provides an action to duplicate one or more blocks in place.",
|
|
1412
|
+
"translation": "Stellt eine Aktion bereit, um einen oder mehrere Blöcke zu duplizieren."
|
|
1413
|
+
},
|
|
1414
|
+
"feature_duplicate_label": {
|
|
1415
|
+
"source": "Duplicate",
|
|
1416
|
+
"translation": "Duplizieren"
|
|
1417
|
+
},
|
|
1418
|
+
"feature_edit-form_description": {
|
|
1419
|
+
"source": "Listens to edit events and renders an iframe containing the edit form.",
|
|
1420
|
+
"translation": "Reagiert auf Bearbeitungs-Events und zeigt ein iFrame mit dem Bearbeitungsformular an."
|
|
1421
|
+
},
|
|
1422
|
+
"feature_edit-form_label": {
|
|
1423
|
+
"source": "Edit Form",
|
|
1424
|
+
"translation": "Bearbeitungsformular"
|
|
1425
|
+
},
|
|
1426
|
+
"feature_edit_description": {
|
|
1427
|
+
"source": "Provides an action to edit a block.",
|
|
1428
|
+
"translation": "Stellt eine Aktion bereit, um einen Block zu bearbeiten."
|
|
1429
|
+
},
|
|
1430
|
+
"feature_edit_label": {
|
|
1431
|
+
"source": "Edit",
|
|
1432
|
+
"translation": "Bearbeiten"
|
|
1433
|
+
},
|
|
1434
|
+
"feature_editable-field_description": {
|
|
1435
|
+
"source": "Implements a form overlay to edit a single field of a block.",
|
|
1436
|
+
"translation": "Implementiert ein Formular-Overlay zum Bearbeiten eines einzelnen Felds eines Blocks."
|
|
1437
|
+
},
|
|
1438
|
+
"feature_editable-field_label": {
|
|
1439
|
+
"source": "Editable Field",
|
|
1440
|
+
"translation": "Bearbeitbares Feld"
|
|
1441
|
+
},
|
|
1442
|
+
"feature_editable-mask_description": {
|
|
1443
|
+
"source": "Provides a view option to hide non-editable parts of the page.",
|
|
1444
|
+
"translation": "Stellt eine Ansichtsoption bereit, um nicht bearbeitbare Teile der Seite zu verstecken."
|
|
1445
|
+
},
|
|
1446
|
+
"feature_editable-mask_label": {
|
|
1447
|
+
"source": "Editable Mask",
|
|
1448
|
+
"translation": "Bearbeitbare Maske"
|
|
1449
|
+
},
|
|
1450
|
+
"feature_entity-title_description": {
|
|
1451
|
+
"source": "Renders the title and status of the page entity.",
|
|
1452
|
+
"translation": "Zeigt den Titel und Status der Seitenentität an."
|
|
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 einen Menü-Button bereit, um den Editor ohne Speichern zu verlassen."
|
|
1461
|
+
},
|
|
1462
|
+
"feature_exit_label": {
|
|
1463
|
+
"source": "Exit",
|
|
1464
|
+
"translation": "Verlassen"
|
|
1465
|
+
},
|
|
1466
|
+
"feature_fragments_description": {
|
|
1467
|
+
"source": "Provides way to add content fragments defined by the frontend.",
|
|
1468
|
+
"translation": "Ermöglicht das Hinzufügen von Inhaltsfragmenten, die vom Frontend definiert wurden."
|
|
1469
|
+
},
|
|
1470
|
+
"feature_fragments_label": {
|
|
1471
|
+
"source": "Fragments",
|
|
1472
|
+
"translation": "Fragmente"
|
|
1473
|
+
},
|
|
1474
|
+
"feature_grid_description": {
|
|
1475
|
+
"source": "Provides a view option to render a grid.",
|
|
1476
|
+
"translation": "Stellt eine Ansichtsoption bereit, um ein Raster anzuzeigen."
|
|
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 ein Seitenleisten-Panel mit hilfreichen Informationen zur Verwendung von blökkli bereit."
|
|
1485
|
+
},
|
|
1486
|
+
"feature_help_label": {
|
|
1487
|
+
"source": "Help",
|
|
1488
|
+
"translation": "Hilfe"
|
|
1489
|
+
},
|
|
1490
|
+
"feature_history_description": {
|
|
1491
|
+
"source": "Implements support for history features (undo, redo, list of mutations).",
|
|
1492
|
+
"translation": "Implementiert Unterstützung für Verlaufsfunktionen (Rückgängig, Wiederherstellen, Liste der Änderungen)."
|
|
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": "Verwendet die Zurück- und Vorärts-Taste der Maus um die letzte Änderung rückgängig zu machen, respektive wiederherzustellen."
|
|
1501
|
+
},
|
|
1502
|
+
"feature_history_setting_useMouseButtons_label": {
|
|
1503
|
+
"source": "Use mouse buttons for undo/redo",
|
|
1504
|
+
"translation": "Maustasten für Rückgängig/Wiederherstellen verwenden"
|
|
1505
|
+
},
|
|
1506
|
+
"feature_hover_description": {
|
|
1507
|
+
"source": "Renders a border around blocks that are currently being hovered.",
|
|
1508
|
+
"translation": "Zeigt einen Rahmen um Blöcke an, über denen sich der Mauszeiger befindet."
|
|
1509
|
+
},
|
|
1510
|
+
"feature_hover_label": {
|
|
1511
|
+
"source": "Hover",
|
|
1512
|
+
"translation": "Hover"
|
|
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 eine Menü-Aktion, die einen Dialog zum Importieren von Blöcken aus einer anderen Entität anzeigt."
|
|
1517
|
+
},
|
|
1518
|
+
"feature_import-existing_label": {
|
|
1519
|
+
"source": "Import existing content",
|
|
1520
|
+
"translation": "Bestehende Inhalte importieren"
|
|
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 den Importdialog beim öffnen von blökkli wenn die Seite leer ist."
|
|
1525
|
+
},
|
|
1526
|
+
"feature_import-existing_setting_showDialogWhenEmpty_label": {
|
|
1527
|
+
"source": "Show import dialog at start",
|
|
1528
|
+
"translation": "Importdialog beim Start anzeigen"
|
|
1529
|
+
},
|
|
1530
|
+
"feature_library_description": {
|
|
1531
|
+
"source": "Implements support for a block library to manage reusable blocks.",
|
|
1532
|
+
"translation": "Implementiert Unterstützung für eine Block-Bibliothek zur Verwaltung wiederverwendbarer Blöcke."
|
|
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 eine Medienbibliothek zum einfachen Ziehen und Ablegen von Medien wie Bildern oder Videos."
|
|
1541
|
+
},
|
|
1542
|
+
"feature_media-library_label": {
|
|
1543
|
+
"source": "Media Library",
|
|
1544
|
+
"translation": "Medienbibliothek"
|
|
1545
|
+
},
|
|
1546
|
+
"feature_multi-select_description": {
|
|
1547
|
+
"source": "Implements support for selecting multiple blocks using a select rectangle.",
|
|
1548
|
+
"translation": "Implementiert Unterstützung für die Auswahl mehrerer Blöcke mithilfe eines Auswahlrechtecks."
|
|
1549
|
+
},
|
|
1550
|
+
"feature_multi-select_label": {
|
|
1551
|
+
"source": "Multiselect",
|
|
1552
|
+
"translation": "Mehrfachauswahl"
|
|
1553
|
+
},
|
|
1554
|
+
"feature_options_description": {
|
|
1555
|
+
"source": "Renders the options form for one or more blocks.",
|
|
1556
|
+
"translation": "Zeigt das Optionsformular für einen oder mehrere Blöcke an."
|
|
1557
|
+
},
|
|
1558
|
+
"feature_options_label": {
|
|
1559
|
+
"source": "Options",
|
|
1560
|
+
"translation": "Optionen"
|
|
1561
|
+
},
|
|
1562
|
+
"feature_ownership_description": {
|
|
1563
|
+
"source": "Renders a large button to take ownership of the current edit state.",
|
|
1564
|
+
"translation": "Zeigt einen grossen Button an, um die Besitzrechte des aktuellen Bearbeitungsstatus zu übernehmen."
|
|
1565
|
+
},
|
|
1566
|
+
"feature_ownership_label": {
|
|
1567
|
+
"source": "Ownership",
|
|
1568
|
+
"translation": "Besitzrechte"
|
|
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 einen Button bereit, um einen Dialog mit einem QR-Code zu öffnen, um die Seite auf einem Smartphone in der Vorschau anzuzeigen."
|
|
1573
|
+
},
|
|
1574
|
+
"feature_preview-grant_label": {
|
|
1575
|
+
"source": "Preview Grant",
|
|
1576
|
+
"translation": "Vorschau-Zugriff"
|
|
1577
|
+
},
|
|
1578
|
+
"feature_preview_description": {
|
|
1579
|
+
"source": "Provides a button to open a preview in a new window.",
|
|
1580
|
+
"translation": "Stellt einen Button bereit, um eine Vorschau in einem neuen Fenster zu öffnen."
|
|
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 die Blöcke als Struktur in der Vorschau an."
|
|
1589
|
+
},
|
|
1590
|
+
"feature_proxy_view_label": {
|
|
1591
|
+
"source": "Proxy View",
|
|
1592
|
+
"translation": "Strukturansicht"
|
|
1593
|
+
},
|
|
1594
|
+
"feature_publish_description": {
|
|
1595
|
+
"source": "Provides a menu button to publish the changes of the current entity.",
|
|
1596
|
+
"translation": "Stellt einen Menü-Button bereit, um die Änderungen der aktuellen Entität zu veröffentlichen."
|
|
1597
|
+
},
|
|
1598
|
+
"feature_publish_label": {
|
|
1599
|
+
"source": "Publish",
|
|
1600
|
+
"translation": "Veröffentlichen"
|
|
1601
|
+
},
|
|
1602
|
+
"feature_publish_setting_closeAfterPublish_description": {
|
|
1603
|
+
"source": "Immediately closes the editor after successfully publishing or saving.",
|
|
1604
|
+
"translation": "Den Editor umgehend schliessen nach dem Veröffentlichen/Speichern der Änderungen."
|
|
1605
|
+
},
|
|
1606
|
+
"feature_publish_setting_closeAfterPublish_label": {
|
|
1607
|
+
"source": "Close editor after publishing",
|
|
1608
|
+
"translation": "Nach «Veröffentlichen» den Editor schliessen"
|
|
1609
|
+
},
|
|
1610
|
+
"feature_responsive-preview_description": {
|
|
1611
|
+
"source": "Provides a responsive preview of the current edit state in an iframe.",
|
|
1612
|
+
"translation": "Stellt eine responsive Vorschau des aktuellen Bearbeitungszustands in einem iFrame bereit."
|
|
1613
|
+
},
|
|
1614
|
+
"feature_responsive-preview_label": {
|
|
1615
|
+
"source": "Responsive Preview",
|
|
1616
|
+
"translation": "Responsive Vorschau"
|
|
1617
|
+
},
|
|
1618
|
+
"feature_revert_description": {
|
|
1619
|
+
"source": "Provides a menu button to revert all changes done on the current entity.",
|
|
1620
|
+
"translation": "Stellt einen Menü-Button bereit, um alle Änderungen an der aktuellen Entität rückgängig zu machen."
|
|
1621
|
+
},
|
|
1622
|
+
"feature_revert_label": {
|
|
1623
|
+
"source": "Revert",
|
|
1624
|
+
"translation": "Verwerfen"
|
|
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 ein Overlay mit Tastenkombination bereit, um nach Blöcken auf der aktuellen Seite oder bestehenden Inhalten zu suchen, die als Blöcke hinzugefügt werden können."
|
|
1629
|
+
},
|
|
1630
|
+
"feature_search_label": {
|
|
1631
|
+
"source": "Search",
|
|
1632
|
+
"translation": "Suchen"
|
|
1633
|
+
},
|
|
1634
|
+
"feature_selection_description": {
|
|
1635
|
+
"source": "Renders an overlay that highlights the selected blocks.",
|
|
1636
|
+
"translation": "Zeigt ein Overlay an, das die ausgewählten Blöcke hervorhebt."
|
|
1637
|
+
},
|
|
1638
|
+
"feature_selection_label": {
|
|
1639
|
+
"source": "Selection",
|
|
1640
|
+
"translation": "Auswahl"
|
|
1641
|
+
},
|
|
1642
|
+
"feature_settings_description": {
|
|
1643
|
+
"source": "Provides a menu button to display a settings dialog.",
|
|
1644
|
+
"translation": "Stellt einen Menü-Button bereit, um einen Einstellungsdialog anzuzeigen."
|
|
1645
|
+
},
|
|
1646
|
+
"feature_settings_label": {
|
|
1647
|
+
"source": "Settings",
|
|
1648
|
+
"translation": "Einstellungen"
|
|
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 Animationen und interaktive Elemente auf ein Minimum, für Geräte mit niedriger Leistung."
|
|
1653
|
+
},
|
|
1654
|
+
"feature_settings_setting_lowPerformanceMode_label": {
|
|
1655
|
+
"source": "Enable low performance mode",
|
|
1656
|
+
"translation": "Modus für niedrige Leistung aktivieren"
|
|
1657
|
+
},
|
|
1658
|
+
"feature_settings_setting_resetAllSettings_label": {
|
|
1659
|
+
"source": "Reset all settings",
|
|
1660
|
+
"translation": "Alle Einstellungen zurücksetzen"
|
|
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 Elemente wie Dialoge oder Seitenleisten, oder Interaktionen wie «Drag and Drop» oder Änderungen in Position oder Grösse."
|
|
1665
|
+
},
|
|
1666
|
+
"feature_settings_setting_useAnimations_label": {
|
|
1667
|
+
"source": "Use animations",
|
|
1668
|
+
"translation": "Animationen verwenden"
|
|
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 einen Seitenleisten-Button bereit, um eine strukturierte Liste aller Blöcke auf der aktuellen Seite anzuzeigen."
|
|
1673
|
+
},
|
|
1674
|
+
"feature_structure_label": {
|
|
1675
|
+
"source": "Structure",
|
|
1676
|
+
"translation": "Struktur"
|
|
1677
|
+
},
|
|
1678
|
+
"feature_templates_description": {
|
|
1679
|
+
"source": "Add blocks from templates.",
|
|
1680
|
+
"translation": "Blöcke aus Vorlagen hinzufügen."
|
|
1681
|
+
},
|
|
1682
|
+
"feature_templates_label": {
|
|
1683
|
+
"source": "Templates",
|
|
1684
|
+
"translation": "Vorlagen"
|
|
1685
|
+
},
|
|
1686
|
+
"feature_theme_description": {
|
|
1687
|
+
"source": "Implements a theme editor.",
|
|
1688
|
+
"translation": "Implementiert einen 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": "Zeigt einen Button auf Touch-Geräten an, um Touch-Aktionen abzubrechen."
|
|
1697
|
+
},
|
|
1698
|
+
"feature_touch-action-bar_label": {
|
|
1699
|
+
"source": "Touch Action Bar",
|
|
1700
|
+
"translation": "Touch-Aktionsleiste"
|
|
1701
|
+
},
|
|
1702
|
+
"feature_tour_description": {
|
|
1703
|
+
"source": "Provides a tour overlay to get to know the editor.",
|
|
1704
|
+
"translation": "Stellt ein Tour-Overlay bereit, um den Editor kennenzulernen."
|
|
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ügt Unterstützung für Block-Übersetzungen hinzu."
|
|
1721
|
+
},
|
|
1722
|
+
"feature_translations_label": {
|
|
1723
|
+
"source": "Translations",
|
|
1724
|
+
"translation": "Übersetzungen"
|
|
1725
|
+
},
|
|
1726
|
+
"feature_validations_description": {
|
|
1727
|
+
"source": "Provides a sidebar pane to render validations.",
|
|
1728
|
+
"translation": "Stellt ein Seitenleisten-Panel bereit, um Validierungen anzuzeigen."
|
|
1729
|
+
},
|
|
1730
|
+
"feature_validations_label": {
|
|
1731
|
+
"source": "Validations",
|
|
1732
|
+
"translation": "Validierungen"
|
|
1733
|
+
},
|
|
1734
|
+
"fieldIsRequired": {
|
|
1735
|
+
"source": "This field is required",
|
|
1736
|
+
"translation": "Feld darf nicht leer sein"
|
|
1737
|
+
},
|
|
1738
|
+
"fragmentsAddFragmentAction": {
|
|
1739
|
+
"source": "Fragment",
|
|
1740
|
+
"translation": "Fragment"
|
|
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>Ziehen Sie das Symbol auf die Seite, um einen Fragmentblock hinzuzufügen.</p><p>Fragmente sind wiederverwendbare Blöcke, die immer denselben Inhalt darstellen.</p>"
|
|
1745
|
+
},
|
|
1746
|
+
"fragmentsPlaceDialogLead": {
|
|
1747
|
+
"source": "Select a block fragment to add to the page.",
|
|
1748
|
+
"translation": "Wählen Sie ein Block-Fragment aus."
|
|
1749
|
+
},
|
|
1750
|
+
"fragmentsPlaceDialogSearchLabel": {
|
|
1751
|
+
"source": "Filter fragments",
|
|
1752
|
+
"translation": "Fragmente filtern"
|
|
1753
|
+
},
|
|
1754
|
+
"fragmentsPlaceDialogSearchPlaceholder": {
|
|
1755
|
+
"source": "Search fragments",
|
|
1756
|
+
"translation": "Fragmente durchsuchen"
|
|
1757
|
+
},
|
|
1758
|
+
"fragmentsPlaceDialogSubmitButton": {
|
|
1759
|
+
"source": "Add selected fragment",
|
|
1760
|
+
"translation": "Ausgewähltes Fragment hinzufügen"
|
|
1761
|
+
},
|
|
1762
|
+
"fragmentsPlaceDialogTitle": {
|
|
1763
|
+
"source": "Add fragment block",
|
|
1764
|
+
"translation": "Fragment hinzufügen"
|
|
1765
|
+
},
|
|
1766
|
+
"gridHide": {
|
|
1767
|
+
"source": "Hide grid",
|
|
1768
|
+
"translation": "Spalten verstecken"
|
|
1769
|
+
},
|
|
1770
|
+
"gridShow": {
|
|
1771
|
+
"source": "Show grid",
|
|
1772
|
+
"translation": "Spalten anzeigen"
|
|
1773
|
+
},
|
|
1774
|
+
"gridToggle": {
|
|
1775
|
+
"source": "Toggle grid",
|
|
1776
|
+
"translation": "Spalten anzeigen"
|
|
1777
|
+
},
|
|
1778
|
+
"gridTourText": {
|
|
1779
|
+
"source": "Display a layout grid overlay on top of the page.",
|
|
1780
|
+
"translation": "Zeigt die Layout-Spalten als Overlay über die Seite an."
|
|
1781
|
+
},
|
|
1782
|
+
"helpTourText": {
|
|
1783
|
+
"source": "Shows a list of available shortcuts.",
|
|
1784
|
+
"translation": "Zeigt eine Liste von verfügbaren Tastenkombinationen an."
|
|
1785
|
+
},
|
|
1786
|
+
"history": {
|
|
1787
|
+
"source": "History",
|
|
1788
|
+
"translation": "Änderungsverlauf"
|
|
1789
|
+
},
|
|
1790
|
+
"historyCurrentRevision": {
|
|
1791
|
+
"source": "Current revision",
|
|
1792
|
+
"translation": "Aktuelle Revision"
|
|
1793
|
+
},
|
|
1794
|
+
"historyEmpty": {
|
|
1795
|
+
"source": "There are now changes yet.",
|
|
1796
|
+
"translation": "Es gibt noch keine Änderungen."
|
|
1797
|
+
},
|
|
1798
|
+
"historyRedo": {
|
|
1799
|
+
"source": "Redo",
|
|
1800
|
+
"translation": "Wiederholen"
|
|
1801
|
+
},
|
|
1802
|
+
"historyRedoTourText": {
|
|
1803
|
+
"source": "Redo the previous change.",
|
|
1804
|
+
"translation": "Machen Sie die vorherige Änderung rückgängig."
|
|
1805
|
+
},
|
|
1806
|
+
"historyShowMore": {
|
|
1807
|
+
"source": "Show @count more",
|
|
1808
|
+
"translation": "@count weitere anzeigen"
|
|
1809
|
+
},
|
|
1810
|
+
"historyTourText": {
|
|
1811
|
+
"source": "See a list of all changes made so far and switch back and forth between changes.",
|
|
1812
|
+
"translation": "Zeigt den Verlauf aller Änderungen die gemacht wurden. Springen Sie beliebig zwischen Änderungen vor und zurück."
|
|
1813
|
+
},
|
|
1814
|
+
"historyUndo": {
|
|
1815
|
+
"source": "Undo",
|
|
1816
|
+
"translation": "Rückgängig"
|
|
1817
|
+
},
|
|
1818
|
+
"historyUndoTourText": {
|
|
1819
|
+
"source": "Undo the last change.",
|
|
1820
|
+
"translation": "Letzte Änderung rückgängig machen."
|
|
1821
|
+
},
|
|
1822
|
+
"importExistingDescription": {
|
|
1823
|
+
"source": "Import from an existing page",
|
|
1824
|
+
"translation": "Von einer bestehenden Seite importieren"
|
|
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": "Importieren Sie Inhalte von einer bestehenden Seite. Die Elemente werden an das Ende der Liste hinzugefügt. Diese Aktion kann rückgängig gemacht werden."
|
|
1829
|
+
},
|
|
1830
|
+
"importExistingDialogSubmit": {
|
|
1831
|
+
"source": "Import content",
|
|
1832
|
+
"translation": "Inhalte importieren"
|
|
1833
|
+
},
|
|
1834
|
+
"importExistingDialogTitle": {
|
|
1835
|
+
"source": "Import from existing page",
|
|
1836
|
+
"translation": "Von bestehender Seite importieren"
|
|
1837
|
+
},
|
|
1838
|
+
"importExistingError": {
|
|
1839
|
+
"source": "Content could not be imported.",
|
|
1840
|
+
"translation": "Inhalte konnten nicht übernommen werden."
|
|
1841
|
+
},
|
|
1842
|
+
"importExistingFieldsLabel": {
|
|
1843
|
+
"source": "Which content would you like to import?",
|
|
1844
|
+
"translation": "Welche Inhalte möchten Sie importieren?"
|
|
1845
|
+
},
|
|
1846
|
+
"importExistingPagesTitle": {
|
|
1847
|
+
"source": "Select page",
|
|
1848
|
+
"translation": "Seite auswählen"
|
|
1849
|
+
},
|
|
1850
|
+
"importExistingSuccess": {
|
|
1851
|
+
"source": "Content imported successfully.",
|
|
1852
|
+
"translation": "Inhalte erfolgreich übernommen."
|
|
1853
|
+
},
|
|
1854
|
+
"importExistingTitle": {
|
|
1855
|
+
"source": "Import...",
|
|
1856
|
+
"translation": "Importieren..."
|
|
1857
|
+
},
|
|
1858
|
+
"interactionLayerOff": {
|
|
1859
|
+
"source": "Show interaction layers",
|
|
1860
|
+
"translation": "Interaktionsebenen anzeigen"
|
|
1861
|
+
},
|
|
1862
|
+
"interactionLayersOn": {
|
|
1863
|
+
"source": "Hide interaction layers",
|
|
1864
|
+
"translation": "Interaktionsebenen ausblenden"
|
|
1865
|
+
},
|
|
1866
|
+
"libraryAdd": {
|
|
1867
|
+
"source": "Add to library...",
|
|
1868
|
+
"translation": "Zur Bibliothek hinzufügen..."
|
|
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": "Fügen Sie einen wiederverwendbaren Block aus der Bibliothek hinzu."
|
|
1873
|
+
},
|
|
1874
|
+
"libraryAddFromLibrary": {
|
|
1875
|
+
"source": "From library",
|
|
1876
|
+
"translation": "Aus der Bibliothek"
|
|
1877
|
+
},
|
|
1878
|
+
"libraryDetach": {
|
|
1879
|
+
"source": "Detach from library",
|
|
1880
|
+
"translation": "Von der Bibliothek loslösen"
|
|
1881
|
+
},
|
|
1882
|
+
"libraryDialogDescriptionLabel": {
|
|
1883
|
+
"source": "Description",
|
|
1884
|
+
"translation": "Beschreibung"
|
|
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 Sie ein Element zur Bibliothek hinzufügen können Sie diesen auf mehreren Seiten gleichzeitig verwenden. Änderungen an diesem Element sind dann sofort auf allen Seiten 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": "Das Bibliothekselement kann auf anderen Seiten platziert werden sobald diese Seite publiziert/gespeichert wurde."
|
|
1893
|
+
},
|
|
1894
|
+
"libraryDialogSubmit": {
|
|
1895
|
+
"source": "Add to library",
|
|
1896
|
+
"translation": "Zur Bibliothek hinzufügen"
|
|
1897
|
+
},
|
|
1898
|
+
"libraryDialogTitle": {
|
|
1899
|
+
"source": "Add to library",
|
|
1900
|
+
"translation": "Zur Bibliothek hinzufügen"
|
|
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 Element konnte nicht wiederverwendbar gemacht werden."
|
|
1909
|
+
},
|
|
1910
|
+
"libraryItemEditOverlayBack": {
|
|
1911
|
+
"source": "Back to page",
|
|
1912
|
+
"translation": "Zurück zur Seite"
|
|
1913
|
+
},
|
|
1914
|
+
"libraryItemEditOverlayBackWithPage": {
|
|
1915
|
+
"source": "Back to \"@label\"",
|
|
1916
|
+
"translation": "Zurück zu «@label»"
|
|
1917
|
+
},
|
|
1918
|
+
"libraryItemEditOverlayTitle": {
|
|
1919
|
+
"source": "Edit reusable block",
|
|
1920
|
+
"translation": "Wiederverwendbaren Block bearbeiten"
|
|
1921
|
+
},
|
|
1922
|
+
"libraryPlaceBundleSelectLabel": {
|
|
1923
|
+
"source": "Bundle",
|
|
1924
|
+
"translation": "Typ"
|
|
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ählen Sie einen wiederverwendbaren Block aus der Bibliothek, um ihn zu Ihrem Layout hinzuzufügen. Sie können den Block später wieder entfernen."
|
|
1929
|
+
},
|
|
1930
|
+
"libraryPlaceDialogSubmit": {
|
|
1931
|
+
"source": "Add reusable block",
|
|
1932
|
+
"translation": "Wiederverwendbaren Block hinzufügen"
|
|
1933
|
+
},
|
|
1934
|
+
"libraryPlaceDialogTitle": {
|
|
1935
|
+
"source": "Add block from library",
|
|
1936
|
+
"translation": "Block aus Bibliothek hinzufügen"
|
|
1937
|
+
},
|
|
1938
|
+
"libraryPreviewLabel": {
|
|
1939
|
+
"source": "Preview",
|
|
1940
|
+
"translation": "Vorschau"
|
|
1941
|
+
},
|
|
1942
|
+
"manageSchedule": {
|
|
1943
|
+
"source": "Manage schedule...",
|
|
1944
|
+
"translation": "Planung verwalten..."
|
|
1945
|
+
},
|
|
1946
|
+
"maskHide": {
|
|
1947
|
+
"source": "Hide non-editable areas",
|
|
1948
|
+
"translation": "Nicht-editierbare Bereiche verstecken"
|
|
1949
|
+
},
|
|
1950
|
+
"maskShow": {
|
|
1951
|
+
"source": "Show non-editable areas",
|
|
1952
|
+
"translation": "Nicht-editierbare Bereiche anzeigen"
|
|
1953
|
+
},
|
|
1954
|
+
"maskToggle": {
|
|
1955
|
+
"source": "Toggle non-editable areas",
|
|
1956
|
+
"translation": "Nicht-editierbare Bereiche anzeigen"
|
|
1957
|
+
},
|
|
1958
|
+
"maskTourText": {
|
|
1959
|
+
"source": "Toggle between showing or hiding non-editable parts of the page.",
|
|
1960
|
+
"translation": "Wechseln Sie zwischen Anzeigen und Verbergen nicht bearbeitbarer Teile der Seite."
|
|
1961
|
+
},
|
|
1962
|
+
"mediaLibrary": {
|
|
1963
|
+
"source": "Media Library",
|
|
1964
|
+
"translation": "Medienbibliothek"
|
|
1965
|
+
},
|
|
1966
|
+
"mediaLibraryReplaceFailed": {
|
|
1967
|
+
"source": "Failed to replace media.",
|
|
1968
|
+
"translation": "Das Medienelement konnte nicht ersetzt werden."
|
|
1969
|
+
},
|
|
1970
|
+
"mediaLibraryReplaceMedia": {
|
|
1971
|
+
"source": "Replace @field",
|
|
1972
|
+
"translation": "Medienelement ersetzen"
|
|
1973
|
+
},
|
|
1974
|
+
"mediaLibraryTourText": {
|
|
1975
|
+
"source": "Search for media like images and drag and drop them into the page.",
|
|
1976
|
+
"translation": "Suchen Sie nach Medien wie Bildern und ziehen Sie diese in die Seite."
|
|
1977
|
+
},
|
|
1978
|
+
"mediaSelectConfirm": {
|
|
1979
|
+
"source": "Use selected",
|
|
1980
|
+
"translation": "Auswahl verwenden"
|
|
1981
|
+
},
|
|
1982
|
+
"mediaSelectTitle": {
|
|
1983
|
+
"source": "Select a media item",
|
|
1984
|
+
"translation": "Medium auswählen"
|
|
1985
|
+
},
|
|
1986
|
+
"multipleItemsLabel": {
|
|
1987
|
+
"source": "Items",
|
|
1988
|
+
"translation": "Elemente"
|
|
1989
|
+
},
|
|
1990
|
+
"nameDescription": {
|
|
1991
|
+
"source": "Name / Description",
|
|
1992
|
+
"translation": "Name / Beschreibung"
|
|
1993
|
+
},
|
|
1994
|
+
"notSet": {
|
|
1995
|
+
"source": "Not set",
|
|
1996
|
+
"translation": "Nicht gesetzt"
|
|
1997
|
+
},
|
|
1998
|
+
"notSupported": {
|
|
1999
|
+
"source": "Not supported",
|
|
2000
|
+
"translation": "Nicht unterstützt"
|
|
2001
|
+
},
|
|
2002
|
+
"optionBkVisibleLanguagesAll": {
|
|
2003
|
+
"source": "All languages",
|
|
2004
|
+
"translation": "Alle Sprachen"
|
|
2005
|
+
},
|
|
2006
|
+
"optionsCommand.selectCheckboxValue": {
|
|
2007
|
+
"source": "Select \"@value\" in \"@option\"",
|
|
2008
|
+
"translation": "«@value» in «@option» auswählen"
|
|
2009
|
+
},
|
|
2010
|
+
"optionsCommand.setOption": {
|
|
2011
|
+
"source": "Set option \"@option\" to \"@value\"",
|
|
2012
|
+
"translation": "Option «@option» «@value» setzen"
|
|
2013
|
+
},
|
|
2014
|
+
"optionsCommand.unselectCheckboxValue": {
|
|
2015
|
+
"source": "Unselect \"@value\" in \"@option\"",
|
|
2016
|
+
"translation": "«@value» in «@option» abwählen"
|
|
2017
|
+
},
|
|
2018
|
+
"overlayDoubleClickInfo": {
|
|
2019
|
+
"source": "<strong>Double click</strong> to close overlay",
|
|
2020
|
+
"translation": "<strong>Doppelklicken</strong> um Dialog zu schliessen"
|
|
2021
|
+
},
|
|
2022
|
+
"ownershipError": {
|
|
2023
|
+
"source": "Error in assigning",
|
|
2024
|
+
"translation": "Fehler beim Zuweisen"
|
|
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 Seite wird aktuell von @name bearbeitet. Änderungen können nur von einer Person gleichzeitig durchgeführt werden."
|
|
2029
|
+
},
|
|
2030
|
+
"ownershipSuccess": {
|
|
2031
|
+
"source": "You are now the owner.",
|
|
2032
|
+
"translation": "Sie sind nun der Besitzer."
|
|
2033
|
+
},
|
|
2034
|
+
"ownershipTakeOwnership": {
|
|
2035
|
+
"source": "Assign to me",
|
|
2036
|
+
"translation": "Mir zuweisen"
|
|
2037
|
+
},
|
|
2038
|
+
"pageIsNotPublished": {
|
|
2039
|
+
"source": "Page is not published",
|
|
2040
|
+
"translation": "Seite ist nicht publiziert"
|
|
2041
|
+
},
|
|
2042
|
+
"pageIsPublished": {
|
|
2043
|
+
"source": "Page is published",
|
|
2044
|
+
"translation": "Seite ist publiziert"
|
|
2045
|
+
},
|
|
2046
|
+
"pageIsPublishedWithPendingChanges": {
|
|
2047
|
+
"source": "Page is published (changes pending)",
|
|
2048
|
+
"translation": "Seite ist publiziert (Änderungen ausstehend)"
|
|
2049
|
+
},
|
|
2050
|
+
"paste": {
|
|
2051
|
+
"source": "Paste",
|
|
2052
|
+
"translation": "Einfügen"
|
|
2053
|
+
},
|
|
2054
|
+
"previewDialogLead": {
|
|
2055
|
+
"source": "Scan the QR code with your smartphone to open the preview.",
|
|
2056
|
+
"translation": "Scannen Sie den QR-Code mit Ihrem Smartphone um die Vorschau zu öffnen."
|
|
2057
|
+
},
|
|
2058
|
+
"previewDialogTitle": {
|
|
2059
|
+
"source": "Preview with smartphone",
|
|
2060
|
+
"translation": "Vorschau mit Smartphone"
|
|
2061
|
+
},
|
|
2062
|
+
"previewNewWindow": {
|
|
2063
|
+
"source": "Preview (new window)",
|
|
2064
|
+
"translation": "Vorschau (neues Fenster)"
|
|
2065
|
+
},
|
|
2066
|
+
"previewNewWindowTourText": {
|
|
2067
|
+
"source": "Opens a preview of the current changes in a new window.",
|
|
2068
|
+
"translation": "Öffnet eine Vorschau der aktuellen Änderungen in einem neuen Fenster."
|
|
2069
|
+
},
|
|
2070
|
+
"previewQrCodeText": {
|
|
2071
|
+
"source": "You can also copy the link and share it.",
|
|
2072
|
+
"translation": "Sie können den Link auch kopieren und teilen."
|
|
2073
|
+
},
|
|
2074
|
+
"previewWithSmartphone": {
|
|
2075
|
+
"source": "Preview (with smartphone)",
|
|
2076
|
+
"translation": "Vorschau (mit Smartphone)"
|
|
2077
|
+
},
|
|
2078
|
+
"previewWithSmartphoneTourText": {
|
|
2079
|
+
"source": "Shows a QR code to quickly open a preview of the changes with your smartphone.",
|
|
2080
|
+
"translation": "Zeigt einen QR-Code an, um eine Vorschau der Änderungen mit Ihrem Smartphone zu öffnen."
|
|
2081
|
+
},
|
|
2082
|
+
"proxyViewHide": {
|
|
2083
|
+
"source": "Show content preview",
|
|
2084
|
+
"translation": "Inhaltsvorschau anzeigen"
|
|
2085
|
+
},
|
|
2086
|
+
"proxyViewShow": {
|
|
2087
|
+
"source": "Show structure view",
|
|
2088
|
+
"translation": "Strukturierte Vorschau anzeigen"
|
|
2089
|
+
},
|
|
2090
|
+
"proxyViewToggle": {
|
|
2091
|
+
"source": "Toggle structure view",
|
|
2092
|
+
"translation": "Vorschau wechseln"
|
|
2093
|
+
},
|
|
2094
|
+
"proxyViewTourText": {
|
|
2095
|
+
"source": "Displays the content blocks as a structured view.",
|
|
2096
|
+
"translation": "Stellt die Inhaltsblöcke in strukturierter Form dar."
|
|
2097
|
+
},
|
|
2098
|
+
"publishAlreadyScheduledDescription": {
|
|
2099
|
+
"source": "This page is already scheduled for publishing",
|
|
2100
|
+
"translation": "Diese Seite ist bereits zur Veröffentlichung geplant"
|
|
2101
|
+
},
|
|
2102
|
+
"publishAndCloseLabel": {
|
|
2103
|
+
"source": "Publish & Close",
|
|
2104
|
+
"translation": "Veröffentlichen & Schliessen"
|
|
2105
|
+
},
|
|
2106
|
+
"publishAndCloseLabelUnpublished": {
|
|
2107
|
+
"source": "Save & Close",
|
|
2108
|
+
"translation": "Speichern & Schliessen"
|
|
2109
|
+
},
|
|
2110
|
+
"publishCurrentPage": {
|
|
2111
|
+
"source": "Current page",
|
|
2112
|
+
"translation": "Aktuelle Seite"
|
|
2113
|
+
},
|
|
2114
|
+
"publishCurrentlyPublished": {
|
|
2115
|
+
"source": "Page is published",
|
|
2116
|
+
"translation": "Seite ist publiziert"
|
|
2117
|
+
},
|
|
2118
|
+
"publishCurrentlyUnpublished": {
|
|
2119
|
+
"source": "Page is unpublished",
|
|
2120
|
+
"translation": "Seite ist nicht publiziert"
|
|
2121
|
+
},
|
|
2122
|
+
"publishDescription": {
|
|
2123
|
+
"source": "Publish all changes.",
|
|
2124
|
+
"translation": "Alle Änderungen veröffentlichen"
|
|
2125
|
+
},
|
|
2126
|
+
"publishDescriptionScheduled": {
|
|
2127
|
+
"source": "View or change the scheduled publication",
|
|
2128
|
+
"translation": "Geplante Veröffentlichung ansehen oder ändern"
|
|
2129
|
+
},
|
|
2130
|
+
"publishDescriptionUnpublished": {
|
|
2131
|
+
"source": "Save all changes while keeping page unpublished",
|
|
2132
|
+
"translation": "Alle Änderungen speichern ohne die Seite zu publizieren"
|
|
2133
|
+
},
|
|
2134
|
+
"publishDialogTitle": {
|
|
2135
|
+
"source": "Publish changes",
|
|
2136
|
+
"translation": "Änderungen veröffentlichen"
|
|
2137
|
+
},
|
|
2138
|
+
"publishError": {
|
|
2139
|
+
"source": "Changes could not be published.",
|
|
2140
|
+
"translation": "Änderungen konnten nicht publiziert werden."
|
|
2141
|
+
},
|
|
2142
|
+
"publishLabel": {
|
|
2143
|
+
"source": "Publish",
|
|
2144
|
+
"translation": "Veröffentlichen"
|
|
2145
|
+
},
|
|
2146
|
+
"publishLabelUnpublished": {
|
|
2147
|
+
"source": "Save",
|
|
2148
|
+
"translation": "Speichern"
|
|
2149
|
+
},
|
|
2150
|
+
"publishManageSchedule": {
|
|
2151
|
+
"source": "Manage scheduling",
|
|
2152
|
+
"translation": "Planung verwalten"
|
|
2153
|
+
},
|
|
2154
|
+
"publishMode": {
|
|
2155
|
+
"source": "Publish mode",
|
|
2156
|
+
"translation": "Veröffentlichungsmodus"
|
|
2157
|
+
},
|
|
2158
|
+
"publishModeImmediateDescription": {
|
|
2159
|
+
"source": "Publish changes immediately",
|
|
2160
|
+
"translation": "Änderungen sofort veröffentlichen"
|
|
2161
|
+
},
|
|
2162
|
+
"publishModeImmediateTitle": {
|
|
2163
|
+
"source": "Publish",
|
|
2164
|
+
"translation": "Veröffentlichen"
|
|
2165
|
+
},
|
|
2166
|
+
"publishModeSaveDescription": {
|
|
2167
|
+
"source": "Save changes without publishing",
|
|
2168
|
+
"translation": "Änderungen speichern ohne veröffentlichen"
|
|
2169
|
+
},
|
|
2170
|
+
"publishModeSaveTitle": {
|
|
2171
|
+
"source": "Save",
|
|
2172
|
+
"translation": "Speichern"
|
|
2173
|
+
},
|
|
2174
|
+
"publishModeScheduledDescription": {
|
|
2175
|
+
"source": "Schedule changes for publishing",
|
|
2176
|
+
"translation": "Änderungen geplant veröffentlichen"
|
|
2177
|
+
},
|
|
2178
|
+
"publishModeScheduledTitle": {
|
|
2179
|
+
"source": "Schedule",
|
|
2180
|
+
"translation": "Planen"
|
|
2181
|
+
},
|
|
2182
|
+
"publishName": {
|
|
2183
|
+
"source": "Name",
|
|
2184
|
+
"translation": "Name"
|
|
2185
|
+
},
|
|
2186
|
+
"publishPublicationScheduled": {
|
|
2187
|
+
"source": "Publication scheduled",
|
|
2188
|
+
"translation": "Veröffentlichung geplant"
|
|
2189
|
+
},
|
|
2190
|
+
"publishPublishContent": {
|
|
2191
|
+
"source": "Publish content",
|
|
2192
|
+
"translation": "Inhalt veröffentlichen"
|
|
2193
|
+
},
|
|
2194
|
+
"publishPublishContents": {
|
|
2195
|
+
"source": "Publish @count contents",
|
|
2196
|
+
"translation": "@count Inhalte veröffentlichen"
|
|
2197
|
+
},
|
|
2198
|
+
"publishRemainsPublished": {
|
|
2199
|
+
"source": "Remains published",
|
|
2200
|
+
"translation": "Bleibt publiziert"
|
|
2201
|
+
},
|
|
2202
|
+
"publishRemainsUnpublished": {
|
|
2203
|
+
"source": "Remains unpublished",
|
|
2204
|
+
"translation": "Bleibt nicht publiziert"
|
|
2205
|
+
},
|
|
2206
|
+
"publishRemoveSchedule": {
|
|
2207
|
+
"source": "Remove schedule",
|
|
2208
|
+
"translation": "Planung entfernen"
|
|
2209
|
+
},
|
|
2210
|
+
"publishResultPublishChangesNowPublished": {
|
|
2211
|
+
"source": "Changes are published, page is now published",
|
|
2212
|
+
"translation": "Änderungen und Seite sind publiziert"
|
|
2213
|
+
},
|
|
2214
|
+
"publishResultPublishChangesRemainPublished": {
|
|
2215
|
+
"source": "Changes are published, page remains published",
|
|
2216
|
+
"translation": "Änderungen sind publiziert, Seite bleibt publiziert"
|
|
2217
|
+
},
|
|
2218
|
+
"publishResultSaveChanges": {
|
|
2219
|
+
"source": "Changes are saved, page remains unpublished",
|
|
2220
|
+
"translation": "Änderungen sind gespeichert, Seite bleibt unpubliziert"
|
|
2221
|
+
},
|
|
2222
|
+
"publishResultScheduledChanges": {
|
|
2223
|
+
"source": "Changes will be published on @date",
|
|
2224
|
+
"translation": "Änderungen werden am @date publiziert"
|
|
2225
|
+
},
|
|
2226
|
+
"publishResultScheduledPage": {
|
|
2227
|
+
"source": "Page will be published on @date",
|
|
2228
|
+
"translation": "Seite wird am @date publiziert"
|
|
2229
|
+
},
|
|
2230
|
+
"publishRevisionLogMessage": {
|
|
2231
|
+
"source": "Change description",
|
|
2232
|
+
"translation": "Beschreibung der Änderungen"
|
|
2233
|
+
},
|
|
2234
|
+
"publishRevisionLogMessageDescription": {
|
|
2235
|
+
"source": "Briefly describe the changes made",
|
|
2236
|
+
"translation": "Beschreiben Sie kurz die vorgenommenen Änderungen"
|
|
2237
|
+
},
|
|
2238
|
+
"publishSaveContent": {
|
|
2239
|
+
"source": "Save content",
|
|
2240
|
+
"translation": "Inhalt speichern"
|
|
2241
|
+
},
|
|
2242
|
+
"publishSaveContents": {
|
|
2243
|
+
"source": "Save @count contents",
|
|
2244
|
+
"translation": "@count Inhalte speichern"
|
|
2245
|
+
},
|
|
2246
|
+
"publishScheduleDate": {
|
|
2247
|
+
"source": "Publication date",
|
|
2248
|
+
"translation": "Veröffentlichungsdatum"
|
|
2249
|
+
},
|
|
2250
|
+
"publishScheduleDateTooSoon": {
|
|
2251
|
+
"source": "The scheduled date must be at least 2 minutes in the future",
|
|
2252
|
+
"translation": "Das geplante Datum muss mindestens 2 Minuten in der Zukunft liegen"
|
|
2253
|
+
},
|
|
2254
|
+
"publishSchedulePublication": {
|
|
2255
|
+
"source": "Schedule publication",
|
|
2256
|
+
"translation": "Veröffentlichung planen"
|
|
2257
|
+
},
|
|
2258
|
+
"publishSchedulePublications": {
|
|
2259
|
+
"source": "Schedule @count publications",
|
|
2260
|
+
"translation": "@count Veröffentlichungen planen"
|
|
2261
|
+
},
|
|
2262
|
+
"publishScheduleSuccess": {
|
|
2263
|
+
"source": "Publication scheduled for @date",
|
|
2264
|
+
"translation": "Veröffentlichung für @date geplant"
|
|
2265
|
+
},
|
|
2266
|
+
"publishScheduledBlockPlural": {
|
|
2267
|
+
"source": "@count blocks are scheduled to be published on @date",
|
|
2268
|
+
"translation": "@count Blöcke sind zur Veröffentlichung am @date geplant"
|
|
2269
|
+
},
|
|
2270
|
+
"publishScheduledBlockSingular": {
|
|
2271
|
+
"source": "1 block is scheduled to be published on @date",
|
|
2272
|
+
"translation": "1 Block ist zur Veröffentlichung am @date geplant"
|
|
2273
|
+
},
|
|
2274
|
+
"publishScheduledInfo": {
|
|
2275
|
+
"source": "You can still make changes until the scheduled publication date.",
|
|
2276
|
+
"translation": "Sie können bis zum geplanten Veröffentlichungsdatum noch Änderungen vornehmen."
|
|
2277
|
+
},
|
|
2278
|
+
"publishStatus": {
|
|
2279
|
+
"source": "Status",
|
|
2280
|
+
"translation": "Status"
|
|
2281
|
+
},
|
|
2282
|
+
"publishSuccess": {
|
|
2283
|
+
"source": "Changes published successfully.",
|
|
2284
|
+
"translation": "Änderungen erfolgreich publiziert."
|
|
2285
|
+
},
|
|
2286
|
+
"publishSuccessfullyPublished": {
|
|
2287
|
+
"source": "Successfully published",
|
|
2288
|
+
"translation": "Erfolgreich veröffentlicht"
|
|
2289
|
+
},
|
|
2290
|
+
"publishSuccessfullySaved": {
|
|
2291
|
+
"source": "Successfully saved",
|
|
2292
|
+
"translation": "Erfolgreich gespeichert"
|
|
2293
|
+
},
|
|
2294
|
+
"publishSummary": {
|
|
2295
|
+
"source": "Summary",
|
|
2296
|
+
"translation": "Zusammenfassung"
|
|
2297
|
+
},
|
|
2298
|
+
"publishWillBePublished": {
|
|
2299
|
+
"source": "Will be published",
|
|
2300
|
+
"translation": "Wird publiziert"
|
|
2301
|
+
},
|
|
2302
|
+
"publishWillBeScheduled": {
|
|
2303
|
+
"source": "Will be scheduled",
|
|
2304
|
+
"translation": "Wird geplant"
|
|
2305
|
+
},
|
|
2306
|
+
"responsivePreviewCustomViewport": {
|
|
2307
|
+
"source": "Custom",
|
|
2308
|
+
"translation": "Benutzerdefiniert"
|
|
2309
|
+
},
|
|
2310
|
+
"responsivePreviewTitle": {
|
|
2311
|
+
"source": "Responsive Preview",
|
|
2312
|
+
"translation": "Responsive 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": "Sehen Sie, wie Ihre Änderungen auf kleineren Bildschirmen, wie Smartphones, aussehen. Klicken Sie auf den \"Loslösen\"-Button, um zusätzliche Ansichtsgrössen auswählen zu können."
|
|
2317
|
+
},
|
|
2318
|
+
"revertDialogLead": {
|
|
2319
|
+
"source": "This will delete all changes and restore the currently published state. This action cannot be undone.",
|
|
2320
|
+
"translation": "Damit werden alle Änderungen gelöscht und der aktuell publizierte Stand wiederhergestellt. Diese Aktion kann nicht rückgängig gemacht werden."
|
|
2321
|
+
},
|
|
2322
|
+
"revertDialogSubmit": {
|
|
2323
|
+
"source": "Discard changes",
|
|
2324
|
+
"translation": "Änderungen verwerfen"
|
|
2325
|
+
},
|
|
2326
|
+
"revertDialogTitle": {
|
|
2327
|
+
"source": "Irrevocably discard changes",
|
|
2328
|
+
"translation": "Änderungen unwiderruflich verwerfen"
|
|
2329
|
+
},
|
|
2330
|
+
"revertError": {
|
|
2331
|
+
"source": "Changes could not be discarded.",
|
|
2332
|
+
"translation": "Änderungen konnten nicht verworfen werden."
|
|
2333
|
+
},
|
|
2334
|
+
"revertMenuDescription": {
|
|
2335
|
+
"source": "Restore currently published state",
|
|
2336
|
+
"translation": "Aktuell veröffentlichten Zustand wiederherstellen"
|
|
2337
|
+
},
|
|
2338
|
+
"revertMenuTitle": {
|
|
2339
|
+
"source": "Discard...",
|
|
2340
|
+
"translation": "Verwerfen..."
|
|
2341
|
+
},
|
|
2342
|
+
"revertSuccess": {
|
|
2343
|
+
"source": "All changes have been discarded.",
|
|
2344
|
+
"translation": "Alle Änderungen wurden verworfen."
|
|
2345
|
+
},
|
|
2346
|
+
"scheduledFor": {
|
|
2347
|
+
"source": "The changes will be published on this date.",
|
|
2348
|
+
"translation": "Die Änderungen werden an diesem Datum publiziert."
|
|
2349
|
+
},
|
|
2350
|
+
"searchBoxNoResultsFound": {
|
|
2351
|
+
"source": "No results found",
|
|
2352
|
+
"translation": "Keine Resultate gefunden"
|
|
2353
|
+
},
|
|
2354
|
+
"searchBoxOnThisPage": {
|
|
2355
|
+
"source": "On this page",
|
|
2356
|
+
"translation": "Auf dieser Seite"
|
|
2357
|
+
},
|
|
2358
|
+
"searchBoxPlaceholder": {
|
|
2359
|
+
"source": "Enter search term",
|
|
2360
|
+
"translation": "Suchbegriff eingeben"
|
|
2361
|
+
},
|
|
2362
|
+
"searchContentReplace": {
|
|
2363
|
+
"source": "Replace @field",
|
|
2364
|
+
"translation": "@field ersetzen"
|
|
2365
|
+
},
|
|
2366
|
+
"searchContentReplaceFailed": {
|
|
2367
|
+
"source": "Failed to replace content.",
|
|
2368
|
+
"translation": "Inhalt konnte nicht ersetzt werden."
|
|
2369
|
+
},
|
|
2370
|
+
"searchToolbarLabel": {
|
|
2371
|
+
"source": "Search content",
|
|
2372
|
+
"translation": "Inhalte suchen"
|
|
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": "Finden Sie Blöcke auf der aktuellen Seite oder andere bestehende Inhalte wie Bilder oder Dokumente, um sie als Blöcke auf der Seite hinzuzufügen."
|
|
2377
|
+
},
|
|
2378
|
+
"selectAllBlocks": {
|
|
2379
|
+
"source": "Select all blocks",
|
|
2380
|
+
"translation": "Alle Blöcke auswählen"
|
|
2381
|
+
},
|
|
2382
|
+
"selectAllOfBundle": {
|
|
2383
|
+
"source": "Select all \"@bundle\" blocks",
|
|
2384
|
+
"translation": "Alle «@bundle» Blöcke auswählen"
|
|
2385
|
+
},
|
|
2386
|
+
"selectedIsNew": {
|
|
2387
|
+
"source": "New",
|
|
2388
|
+
"translation": "Neu"
|
|
2389
|
+
},
|
|
2390
|
+
"settingsAdvanced": {
|
|
2391
|
+
"source": "Advanced",
|
|
2392
|
+
"translation": "Erweitert"
|
|
2393
|
+
},
|
|
2394
|
+
"settingsAppearance": {
|
|
2395
|
+
"source": "Appearance",
|
|
2396
|
+
"translation": "Darstellung"
|
|
2397
|
+
},
|
|
2398
|
+
"settingsArtboard": {
|
|
2399
|
+
"source": "Artboard",
|
|
2400
|
+
"translation": "Vorschau"
|
|
2401
|
+
},
|
|
2402
|
+
"settingsBehaviour": {
|
|
2403
|
+
"source": "Behaviour",
|
|
2404
|
+
"translation": "Verhalten"
|
|
2405
|
+
},
|
|
2406
|
+
"settingsBeta": {
|
|
2407
|
+
"source": "New Features",
|
|
2408
|
+
"translation": "Neue Funktionen"
|
|
2409
|
+
},
|
|
2410
|
+
"settingsDialogTitle": {
|
|
2411
|
+
"source": "Change settings",
|
|
2412
|
+
"translation": "Einstellungen"
|
|
2413
|
+
},
|
|
2414
|
+
"settingsMenuDescription": {
|
|
2415
|
+
"source": "Personal settings for the editor",
|
|
2416
|
+
"translation": "Persönliche Einstellungen für den Editor"
|
|
2417
|
+
},
|
|
2418
|
+
"settingsMenuTitle": {
|
|
2419
|
+
"source": "Settings",
|
|
2420
|
+
"translation": "Einstellungen"
|
|
2421
|
+
},
|
|
2422
|
+
"shortcutGroupBlocks": {
|
|
2423
|
+
"source": "Blocks",
|
|
2424
|
+
"translation": "Blöcke"
|
|
2425
|
+
},
|
|
2426
|
+
"shortcutGroupGeneral": {
|
|
2427
|
+
"source": "General",
|
|
2428
|
+
"translation": "Allgemein"
|
|
2429
|
+
},
|
|
2430
|
+
"shortcutGroupUi": {
|
|
2431
|
+
"source": "UI",
|
|
2432
|
+
"translation": "Oberfläche"
|
|
2433
|
+
},
|
|
2434
|
+
"sidebar.hide": {
|
|
2435
|
+
"source": "Hide @title",
|
|
2436
|
+
"translation": "@title ausblenden"
|
|
2437
|
+
},
|
|
2438
|
+
"sidebar.show": {
|
|
2439
|
+
"source": "Show @title",
|
|
2440
|
+
"translation": "@title anzeigen"
|
|
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": "Dies könnte auf fehlende Berechtigungen oder ein vorübergehendes Problem zurückzuführen sein. Bitte versuchen Sie es später nochmal."
|
|
2449
|
+
},
|
|
2450
|
+
"stateUnavailableTitle": {
|
|
2451
|
+
"source": "The edit state could not be loaded.",
|
|
2452
|
+
"translation": "Der Bearbeitungszustand konnte nicht geladen werden."
|
|
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 eine strukturierte Liste aller Blöcke auf der aktuellen Seite. Klicken Sie auf einen Block, um ihn auf der Seite anzuzeigen."
|
|
2461
|
+
},
|
|
2462
|
+
"systemRequirementsDialogButton": {
|
|
2463
|
+
"source": "Continue anyway",
|
|
2464
|
+
"translation": "Trotzdem fortfahren"
|
|
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 hat festgestellt, dass Ihr Browser eine oder mehrere Systemanforderungen nicht erfüllt. Für die beste Erfahrung verwenden Sie bitte einen Browser, der alle aufgeführten Anforderungen unterstü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 wurde für die neuesten Versionen von Chrome, Firefox, Edge und Safari getestet und optimiert. Funktionen wie WebGL werden in der Regel unterstützt, können jedoch manchmal aus Leistungs- oder Sicherheitsgründen deaktiviert sein."
|
|
2473
|
+
},
|
|
2474
|
+
"systemRequirementsDialogTitle": {
|
|
2475
|
+
"source": "System Requirements",
|
|
2476
|
+
"translation": "Systemanforderungen"
|
|
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 verwendet WebGL für die schnelle Darstellung von GUI-Elementen wie ausgewählten Blöcken und Drag-and-Drop-Indikatoren. Wenn WebGL nicht unterstützt wird, verwendet blökkli einen Fallback, der langsamer ist und nicht alle Funktionen unterstützt."
|
|
2481
|
+
},
|
|
2482
|
+
"templatesAddTemplate": {
|
|
2483
|
+
"source": "Template",
|
|
2484
|
+
"translation": "Vorlage"
|
|
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": "<p>Ziehen Sie das Symbol auf die Seite, um Blöcke aus einer Vorlage hinzuzufügen.</p>"
|
|
2489
|
+
},
|
|
2490
|
+
"templatesCanNotBeDefault": {
|
|
2491
|
+
"source": "Only single blocks can be made default.",
|
|
2492
|
+
"translation": "Nur einzelne Blöcke können als Standard definiert werden."
|
|
2493
|
+
},
|
|
2494
|
+
"templatesCreate": {
|
|
2495
|
+
"source": "Create template...",
|
|
2496
|
+
"translation": "Vorlage erstellen..."
|
|
2497
|
+
},
|
|
2498
|
+
"templatesCreateDialogDefaultDescription": {
|
|
2499
|
+
"source": "If set, this template is used automatically when adding a new block of this type.",
|
|
2500
|
+
"translation": "Falls aktiviert, wird diese Vorlage automatisch verwendet, wenn ein neuer Block dieses Typs hinzugefügt wird."
|
|
2501
|
+
},
|
|
2502
|
+
"templatesCreateDialogDefaultLabel": {
|
|
2503
|
+
"source": "Use as default",
|
|
2504
|
+
"translation": "Als Standard verwenden"
|
|
2505
|
+
},
|
|
2506
|
+
"templatesCreateDialogDescriptionLabel": {
|
|
2507
|
+
"source": "Description",
|
|
2508
|
+
"translation": "Beschreibung"
|
|
2509
|
+
},
|
|
2510
|
+
"templatesCreateDialogDescriptionPlaceholder": {
|
|
2511
|
+
"source": "Optional description of the template",
|
|
2512
|
+
"translation": "Optionale Beschreibung der Vorlage"
|
|
2513
|
+
},
|
|
2514
|
+
"templatesCreateDialogLabelLabel": {
|
|
2515
|
+
"source": "Name",
|
|
2516
|
+
"translation": "Name"
|
|
2517
|
+
},
|
|
2518
|
+
"templatesCreateDialogLabelPlaceholder": {
|
|
2519
|
+
"source": "e.g. Hero Section",
|
|
2520
|
+
"translation": "z.B. Hero-Bereich"
|
|
2521
|
+
},
|
|
2522
|
+
"templatesCreateDialogLead": {
|
|
2523
|
+
"source": "Create a reusable template from the selected blocks. Templates can be added to any page.",
|
|
2524
|
+
"translation": "Erstellen Sie eine wiederverwendbare Vorlage aus den ausgewählten Blöcken. Vorlagen können auf jeder Seite hinzugefügt werden."
|
|
2525
|
+
},
|
|
2526
|
+
"templatesCreateDialogPreviewLabel": {
|
|
2527
|
+
"source": "Preview",
|
|
2528
|
+
"translation": "Vorschau"
|
|
2529
|
+
},
|
|
2530
|
+
"templatesCreateDialogSubmit": {
|
|
2531
|
+
"source": "Create template",
|
|
2532
|
+
"translation": "Vorlage erstellen"
|
|
2533
|
+
},
|
|
2534
|
+
"templatesCreateDialogTitle": {
|
|
2535
|
+
"source": "Create template",
|
|
2536
|
+
"translation": "Vorlage erstellen"
|
|
2537
|
+
},
|
|
2538
|
+
"templatesCreateError": {
|
|
2539
|
+
"source": "Failed to create template.",
|
|
2540
|
+
"translation": "Vorlage konnte nicht erstellt werden."
|
|
2541
|
+
},
|
|
2542
|
+
"templatesDefaultPill": {
|
|
2543
|
+
"source": "Default",
|
|
2544
|
+
"translation": "Standard"
|
|
2545
|
+
},
|
|
2546
|
+
"templatesDefaultPillDescription": {
|
|
2547
|
+
"source": "This template is used when new blocks of this type are created.",
|
|
2548
|
+
"translation": "Diese Vorlage wird verwendet, wenn neue Blöcke dieses Typs erstellt werden."
|
|
2549
|
+
},
|
|
2550
|
+
"templatesDeleteError": {
|
|
2551
|
+
"source": "Failed to delete template.",
|
|
2552
|
+
"translation": "Vorlage konnte nicht gelöscht werden."
|
|
2553
|
+
},
|
|
2554
|
+
"templatesDeleteSuccess": {
|
|
2555
|
+
"source": "Template deleted successfully.",
|
|
2556
|
+
"translation": "Vorlage erfolgreich gelöscht."
|
|
2557
|
+
},
|
|
2558
|
+
"templatesEditOverlayTitle": {
|
|
2559
|
+
"source": "Edit template",
|
|
2560
|
+
"translation": "Vorlage bearbeiten"
|
|
2561
|
+
},
|
|
2562
|
+
"templatesManageDialogCancelDelete": {
|
|
2563
|
+
"source": "Cancel",
|
|
2564
|
+
"translation": "Abbrechen"
|
|
2565
|
+
},
|
|
2566
|
+
"templatesManageDialogConfirmDelete": {
|
|
2567
|
+
"source": "Delete",
|
|
2568
|
+
"translation": "Löschen"
|
|
2569
|
+
},
|
|
2570
|
+
"templatesManageDialogDelete": {
|
|
2571
|
+
"source": "Delete",
|
|
2572
|
+
"translation": "Löschen"
|
|
2573
|
+
},
|
|
2574
|
+
"templatesManageDialogEdit": {
|
|
2575
|
+
"source": "Edit",
|
|
2576
|
+
"translation": "Bearbeiten"
|
|
2577
|
+
},
|
|
2578
|
+
"templatesManageDialogLead": {
|
|
2579
|
+
"source": "View, edit and delete your block templates.",
|
|
2580
|
+
"translation": "Vorlagen verwalten, bearbeiten und löschen."
|
|
2581
|
+
},
|
|
2582
|
+
"templatesManageDialogNoResults": {
|
|
2583
|
+
"source": "No templates found.",
|
|
2584
|
+
"translation": "Keine Vorlagen gefunden."
|
|
2585
|
+
},
|
|
2586
|
+
"templatesManageDialogTitle": {
|
|
2587
|
+
"source": "Manage templates",
|
|
2588
|
+
"translation": "Vorlagen verwalten"
|
|
2589
|
+
},
|
|
2590
|
+
"templatesMenuDescription": {
|
|
2591
|
+
"source": "Edit and delete block templates",
|
|
2592
|
+
"translation": "Vorlagen bearbeiten und löschen"
|
|
2593
|
+
},
|
|
2594
|
+
"templatesMenuLabel": {
|
|
2595
|
+
"source": "Templates...",
|
|
2596
|
+
"translation": "Vorlagen..."
|
|
2597
|
+
},
|
|
2598
|
+
"templatesMissingDefaultPermissions": {
|
|
2599
|
+
"source": "Missing permission to create default templates.",
|
|
2600
|
+
"translation": "Fehlende Berechtigung um Standard-Vorlagen zu erstellen."
|
|
2601
|
+
},
|
|
2602
|
+
"templatesNoResults": {
|
|
2603
|
+
"source": "No templates available for this field.",
|
|
2604
|
+
"translation": "Keine Vorlagen für dieses Feld verfügbar."
|
|
2605
|
+
},
|
|
2606
|
+
"templatesPlaceDialogDescription": {
|
|
2607
|
+
"source": "Templates create copies of blocks that can be edited freely on this page without affecting other pages.",
|
|
2608
|
+
"translation": "Vorlagen erstellen Kopien von Blöcken, die auf dieser Seite frei bearbeitet werden können, ohne andere Seiten zu beeinflussen."
|
|
2609
|
+
},
|
|
2610
|
+
"templatesPlaceDialogSubmitButton": {
|
|
2611
|
+
"source": "Add template blocks",
|
|
2612
|
+
"translation": "Vorlagen-Blöcke hinzufügen"
|
|
2613
|
+
},
|
|
2614
|
+
"templatesPlaceDialogTitle": {
|
|
2615
|
+
"source": "Add blocks from template",
|
|
2616
|
+
"translation": "Blöcke aus Vorlage hinzufügen"
|
|
2617
|
+
},
|
|
2618
|
+
"templatesSuccessMessage": {
|
|
2619
|
+
"source": "Successfully created template \"@label\"",
|
|
2620
|
+
"translation": "Die Vorlage «@label» wurde erfolgreich erstellt."
|
|
2621
|
+
},
|
|
2622
|
+
"theme": {
|
|
2623
|
+
"source": "Theme",
|
|
2624
|
+
"translation": "Farben"
|
|
2625
|
+
},
|
|
2626
|
+
"themeTourText": {
|
|
2627
|
+
"source": "Change the colors of the theme and generate a theme file.",
|
|
2628
|
+
"translation": "Ändern Sie das Theme und generieren Sie eine Theme-Datei."
|
|
2629
|
+
},
|
|
2630
|
+
"toggleInteractionLayers": {
|
|
2631
|
+
"source": "Toggle interaction layers",
|
|
2632
|
+
"translation": "Interaktionsebenen umschalten"
|
|
2633
|
+
},
|
|
2634
|
+
"touchBarCancelDragging": {
|
|
2635
|
+
"source": "Cancel dragging",
|
|
2636
|
+
"translation": "Platzieren abbrechen"
|
|
2637
|
+
},
|
|
2638
|
+
"touchBarFinishSelecting": {
|
|
2639
|
+
"source": "Finish selecting",
|
|
2640
|
+
"translation": "Mehrfachauswahl beenden"
|
|
2641
|
+
},
|
|
2642
|
+
"tourDescription": {
|
|
2643
|
+
"source": "Explore the features of the editor",
|
|
2644
|
+
"translation": "Entdecken Sie die Funktionen 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": "Lernen Sie die wichtigsten Funktionen des Editors kennen und erfahren Sie, wie Sie mit blökkli loslegen können."
|
|
2649
|
+
},
|
|
2650
|
+
"tourLabel": {
|
|
2651
|
+
"source": "Take a tour",
|
|
2652
|
+
"translation": "Tour machen"
|
|
2653
|
+
},
|
|
2654
|
+
"tourNext": {
|
|
2655
|
+
"source": "Next",
|
|
2656
|
+
"translation": "Weiter"
|
|
2657
|
+
},
|
|
2658
|
+
"tourPrev": {
|
|
2659
|
+
"source": "Previous",
|
|
2660
|
+
"translation": "Zurück"
|
|
2661
|
+
},
|
|
2662
|
+
"tourStartButton": {
|
|
2663
|
+
"source": "Start the tour",
|
|
2664
|
+
"translation": "Tour starten"
|
|
2665
|
+
},
|
|
2666
|
+
"transformDialogButtonApply": {
|
|
2667
|
+
"source": "Apply changes",
|
|
2668
|
+
"translation": "Änderungen annehmen"
|
|
2669
|
+
},
|
|
2670
|
+
"transformDialogButtonNewSuggestion": {
|
|
2671
|
+
"source": "New suggestion",
|
|
2672
|
+
"translation": "Neuer Vorschlag"
|
|
2673
|
+
},
|
|
2674
|
+
"transformDialogButtonPreview": {
|
|
2675
|
+
"source": "Preview",
|
|
2676
|
+
"translation": "Vorschau"
|
|
2677
|
+
},
|
|
2678
|
+
"translationsBannerButton": {
|
|
2679
|
+
"source": "Edit source language instead",
|
|
2680
|
+
"translation": "Originalsprache bearbeiten"
|
|
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": "Sie bearbeiten die Übersetzung <strong>«@language»</strong>. Einige Funktionen wie das Hinzufügen, Verschieben oder Löschen von Blöcken sind nicht verfügbar."
|
|
2685
|
+
},
|
|
2686
|
+
"translationsBatchTranslateMenuDescription": {
|
|
2687
|
+
"source": "Translate all blocks",
|
|
2688
|
+
"translation": "Alle Elemente übersetzen"
|
|
2689
|
+
},
|
|
2690
|
+
"translationsBatchTranslateMenuTitle": {
|
|
2691
|
+
"source": "Translate...",
|
|
2692
|
+
"translation": "Übersetzen..."
|
|
2693
|
+
},
|
|
2694
|
+
"translationsItemAction": {
|
|
2695
|
+
"source": "Translate",
|
|
2696
|
+
"translation": "Übersetzen"
|
|
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": "Wechseln Sie schnell zwischen verfügbaren Übersetzungen. Eine graue Sprache zeigt an, dass der Inhalt noch nicht übersetzt wurde. Ein Klick darauf öffnet das Formular, um eine neue Übersetzung für diese Sprache zu erstellen."
|
|
2701
|
+
},
|
|
2702
|
+
"translationsTourTitle": {
|
|
2703
|
+
"source": "Translations",
|
|
2704
|
+
"translation": "Übersetzungen"
|
|
2705
|
+
},
|
|
2706
|
+
"unexpectedMutationError": {
|
|
2707
|
+
"source": "An unexpected error happened.",
|
|
2708
|
+
"translation": "Ein unerwarteter Fehler ist aufgetreten"
|
|
2709
|
+
},
|
|
2710
|
+
"validationsNoneFound": {
|
|
2711
|
+
"source": "No validation errors found.",
|
|
2712
|
+
"translation": "Keine Validierungsfehler gefunden."
|
|
2713
|
+
},
|
|
2714
|
+
"validationsToolbarLabel": {
|
|
2715
|
+
"source": "Validations",
|
|
2716
|
+
"translation": "Validierungen"
|
|
2717
|
+
},
|
|
2718
|
+
"validationsTourText": {
|
|
2719
|
+
"source": "See validation errors for content or structure on the current page.",
|
|
2720
|
+
"translation": "Zeigt Validierungsfehler für Inhalte auf der aktuellen Seite an."
|
|
2721
|
+
},
|
|
2722
|
+
"viewBannerReviewText": {
|
|
2723
|
+
"source": "You can view and add comments but cannot edit content.",
|
|
2724
|
+
"translation": "Sie können Kommentare ansehen und hinzufügen, aber keine Inhalte bearbeiten."
|
|
2725
|
+
},
|
|
2726
|
+
"viewBannerReviewTitle": {
|
|
2727
|
+
"source": "You are in review mode.",
|
|
2728
|
+
"translation": "Sie befinden sich im Review-Modus."
|
|
2729
|
+
},
|
|
2730
|
+
"viewBannerViewText": {
|
|
2731
|
+
"source": "You can view comments but cannot edit content.",
|
|
2732
|
+
"translation": "Sie können Kommentare ansehen, aber keine Inhalte bearbeiten."
|
|
2733
|
+
},
|
|
2734
|
+
"viewBannerViewTitle": {
|
|
2735
|
+
"source": "You are in view-only mode.",
|
|
2736
|
+
"translation": "Sie befinden sich im Ansichtsmodus."
|
|
2737
|
+
}
|
|
2738
|
+
}
|