@blokkli/editor 2.0.0-alpha.36 → 2.0.0-alpha.37
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/types/blockOptions.d.ts +4 -3
- package/dist/module.d.mts +2 -2
- package/dist/module.json +1 -1
- package/dist/module.mjs +71 -4
- package/dist/modules/agent/index.d.mts +1 -1
- package/dist/modules/agent/index.mjs +236 -6
- package/dist/modules/agent/runtime/app/composables/agentProvider.js +31 -14
- package/dist/modules/agent/runtime/app/composables/defineBlokkliAgentTool.d.ts +2 -20
- package/dist/modules/agent/runtime/app/composables/defineBlokkliAgentTool.js +0 -3
- package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/Assistant/index.vue +2 -2
- package/dist/modules/agent/runtime/app/features/agent/Panel/Conversation/Item/User/index.vue +1 -2
- package/dist/modules/agent/runtime/app/features/agent/Panel/DebugGallery/index.vue +1 -2
- package/dist/modules/agent/runtime/app/features/agent/Panel/Input/Actions/index.d.vue.ts +1 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Input/Actions/index.vue +66 -59
- package/dist/modules/agent/runtime/app/features/agent/Panel/Input/Actions/index.vue.d.ts +1 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Input/index.vue +10 -12
- package/dist/modules/agent/runtime/app/features/agent/Panel/Welcome/de.md +2 -2
- package/dist/modules/agent/runtime/app/features/agent/Panel/Welcome/en.md +2 -2
- package/dist/modules/agent/runtime/app/features/agent/Panel/index.vue +1 -5
- package/dist/modules/agent/runtime/app/features/agent/index.vue +89 -37
- package/dist/modules/agent/runtime/app/helpers/index.d.ts +16 -19
- package/dist/modules/agent/runtime/app/helpers/index.js +22 -46
- package/dist/modules/agent/runtime/app/helpers/pageStructure.js +1 -1
- package/dist/modules/agent/runtime/app/tools/add_content_search_paragraph/index.js +5 -9
- package/dist/modules/agent/runtime/app/tools/add_fragment/index.js +2 -6
- package/dist/modules/agent/runtime/app/tools/add_media_paragraph/index.js +2 -6
- package/dist/modules/agent/runtime/app/tools/add_paragraphs/index.js +2 -3
- package/dist/modules/agent/runtime/app/tools/add_reusable_paragraph/index.js +2 -6
- package/dist/modules/agent/runtime/app/tools/add_template/index.js +2 -6
- package/dist/modules/agent/runtime/app/tools/analyze_content/index.d.ts +2 -0
- package/dist/modules/agent/runtime/app/tools/analyze_content/index.js +120 -0
- package/dist/modules/agent/runtime/app/tools/check_readability/index.d.ts +2 -0
- package/dist/modules/agent/runtime/app/tools/check_readability/index.js +57 -0
- package/dist/modules/agent/runtime/app/tools/duplicate_paragraphs/index.js +2 -6
- package/dist/modules/agent/runtime/app/tools/get_all_page_content/index.js +1 -1
- package/dist/modules/agent/runtime/app/tools/get_bundle_info/index.js +2 -1
- package/dist/modules/agent/runtime/app/tools/get_content_fields/index.js +1 -1
- package/dist/modules/agent/runtime/app/tools/get_paragraph_context/index.js +2 -5
- package/dist/modules/agent/runtime/app/tools/get_paragraph_options/index.js +2 -1
- package/dist/modules/agent/runtime/app/tools/get_selected_paragraphs/index.js +2 -3
- package/dist/modules/agent/runtime/app/tools/helpers.d.ts +53 -0
- package/dist/modules/agent/runtime/app/tools/helpers.js +187 -0
- package/dist/modules/agent/runtime/app/tools/move_paragraphs/index.js +2 -6
- package/dist/modules/agent/runtime/app/tools/schemas.d.ts +0 -52
- package/dist/modules/agent/runtime/app/tools/schemas.js +0 -187
- package/dist/modules/agent/runtime/app/tools/search_content/index.js +40 -47
- package/dist/modules/agent/runtime/app/tools/set_paragraph_options/index.js +2 -5
- package/dist/modules/agent/runtime/app/types/index.d.ts +0 -61
- package/dist/modules/agent/runtime/server/Session.d.ts +25 -6
- package/dist/modules/agent/runtime/server/Session.js +109 -30
- package/dist/modules/agent/runtime/server/SessionManager.d.ts +3 -0
- package/dist/modules/agent/runtime/server/SessionManager.js +4 -1
- package/dist/modules/agent/runtime/server/agent.js +3 -2
- package/dist/modules/agent/runtime/server/default-skills/fixReadability.d.ts +2 -0
- package/dist/modules/agent/runtime/server/default-skills/fixReadability.js +69 -0
- package/dist/modules/agent/runtime/server/default-system-prompts/page-context.js +28 -0
- package/dist/modules/agent/runtime/server/server-tools/index.d.ts +10 -2
- package/dist/modules/agent/runtime/server/server-tools/index.js +1 -1
- package/dist/modules/agent/runtime/server/server-tools/load_tools/index.js +1 -1
- package/dist/modules/agent/runtime/shared/types.d.ts +46 -11
- package/dist/modules/agent/runtime/shared/types.js +22 -10
- package/dist/modules/charts/index.d.mts +1 -1
- package/dist/modules/charts/index.mjs +21 -7
- package/dist/modules/charts/runtime/blokkli/skills/charts.js +6 -6
- package/dist/modules/charts/runtime/blokkli/tools/chart_schemas.d.ts +25 -2
- package/dist/modules/charts/runtime/blokkli/tools/chart_schemas.js +39 -1
- package/dist/modules/charts/runtime/blokkli/tools/create_chart/index.js +24 -17
- package/dist/modules/charts/runtime/blokkli/tools/get_chart_data/index.js +11 -19
- package/dist/modules/charts/runtime/blokkli/tools/get_chart_type_options/index.js +2 -4
- package/dist/modules/charts/runtime/blokkli/tools/update_chart/index.js +8 -20
- package/dist/modules/charts/runtime/chartTypes/area.d.ts +6 -1
- package/dist/modules/charts/runtime/chartTypes/bar.d.ts +7 -1
- package/dist/modules/charts/runtime/chartTypes/define.d.ts +1 -1
- package/dist/modules/charts/runtime/chartTypes/donut.d.ts +5 -1
- package/dist/modules/charts/runtime/chartTypes/heatmap.d.ts +3 -1
- package/dist/modules/charts/runtime/chartTypes/index.d.ts +18 -0
- package/dist/modules/charts/runtime/chartTypes/line.d.ts +6 -1
- package/dist/modules/charts/runtime/chartTypes/pie.d.ts +4 -1
- package/dist/modules/charts/runtime/chartTypes/radar.d.ts +6 -1
- package/dist/modules/charts/runtime/chartTypes/radialBar.d.ts +5 -1
- package/dist/modules/charts/runtime/chartTypes/shared.d.ts +20 -5
- package/dist/modules/charts/runtime/chartTypes/types.d.ts +6 -6
- package/dist/modules/charts/runtime/components/ChartRenderer/index.d.vue.ts +145 -2
- package/dist/modules/charts/runtime/components/ChartRenderer/index.vue +2 -2
- package/dist/modules/charts/runtime/components/ChartRenderer/index.vue.d.ts +145 -2
- package/dist/modules/charts/runtime/components/index.d.ts +1 -0
- package/dist/modules/charts/runtime/components/index.js +1 -0
- package/dist/modules/charts/runtime/features/charts/Editor/ChartTypeOptions/index.d.vue.ts +3 -2
- package/dist/modules/charts/runtime/features/charts/Editor/ChartTypeOptions/index.vue.d.ts +3 -2
- package/dist/modules/charts/runtime/features/charts/Editor/CsvImport/index.vue +1 -2
- package/dist/modules/charts/runtime/features/charts/Editor/FootnoteEditor/index.vue +1 -1
- package/dist/modules/charts/runtime/features/charts/Editor/Preview/index.d.vue.ts +2 -0
- package/dist/modules/charts/runtime/features/charts/Editor/Preview/index.vue +35 -13
- package/dist/modules/charts/runtime/features/charts/Editor/Preview/index.vue.d.ts +2 -0
- package/dist/modules/charts/runtime/features/charts/Editor/index.d.vue.ts +1 -0
- package/dist/modules/charts/runtime/features/charts/Editor/index.vue +9 -3
- package/dist/modules/charts/runtime/features/charts/Editor/index.vue.d.ts +1 -0
- package/dist/modules/charts/runtime/features/charts/Editor/useChartEditorState.js +1 -1
- package/dist/modules/charts/runtime/features/charts/index.vue +6 -6
- package/dist/modules/charts/runtime/helpers/index.d.ts +25 -0
- package/dist/modules/charts/runtime/helpers/index.js +63 -0
- package/dist/modules/charts/runtime/types.d.ts +10 -28
- package/dist/modules/charts/runtime/types.js +0 -64
- package/dist/modules/drupal/index.d.mts +1 -1
- package/dist/modules/drupal/runtime/adapter/index.d.ts +3 -1
- package/dist/modules/drupal/runtime/adapter/index.js +4 -4
- package/dist/modules/table-of-contents/index.d.mts +1 -1
- package/dist/runtime/components/BlokkliItem.vue +1 -1
- package/dist/runtime/composables/defineBlokkli.js +1 -1
- package/dist/runtime/editor/components/AnimationCanvas/index.vue +13 -7
- package/dist/runtime/editor/components/Banner/index.d.vue.ts +1 -0
- package/dist/runtime/editor/components/Banner/index.vue +1 -1
- package/dist/runtime/editor/components/Banner/index.vue.d.ts +1 -0
- package/dist/runtime/editor/components/DropdownItem/index.d.vue.ts +1 -0
- package/dist/runtime/editor/components/DropdownItem/index.vue +3 -2
- package/dist/runtime/editor/components/DropdownItem/index.vue.d.ts +1 -0
- package/dist/runtime/editor/components/EditProvider.vue +7 -4
- package/dist/runtime/editor/components/FlexTextarea/index.d.vue.ts +5 -1
- package/dist/runtime/editor/components/FlexTextarea/index.vue +24 -101
- package/dist/runtime/editor/components/FlexTextarea/index.vue.d.ts +5 -1
- package/dist/runtime/editor/components/NestedEditorOverlay/index.vue +28 -9
- package/dist/runtime/editor/components/Popup/index.d.vue.ts +30 -0
- package/dist/runtime/editor/components/Popup/index.vue +82 -0
- package/dist/runtime/editor/components/Popup/index.vue.d.ts +30 -0
- package/dist/runtime/editor/components/Resizable/index.vue +4 -1
- package/dist/runtime/editor/components/Toolbar/index.vue +107 -6
- package/dist/runtime/editor/components/index.d.ts +4 -3
- package/dist/runtime/editor/components/index.js +6 -4
- package/dist/runtime/editor/composables/defineDropAreas.js +3 -3
- package/dist/runtime/editor/composables/defineDropHandler.d.ts +3 -0
- package/dist/runtime/editor/composables/defineDropHandler.js +10 -0
- package/dist/runtime/editor/composables/index.d.ts +1 -0
- package/dist/runtime/editor/composables/index.js +1 -0
- package/dist/runtime/editor/css/output.css +1 -1
- package/dist/runtime/editor/events/index.d.ts +9 -0
- package/dist/runtime/editor/features/add-list/index.vue +58 -1
- package/dist/runtime/editor/features/analyze/Main.d.vue.ts +3 -2
- package/dist/runtime/editor/features/analyze/Main.vue +28 -44
- package/dist/runtime/editor/features/analyze/Main.vue.d.ts +3 -2
- package/dist/runtime/editor/features/analyze/analyzers/readability.js +65 -0
- package/dist/runtime/editor/features/analyze/analyzers/types.d.ts +19 -0
- package/dist/runtime/editor/features/analyze/index.vue +18 -15
- package/dist/runtime/editor/features/clipboard/DropElement/Video.d.vue.ts +8 -0
- package/dist/runtime/editor/features/clipboard/{List/Item → DropElement}/Video.vue +1 -5
- package/dist/runtime/editor/features/clipboard/DropElement/Video.vue.d.ts +8 -0
- package/dist/runtime/editor/features/clipboard/DropElement/helpers.d.ts +1 -0
- package/dist/runtime/editor/features/clipboard/DropElement/helpers.js +14 -0
- package/dist/runtime/editor/features/clipboard/DropElement/index.d.vue.ts +16 -0
- package/dist/runtime/editor/features/clipboard/DropElement/index.vue +97 -0
- package/dist/runtime/editor/features/clipboard/DropElement/index.vue.d.ts +16 -0
- package/dist/runtime/editor/features/clipboard/helpers.d.ts +15 -0
- package/dist/runtime/editor/features/clipboard/helpers.js +62 -0
- package/dist/runtime/editor/features/clipboard/index.vue +585 -337
- package/dist/runtime/editor/features/clipboard/types.d.ts +14 -2
- package/dist/runtime/editor/features/dragging-overlay/DragItems/index.vue +17 -5
- package/dist/runtime/editor/features/dragging-overlay/Renderer/index.vue +2 -2
- package/dist/runtime/editor/features/dragging-overlay/index.vue +125 -219
- package/dist/runtime/editor/features/editable-field/Overlay/Plaintext/index.vue +4 -4
- package/dist/runtime/editor/features/editable-field/Overlay/index.vue +6 -0
- package/dist/runtime/editor/features/library/index.vue +14 -0
- package/dist/runtime/editor/features/media-library/index.vue +32 -1
- package/dist/runtime/editor/features/options/Form/ComplexType/index.d.vue.ts +11 -0
- package/dist/runtime/editor/features/options/Form/ComplexType/index.vue +36 -0
- package/dist/runtime/editor/features/options/Form/ComplexType/index.vue.d.ts +11 -0
- package/dist/runtime/editor/features/options/Form/Item.d.vue.ts +3 -2
- package/dist/runtime/editor/features/options/Form/Item.vue +10 -2
- package/dist/runtime/editor/features/options/Form/Item.vue.d.ts +3 -2
- package/dist/runtime/editor/features/options/Form/index.vue +5 -0
- package/dist/runtime/editor/features/search/index.vue +25 -1
- package/dist/runtime/editor/features/structure/index.vue +25 -1
- package/dist/runtime/editor/features/tour/index.vue +22 -12
- package/dist/runtime/editor/helpers/clipboardData/index.d.ts +11 -0
- package/dist/runtime/editor/helpers/clipboardData/index.js +157 -0
- package/dist/runtime/editor/helpers/options/index.js +5 -0
- package/dist/runtime/editor/icons/svg/stars.svg +5 -1
- package/dist/runtime/editor/plugins/Sidebar/Detached/index.d.vue.ts +1 -1
- package/dist/runtime/editor/plugins/Sidebar/Detached/index.vue.d.ts +1 -1
- package/dist/runtime/editor/plugins/Sidebar/index.d.vue.ts +14 -3
- package/dist/runtime/editor/plugins/Sidebar/index.vue +4 -2
- package/dist/runtime/editor/plugins/Sidebar/index.vue.d.ts +14 -3
- package/dist/runtime/editor/providers/analyze.d.ts +43 -0
- package/dist/runtime/editor/providers/analyze.js +78 -0
- package/dist/runtime/editor/providers/animation.d.ts +4 -0
- package/dist/runtime/editor/providers/animation.js +6 -0
- package/dist/runtime/editor/providers/dragdrop.d.ts +55 -0
- package/dist/runtime/editor/providers/dragdrop.js +37 -0
- package/dist/runtime/editor/providers/storage.js +15 -0
- package/dist/runtime/editor/providers/ui.d.ts +6 -0
- package/dist/runtime/editor/providers/ui.js +19 -0
- package/dist/runtime/editor/translations/de.json +73 -61
- package/dist/runtime/editor/translations/fr.json +67 -55
- package/dist/runtime/editor/translations/gsw_CH.json +71 -59
- package/dist/runtime/editor/translations/it.json +67 -55
- package/dist/runtime/editor/types/app.d.ts +4 -2
- package/dist/runtime/editor/types/draggable.d.ts +1 -0
- package/dist/runtime/editor/types/ui.d.ts +1 -1
- package/dist/runtime/helpers/injections.d.ts +1 -1
- package/dist/runtime/types/blockOptions.d.ts +2 -1
- package/dist/runtime/types/definitions.d.ts +4 -0
- package/dist/shared/{editor.CWQIFIEQ.d.mts → editor.BdBm1Z7C.d.mts} +12 -0
- package/dist/types.d.mts +1 -1
- package/package.json +5 -3
- package/dist/modules/charts/runtime/components/Fragment/BlokkliChart.d.vue.ts +0 -3
- package/dist/modules/charts/runtime/components/Fragment/BlokkliChart.vue +0 -29
- package/dist/modules/charts/runtime/components/Fragment/BlokkliChart.vue.d.ts +0 -3
- package/dist/runtime/editor/features/clipboard/List/Item/File.d.vue.ts +0 -4
- package/dist/runtime/editor/features/clipboard/List/Item/File.vue +0 -60
- package/dist/runtime/editor/features/clipboard/List/Item/File.vue.d.ts +0 -4
- package/dist/runtime/editor/features/clipboard/List/Item/Video.d.vue.ts +0 -4
- package/dist/runtime/editor/features/clipboard/List/Item/Video.vue.d.ts +0 -4
- package/dist/runtime/editor/features/clipboard/List/index.d.vue.ts +0 -11
- package/dist/runtime/editor/features/clipboard/List/index.vue +0 -72
- package/dist/runtime/editor/features/clipboard/List/index.vue.d.ts +0 -11
- package/dist/runtime/editor/features/tour/Popup/index.d.vue.ts +0 -9
- package/dist/runtime/editor/features/tour/Popup/index.vue +0 -34
- package/dist/runtime/editor/features/tour/Popup/index.vue.d.ts +0 -9
- package/dist/runtime/editor/providers/dropArea.d.ts +0 -48
- package/dist/runtime/editor/providers/dropArea.js +0 -22
|
@@ -75,6 +75,10 @@
|
|
|
75
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
76
|
"translation": ""
|
|
77
77
|
},
|
|
78
|
+
"agentSidebarTooltipLabel": {
|
|
79
|
+
"source": "@name (AI-Assistant)",
|
|
80
|
+
"translation": ""
|
|
81
|
+
},
|
|
78
82
|
"aiAgentAddBlockDone": {
|
|
79
83
|
"source": "Added @bundle",
|
|
80
84
|
"translation": ""
|
|
@@ -131,6 +135,14 @@
|
|
|
131
135
|
"source": "Always",
|
|
132
136
|
"translation": ""
|
|
133
137
|
},
|
|
138
|
+
"aiAgentAnalyzeContentDone": {
|
|
139
|
+
"source": "Analyzed @count results",
|
|
140
|
+
"translation": "@count résultats analysés"
|
|
141
|
+
},
|
|
142
|
+
"aiAgentAnalyzeContentRunning": {
|
|
143
|
+
"source": "Analyzing content...",
|
|
144
|
+
"translation": "Analyse du contenu..."
|
|
145
|
+
},
|
|
134
146
|
"aiAgentApprove": {
|
|
135
147
|
"source": "Approve",
|
|
136
148
|
"translation": ""
|
|
@@ -191,6 +203,14 @@
|
|
|
191
203
|
"source": "Cancelled",
|
|
192
204
|
"translation": ""
|
|
193
205
|
},
|
|
206
|
+
"aiAgentCheckReadabilityDone": {
|
|
207
|
+
"source": "Checked readability for @count texts",
|
|
208
|
+
"translation": ""
|
|
209
|
+
},
|
|
210
|
+
"aiAgentCheckReadabilityRunning": {
|
|
211
|
+
"source": "Checking readability...",
|
|
212
|
+
"translation": ""
|
|
213
|
+
},
|
|
194
214
|
"aiAgentCompletePlanStep": {
|
|
195
215
|
"source": "Completed: @label",
|
|
196
216
|
"translation": ""
|
|
@@ -295,6 +315,10 @@
|
|
|
295
315
|
"source": "An unexpected error occurred.",
|
|
296
316
|
"translation": ""
|
|
297
317
|
},
|
|
318
|
+
"aiAgentExpandButton": {
|
|
319
|
+
"source": "Show more",
|
|
320
|
+
"translation": ""
|
|
321
|
+
},
|
|
298
322
|
"aiAgentFindBlocksDone": {
|
|
299
323
|
"source": "Found @count blocks",
|
|
300
324
|
"translation": ""
|
|
@@ -427,6 +451,14 @@
|
|
|
427
451
|
"source": "Navigating history...",
|
|
428
452
|
"translation": ""
|
|
429
453
|
},
|
|
454
|
+
"aiAgentIntroPopup": {
|
|
455
|
+
"source": "Need help editing? @name is your AI assistant — it can add, move, and update blocks and much more. Give it a try!",
|
|
456
|
+
"translation": ""
|
|
457
|
+
},
|
|
458
|
+
"aiAgentIntroPopupCta": {
|
|
459
|
+
"source": "Get started",
|
|
460
|
+
"translation": ""
|
|
461
|
+
},
|
|
430
462
|
"aiAgentLoadSkill": {
|
|
431
463
|
"source": "Using skill \"@label\"",
|
|
432
464
|
"translation": ""
|
|
@@ -435,10 +467,6 @@
|
|
|
435
467
|
"source": "@count tools loaded",
|
|
436
468
|
"translation": ""
|
|
437
469
|
},
|
|
438
|
-
"aiAgentMoreOptions": {
|
|
439
|
-
"source": "More options",
|
|
440
|
-
"translation": ""
|
|
441
|
-
},
|
|
442
470
|
"aiAgentMoveBlockDone": {
|
|
443
471
|
"source": "Moved @bundle",
|
|
444
472
|
"translation": ""
|
|
@@ -455,10 +483,6 @@
|
|
|
455
483
|
"source": "Start new conversation",
|
|
456
484
|
"translation": ""
|
|
457
485
|
},
|
|
458
|
-
"aiAgentNewLineHint": {
|
|
459
|
-
"source": "Shift + Enter for new line",
|
|
460
|
-
"translation": ""
|
|
461
|
-
},
|
|
462
486
|
"aiAgentNoConversations": {
|
|
463
487
|
"source": "No past conversations.",
|
|
464
488
|
"translation": ""
|
|
@@ -483,6 +507,10 @@
|
|
|
483
507
|
"source": "Plan completed: @label",
|
|
484
508
|
"translation": ""
|
|
485
509
|
},
|
|
510
|
+
"aiAgentPopupTitle": {
|
|
511
|
+
"source": "AI-Assistant",
|
|
512
|
+
"translation": ""
|
|
513
|
+
},
|
|
486
514
|
"aiAgentProcessing": {
|
|
487
515
|
"source": "Processing...",
|
|
488
516
|
"translation": ""
|
|
@@ -527,6 +555,10 @@
|
|
|
527
555
|
"source": "Retry",
|
|
528
556
|
"translation": ""
|
|
529
557
|
},
|
|
558
|
+
"aiAgentSearchContentRunning": {
|
|
559
|
+
"source": "Searching content...",
|
|
560
|
+
"translation": ""
|
|
561
|
+
},
|
|
530
562
|
"aiAgentSearchLibraryDone": {
|
|
531
563
|
"source": "Searched library",
|
|
532
564
|
"translation": ""
|
|
@@ -707,6 +739,10 @@
|
|
|
707
739
|
"source": "Click the button above to run the analysis.",
|
|
708
740
|
"translation": ""
|
|
709
741
|
},
|
|
742
|
+
"analyzeKeepVisible": {
|
|
743
|
+
"source": "Keep results visible",
|
|
744
|
+
"translation": ""
|
|
745
|
+
},
|
|
710
746
|
"analyzeLastRun": {
|
|
711
747
|
"source": "Last run: @time",
|
|
712
748
|
"translation": ""
|
|
@@ -1023,6 +1059,10 @@
|
|
|
1023
1059
|
"source": "Show total",
|
|
1024
1060
|
"translation": "Afficher le total"
|
|
1025
1061
|
},
|
|
1062
|
+
"chartsEditButton": {
|
|
1063
|
+
"source": "Edit chart...",
|
|
1064
|
+
"translation": ""
|
|
1065
|
+
},
|
|
1026
1066
|
"chartsEditorSaveError": {
|
|
1027
1067
|
"source": "The chart could not be saved.",
|
|
1028
1068
|
"translation": ""
|
|
@@ -1095,10 +1135,6 @@
|
|
|
1095
1135
|
"source": "Preview",
|
|
1096
1136
|
"translation": ""
|
|
1097
1137
|
},
|
|
1098
|
-
"chartsPreviewPlaceholder": {
|
|
1099
|
-
"source": "Click \"Refresh Preview\" to see the chart.",
|
|
1100
|
-
"translation": ""
|
|
1101
|
-
},
|
|
1102
1138
|
"chartsRadarFillOpacity": {
|
|
1103
1139
|
"source": "Fill opacity",
|
|
1104
1140
|
"translation": "Opacité du remplissage"
|
|
@@ -1183,21 +1219,13 @@
|
|
|
1183
1219
|
"source": "Clear input",
|
|
1184
1220
|
"translation": ""
|
|
1185
1221
|
},
|
|
1186
|
-
"clipboard": {
|
|
1187
|
-
"source": "Clipboard",
|
|
1188
|
-
"translation": "Presse-papiers"
|
|
1189
|
-
},
|
|
1190
1222
|
"clipboardCopyShortcutHelp": {
|
|
1191
1223
|
"source": "Copy selected blocks",
|
|
1192
1224
|
"translation": ""
|
|
1193
1225
|
},
|
|
1194
|
-
"
|
|
1195
|
-
"source": "No
|
|
1196
|
-
"translation": "
|
|
1197
|
-
},
|
|
1198
|
-
"clipboardExplanation": {
|
|
1199
|
-
"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>",
|
|
1200
|
-
"translation": "<p>\n Utilisez Ctrl-V sur la page pour coller du contenu. Ils\n seront alors affichés ici.\n </p>\n <p>\n Utilisez Ctrl-F pour rechercher du contenu existant et le copier\n dans le presse-papiers.\n </p>"
|
|
1226
|
+
"clipboardNoCommonBundle": {
|
|
1227
|
+
"source": "No common block type for these files.",
|
|
1228
|
+
"translation": ""
|
|
1201
1229
|
},
|
|
1202
1230
|
"clipboardPasteDescription": {
|
|
1203
1231
|
"source": "Paste blocks from clipboard",
|
|
@@ -1207,40 +1235,28 @@
|
|
|
1207
1235
|
"source": "Failed to paste:",
|
|
1208
1236
|
"translation": ""
|
|
1209
1237
|
},
|
|
1210
|
-
"
|
|
1211
|
-
"source": "
|
|
1212
|
-
"translation": ""
|
|
1213
|
-
},
|
|
1214
|
-
"clipboardPasteErrorAllowedBundlesSingle": {
|
|
1215
|
-
"source": "Block type \"@types\" is not allowed here.",
|
|
1216
|
-
"translation": ""
|
|
1217
|
-
},
|
|
1218
|
-
"clipboardPasteErrorAllowedFragmentsMultiple": {
|
|
1219
|
-
"source": "Fragments (@types) are not allowed here.",
|
|
1238
|
+
"clipboardPasteShortcutHelp": {
|
|
1239
|
+
"source": "Paste text, image or copied blocks",
|
|
1220
1240
|
"translation": ""
|
|
1221
1241
|
},
|
|
1222
|
-
"
|
|
1223
|
-
"source": "
|
|
1242
|
+
"clipboardTypeFile": {
|
|
1243
|
+
"source": "File",
|
|
1224
1244
|
"translation": ""
|
|
1225
1245
|
},
|
|
1226
|
-
"
|
|
1227
|
-
"source": "
|
|
1246
|
+
"clipboardTypeImage": {
|
|
1247
|
+
"source": "Image",
|
|
1228
1248
|
"translation": ""
|
|
1229
1249
|
},
|
|
1230
|
-
"
|
|
1231
|
-
"source": "
|
|
1250
|
+
"clipboardTypeText": {
|
|
1251
|
+
"source": "Text",
|
|
1232
1252
|
"translation": ""
|
|
1233
1253
|
},
|
|
1234
|
-
"
|
|
1235
|
-
"source": "
|
|
1236
|
-
"translation": "Paste text or media here"
|
|
1237
|
-
},
|
|
1238
|
-
"clipboardPasteShortcutHelp": {
|
|
1239
|
-
"source": "Paste text, image or copied blocks",
|
|
1254
|
+
"clipboardTypeVideo": {
|
|
1255
|
+
"source": "Video",
|
|
1240
1256
|
"translation": ""
|
|
1241
1257
|
},
|
|
1242
|
-
"
|
|
1243
|
-
"source": "
|
|
1258
|
+
"clipboardUnsupportedFileType": {
|
|
1259
|
+
"source": "This file type is not supported.",
|
|
1244
1260
|
"translation": ""
|
|
1245
1261
|
},
|
|
1246
1262
|
"close": {
|
|
@@ -1603,14 +1619,6 @@
|
|
|
1603
1619
|
"source": "Clipboard",
|
|
1604
1620
|
"translation": "Presse-papiers"
|
|
1605
1621
|
},
|
|
1606
|
-
"feature_clipboard_setting_openSidebarOnPaste_description": {
|
|
1607
|
-
"source": "Automatically opens the sidebar when pasting content from the clipboard.",
|
|
1608
|
-
"translation": "Ouvre automatiquement l'encadré lors du collage de contenu depuis le presse-papiers."
|
|
1609
|
-
},
|
|
1610
|
-
"feature_clipboard_setting_openSidebarOnPaste_label": {
|
|
1611
|
-
"source": "Open sidebar when pasting",
|
|
1612
|
-
"translation": "Ouvrir l'encadré lors du collage"
|
|
1613
|
-
},
|
|
1614
1622
|
"feature_command-palette_description": {
|
|
1615
1623
|
"source": "Provides a command palette with search to access most UI features with a keyboard.",
|
|
1616
1624
|
"translation": "Fournit une palette de commandes avec recherche pour accéder à la plupart des fonctionnalités de l'interface avec le clavier."
|
|
@@ -2887,6 +2895,10 @@
|
|
|
2887
2895
|
"source": "Successfully created template \"@label\"",
|
|
2888
2896
|
"translation": ""
|
|
2889
2897
|
},
|
|
2898
|
+
"textareaNewLineHint": {
|
|
2899
|
+
"source": "Shift + Enter for new line",
|
|
2900
|
+
"translation": ""
|
|
2901
|
+
},
|
|
2890
2902
|
"theme": {
|
|
2891
2903
|
"source": "Theme",
|
|
2892
2904
|
"translation": ""
|
|
@@ -75,6 +75,10 @@
|
|
|
75
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
76
|
"translation": "<p>Do gsehsch d'Lischt vo allne verfüegbare Blöck wo chönne drzuegfüegt wärde. Zieh s'Symbol in d'Sitte zum e Block drzuefüege.</p><p>Wenn e Block usgwählt isch, sin gwüssi Blöck uusggruet. Das zeigt aa, welchi Blöck in oder noch däm usgwählte Block chönne platziert wärde.</p>"
|
|
77
77
|
},
|
|
78
|
+
"agentSidebarTooltipLabel": {
|
|
79
|
+
"source": "@name (AI-Assistant)",
|
|
80
|
+
"translation": ""
|
|
81
|
+
},
|
|
78
82
|
"aiAgentAddBlockDone": {
|
|
79
83
|
"source": "Added @bundle",
|
|
80
84
|
"translation": ""
|
|
@@ -131,6 +135,14 @@
|
|
|
131
135
|
"source": "Always",
|
|
132
136
|
"translation": ""
|
|
133
137
|
},
|
|
138
|
+
"aiAgentAnalyzeContentDone": {
|
|
139
|
+
"source": "Analyzed @count results",
|
|
140
|
+
"translation": "@count Ergebnis analysiert"
|
|
141
|
+
},
|
|
142
|
+
"aiAgentAnalyzeContentRunning": {
|
|
143
|
+
"source": "Analyzing content...",
|
|
144
|
+
"translation": "Inhalt wird analysiert..."
|
|
145
|
+
},
|
|
134
146
|
"aiAgentApprove": {
|
|
135
147
|
"source": "Approve",
|
|
136
148
|
"translation": ""
|
|
@@ -191,6 +203,14 @@
|
|
|
191
203
|
"source": "Cancelled",
|
|
192
204
|
"translation": ""
|
|
193
205
|
},
|
|
206
|
+
"aiAgentCheckReadabilityDone": {
|
|
207
|
+
"source": "Checked readability for @count texts",
|
|
208
|
+
"translation": ""
|
|
209
|
+
},
|
|
210
|
+
"aiAgentCheckReadabilityRunning": {
|
|
211
|
+
"source": "Checking readability...",
|
|
212
|
+
"translation": ""
|
|
213
|
+
},
|
|
194
214
|
"aiAgentCompletePlanStep": {
|
|
195
215
|
"source": "Completed: @label",
|
|
196
216
|
"translation": ""
|
|
@@ -295,6 +315,10 @@
|
|
|
295
315
|
"source": "An unexpected error occurred.",
|
|
296
316
|
"translation": ""
|
|
297
317
|
},
|
|
318
|
+
"aiAgentExpandButton": {
|
|
319
|
+
"source": "Show more",
|
|
320
|
+
"translation": ""
|
|
321
|
+
},
|
|
298
322
|
"aiAgentFindBlocksDone": {
|
|
299
323
|
"source": "Found @count blocks",
|
|
300
324
|
"translation": ""
|
|
@@ -427,6 +451,14 @@
|
|
|
427
451
|
"source": "Navigating history...",
|
|
428
452
|
"translation": ""
|
|
429
453
|
},
|
|
454
|
+
"aiAgentIntroPopup": {
|
|
455
|
+
"source": "Need help editing? @name is your AI assistant — it can add, move, and update blocks and much more. Give it a try!",
|
|
456
|
+
"translation": ""
|
|
457
|
+
},
|
|
458
|
+
"aiAgentIntroPopupCta": {
|
|
459
|
+
"source": "Get started",
|
|
460
|
+
"translation": ""
|
|
461
|
+
},
|
|
430
462
|
"aiAgentLoadSkill": {
|
|
431
463
|
"source": "Using skill \"@label\"",
|
|
432
464
|
"translation": ""
|
|
@@ -435,10 +467,6 @@
|
|
|
435
467
|
"source": "@count tools loaded",
|
|
436
468
|
"translation": ""
|
|
437
469
|
},
|
|
438
|
-
"aiAgentMoreOptions": {
|
|
439
|
-
"source": "More options",
|
|
440
|
-
"translation": ""
|
|
441
|
-
},
|
|
442
470
|
"aiAgentMoveBlockDone": {
|
|
443
471
|
"source": "Moved @bundle",
|
|
444
472
|
"translation": ""
|
|
@@ -455,10 +483,6 @@
|
|
|
455
483
|
"source": "Start new conversation",
|
|
456
484
|
"translation": ""
|
|
457
485
|
},
|
|
458
|
-
"aiAgentNewLineHint": {
|
|
459
|
-
"source": "Shift + Enter for new line",
|
|
460
|
-
"translation": ""
|
|
461
|
-
},
|
|
462
486
|
"aiAgentNoConversations": {
|
|
463
487
|
"source": "No past conversations.",
|
|
464
488
|
"translation": ""
|
|
@@ -483,6 +507,10 @@
|
|
|
483
507
|
"source": "Plan completed: @label",
|
|
484
508
|
"translation": ""
|
|
485
509
|
},
|
|
510
|
+
"aiAgentPopupTitle": {
|
|
511
|
+
"source": "AI-Assistant",
|
|
512
|
+
"translation": ""
|
|
513
|
+
},
|
|
486
514
|
"aiAgentProcessing": {
|
|
487
515
|
"source": "Processing...",
|
|
488
516
|
"translation": ""
|
|
@@ -527,6 +555,10 @@
|
|
|
527
555
|
"source": "Retry",
|
|
528
556
|
"translation": ""
|
|
529
557
|
},
|
|
558
|
+
"aiAgentSearchContentRunning": {
|
|
559
|
+
"source": "Searching content...",
|
|
560
|
+
"translation": ""
|
|
561
|
+
},
|
|
530
562
|
"aiAgentSearchLibraryDone": {
|
|
531
563
|
"source": "Searched library",
|
|
532
564
|
"translation": ""
|
|
@@ -707,6 +739,10 @@
|
|
|
707
739
|
"source": "Click the button above to run the analysis.",
|
|
708
740
|
"translation": ""
|
|
709
741
|
},
|
|
742
|
+
"analyzeKeepVisible": {
|
|
743
|
+
"source": "Keep results visible",
|
|
744
|
+
"translation": ""
|
|
745
|
+
},
|
|
710
746
|
"analyzeLastRun": {
|
|
711
747
|
"source": "Last run: @time",
|
|
712
748
|
"translation": "Zletscht usgfüehrt: @time"
|
|
@@ -1023,6 +1059,10 @@
|
|
|
1023
1059
|
"source": "Show total",
|
|
1024
1060
|
"translation": "Total aazeige"
|
|
1025
1061
|
},
|
|
1062
|
+
"chartsEditButton": {
|
|
1063
|
+
"source": "Edit chart...",
|
|
1064
|
+
"translation": ""
|
|
1065
|
+
},
|
|
1026
1066
|
"chartsEditorSaveError": {
|
|
1027
1067
|
"source": "The chart could not be saved.",
|
|
1028
1068
|
"translation": ""
|
|
@@ -1095,10 +1135,6 @@
|
|
|
1095
1135
|
"source": "Preview",
|
|
1096
1136
|
"translation": ""
|
|
1097
1137
|
},
|
|
1098
|
-
"chartsPreviewPlaceholder": {
|
|
1099
|
-
"source": "Click \"Refresh Preview\" to see the chart.",
|
|
1100
|
-
"translation": ""
|
|
1101
|
-
},
|
|
1102
1138
|
"chartsRadarFillOpacity": {
|
|
1103
1139
|
"source": "Fill opacity",
|
|
1104
1140
|
"translation": "Fülldeckchraft"
|
|
@@ -1183,21 +1219,13 @@
|
|
|
1183
1219
|
"source": "Clear input",
|
|
1184
1220
|
"translation": ""
|
|
1185
1221
|
},
|
|
1186
|
-
"clipboard": {
|
|
1187
|
-
"source": "Clipboard",
|
|
1188
|
-
"translation": "Zwüscheablag"
|
|
1189
|
-
},
|
|
1190
1222
|
"clipboardCopyShortcutHelp": {
|
|
1191
1223
|
"source": "Copy selected blocks",
|
|
1192
1224
|
"translation": "Usgwählti Blöck kopiere"
|
|
1193
1225
|
},
|
|
1194
|
-
"
|
|
1195
|
-
"source": "No
|
|
1196
|
-
"translation": "
|
|
1197
|
-
},
|
|
1198
|
-
"clipboardExplanation": {
|
|
1199
|
-
"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>",
|
|
1200
|
-
"translation": "<p>Bruch Ctrl+V zum öbbis iifüege. D'Inhält wärde denn do aazeigt.</p><p>Bruch Ctrl+F zum bestehendi Inhält z'sueche und ind Zwüscheablag iizfüege. </p>"
|
|
1226
|
+
"clipboardNoCommonBundle": {
|
|
1227
|
+
"source": "No common block type for these files.",
|
|
1228
|
+
"translation": ""
|
|
1201
1229
|
},
|
|
1202
1230
|
"clipboardPasteDescription": {
|
|
1203
1231
|
"source": "Paste blocks from clipboard",
|
|
@@ -1207,41 +1235,29 @@
|
|
|
1207
1235
|
"source": "Failed to paste:",
|
|
1208
1236
|
"translation": "Iifüege het nid funktioniert:"
|
|
1209
1237
|
},
|
|
1210
|
-
"
|
|
1211
|
-
"source": "
|
|
1212
|
-
"translation": "
|
|
1213
|
-
},
|
|
1214
|
-
"clipboardPasteErrorAllowedBundlesSingle": {
|
|
1215
|
-
"source": "Block type \"@types\" is not allowed here.",
|
|
1216
|
-
"translation": "Block-Typ «@types» isch do nid erlaubt."
|
|
1238
|
+
"clipboardPasteShortcutHelp": {
|
|
1239
|
+
"source": "Paste text, image or copied blocks",
|
|
1240
|
+
"translation": "Teggscht, Bild oder kopierti Blöck iifüege"
|
|
1217
1241
|
},
|
|
1218
|
-
"
|
|
1219
|
-
"source": "
|
|
1242
|
+
"clipboardTypeFile": {
|
|
1243
|
+
"source": "File",
|
|
1220
1244
|
"translation": ""
|
|
1221
1245
|
},
|
|
1222
|
-
"
|
|
1223
|
-
"source": "
|
|
1246
|
+
"clipboardTypeImage": {
|
|
1247
|
+
"source": "Image",
|
|
1224
1248
|
"translation": ""
|
|
1225
1249
|
},
|
|
1226
|
-
"
|
|
1227
|
-
"source": "
|
|
1228
|
-
"translation": "
|
|
1229
|
-
},
|
|
1230
|
-
"clipboardPasteErrorOneField": {
|
|
1231
|
-
"source": "Pasting is only possible into one field at a time.",
|
|
1232
|
-
"translation": "Iifüege isch nur in eis Fäld uf s'Mol möglich."
|
|
1233
|
-
},
|
|
1234
|
-
"clipboardPastePlaceholder": {
|
|
1235
|
-
"source": "Paste text or media here",
|
|
1236
|
-
"translation": "Teggscht oder Medie iifüege"
|
|
1250
|
+
"clipboardTypeText": {
|
|
1251
|
+
"source": "Text",
|
|
1252
|
+
"translation": ""
|
|
1237
1253
|
},
|
|
1238
|
-
"
|
|
1239
|
-
"source": "
|
|
1240
|
-
"translation": "
|
|
1254
|
+
"clipboardTypeVideo": {
|
|
1255
|
+
"source": "Video",
|
|
1256
|
+
"translation": ""
|
|
1241
1257
|
},
|
|
1242
|
-
"
|
|
1243
|
-
"source": "
|
|
1244
|
-
"translation": "
|
|
1258
|
+
"clipboardUnsupportedFileType": {
|
|
1259
|
+
"source": "This file type is not supported.",
|
|
1260
|
+
"translation": ""
|
|
1245
1261
|
},
|
|
1246
1262
|
"close": {
|
|
1247
1263
|
"source": "Close",
|
|
@@ -1603,14 +1619,6 @@
|
|
|
1603
1619
|
"source": "Clipboard",
|
|
1604
1620
|
"translation": "Zwüscheablag"
|
|
1605
1621
|
},
|
|
1606
|
-
"feature_clipboard_setting_openSidebarOnPaste_description": {
|
|
1607
|
-
"source": "Automatically opens the sidebar when pasting content from the clipboard.",
|
|
1608
|
-
"translation": "Macht d'Sitteleischte automatisch uf, wenn Inhält us dr Zwüscheablag iigfüegt wärde."
|
|
1609
|
-
},
|
|
1610
|
-
"feature_clipboard_setting_openSidebarOnPaste_label": {
|
|
1611
|
-
"source": "Open sidebar when pasting",
|
|
1612
|
-
"translation": "Sitteleischte bim Iifüege us dr Zwüscheablag ufmache"
|
|
1613
|
-
},
|
|
1614
1622
|
"feature_command-palette_description": {
|
|
1615
1623
|
"source": "Provides a command palette with search to access most UI features with a keyboard.",
|
|
1616
1624
|
"translation": "Stellt e Befehlspalette mit Suechfunktion bereit zum di meischte UI-Funktione mit dr Tastatuur z'verwände."
|
|
@@ -2887,6 +2895,10 @@
|
|
|
2887
2895
|
"source": "Successfully created template \"@label\"",
|
|
2888
2896
|
"translation": ""
|
|
2889
2897
|
},
|
|
2898
|
+
"textareaNewLineHint": {
|
|
2899
|
+
"source": "Shift + Enter for new line",
|
|
2900
|
+
"translation": ""
|
|
2901
|
+
},
|
|
2890
2902
|
"theme": {
|
|
2891
2903
|
"source": "Theme",
|
|
2892
2904
|
"translation": "Farbe"
|