@blokkli/editor 2.0.0-alpha.53 → 2.0.0-alpha.55
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 -1
- package/dist/global/constants/index.js +1 -1
- package/dist/global/types/features.d.ts +5 -9
- package/dist/module.json +1 -1
- package/dist/module.mjs +28 -35
- package/dist/modules/agent/index.mjs +46 -29
- package/dist/modules/agent/runtime/app/composables/agentProvider.js +2 -1
- package/dist/modules/agent/runtime/app/features/agent/Container.d.vue.ts +19 -0
- package/dist/modules/agent/runtime/app/features/agent/Container.vue +195 -0
- package/dist/modules/agent/runtime/app/features/agent/Container.vue.d.ts +19 -0
- package/dist/modules/agent/runtime/app/features/agent/index.vue +18 -164
- package/dist/modules/agent/runtime/app/features/agent/types.d.ts +9 -0
- package/dist/modules/agent/runtime/app/helpers/index.d.ts +7 -3
- package/dist/modules/agent/runtime/app/helpers/index.js +9 -3
- package/dist/modules/agent/runtime/app/prompts/fixReadability.js +51 -44
- package/dist/modules/agent/runtime/app/tools/add_media_paragraph/index.js +2 -1
- package/dist/modules/agent/runtime/app/tools/check_readability/index.js +1 -0
- package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/Component.vue +1 -1
- package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/index.js +6 -1
- package/dist/modules/agent/runtime/app/tools/get_readability_issues/index.js +1 -0
- package/dist/modules/agent/runtime/app/types/index.d.ts +12 -0
- package/dist/modules/charts/runtime/components/ChartRenderer/index.vue +34 -18
- package/dist/modules/drupal/graphql/base/fragment.paragraphsBlokkliEditState.graphql +7 -0
- package/dist/modules/drupal/graphql/features/droppable-field-items.graphql +22 -0
- package/dist/modules/drupal/graphql/features/import-existing.graphql +0 -25
- package/dist/modules/drupal/graphql/features/workspace.graphql +9 -2
- package/dist/modules/drupal/graphql/mutations/update_droppable_field.graphql +21 -0
- package/dist/modules/drupal/index.mjs +6 -2
- package/dist/modules/drupal/runtime/adapter/index.js +75 -39
- package/dist/modules/readability/index.d.mts +11 -0
- package/dist/modules/readability/index.mjs +17 -0
- package/dist/modules/readability/runtime/adapter-extension.d.ts +2 -0
- package/dist/modules/readability/runtime/adapter-extension.js +5 -0
- package/dist/modules/readability/runtime/analyzers/builtin.d.ts +10 -0
- package/dist/modules/readability/runtime/analyzers/builtin.js +340 -0
- package/dist/runtime/components/BlokkliEditable.vue +10 -90
- package/dist/runtime/components/BlokkliItem.vue +2 -2
- package/dist/runtime/components/BlokkliProvider.vue +11 -5
- package/dist/runtime/composables/defineBlokkli.js +3 -1
- package/dist/runtime/composables/defineBlokkliFeature.d.ts +2 -3
- package/dist/runtime/editor/components/Actions/index.vue +1 -1
- package/dist/runtime/editor/components/AnimationCanvas/index.vue +41 -6
- package/dist/runtime/editor/components/AppMenu/Inner.d.vue.ts +7 -0
- package/dist/runtime/editor/components/AppMenu/Inner.vue +83 -0
- package/dist/runtime/editor/components/AppMenu/Inner.vue.d.ts +7 -0
- package/dist/runtime/editor/components/AppMenu/index.vue +5 -79
- package/dist/runtime/editor/components/ArtboardTooltip/index.d.vue.ts +1 -0
- package/dist/runtime/editor/components/ArtboardTooltip/index.vue +9 -1
- package/dist/runtime/editor/components/ArtboardTooltip/index.vue.d.ts +1 -0
- package/dist/runtime/editor/components/BlockPreviewItem/index.vue +12 -6
- package/dist/runtime/editor/components/BlokkliEditableEdit.d.vue.ts +23 -0
- package/dist/runtime/editor/components/BlokkliEditableEdit.vue +95 -0
- package/dist/runtime/editor/components/BlokkliEditableEdit.vue.d.ts +23 -0
- package/dist/runtime/editor/components/BlokkliRootErrorBoundary.d.vue.ts +4 -1
- package/dist/runtime/editor/components/BlokkliRootErrorBoundary.vue +4 -1
- package/dist/runtime/editor/components/BlokkliRootErrorBoundary.vue.d.ts +4 -1
- package/dist/runtime/editor/components/BundleSelector/index.vue +10 -5
- package/dist/runtime/editor/components/Dialog/index.vue +0 -77
- package/dist/runtime/editor/components/EditIndicator.d.vue.ts +1 -0
- package/dist/runtime/editor/components/EditIndicator.vue +3 -2
- package/dist/runtime/editor/components/EditIndicator.vue.d.ts +1 -0
- package/dist/runtime/editor/components/EditProvider.d.vue.ts +3 -1
- package/dist/runtime/editor/components/EditProvider.vue +13 -4
- package/dist/runtime/editor/components/EditProvider.vue.d.ts +3 -1
- package/dist/runtime/editor/components/FeaturesRenderer/index.vue +1 -4
- package/dist/runtime/editor/components/Form/Text/index.d.vue.ts +5 -0
- package/dist/runtime/editor/components/Form/Text/index.vue +10 -4
- package/dist/runtime/editor/components/Form/Text/index.vue.d.ts +5 -0
- package/dist/runtime/editor/components/FormOverlay/index.vue +0 -24
- package/dist/runtime/editor/components/GrowOnly/index.d.vue.ts +10 -0
- package/dist/runtime/editor/components/GrowOnly/index.vue +34 -0
- package/dist/runtime/editor/components/GrowOnly/index.vue.d.ts +10 -0
- package/dist/runtime/editor/components/Konami/Game/index.vue +120 -0
- package/dist/runtime/editor/components/Konami/index.vue +7 -124
- package/dist/runtime/editor/components/Loading/index.vue +1 -1
- package/dist/runtime/editor/components/PluginConfigForm/Text/index.vue +1 -0
- package/dist/runtime/editor/components/PluginConfigForm/index.vue +1 -0
- package/dist/runtime/editor/components/PreviewProvider.d.vue.ts +3 -1
- package/dist/runtime/editor/components/PreviewProvider.vue +6 -1
- package/dist/runtime/editor/components/PreviewProvider.vue.d.ts +3 -1
- package/dist/runtime/editor/components/Toolbar/index.vue +1 -1
- package/dist/runtime/editor/components/index.d.ts +11 -10
- package/dist/runtime/editor/components/index.js +32 -10
- package/dist/runtime/editor/composables/defineRenderer.d.ts +2 -2
- package/dist/runtime/editor/composables/defineRenderer.js +8 -3
- package/dist/runtime/editor/css/output.css +1 -1
- package/dist/runtime/editor/events/index.d.ts +6 -0
- package/dist/runtime/editor/features/analyze/Main.d.vue.ts +1 -0
- package/dist/runtime/editor/features/analyze/Main.vue +9 -8
- package/dist/runtime/editor/features/analyze/Main.vue.d.ts +1 -0
- package/dist/runtime/editor/features/analyze/Results/ResultsItem.vue +7 -15
- package/dist/runtime/editor/features/analyze/Results/ResultsItemNodesTarget.vue +4 -2
- package/dist/runtime/editor/features/analyze/analyzers/axe.js +9 -9
- package/dist/runtime/editor/features/analyze/analyzers/readability.js +7 -7
- package/dist/runtime/editor/features/analyze/index.vue +26 -26
- package/dist/runtime/editor/features/analyze/readability/types.d.ts +18 -14
- package/dist/runtime/editor/features/anchors/index.vue +6 -2
- package/dist/runtime/editor/features/artboard/Renderer.vue +3 -2
- package/dist/runtime/editor/features/block-scheduler/Dialog/index.vue +78 -0
- package/dist/runtime/editor/features/block-scheduler/index.vue +34 -89
- package/dist/runtime/editor/features/breadcrumbs/index.vue +2 -2
- package/dist/runtime/editor/features/changelog/changelog.json +8 -0
- package/dist/runtime/editor/features/changelog/index.vue +10 -8
- package/dist/runtime/editor/features/clipboard/DropElement/index.vue +152 -0
- package/dist/runtime/editor/features/clipboard/index.vue +13 -159
- package/dist/runtime/editor/features/command-palette/Palette/Item/index.vue +0 -28
- package/dist/runtime/editor/features/command-palette/Palette/index.vue +17 -6
- package/dist/runtime/editor/features/command-palette/index.vue +7 -2
- package/dist/runtime/editor/features/comments/index.vue +6 -3
- package/dist/runtime/editor/features/debug/Main.vue +168 -0
- package/dist/runtime/editor/features/debug/Section/Features.vue +1 -2
- package/dist/runtime/editor/features/debug/index.vue +6 -170
- package/dist/runtime/editor/features/dev-mode/index.vue +2 -1
- package/dist/runtime/editor/features/diff/index.vue +6 -2
- package/dist/runtime/editor/features/dragging-overlay/Renderer/index.vue +15 -16
- package/dist/runtime/editor/features/dragging-overlay/index.vue +4 -3
- package/dist/runtime/editor/features/droppable-field-edit/Overlay/index.d.vue.ts +15 -0
- package/dist/runtime/editor/features/droppable-field-edit/Overlay/index.vue +547 -0
- package/dist/runtime/editor/features/droppable-field-edit/Overlay/index.vue.d.ts +15 -0
- package/dist/runtime/editor/features/droppable-field-edit/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/droppable-field-edit/index.vue +231 -0
- package/dist/runtime/editor/features/droppable-field-edit/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/droppable-field-edit/types.d.ts +70 -0
- package/dist/runtime/editor/features/editable-field/Overlay/Frame/index.d.vue.ts +1 -0
- package/dist/runtime/editor/features/editable-field/Overlay/Frame/index.vue +34 -21
- package/dist/runtime/editor/features/editable-field/Overlay/Frame/index.vue.d.ts +1 -0
- package/dist/runtime/editor/features/editable-field/Overlay/Plaintext/index.d.vue.ts +2 -2
- package/dist/runtime/editor/features/editable-field/Overlay/Plaintext/index.vue.d.ts +2 -2
- package/dist/runtime/editor/features/editable-field/Overlay/ReadabilityIndicator/ChunkOverlay.vue +1 -1
- package/dist/runtime/editor/features/editable-field/Overlay/ReadabilityIndicator/index.vue +6 -13
- package/dist/runtime/editor/features/editable-field/Overlay/index.vue +4 -4
- package/dist/runtime/editor/features/fragments/index.vue +9 -4
- package/dist/runtime/editor/features/help/index.vue +7 -2
- package/dist/runtime/editor/features/highlights/Renderer/index.vue +11 -17
- package/dist/runtime/editor/features/history/index.vue +3 -2
- package/dist/runtime/editor/features/hover/Renderer/index.vue +87 -36
- package/dist/runtime/editor/features/hover/Renderer/vertex.glsl +5 -5
- package/dist/runtime/editor/features/hover/index.vue +1 -1
- package/dist/runtime/editor/features/import-existing/Dialog/Item.d.vue.ts +5 -0
- package/dist/runtime/editor/features/import-existing/Dialog/Item.vue +55 -0
- package/dist/runtime/editor/features/import-existing/Dialog/Item.vue.d.ts +5 -0
- package/dist/runtime/editor/features/import-existing/Dialog/index.d.vue.ts +7 -3
- package/dist/runtime/editor/features/import-existing/Dialog/index.vue +107 -65
- package/dist/runtime/editor/features/import-existing/Dialog/index.vue.d.ts +7 -3
- package/dist/runtime/editor/features/import-existing/index.vue +19 -6
- package/dist/runtime/editor/features/import-existing/types.d.ts +0 -11
- package/dist/runtime/editor/features/library/ReusableDialog/index.vue +7 -33
- package/dist/runtime/editor/features/library/index.vue +14 -5
- package/dist/runtime/editor/features/media-library/Library/index.vue +3 -1
- package/dist/runtime/editor/features/media-library/index.vue +9 -2
- package/dist/runtime/editor/features/media-library/types.d.ts +2 -0
- package/dist/runtime/editor/features/multi-select/Renderer/index.vue +16 -15
- package/dist/runtime/editor/features/multi-select/index.vue +9 -3
- package/dist/runtime/editor/features/options/Form/Radios/index.vue +4 -8
- package/dist/runtime/editor/features/options/index.vue +7 -2
- package/dist/runtime/editor/features/preview-grant/index.vue +8 -2
- package/dist/runtime/editor/features/publish/index.vue +3 -2
- package/dist/runtime/editor/features/referenced-entities/index.vue +7 -2
- package/dist/runtime/editor/features/responsive-preview/index.vue +13 -11
- package/dist/runtime/editor/features/search/index.vue +6 -2
- package/dist/runtime/editor/features/selection/AddButtons/Renderer/index.vue +6 -11
- package/dist/runtime/editor/features/selection/Renderer/index.vue +9 -14
- package/dist/runtime/editor/features/selection/index.vue +7 -4
- package/dist/runtime/editor/features/settings/index.vue +8 -3
- package/dist/runtime/editor/features/structure/index.vue +3 -2
- package/dist/runtime/editor/features/templates/CreateDialog/index.vue +1 -0
- package/dist/runtime/editor/features/templates/index.vue +14 -6
- package/dist/runtime/editor/features/theme/index.vue +2 -1
- package/dist/runtime/editor/features/tour/index.vue +6 -2
- package/dist/runtime/editor/features/translations/index.vue +7 -4
- package/dist/runtime/editor/features/workspace/Overlay/Item.d.vue.ts +3 -0
- package/dist/runtime/editor/features/workspace/Overlay/Item.vue +49 -0
- package/dist/runtime/editor/features/workspace/Overlay/Item.vue.d.ts +3 -0
- package/dist/runtime/editor/features/workspace/Overlay/index.vue +16 -104
- package/dist/runtime/editor/features/workspace/index.vue +6 -2
- package/dist/runtime/editor/helpers/webgl/index.d.ts +3 -2
- package/dist/runtime/editor/helpers/webgl/index.js +2 -3
- package/dist/runtime/editor/libraries/fzf.d.ts +3 -0
- package/dist/runtime/editor/libraries/fzf.js +7 -0
- package/dist/runtime/editor/libraries/twgl.d.ts +10 -0
- package/dist/runtime/editor/libraries/twgl.js +14 -0
- package/dist/runtime/editor/plugins/DebugOverlay/index.vue +3 -1
- package/dist/runtime/editor/plugins/Sidebar/Detached/index.vue +39 -18
- package/dist/runtime/editor/plugins/Sidebar/index.d.vue.ts +2 -0
- package/dist/runtime/editor/plugins/Sidebar/index.vue +12 -4
- package/dist/runtime/editor/plugins/Sidebar/index.vue.d.ts +2 -0
- package/dist/runtime/editor/providers/animation.d.ts +5 -10
- package/dist/runtime/editor/providers/animation.js +10 -8
- package/dist/runtime/editor/providers/directive.d.ts +11 -0
- package/dist/runtime/editor/providers/directive.js +16 -0
- package/dist/runtime/editor/providers/features.d.ts +3 -3
- package/dist/runtime/editor/providers/features.js +1 -1
- package/dist/runtime/editor/providers/fieldValue.d.ts +27 -0
- package/dist/runtime/editor/providers/fieldValue.js +21 -1
- package/dist/runtime/editor/providers/keyboard.js +6 -3
- package/dist/runtime/editor/providers/readability.d.ts +28 -4
- package/dist/runtime/editor/providers/readability.js +30 -46
- package/dist/runtime/editor/providers/selection.d.ts +8 -0
- package/dist/runtime/editor/providers/selection.js +6 -0
- package/dist/runtime/editor/providers/texts.d.ts +1 -3
- package/dist/runtime/editor/providers/texts.js +34 -37
- package/dist/runtime/editor/providers/workspaces.d.ts +93 -0
- package/dist/runtime/editor/providers/workspaces.js +76 -0
- package/dist/runtime/editor/translations/de.json +918 -3616
- package/dist/runtime/editor/translations/fr.json +250 -3616
- package/dist/runtime/editor/translations/gsw_CH.json +918 -3616
- package/dist/runtime/editor/translations/it.json +250 -3616
- package/dist/runtime/editor/types/app.d.ts +2 -0
- package/dist/runtime/editor/types/features.d.ts +1 -1
- package/dist/runtime/editor/types/state.d.ts +7 -0
- package/dist/runtime/helpers/injections.d.ts +6 -0
- package/dist/runtime/helpers/injections.js +3 -0
- package/dist/runtime/types/definitions.d.ts +4 -0
- package/package.json +14 -4
- package/dist/runtime/editor/features/analyze/readability/builtinAnalyzer.d.ts +0 -6
- package/dist/runtime/editor/features/analyze/readability/builtinAnalyzer.js +0 -216
- package/dist/runtime/editor/features/workspace/types.d.ts +0 -59
- /package/dist/runtime/editor/features/{workspace → droppable-field-edit}/types.js +0 -0
|
@@ -1,3618 +1,920 @@
|
|
|
1
1
|
{
|
|
2
|
-
"actions":
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
"
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
"
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
"
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
"
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
"
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
"
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
"
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
"
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
"
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
"
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
"
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
"
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
"
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
"
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
"
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
"
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
"
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
"
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
"
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
"
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
"
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
"
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
"
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
"
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
"
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
"
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
"
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
"
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
"
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
"
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
"
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
"
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
"
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
"
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
"
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
"
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
"
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
"
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
"
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
"
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
"
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
"
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
"
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
"
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
"
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
"
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
"
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
"
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
"
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
"
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
"
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
"
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
"
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
"
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
"
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
"
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
"
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
"
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
"
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
"
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
"
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
"
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
"
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
"
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
"
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
"
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
"
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
"
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
"
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
"
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
"
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
"
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
"
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
"
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
"
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
"
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
"
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
"
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
"
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
"
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
"
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
"
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
"
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
"
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
"
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
"
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
"
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
"
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
"
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
"
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
"
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
"
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
"
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
"
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
"
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
"
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
"
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
"
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
"
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
"
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
"
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
"
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
"
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
"
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
"
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
"
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
"
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
"
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
"
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
"
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
"
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
"
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
"
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
"
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
"
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
"
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
"
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
"
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
"
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
"
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
"
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
"
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
"
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
"
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
"
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
"
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
"
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
"
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
"
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
"
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
"
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
"
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
"
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
"
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
"
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
"
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
"
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
"
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
"
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
"
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
"
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
"
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
"
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
"
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
"
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
"
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
"
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
"
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
"
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
"
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
"
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
"
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
"
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
"
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
"
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
"
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
"
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
"
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
"
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
"
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
"
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
"
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
"
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
"
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
"
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
"
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
"
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
"
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
"
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
"
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
"
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
"
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
"
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
"
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
"
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
"
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
"
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
"
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
"
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
"
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
"
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
"
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
"
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
"
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
"
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
"
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
"
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
"
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
"
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
"
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
"
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
"
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
"
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
"
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
"
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
"
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
"
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
"
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
"
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
"
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
"
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
"
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
"
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
"
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
"
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
"
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
"
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
"
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
"
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
"
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
"
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
"
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
"
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
"
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
"
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
"
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
"
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
"
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
"
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
"
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
"
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
"
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
"
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
"
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
"
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
"
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
"
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
"
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
"
|
|
919
|
-
|
|
920
|
-
"translation": "Die Überschriftenhierarchie überspringt keine Ebenen."
|
|
921
|
-
},
|
|
922
|
-
"analyzeHeadingSingleH1": {
|
|
923
|
-
"source": "Single H1 heading",
|
|
924
|
-
"translation": "Einzelne H1-Überschrift"
|
|
925
|
-
},
|
|
926
|
-
"analyzeHeadingSingleH1Description": {
|
|
927
|
-
"source": "The page has exactly one H1 heading.",
|
|
928
|
-
"translation": "Die Seite hat genau eine H1-Überschrift."
|
|
929
|
-
},
|
|
930
|
-
"analyzeHeadingSkippedLevels": {
|
|
931
|
-
"source": "Skipped heading levels",
|
|
932
|
-
"translation": "Übersprungene Überschriftenebenen"
|
|
933
|
-
},
|
|
934
|
-
"analyzeHeadingSkippedLevelsDescription": {
|
|
935
|
-
"source": "Headings skip a level. The heading hierarchy should not skip levels (e.g. do not jump from H2 to H4).",
|
|
936
|
-
"translation": "Überschriften überspringen eine Ebene. Die Überschriftenhierarchie sollte keine Ebenen überspringen (z.B. nicht von H2 zu H4)."
|
|
937
|
-
},
|
|
938
|
-
"analyzeHeadingStructureLabel": {
|
|
939
|
-
"source": "Heading Structure",
|
|
940
|
-
"translation": "Titelstruktur"
|
|
941
|
-
},
|
|
942
|
-
"analyzeIgnore": {
|
|
943
|
-
"source": "Ignore",
|
|
944
|
-
"translation": "Ignorieren"
|
|
945
|
-
},
|
|
946
|
-
"analyzeIgnoredResults": {
|
|
947
|
-
"source": "Ignored",
|
|
948
|
-
"translation": "Ignoriert"
|
|
949
|
-
},
|
|
950
|
-
"analyzeKeepVisible": {
|
|
951
|
-
"source": "Keep results visible",
|
|
952
|
-
"translation": "Ergebnisse sichtbar halten"
|
|
953
|
-
},
|
|
954
|
-
"analyzeKeepVisibleDescription": {
|
|
955
|
-
"source": "When enabled, analysis results remain highlighted on the page even when the analyze panel is closed.",
|
|
956
|
-
"translation": "Wenn aktiviert, bleiben die Analyseergebnisse auf der Seite hervorgehoben, auch wenn das Analyse-Panel geschlossen ist."
|
|
957
|
-
},
|
|
958
|
-
"analyzeLastRun": {
|
|
959
|
-
"source": "Last run: @time",
|
|
960
|
-
"translation": "Zuletzt ausgeführt: @time"
|
|
961
|
-
},
|
|
962
|
-
"analyzeMoreLink": {
|
|
963
|
-
"source": "More",
|
|
964
|
-
"translation": "Mehr"
|
|
965
|
-
},
|
|
966
|
-
"analyzeNotAvailableInStructureView": {
|
|
967
|
-
"source": "Analyze is not available in structure view.",
|
|
968
|
-
"translation": "«Analysieren» ist in der strukturierten Vorschau nicht verfügbar."
|
|
969
|
-
},
|
|
970
|
-
"analyzeResultsOutdated": {
|
|
971
|
-
"source": "Results are outdated. Click the button to update.",
|
|
972
|
-
"translation": "Resultate sind veraltet. Klicken Sie auf den Button um zu aktualisieren."
|
|
973
|
-
},
|
|
974
|
-
"analyzeShowDetails": {
|
|
975
|
-
"source": "Show details",
|
|
976
|
-
"translation": "Details anzeigen"
|
|
977
|
-
},
|
|
978
|
-
"analyzeSidebarTitle": {
|
|
979
|
-
"source": "Analyze",
|
|
980
|
-
"translation": "Analysieren"
|
|
981
|
-
},
|
|
982
|
-
"analyzeStatusInapplicable": {
|
|
983
|
-
"source": "Inapplicable",
|
|
984
|
-
"translation": "Nicht anwendbar"
|
|
985
|
-
},
|
|
986
|
-
"analyzeStatusIncomplete": {
|
|
987
|
-
"source": "Incomplete",
|
|
988
|
-
"translation": "Unvollständig"
|
|
989
|
-
},
|
|
990
|
-
"analyzeStatusPass": {
|
|
991
|
-
"source": "Pass",
|
|
992
|
-
"translation": "Bestanden"
|
|
993
|
-
},
|
|
994
|
-
"analyzeStatusStale": {
|
|
995
|
-
"source": "Stale",
|
|
996
|
-
"translation": "Veraltet"
|
|
997
|
-
},
|
|
998
|
-
"analyzeStatusViolation": {
|
|
999
|
-
"source": "Violation",
|
|
1000
|
-
"translation": "Fehler"
|
|
1001
|
-
},
|
|
1002
|
-
"analyzeTourText": {
|
|
1003
|
-
"source": "Analyze the content of your page",
|
|
1004
|
-
"translation": "Inhalte auf dieser Seite analysieren."
|
|
1005
|
-
},
|
|
1006
|
-
"analyzeUnignore": {
|
|
1007
|
-
"source": "Restore",
|
|
1008
|
-
"translation": "Wiederherstellen"
|
|
1009
|
-
},
|
|
1010
|
-
"analyzerReadabiliyCouldBeSimpler": {
|
|
1011
|
-
"source": "Could be simpler (@lang).",
|
|
1012
|
-
"translation": "Könnte einfacher sein (@lang)."
|
|
1013
|
-
},
|
|
1014
|
-
"analyzerReadabiliyDescription": {
|
|
1015
|
-
"source": "Avoid texts that are hard to read.",
|
|
1016
|
-
"translation": "Vermeiden Sie Texte die schwer lesbar sind."
|
|
1017
|
-
},
|
|
1018
|
-
"analyzerReadabiliyHardToRead": {
|
|
1019
|
-
"source": "Hard to read (@lang).",
|
|
1020
|
-
"translation": "Schwierig zu lesen (@lang)."
|
|
1021
|
-
},
|
|
1022
|
-
"analyzerReadabiliyOkDescription": {
|
|
1023
|
-
"source": "Text that could be easier to read.",
|
|
1024
|
-
"translation": "Text, der einfacher zu lesen sein könnte."
|
|
1025
|
-
},
|
|
1026
|
-
"analyzerReadabiliyOkTitle": {
|
|
1027
|
-
"source": "Text could be simpler",
|
|
1028
|
-
"translation": "Text könnte einfacher sein"
|
|
1029
|
-
},
|
|
1030
|
-
"analyzerReadabiliyShorterSentences": {
|
|
1031
|
-
"source": "Consider shorter sentences and simpler wording.",
|
|
1032
|
-
"translation": "Verwenden Sie kürzere Sätze und einfachere Formulierungen."
|
|
1033
|
-
},
|
|
1034
|
-
"analyzerReadabiliyTitle": {
|
|
1035
|
-
"source": "Text readability issues",
|
|
1036
|
-
"translation": "Probleme bei Lesbarkeit"
|
|
1037
|
-
},
|
|
1038
|
-
"anchorHide": {
|
|
1039
|
-
"source": "Hide anchor links",
|
|
1040
|
-
"translation": "Anker-Links verstecken"
|
|
1041
|
-
},
|
|
1042
|
-
"anchorShow": {
|
|
1043
|
-
"source": "Show anchor links",
|
|
1044
|
-
"translation": "Anker-Links anzeigen"
|
|
1045
|
-
},
|
|
1046
|
-
"anchorToggle": {
|
|
1047
|
-
"source": "Toggle anchor links",
|
|
1048
|
-
"translation": "Anzeige von Anker-Links umschalten"
|
|
1049
|
-
},
|
|
1050
|
-
"arrowLeft": {
|
|
1051
|
-
"source": "Arrow Left",
|
|
1052
|
-
"translation": "Pfeil links"
|
|
1053
|
-
},
|
|
1054
|
-
"arrowRight": {
|
|
1055
|
-
"source": "Arrow Right",
|
|
1056
|
-
"translation": "Pfeil rechts"
|
|
1057
|
-
},
|
|
1058
|
-
"artboard": {
|
|
1059
|
-
"source": "Artboard",
|
|
1060
|
-
"translation": "Vorschau"
|
|
1061
|
-
},
|
|
1062
|
-
"artboardOverviewHide": {
|
|
1063
|
-
"source": "Hide overview",
|
|
1064
|
-
"translation": "Übersicht verstecken"
|
|
1065
|
-
},
|
|
1066
|
-
"artboardOverviewShow": {
|
|
1067
|
-
"source": "Show overview",
|
|
1068
|
-
"translation": "Übersicht anzeigen"
|
|
1069
|
-
},
|
|
1070
|
-
"artboardOverviewToggle": {
|
|
1071
|
-
"source": "Toggle overview",
|
|
1072
|
-
"translation": "Übersicht umschalten"
|
|
1073
|
-
},
|
|
1074
|
-
"artboardOverviewTourText": {
|
|
1075
|
-
"source": "Displays a top level overview of your content.",
|
|
1076
|
-
"translation": "Zeigt eine schematische Übersicht aller Inhalte an."
|
|
1077
|
-
},
|
|
1078
|
-
"artboardResetZoom": {
|
|
1079
|
-
"source": "Reset zoom",
|
|
1080
|
-
"translation": "Zoom zurücksetzen"
|
|
1081
|
-
},
|
|
1082
|
-
"artboardScaleToFit": {
|
|
1083
|
-
"source": "Scale to fit",
|
|
1084
|
-
"translation": "An Höhe anpassen"
|
|
1085
|
-
},
|
|
1086
|
-
"artboardScrollDown": {
|
|
1087
|
-
"source": "Scroll down",
|
|
1088
|
-
"translation": "runterscrollen"
|
|
1089
|
-
},
|
|
1090
|
-
"artboardScrollOnePageDown": {
|
|
1091
|
-
"source": "Scroll one page down",
|
|
1092
|
-
"translation": "Eine Seite hochscrollen"
|
|
1093
|
-
},
|
|
1094
|
-
"artboardScrollOnePageUp": {
|
|
1095
|
-
"source": "Scroll one page up",
|
|
1096
|
-
"translation": "Eine Seite runterscrollen"
|
|
1097
|
-
},
|
|
1098
|
-
"artboardScrollToEnd": {
|
|
1099
|
-
"source": "Scroll to end",
|
|
1100
|
-
"translation": "Zum Ende scrollen"
|
|
1101
|
-
},
|
|
1102
|
-
"artboardScrollToTop": {
|
|
1103
|
-
"source": "Scroll to top",
|
|
1104
|
-
"translation": "Zum Anfang scrollen"
|
|
1105
|
-
},
|
|
1106
|
-
"artboardScrollUp": {
|
|
1107
|
-
"source": "Scroll up",
|
|
1108
|
-
"translation": "hochscrollen"
|
|
1109
|
-
},
|
|
1110
|
-
"artboardToolbarButtonTourText": {
|
|
1111
|
-
"source": "Shows the current zoom factor. Click on it to reset the zoom back to 100%.",
|
|
1112
|
-
"translation": "Zeigt den aktuellen Zoom-Wert. Klicken Sie auf den Button um den Zoom auf 100% zurückzusetzen."
|
|
1113
|
-
},
|
|
1114
|
-
"availableBlocks": {
|
|
1115
|
-
"source": "Available blocks",
|
|
1116
|
-
"translation": "Verfügbare Blöcke"
|
|
1117
|
-
},
|
|
1118
|
-
"availableFragments": {
|
|
1119
|
-
"source": "Available fragments",
|
|
1120
|
-
"translation": "Verfügbare Fragmente"
|
|
1121
|
-
},
|
|
1122
|
-
"blockAddListTourText": {
|
|
1123
|
-
"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.",
|
|
1124
|
-
"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."
|
|
1125
|
-
},
|
|
1126
|
-
"blockAddListTourTitle": {
|
|
1127
|
-
"source": "Favorite blocks",
|
|
1128
|
-
"translation": "Favoriten-Blöcke"
|
|
1129
|
-
},
|
|
1130
|
-
"blockNotImplemented": {
|
|
1131
|
-
"source": "Missing component for block bundle <strong>@bundle</strong>.",
|
|
1132
|
-
"translation": "Keine Komponente für Block-Typ <strong>@bundle</strong> gefunden."
|
|
1133
|
-
},
|
|
1134
|
-
"blockOption_bkHiddenGlobally_description": {
|
|
1135
|
-
"source": "Always hides the block.",
|
|
1136
|
-
"translation": "Den Block immer verstecken."
|
|
1137
|
-
},
|
|
1138
|
-
"blockOption_bkHiddenGlobally_label": {
|
|
1139
|
-
"source": "Hide globally",
|
|
1140
|
-
"translation": "Global verstecken"
|
|
1141
|
-
},
|
|
1142
|
-
"blockOption_bkVisibleLanguages_description": {
|
|
1143
|
-
"source": "Only show on specific languages.",
|
|
1144
|
-
"translation": "Nur auf bestimmten Sprachen anzeigen."
|
|
1145
|
-
},
|
|
1146
|
-
"blockOption_bkVisibleLanguages_label": {
|
|
1147
|
-
"source": "Visible languages",
|
|
1148
|
-
"translation": "Sichtbare Sprachen"
|
|
1149
|
-
},
|
|
1150
|
-
"blockSchedulerChangesPreview": {
|
|
1151
|
-
"source": "Changes to be applied",
|
|
1152
|
-
"translation": "Anzuwendende Änderungen"
|
|
1153
|
-
},
|
|
1154
|
-
"blockSchedulerDialogLead": {
|
|
1155
|
-
"source": "Schedule automatic publishing and unpublishing dates for the selected blocks.",
|
|
1156
|
-
"translation": "Planen Sie automatische Veröffentlichungs- und Depublikationsdaten für die ausgewählten Blöcke."
|
|
1157
|
-
},
|
|
1158
|
-
"blockSchedulerDialogPublishOn": {
|
|
1159
|
-
"source": "Publish on",
|
|
1160
|
-
"translation": "Veröffentlichen am"
|
|
1161
|
-
},
|
|
1162
|
-
"blockSchedulerDialogSubmit": {
|
|
1163
|
-
"source": "Save schedule",
|
|
1164
|
-
"translation": "Planung speichern"
|
|
1165
|
-
},
|
|
1166
|
-
"blockSchedulerDialogTitle": {
|
|
1167
|
-
"source": "Manage scheduling",
|
|
1168
|
-
"translation": "Planung verwalten"
|
|
1169
|
-
},
|
|
1170
|
-
"blockSchedulerDialogUnpublishOn": {
|
|
1171
|
-
"source": "Unpublish on",
|
|
1172
|
-
"translation": "Depublizieren am"
|
|
1173
|
-
},
|
|
1174
|
-
"blockSchedulerMixedDates": {
|
|
1175
|
-
"source": "Selected blocks have different dates: @dates",
|
|
1176
|
-
"translation": "Ausgewählte Blöcke haben unterschiedliche Daten: @dates"
|
|
1177
|
-
},
|
|
1178
|
-
"blockSchedulerNoChanges": {
|
|
1179
|
-
"source": "No changes to be applied.",
|
|
1180
|
-
"translation": "Keine Änderungen vorhanden."
|
|
1181
|
-
},
|
|
1182
|
-
"blockSchedulerOverride": {
|
|
1183
|
-
"source": "Set date for all",
|
|
1184
|
-
"translation": "Datum für alle setzen"
|
|
1185
|
-
},
|
|
1186
|
-
"blockSchedulerSuccessMessage": {
|
|
1187
|
-
"source": "Successfully updated schedule dates.",
|
|
1188
|
-
"translation": "Planungsdaten erfolgreich aktualisiert."
|
|
1189
|
-
},
|
|
1190
|
-
"bundle": {
|
|
1191
|
-
"source": "Bundle",
|
|
1192
|
-
"translation": "Typ"
|
|
1193
|
-
},
|
|
1194
|
-
"bundleSelectorActionsLabel": {
|
|
1195
|
-
"source": "Actions",
|
|
1196
|
-
"translation": "Aktionen"
|
|
1197
|
-
},
|
|
1198
|
-
"bundleSelectorFragmentsLabel": {
|
|
1199
|
-
"source": "Fragments",
|
|
1200
|
-
"translation": "Fragmente"
|
|
1201
|
-
},
|
|
1202
|
-
"cancelSelection": {
|
|
1203
|
-
"source": "Cancel selection",
|
|
1204
|
-
"translation": "Auswahl abbrechen"
|
|
1205
|
-
},
|
|
1206
|
-
"changelogDialogTitle": {
|
|
1207
|
-
"source": "What's New",
|
|
1208
|
-
"translation": "Neuigkeiten"
|
|
1209
|
-
},
|
|
1210
|
-
"changelogMenuDescription": {
|
|
1211
|
-
"source": "View recent changes and new features",
|
|
1212
|
-
"translation": "Aktuelle Änderungen und neue Funktionen anzeigen"
|
|
1213
|
-
},
|
|
1214
|
-
"changelogMenuTitle": {
|
|
1215
|
-
"source": "What's New",
|
|
1216
|
-
"translation": "Neuigkeiten"
|
|
1217
|
-
},
|
|
1218
|
-
"chartsAddColumn": {
|
|
1219
|
-
"source": "Add column",
|
|
1220
|
-
"translation": "Spalte hinzufügen"
|
|
1221
|
-
},
|
|
1222
|
-
"chartsAddFootnote": {
|
|
1223
|
-
"source": "Add footnote",
|
|
1224
|
-
"translation": "Fussnote hinzufügen"
|
|
1225
|
-
},
|
|
1226
|
-
"chartsAddRow": {
|
|
1227
|
-
"source": "Add row",
|
|
1228
|
-
"translation": "Zeile hinzufügen"
|
|
1229
|
-
},
|
|
1230
|
-
"chartsAreaCurved": {
|
|
1231
|
-
"source": "Smooth curves",
|
|
1232
|
-
"translation": "Glatte Kurven"
|
|
1233
|
-
},
|
|
1234
|
-
"chartsAreaMarkers": {
|
|
1235
|
-
"source": "Show markers",
|
|
1236
|
-
"translation": "Markierungen anzeigen"
|
|
1237
|
-
},
|
|
1238
|
-
"chartsAutoUpdate": {
|
|
1239
|
-
"source": "Auto-update",
|
|
1240
|
-
"translation": "Automatisch aktualisieren"
|
|
1241
|
-
},
|
|
1242
|
-
"chartsBarHorizontal": {
|
|
1243
|
-
"source": "Horizontal",
|
|
1244
|
-
"translation": "Horizontal"
|
|
1245
|
-
},
|
|
1246
|
-
"chartsBarStacked": {
|
|
1247
|
-
"source": "Stacked",
|
|
1248
|
-
"translation": "Gestapelt"
|
|
1249
|
-
},
|
|
1250
|
-
"chartsBorderRadius": {
|
|
1251
|
-
"source": "Corner radius",
|
|
1252
|
-
"translation": "Eckenradius"
|
|
1253
|
-
},
|
|
1254
|
-
"chartsBorderRadiusLarge": {
|
|
1255
|
-
"source": "Large",
|
|
1256
|
-
"translation": "Gross"
|
|
1257
|
-
},
|
|
1258
|
-
"chartsBorderRadiusNone": {
|
|
1259
|
-
"source": "None",
|
|
1260
|
-
"translation": "Keine"
|
|
1261
|
-
},
|
|
1262
|
-
"chartsBorderRadiusSmall": {
|
|
1263
|
-
"source": "Small",
|
|
1264
|
-
"translation": "Klein"
|
|
1265
|
-
},
|
|
1266
|
-
"chartsData": {
|
|
1267
|
-
"source": "Data",
|
|
1268
|
-
"translation": "Daten"
|
|
1269
|
-
},
|
|
1270
|
-
"chartsDataLabels": {
|
|
1271
|
-
"source": "Data labels",
|
|
1272
|
-
"translation": "Datenbeschriftungen"
|
|
1273
|
-
},
|
|
1274
|
-
"chartsDonutShowLabels": {
|
|
1275
|
-
"source": "Show labels",
|
|
1276
|
-
"translation": "Beschriftungen anzeigen"
|
|
1277
|
-
},
|
|
1278
|
-
"chartsDonutShowTotal": {
|
|
1279
|
-
"source": "Show total",
|
|
1280
|
-
"translation": "Total anzeigen"
|
|
1281
|
-
},
|
|
1282
|
-
"chartsEditTitle": {
|
|
1283
|
-
"source": "Edit chart",
|
|
1284
|
-
"translation": "Diagramm bearbeiten"
|
|
1285
|
-
},
|
|
1286
|
-
"chartsFootnotes": {
|
|
1287
|
-
"source": "Footnotes",
|
|
1288
|
-
"translation": "Fussnoten"
|
|
1289
|
-
},
|
|
1290
|
-
"chartsGridLines": {
|
|
1291
|
-
"source": "Grid lines",
|
|
1292
|
-
"translation": "Rasterlinien"
|
|
1293
|
-
},
|
|
1294
|
-
"chartsImportCsv": {
|
|
1295
|
-
"source": "Import CSV",
|
|
1296
|
-
"translation": "CSV importieren"
|
|
1297
|
-
},
|
|
1298
|
-
"chartsLegendPosition": {
|
|
1299
|
-
"source": "Legend position",
|
|
1300
|
-
"translation": "Legendenposition"
|
|
1301
|
-
},
|
|
1302
|
-
"chartsLineCurved": {
|
|
1303
|
-
"source": "Smooth curves",
|
|
1304
|
-
"translation": "Glatte Kurven"
|
|
1305
|
-
},
|
|
1306
|
-
"chartsLineMarkers": {
|
|
1307
|
-
"source": "Show markers",
|
|
1308
|
-
"translation": "Markierungen anzeigen"
|
|
1309
|
-
},
|
|
1310
|
-
"chartsOpacityLight": {
|
|
1311
|
-
"source": "Light",
|
|
1312
|
-
"translation": "Leicht"
|
|
1313
|
-
},
|
|
1314
|
-
"chartsOpacitySolid": {
|
|
1315
|
-
"source": "Solid",
|
|
1316
|
-
"translation": "Deckend"
|
|
1317
|
-
},
|
|
1318
|
-
"chartsOpacityTransparent": {
|
|
1319
|
-
"source": "Transparent",
|
|
1320
|
-
"translation": "Transparent"
|
|
1321
|
-
},
|
|
1322
|
-
"chartsOptionGroupDisplay": {
|
|
1323
|
-
"source": "Display",
|
|
1324
|
-
"translation": "Darstellung"
|
|
1325
|
-
},
|
|
1326
|
-
"chartsOptionGroupLabels": {
|
|
1327
|
-
"source": "Labels",
|
|
1328
|
-
"translation": "Beschriftungen"
|
|
1329
|
-
},
|
|
1330
|
-
"chartsPieShowLabels": {
|
|
1331
|
-
"source": "Show labels",
|
|
1332
|
-
"translation": "Beschriftungen anzeigen"
|
|
1333
|
-
},
|
|
1334
|
-
"chartsPositionBottom": {
|
|
1335
|
-
"source": "Bottom",
|
|
1336
|
-
"translation": "Unten"
|
|
1337
|
-
},
|
|
1338
|
-
"chartsPositionRight": {
|
|
1339
|
-
"source": "Right",
|
|
1340
|
-
"translation": "Rechts"
|
|
1341
|
-
},
|
|
1342
|
-
"chartsPositionTop": {
|
|
1343
|
-
"source": "Top",
|
|
1344
|
-
"translation": "Oben"
|
|
1345
|
-
},
|
|
1346
|
-
"chartsPreview": {
|
|
1347
|
-
"source": "Preview",
|
|
1348
|
-
"translation": "Vorschau"
|
|
1349
|
-
},
|
|
1350
|
-
"chartsRadarFillOpacity": {
|
|
1351
|
-
"source": "Fill opacity",
|
|
1352
|
-
"translation": "Fülldeckkraft"
|
|
1353
|
-
},
|
|
1354
|
-
"chartsRadarMarkers": {
|
|
1355
|
-
"source": "Show markers",
|
|
1356
|
-
"translation": "Markierungen anzeigen"
|
|
1357
|
-
},
|
|
1358
|
-
"chartsRadialBarShowLabels": {
|
|
1359
|
-
"source": "Show labels",
|
|
1360
|
-
"translation": "Beschriftungen anzeigen"
|
|
1361
|
-
},
|
|
1362
|
-
"chartsRadialBarShowTotal": {
|
|
1363
|
-
"source": "Show total",
|
|
1364
|
-
"translation": "Total anzeigen"
|
|
1365
|
-
},
|
|
1366
|
-
"chartsRefreshPreview": {
|
|
1367
|
-
"source": "Refresh Preview",
|
|
1368
|
-
"translation": "Vorschau aktualisieren"
|
|
1369
|
-
},
|
|
1370
|
-
"chartsRotationAuto": {
|
|
1371
|
-
"source": "Auto",
|
|
1372
|
-
"translation": "Automatisch"
|
|
1373
|
-
},
|
|
1374
|
-
"chartsStrokeMedium": {
|
|
1375
|
-
"source": "Medium",
|
|
1376
|
-
"translation": "Mittel"
|
|
1377
|
-
},
|
|
1378
|
-
"chartsStrokeThick": {
|
|
1379
|
-
"source": "Thick",
|
|
1380
|
-
"translation": "Dick"
|
|
1381
|
-
},
|
|
1382
|
-
"chartsStrokeThin": {
|
|
1383
|
-
"source": "Thin",
|
|
1384
|
-
"translation": "Dünn"
|
|
1385
|
-
},
|
|
1386
|
-
"chartsStrokeWidth": {
|
|
1387
|
-
"source": "Line thickness",
|
|
1388
|
-
"translation": "Linienstärke"
|
|
1389
|
-
},
|
|
1390
|
-
"chartsTitle": {
|
|
1391
|
-
"source": "Title",
|
|
1392
|
-
"translation": "Titel"
|
|
1393
|
-
},
|
|
1394
|
-
"chartsTypeArea": {
|
|
1395
|
-
"source": "Area",
|
|
1396
|
-
"translation": "Fläche"
|
|
1397
|
-
},
|
|
1398
|
-
"chartsTypeBar": {
|
|
1399
|
-
"source": "Bar",
|
|
1400
|
-
"translation": "Balken"
|
|
1401
|
-
},
|
|
1402
|
-
"chartsTypeDonut": {
|
|
1403
|
-
"source": "Donut",
|
|
1404
|
-
"translation": "Donut"
|
|
1405
|
-
},
|
|
1406
|
-
"chartsTypeHeatmap": {
|
|
1407
|
-
"source": "Heatmap",
|
|
1408
|
-
"translation": "Heatmap"
|
|
1409
|
-
},
|
|
1410
|
-
"chartsTypeLine": {
|
|
1411
|
-
"source": "Line",
|
|
1412
|
-
"translation": "Linie"
|
|
1413
|
-
},
|
|
1414
|
-
"chartsTypePie": {
|
|
1415
|
-
"source": "Pie",
|
|
1416
|
-
"translation": "Kreis"
|
|
1417
|
-
},
|
|
1418
|
-
"chartsTypeRadar": {
|
|
1419
|
-
"source": "Radar",
|
|
1420
|
-
"translation": "Radar"
|
|
1421
|
-
},
|
|
1422
|
-
"chartsTypeRadialBar": {
|
|
1423
|
-
"source": "Radial Bar",
|
|
1424
|
-
"translation": "Radialdiagramm"
|
|
1425
|
-
},
|
|
1426
|
-
"chartsXAxisRotation": {
|
|
1427
|
-
"source": "Label rotation",
|
|
1428
|
-
"translation": "Beschriftungswinkel"
|
|
1429
|
-
},
|
|
1430
|
-
"clearInput": {
|
|
1431
|
-
"source": "Clear input",
|
|
1432
|
-
"translation": "Eingabe löschen"
|
|
1433
|
-
},
|
|
1434
|
-
"clipboardCopyShortcutHelp": {
|
|
1435
|
-
"source": "Copy selected blocks",
|
|
1436
|
-
"translation": "Ausgewählte Blöcke kopieren"
|
|
1437
|
-
},
|
|
1438
|
-
"clipboardNoCommonBundle": {
|
|
1439
|
-
"source": "No common block type for these files.",
|
|
1440
|
-
"translation": "Kein gemeinsamer Blocktyp für diese Dateien."
|
|
1441
|
-
},
|
|
1442
|
-
"clipboardPasteDescription": {
|
|
1443
|
-
"source": "Paste blocks from clipboard",
|
|
1444
|
-
"translation": "Blöcke aus Zwischenablage einfügen"
|
|
1445
|
-
},
|
|
1446
|
-
"clipboardPasteError": {
|
|
1447
|
-
"source": "Failed to paste:",
|
|
1448
|
-
"translation": "Einfügen fehlgeschlagen:"
|
|
1449
|
-
},
|
|
1450
|
-
"clipboardPasteShortcutHelp": {
|
|
1451
|
-
"source": "Paste text, image or copied blocks",
|
|
1452
|
-
"translation": "Text, Bild oder kopierte Blöcke einfügen"
|
|
1453
|
-
},
|
|
1454
|
-
"clipboardTypeFile": {
|
|
1455
|
-
"source": "File",
|
|
1456
|
-
"translation": "Datei"
|
|
1457
|
-
},
|
|
1458
|
-
"clipboardTypeImage": {
|
|
1459
|
-
"source": "Image",
|
|
1460
|
-
"translation": "Bild"
|
|
1461
|
-
},
|
|
1462
|
-
"clipboardTypeText": {
|
|
1463
|
-
"source": "Text",
|
|
1464
|
-
"translation": "Text"
|
|
1465
|
-
},
|
|
1466
|
-
"clipboardTypeVideo": {
|
|
1467
|
-
"source": "Video",
|
|
1468
|
-
"translation": "Video"
|
|
1469
|
-
},
|
|
1470
|
-
"clipboardUnsupportedFileType": {
|
|
1471
|
-
"source": "This file type is not supported.",
|
|
1472
|
-
"translation": "Dieser Dateityp wird nicht unterstützt."
|
|
1473
|
-
},
|
|
1474
|
-
"close": {
|
|
1475
|
-
"source": "Close",
|
|
1476
|
-
"translation": "Schliessen"
|
|
1477
|
-
},
|
|
1478
|
-
"commandGroup.action": {
|
|
1479
|
-
"source": "Actions",
|
|
1480
|
-
"translation": "Aktionen"
|
|
1481
|
-
},
|
|
1482
|
-
"commandGroup.add": {
|
|
1483
|
-
"source": "Add new",
|
|
1484
|
-
"translation": "Hinzufügen"
|
|
1485
|
-
},
|
|
1486
|
-
"commandGroup.misc": {
|
|
1487
|
-
"source": "Miscellaneous",
|
|
1488
|
-
"translation": "Diverse"
|
|
1489
|
-
},
|
|
1490
|
-
"commandGroup.selection": {
|
|
1491
|
-
"source": "Selection",
|
|
1492
|
-
"translation": "Auswahl"
|
|
1493
|
-
},
|
|
1494
|
-
"commandGroup.ui": {
|
|
1495
|
-
"source": "Interface",
|
|
1496
|
-
"translation": "Oberfläche"
|
|
1497
|
-
},
|
|
1498
|
-
"commandPalette.inputPlaceholder": {
|
|
1499
|
-
"source": "Search commands...",
|
|
1500
|
-
"translation": "Befehle durchsuchen..."
|
|
1501
|
-
},
|
|
1502
|
-
"commandPaletteOpen": {
|
|
1503
|
-
"source": "Open Command Palette",
|
|
1504
|
-
"translation": "Befehle öffnen"
|
|
1505
|
-
},
|
|
1506
|
-
"commandPaletteTitle": {
|
|
1507
|
-
"source": "Command Palette",
|
|
1508
|
-
"translation": "Befehlspalette"
|
|
1509
|
-
},
|
|
1510
|
-
"commandPaletteTourText": {
|
|
1511
|
-
"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.",
|
|
1512
|
-
"translation": "Führen Sie Aktionen ganz einfach mit Ihrer Tastatur aus, indem Sie «Befehle» öffnen. Fast alle Funktionen sind auch über «Befehle» ausführbar."
|
|
1513
|
-
},
|
|
1514
|
-
"commentAdd": {
|
|
1515
|
-
"source": "Add comment",
|
|
1516
|
-
"translation": "Kommentar hinzufügen"
|
|
1517
|
-
},
|
|
1518
|
-
"commentBodyPlaceholder": {
|
|
1519
|
-
"source": "Add reply",
|
|
1520
|
-
"translation": "Antwort hinzufügen"
|
|
1521
|
-
},
|
|
1522
|
-
"commentSave": {
|
|
1523
|
-
"source": "Submit comment",
|
|
1524
|
-
"translation": "Kommentar speichern"
|
|
1525
|
-
},
|
|
1526
|
-
"comments": {
|
|
1527
|
-
"source": "Comments",
|
|
1528
|
-
"translation": "Kommentare"
|
|
1529
|
-
},
|
|
1530
|
-
"commentsMarkAsResolved": {
|
|
1531
|
-
"source": "Resolve",
|
|
1532
|
-
"translation": "Erledigen"
|
|
1533
|
-
},
|
|
1534
|
-
"commentsTourText": {
|
|
1535
|
-
"source": "Shows all comments for the current page.",
|
|
1536
|
-
"translation": "Zeigt alle Kommentare auf der aktuellen Seite an."
|
|
1537
|
-
},
|
|
1538
|
-
"complexOptionsSaveError": {
|
|
1539
|
-
"source": "The data could not be saved.",
|
|
1540
|
-
"translation": "Die Daten konnten nicht gespeichert werden."
|
|
1541
|
-
},
|
|
1542
|
-
"conversionsConvertTo": {
|
|
1543
|
-
"source": "Convert to: @bundle",
|
|
1544
|
-
"translation": "Konvertieren zu: @bundle"
|
|
1545
|
-
},
|
|
1546
|
-
"copiedToClipboardMessage": {
|
|
1547
|
-
"source": "\"@text\" has been copied to your clipboard",
|
|
1548
|
-
"translation": "«@text» wurde in die Zwischenablage kopiert"
|
|
1549
|
-
},
|
|
1550
|
-
"copy": {
|
|
1551
|
-
"source": "Copy",
|
|
1552
|
-
"translation": "Kopieren"
|
|
1553
|
-
},
|
|
1554
|
-
"created": {
|
|
1555
|
-
"source": "Created",
|
|
1556
|
-
"translation": "Erstellt"
|
|
1557
|
-
},
|
|
1558
|
-
"createdBy": {
|
|
1559
|
-
"source": "Created by",
|
|
1560
|
-
"translation": "Erstellt von"
|
|
1561
|
-
},
|
|
1562
|
-
"dateUpdated": {
|
|
1563
|
-
"source": "Updated",
|
|
1564
|
-
"translation": "Aktualisiert"
|
|
1565
|
-
},
|
|
1566
|
-
"deleteButton": {
|
|
1567
|
-
"source": "Delete",
|
|
1568
|
-
"translation": "Löschen"
|
|
1569
|
-
},
|
|
1570
|
-
"deleteError": {
|
|
1571
|
-
"source": "The block could not be deleted.",
|
|
1572
|
-
"translation": "Das Element konnte nicht entfernt werden."
|
|
1573
|
-
},
|
|
1574
|
-
"deleteNoPermission": {
|
|
1575
|
-
"source": "You do not have permission to delete this block.",
|
|
1576
|
-
"translation": "Löschen aufgrund fehlender Berechtigung nicht möglich."
|
|
1577
|
-
},
|
|
1578
|
-
"diffAfter": {
|
|
1579
|
-
"source": "After",
|
|
1580
|
-
"translation": "Nachher"
|
|
1581
|
-
},
|
|
1582
|
-
"diffBefore": {
|
|
1583
|
-
"source": "Before",
|
|
1584
|
-
"translation": "Vorher"
|
|
1585
|
-
},
|
|
1586
|
-
"diffModeAfter": {
|
|
1587
|
-
"source": "After",
|
|
1588
|
-
"translation": "Nachher"
|
|
1589
|
-
},
|
|
1590
|
-
"diffModeInline": {
|
|
1591
|
-
"source": "Inline",
|
|
1592
|
-
"translation": "Hervorgehoben"
|
|
1593
|
-
},
|
|
1594
|
-
"diffModeLabel": {
|
|
1595
|
-
"source": "Display",
|
|
1596
|
-
"translation": "Darstellung"
|
|
1597
|
-
},
|
|
1598
|
-
"diffModeSideBySide": {
|
|
1599
|
-
"source": "Both",
|
|
1600
|
-
"translation": "Beide"
|
|
1601
|
-
},
|
|
1602
|
-
"diffSidebarTitle": {
|
|
1603
|
-
"source": "Changes",
|
|
1604
|
-
"translation": "Änderungen"
|
|
1605
|
-
},
|
|
1606
|
-
"diffSidebarTourText": {
|
|
1607
|
-
"source": "Displays all the changes made during editing.",
|
|
1608
|
-
"translation": "Zeigt die Änderungen an die während dem Bearbeiten durchgeführt wurden."
|
|
1609
|
-
},
|
|
1610
|
-
"diffStatusAdded": {
|
|
1611
|
-
"source": "Added",
|
|
1612
|
-
"translation": "Hinzugefügt"
|
|
1613
|
-
},
|
|
1614
|
-
"diffStatusDeleted": {
|
|
1615
|
-
"source": "Deleted",
|
|
1616
|
-
"translation": "Gelöscht"
|
|
1617
|
-
},
|
|
1618
|
-
"diffStatusEdited": {
|
|
1619
|
-
"source": "Edited",
|
|
1620
|
-
"translation": "Bearbeitet"
|
|
1621
|
-
},
|
|
1622
|
-
"diffStatusUnchanged": {
|
|
1623
|
-
"source": "Unchanged",
|
|
1624
|
-
"translation": "Keine Änderung"
|
|
1625
|
-
},
|
|
1626
|
-
"download": {
|
|
1627
|
-
"source": "Download",
|
|
1628
|
-
"translation": "Herunterladen"
|
|
1629
|
-
},
|
|
1630
|
-
"downloadLogsButton": {
|
|
1631
|
-
"source": "Download Logs",
|
|
1632
|
-
"translation": "Fehlerprotokoll herunterladen"
|
|
1633
|
-
},
|
|
1634
|
-
"downloadWithLabel": {
|
|
1635
|
-
"source": "Download @label",
|
|
1636
|
-
"translation": "@label herunterladen"
|
|
1637
|
-
},
|
|
1638
|
-
"draggingOverlaySelectBundle": {
|
|
1639
|
-
"source": "Select block type to create",
|
|
1640
|
-
"translation": "Block-Typ zum Erstellen auswählen"
|
|
1641
|
-
},
|
|
1642
|
-
"duplicate": {
|
|
1643
|
-
"source": "Duplicate",
|
|
1644
|
-
"translation": "Duplizieren"
|
|
1645
|
-
},
|
|
1646
|
-
"duplicateError": {
|
|
1647
|
-
"source": "The items could not be duplicated.",
|
|
1648
|
-
"translation": "Die Elemente konnten nicht dupliziert werden."
|
|
1649
|
-
},
|
|
1650
|
-
"duplicateFieldFull": {
|
|
1651
|
-
"source": "The field has reached its maximum number of blocks.",
|
|
1652
|
-
"translation": "Das Feld hat die maximale Anzahl an Blöcken erreicht."
|
|
1653
|
-
},
|
|
1654
|
-
"duplicateNoPermission": {
|
|
1655
|
-
"source": "You do not have permission to duplicate this block.",
|
|
1656
|
-
"translation": "Duplizieren aufgrund fehlender Berechtigung nicht möglich."
|
|
1657
|
-
},
|
|
1658
|
-
"duplicateNotAllowed": {
|
|
1659
|
-
"source": "This block type is not allowed in this field.",
|
|
1660
|
-
"translation": "Dieser Blocktyp ist in diesem Feld nicht erlaubt."
|
|
1661
|
-
},
|
|
1662
|
-
"edit": {
|
|
1663
|
-
"source": "Edit...",
|
|
1664
|
-
"translation": "Bearbeiten..."
|
|
1665
|
-
},
|
|
1666
|
-
"editDisabledByDefinition": {
|
|
1667
|
-
"source": "Editing is disabled for this block type.",
|
|
1668
|
-
"translation": "Bearbeiten ist für diesen Blocktyp deaktiviert."
|
|
1669
|
-
},
|
|
1670
|
-
"editFormBlockAdd": {
|
|
1671
|
-
"source": "Add @label",
|
|
1672
|
-
"translation": "@label hinzufügen"
|
|
1673
|
-
},
|
|
1674
|
-
"editFormBlockEdit": {
|
|
1675
|
-
"source": "Edit @label",
|
|
1676
|
-
"translation": "@label bearbeiten"
|
|
1677
|
-
},
|
|
1678
|
-
"editFormBlockTranslate": {
|
|
1679
|
-
"source": "Translate @label (@language)",
|
|
1680
|
-
"translation": "@label übersetzen (@language)"
|
|
1681
|
-
},
|
|
1682
|
-
"editFormEntityEdit": {
|
|
1683
|
-
"source": "Edit @label",
|
|
1684
|
-
"translation": "\"@label\" bearbeiten"
|
|
1685
|
-
},
|
|
1686
|
-
"editFormEntityTranslate": {
|
|
1687
|
-
"source": "Translate \"@label\" (@language)",
|
|
1688
|
-
"translation": "\"@label\" übersetzen (@language)"
|
|
1689
|
-
},
|
|
1690
|
-
"editFragmentNotEditable": {
|
|
1691
|
-
"source": "This fragment cannot be edited.",
|
|
1692
|
-
"translation": "Dieses Fragment kann nicht bearbeitet werden."
|
|
1693
|
-
},
|
|
1694
|
-
"editIndicatorLabel": {
|
|
1695
|
-
"source": "Edit blocks",
|
|
1696
|
-
"translation": "Elemente bearbeiten"
|
|
1697
|
-
},
|
|
1698
|
-
"editIndicatorLabelReview": {
|
|
1699
|
-
"source": "Review changes",
|
|
1700
|
-
"translation": "Änderungen überprüfen"
|
|
1701
|
-
},
|
|
1702
|
-
"editIndicatorLabelView": {
|
|
1703
|
-
"source": "View changes",
|
|
1704
|
-
"translation": "Änderungen ansehen"
|
|
1705
|
-
},
|
|
1706
|
-
"editLibraryNotAvailable": {
|
|
1707
|
-
"source": "This reusable block cannot be edited right now.",
|
|
1708
|
-
"translation": "Dieser wiederverwendbare Block kann momentan nicht bearbeitet werden."
|
|
1709
|
-
},
|
|
1710
|
-
"editNoLibraryPermission": {
|
|
1711
|
-
"source": "You do not have permission to edit library items.",
|
|
1712
|
-
"translation": "Bearbeiten aufgrund fehlender Berechtigung nicht möglich."
|
|
1713
|
-
},
|
|
1714
|
-
"editNoPermission": {
|
|
1715
|
-
"source": "You do not have permission to edit this block.",
|
|
1716
|
-
"translation": "Bearbeiten aufgrund fehlender Berechtigung nicht möglich."
|
|
1717
|
-
},
|
|
1718
|
-
"editableCommandEdit": {
|
|
1719
|
-
"source": "Edit field \"@name\"",
|
|
1720
|
-
"translation": "Feld «@name» bearbeiten"
|
|
1721
|
-
},
|
|
1722
|
-
"editableFieldCharCountMax": {
|
|
1723
|
-
"source": "@count of @max characters used",
|
|
1724
|
-
"translation": "@count von @max Zeichen verwendet"
|
|
1725
|
-
},
|
|
1726
|
-
"editableFieldDiscard": {
|
|
1727
|
-
"source": "Discard",
|
|
1728
|
-
"translation": "Verwerfen"
|
|
1729
|
-
},
|
|
1730
|
-
"editableFieldExitFullscreen": {
|
|
1731
|
-
"source": "Exit Fullscreen",
|
|
1732
|
-
"translation": "Vollbild beenden"
|
|
1733
|
-
},
|
|
1734
|
-
"editableFieldFullscreen": {
|
|
1735
|
-
"source": "Fullscreen",
|
|
1736
|
-
"translation": "Vollbild"
|
|
1737
|
-
},
|
|
1738
|
-
"editableFieldTranslate": {
|
|
1739
|
-
"source": "Translate",
|
|
1740
|
-
"translation": "Übersetzen"
|
|
1741
|
-
},
|
|
1742
|
-
"editableFieldTranslateTooltip": {
|
|
1743
|
-
"source": "Automatically translate the current text.",
|
|
1744
|
-
"translation": "Den aktuellen Text automatisch übersetzen."
|
|
1745
|
-
},
|
|
1746
|
-
"entityTitleTourText": {
|
|
1747
|
-
"source": "<p>Shows the title and status of the current page.</p><p>Click on the title to open the page edit form.</p>",
|
|
1748
|
-
"translation": "<p>Zeigt den Titel und Status der aktuellen Seite an.</p><p>Klicken Sie auf den Titel um das Bearbeitungsformular anzuzeigen.</p>"
|
|
1749
|
-
},
|
|
1750
|
-
"entityTitleTourTitle": {
|
|
1751
|
-
"source": "Page",
|
|
1752
|
-
"translation": "Seite"
|
|
1753
|
-
},
|
|
1754
|
-
"errorCapturedMessage": {
|
|
1755
|
-
"source": "Error in \"@label\": @errorMessage",
|
|
1756
|
-
"translation": "Fehler in «@label»: @errorMessage"
|
|
1757
|
-
},
|
|
1758
|
-
"errorCapturedMessageDisabled": {
|
|
1759
|
-
"source": "\"@label\" has errored more than 3 times. The feature will be disabled.",
|
|
1760
|
-
"translation": "«@label» hat mehr als 3 Fehler verursacht. Die Funktion wird deaktiviert."
|
|
1761
|
-
},
|
|
1762
|
-
"exitDescription": {
|
|
1763
|
-
"source": "Close editor without publishing",
|
|
1764
|
-
"translation": "Editor schliessen ohne veröffentlichen"
|
|
1765
|
-
},
|
|
1766
|
-
"exitTitle": {
|
|
1767
|
-
"source": "Close",
|
|
1768
|
-
"translation": "Schliessen"
|
|
1769
|
-
},
|
|
1770
|
-
"failedToConvert": {
|
|
1771
|
-
"source": "The block could not be converted.",
|
|
1772
|
-
"translation": "Das Element konnte nicht konvertiert werden."
|
|
1773
|
-
},
|
|
1774
|
-
"failedToTransform": {
|
|
1775
|
-
"source": "The action \"@name\" could not be executed.",
|
|
1776
|
-
"translation": "Die Aktion «@name» konnte nicht ausgeführt werden."
|
|
1777
|
-
},
|
|
1778
|
-
"fatalErrorButton": {
|
|
1779
|
-
"source": "Continue anyway...",
|
|
1780
|
-
"translation": "Trotzdem fortfahren..."
|
|
1781
|
-
},
|
|
1782
|
-
"fatalErrorText": {
|
|
1783
|
-
"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.",
|
|
1784
|
-
"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."
|
|
1785
|
-
},
|
|
1786
|
-
"fatalErrorTitle": {
|
|
1787
|
-
"source": "blökkli has stopped working",
|
|
1788
|
-
"translation": "blökkli funktioniert nicht mehr"
|
|
1789
|
-
},
|
|
1790
|
-
"featureHelpShortcuts": {
|
|
1791
|
-
"source": "Shortcuts",
|
|
1792
|
-
"translation": "Tastenkombinationen"
|
|
1793
|
-
},
|
|
1794
|
-
"featureHelpTitle": {
|
|
1795
|
-
"source": "Help",
|
|
1796
|
-
"translation": "Hilfe"
|
|
1797
|
-
},
|
|
1798
|
-
"feature_add-list_description": {
|
|
1799
|
-
"source": "Provides the container to render a list of blocks to add or add actions.",
|
|
1800
|
-
"translation": "Stellt den Container bereit, um eine Liste von Blöcken zum Hinzufügen oder Aktionen anzuzeigen."
|
|
1801
|
-
},
|
|
1802
|
-
"feature_add-list_label": {
|
|
1803
|
-
"source": "Add List",
|
|
1804
|
-
"translation": "Hinzufügen-Liste"
|
|
1805
|
-
},
|
|
1806
|
-
"feature_add-list_setting_hideDisabledBlocks_description": {
|
|
1807
|
-
"source": "Hides blocks from the \"Add List\" if they can't be added to anywhere.",
|
|
1808
|
-
"translation": "Versteckt Blöcke in der «Hinzufügen-Liste», wenn sie nirgendwo hinzugefügt werden können."
|
|
1809
|
-
},
|
|
1810
|
-
"feature_add-list_setting_hideDisabledBlocks_label": {
|
|
1811
|
-
"source": "Hide blocks that can't be added",
|
|
1812
|
-
"translation": "Blöcke verstecken, die nicht hinzugefügt werden können"
|
|
1813
|
-
},
|
|
1814
|
-
"feature_agent_description": {
|
|
1815
|
-
"source": "Chat with an AI assistant to edit page content.",
|
|
1816
|
-
"translation": "Mit einem KI-Assistenten chatten, um Seiteninhalte zu bearbeiten."
|
|
1817
|
-
},
|
|
1818
|
-
"feature_agent_label": {
|
|
1819
|
-
"source": "AI Agent",
|
|
1820
|
-
"translation": "KI-Agent"
|
|
1821
|
-
},
|
|
1822
|
-
"feature_analyze_description": {
|
|
1823
|
-
"source": "Analyze blocks and page for SEO, accessibility, etc.",
|
|
1824
|
-
"translation": "Analysiert Blöcke und Seite für SEO, Barrierefreiheit, etc."
|
|
1825
|
-
},
|
|
1826
|
-
"feature_analyze_label": {
|
|
1827
|
-
"source": "Analyze",
|
|
1828
|
-
"translation": "Analysieren"
|
|
1829
|
-
},
|
|
1830
|
-
"feature_anchors_description": {
|
|
1831
|
-
"source": "Displays indicators for blocks with anchor IDs",
|
|
1832
|
-
"translation": "Zeigt Indikatoren für Blöcke mit Anker-IDs an"
|
|
1833
|
-
},
|
|
1834
|
-
"feature_anchors_label": {
|
|
1835
|
-
"source": "Anchors",
|
|
1836
|
-
"translation": "Anker"
|
|
1837
|
-
},
|
|
1838
|
-
"feature_artboard_description": {
|
|
1839
|
-
"source": "Wraps the entire page in an artboard that can be zoomed and moved using the mouse.",
|
|
1840
|
-
"translation": "Umhüllt die gesamte Seite in einer Arbeitsfläche, die mit der Maus gezoomt und bewegt werden kann."
|
|
1841
|
-
},
|
|
1842
|
-
"feature_artboard_label": {
|
|
1843
|
-
"source": "Artboard",
|
|
1844
|
-
"translation": "Arbeitsfläche"
|
|
1845
|
-
},
|
|
1846
|
-
"feature_artboard_setting_momentum_description": {
|
|
1847
|
-
"source": "Applies smooth animations when scrolling or zooming the artboard.",
|
|
1848
|
-
"translation": "Verwendet sanftes Scrollen und Vergrössern der Vorschau."
|
|
1849
|
-
},
|
|
1850
|
-
"feature_artboard_setting_momentum_label": {
|
|
1851
|
-
"source": "Use smooth scrolling",
|
|
1852
|
-
"translation": "Sanftes Scrollen verwenden"
|
|
1853
|
-
},
|
|
1854
|
-
"feature_artboard_setting_persist_description": {
|
|
1855
|
-
"source": "Stores and restores the last position and zoom factor of the artboard.",
|
|
1856
|
-
"translation": "Speichern und Wiederherstellen der letzten Position und Skalierung der Vorschau."
|
|
1857
|
-
},
|
|
1858
|
-
"feature_artboard_setting_persist_label": {
|
|
1859
|
-
"source": "Persist position and zoom",
|
|
1860
|
-
"translation": "Position und Zoom speichern"
|
|
1861
|
-
},
|
|
1862
|
-
"feature_artboard_setting_scrollSpeed_label": {
|
|
1863
|
-
"source": "Artboard scroll speed",
|
|
1864
|
-
"translation": "Scrollgeschwindigkeit der Vorschau"
|
|
1865
|
-
},
|
|
1866
|
-
"feature_block-scheduler_description": {
|
|
1867
|
-
"source": "Adds support for scheduling blocks.",
|
|
1868
|
-
"translation": "Ermöglicht das zeitgesteuerte Veröffentlichen von Blöcken."
|
|
1869
|
-
},
|
|
1870
|
-
"feature_block-scheduler_label": {
|
|
1871
|
-
"source": "Block Scheduler",
|
|
1872
|
-
"translation": "Block-Planung"
|
|
1873
|
-
},
|
|
1874
|
-
"feature_breadcrumbs_description": {
|
|
1875
|
-
"source": "Provides a breadcrumb of the selection.",
|
|
1876
|
-
"translation": "Zeigt den Breadcrumbs-Pfad der Auswahl an."
|
|
1877
|
-
},
|
|
1878
|
-
"feature_breadcrumbs_label": {
|
|
1879
|
-
"source": "Breadcrumbs",
|
|
1880
|
-
"translation": "Breadcrumbs"
|
|
1881
|
-
},
|
|
1882
|
-
"feature_changelog_description": {
|
|
1883
|
-
"source": "Provides a menu button to display a changelog of what's new.",
|
|
1884
|
-
"translation": "Stellt eine Menüschaltfläche bereit, um ein Änderungsprotokoll mit Neuigkeiten anzuzeigen."
|
|
1885
|
-
},
|
|
1886
|
-
"feature_changelog_label": {
|
|
1887
|
-
"source": "Changelog",
|
|
1888
|
-
"translation": "Änderungsprotokoll"
|
|
1889
|
-
},
|
|
1890
|
-
"feature_clipboard_description": {
|
|
1891
|
-
"source": "Provides clipboard integration to copy/paste existing blocks or paste supported clipboard content like text or images.",
|
|
1892
|
-
"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."
|
|
1893
|
-
},
|
|
1894
|
-
"feature_clipboard_label": {
|
|
1895
|
-
"source": "Clipboard",
|
|
1896
|
-
"translation": "Zwischenablage"
|
|
1897
|
-
},
|
|
1898
|
-
"feature_command-palette_description": {
|
|
1899
|
-
"source": "Provides a command palette with search to access most UI features with a keyboard.",
|
|
1900
|
-
"translation": "Stellt eine Befehlspalette mit Suche bereit, um die meisten UI-Funktionen mit der Tastatur zu verwenden."
|
|
1901
|
-
},
|
|
1902
|
-
"feature_command-palette_label": {
|
|
1903
|
-
"source": "Command Palette",
|
|
1904
|
-
"translation": "Befehlspalette"
|
|
1905
|
-
},
|
|
1906
|
-
"feature_comments_description": {
|
|
1907
|
-
"source": "Provides comment functionality for blocks.",
|
|
1908
|
-
"translation": "Stellt Kommentarfunktionalität für Blöcke bereit."
|
|
1909
|
-
},
|
|
1910
|
-
"feature_comments_label": {
|
|
1911
|
-
"source": "Comments",
|
|
1912
|
-
"translation": "Kommentare"
|
|
1913
|
-
},
|
|
1914
|
-
"feature_complex-options_description": {
|
|
1915
|
-
"source": "Edit complex option types such as charts.",
|
|
1916
|
-
"translation": "Ermöglicht die Bearbeitung komplexer Optionstypen wie z. B. Diagramme."
|
|
1917
|
-
},
|
|
1918
|
-
"feature_complex-options_label": {
|
|
1919
|
-
"source": "Complex Options",
|
|
1920
|
-
"translation": "Komplexe Optionen"
|
|
1921
|
-
},
|
|
1922
|
-
"feature_conversions_description": {
|
|
1923
|
-
"source": "Provides block actions to convert one or more blocks to a different bundle.",
|
|
1924
|
-
"translation": "Stellt Block-Aktionen bereit, um einen oder mehrere Blöcke in einen anderen Typ zu konvertieren."
|
|
1925
|
-
},
|
|
1926
|
-
"feature_conversions_label": {
|
|
1927
|
-
"source": "Conversions",
|
|
1928
|
-
"translation": "Konvertierungen"
|
|
1929
|
-
},
|
|
1930
|
-
"feature_debug_description": {
|
|
1931
|
-
"source": "Provides debugging functionality.",
|
|
1932
|
-
"translation": "Stellt Debugging-Funktionalität bereit."
|
|
1933
|
-
},
|
|
1934
|
-
"feature_debug_label": {
|
|
1935
|
-
"source": "Debug",
|
|
1936
|
-
"translation": "Debug"
|
|
1937
|
-
},
|
|
1938
|
-
"feature_delete_description": {
|
|
1939
|
-
"source": "Provides an action to delete one or more blocks.",
|
|
1940
|
-
"translation": "Stellt eine Aktion bereit, um einen oder mehrere Blöcke zu löschen."
|
|
1941
|
-
},
|
|
1942
|
-
"feature_delete_label": {
|
|
1943
|
-
"source": "Delete",
|
|
1944
|
-
"translation": "Löschen"
|
|
1945
|
-
},
|
|
1946
|
-
"feature_dev-mode_description": {
|
|
1947
|
-
"source": "Feature enabled in development mode.",
|
|
1948
|
-
"translation": "Funktion ist im Dev Mode aktiviert."
|
|
1949
|
-
},
|
|
1950
|
-
"feature_dev-mode_label": {
|
|
1951
|
-
"source": "Dev Mode",
|
|
1952
|
-
"translation": "Dev Mode"
|
|
1953
|
-
},
|
|
1954
|
-
"feature_diff_description": {
|
|
1955
|
-
"source": "Displays a diff of all changes in the edit state.",
|
|
1956
|
-
"translation": "Zeigt die Änderungen an die während dem Bearbeiten durchgeführt wurden."
|
|
1957
|
-
},
|
|
1958
|
-
"feature_diff_label": {
|
|
1959
|
-
"source": "Diff",
|
|
1960
|
-
"translation": "Änderungen"
|
|
1961
|
-
},
|
|
1962
|
-
"feature_dragging-overlay_description": {
|
|
1963
|
-
"source": "Renders an overlay when dragging or placing a block.",
|
|
1964
|
-
"translation": "Zeigt ein Overlay beim Ziehen oder Platzieren eines Blocks an."
|
|
1965
|
-
},
|
|
1966
|
-
"feature_dragging-overlay_label": {
|
|
1967
|
-
"source": "Dragging Overlay",
|
|
1968
|
-
"translation": "Drag-Overlay"
|
|
1969
|
-
},
|
|
1970
|
-
"feature_duplicate_description": {
|
|
1971
|
-
"source": "Provides an action to duplicate one or more blocks in place.",
|
|
1972
|
-
"translation": "Stellt eine Aktion bereit, um einen oder mehrere Blöcke zu duplizieren."
|
|
1973
|
-
},
|
|
1974
|
-
"feature_duplicate_label": {
|
|
1975
|
-
"source": "Duplicate",
|
|
1976
|
-
"translation": "Duplizieren"
|
|
1977
|
-
},
|
|
1978
|
-
"feature_edit-form_description": {
|
|
1979
|
-
"source": "Listens to edit events and renders an iframe containing the edit form.",
|
|
1980
|
-
"translation": "Reagiert auf Bearbeitungs-Events und zeigt ein iFrame mit dem Bearbeitungsformular an."
|
|
1981
|
-
},
|
|
1982
|
-
"feature_edit-form_label": {
|
|
1983
|
-
"source": "Edit Form",
|
|
1984
|
-
"translation": "Bearbeitungsformular"
|
|
1985
|
-
},
|
|
1986
|
-
"feature_edit_description": {
|
|
1987
|
-
"source": "Provides an action to edit a block.",
|
|
1988
|
-
"translation": "Stellt eine Aktion bereit, um einen Block zu bearbeiten."
|
|
1989
|
-
},
|
|
1990
|
-
"feature_edit_label": {
|
|
1991
|
-
"source": "Edit",
|
|
1992
|
-
"translation": "Bearbeiten"
|
|
1993
|
-
},
|
|
1994
|
-
"feature_editable-field_description": {
|
|
1995
|
-
"source": "Implements a form overlay to edit a single field of a block.",
|
|
1996
|
-
"translation": "Implementiert ein Formular-Overlay zum Bearbeiten eines einzelnen Felds eines Blocks."
|
|
1997
|
-
},
|
|
1998
|
-
"feature_editable-field_label": {
|
|
1999
|
-
"source": "Editable Field",
|
|
2000
|
-
"translation": "Bearbeitbares Feld"
|
|
2001
|
-
},
|
|
2002
|
-
"feature_editable-mask_description": {
|
|
2003
|
-
"source": "Provides a view option to hide non-editable parts of the page.",
|
|
2004
|
-
"translation": "Stellt eine Ansichtsoption bereit, um nicht bearbeitbare Teile der Seite zu verstecken."
|
|
2005
|
-
},
|
|
2006
|
-
"feature_editable-mask_label": {
|
|
2007
|
-
"source": "Editable Mask",
|
|
2008
|
-
"translation": "Bearbeitbare Maske"
|
|
2009
|
-
},
|
|
2010
|
-
"feature_entity-title_description": {
|
|
2011
|
-
"source": "Renders the title and status of the page entity.",
|
|
2012
|
-
"translation": "Zeigt den Titel und Status der Seitenentität an."
|
|
2013
|
-
},
|
|
2014
|
-
"feature_entity-title_label": {
|
|
2015
|
-
"source": "Entity Title",
|
|
2016
|
-
"translation": "Entitäts-Titel"
|
|
2017
|
-
},
|
|
2018
|
-
"feature_exit_description": {
|
|
2019
|
-
"source": "Provides a menu button to exit the editor without saving.",
|
|
2020
|
-
"translation": "Stellt einen Menü-Button bereit, um den Editor ohne Speichern zu verlassen."
|
|
2021
|
-
},
|
|
2022
|
-
"feature_exit_label": {
|
|
2023
|
-
"source": "Exit",
|
|
2024
|
-
"translation": "Verlassen"
|
|
2025
|
-
},
|
|
2026
|
-
"feature_fragments_description": {
|
|
2027
|
-
"source": "Provides way to add content fragments defined by the frontend.",
|
|
2028
|
-
"translation": "Ermöglicht das Hinzufügen von Inhaltsfragmenten, die vom Frontend definiert wurden."
|
|
2029
|
-
},
|
|
2030
|
-
"feature_fragments_label": {
|
|
2031
|
-
"source": "Fragments",
|
|
2032
|
-
"translation": "Fragmente"
|
|
2033
|
-
},
|
|
2034
|
-
"feature_grid_description": {
|
|
2035
|
-
"source": "Provides a view option to render a grid.",
|
|
2036
|
-
"translation": "Stellt eine Ansichtsoption bereit, um ein Raster anzuzeigen."
|
|
2037
|
-
},
|
|
2038
|
-
"feature_grid_label": {
|
|
2039
|
-
"source": "Grid",
|
|
2040
|
-
"translation": "Raster"
|
|
2041
|
-
},
|
|
2042
|
-
"feature_help_description": {
|
|
2043
|
-
"source": "Provides a sidebar pane with helpful information on how to use blokkli.",
|
|
2044
|
-
"translation": "Stellt ein Seitenleisten-Panel mit hilfreichen Informationen zur Verwendung von blökkli bereit."
|
|
2045
|
-
},
|
|
2046
|
-
"feature_help_label": {
|
|
2047
|
-
"source": "Help",
|
|
2048
|
-
"translation": "Hilfe"
|
|
2049
|
-
},
|
|
2050
|
-
"feature_highlights_description": {
|
|
2051
|
-
"source": "Renders persistent highlights for blocks with issues or outdated translations.",
|
|
2052
|
-
"translation": "Zeigt dauerhafte Markierungen für Blöcke mit Problemen oder veralteten Übersetzungen an."
|
|
2053
|
-
},
|
|
2054
|
-
"feature_highlights_label": {
|
|
2055
|
-
"source": "Highlights",
|
|
2056
|
-
"translation": "Markierungen"
|
|
2057
|
-
},
|
|
2058
|
-
"feature_history_description": {
|
|
2059
|
-
"source": "Implements support for history features (undo, redo, list of mutations).",
|
|
2060
|
-
"translation": "Implementiert Unterstützung für Verlaufsfunktionen (Rückgängig, Wiederherstellen, Liste der Änderungen)."
|
|
2061
|
-
},
|
|
2062
|
-
"feature_history_label": {
|
|
2063
|
-
"source": "History",
|
|
2064
|
-
"translation": "Verlauf"
|
|
2065
|
-
},
|
|
2066
|
-
"feature_history_setting_useMouseButtons_description": {
|
|
2067
|
-
"source": "When enabled you can use the backwards/forwards buttons on your mouse to undo and redo.",
|
|
2068
|
-
"translation": "Verwendet die Zurück- und Vorärts-Taste der Maus um die letzte Änderung rückgängig zu machen, respektive wiederherzustellen."
|
|
2069
|
-
},
|
|
2070
|
-
"feature_history_setting_useMouseButtons_label": {
|
|
2071
|
-
"source": "Use mouse buttons for undo/redo",
|
|
2072
|
-
"translation": "Maustasten für Rückgängig/Wiederherstellen verwenden"
|
|
2073
|
-
},
|
|
2074
|
-
"feature_hover_description": {
|
|
2075
|
-
"source": "Renders a border around blocks that are currently being hovered.",
|
|
2076
|
-
"translation": "Zeigt einen Rahmen um Blöcke an, über denen sich der Mauszeiger befindet."
|
|
2077
|
-
},
|
|
2078
|
-
"feature_hover_label": {
|
|
2079
|
-
"source": "Hover",
|
|
2080
|
-
"translation": "Hover"
|
|
2081
|
-
},
|
|
2082
|
-
"feature_import-existing_description": {
|
|
2083
|
-
"source": "Implements a menu action that renders a dialog to import blocks from another entity.",
|
|
2084
|
-
"translation": "Implementiert eine Menü-Aktion, die einen Dialog zum Importieren von Blöcken aus einer anderen Entität anzeigt."
|
|
2085
|
-
},
|
|
2086
|
-
"feature_import-existing_label": {
|
|
2087
|
-
"source": "Import existing content",
|
|
2088
|
-
"translation": "Bestehende Inhalte importieren"
|
|
2089
|
-
},
|
|
2090
|
-
"feature_import-existing_setting_showDialogWhenEmpty_description": {
|
|
2091
|
-
"source": "Displays the import dialog when starting blökkli if the page is empty.",
|
|
2092
|
-
"translation": "Zeigt den Importdialog beim öffnen von blökkli wenn die Seite leer ist."
|
|
2093
|
-
},
|
|
2094
|
-
"feature_import-existing_setting_showDialogWhenEmpty_label": {
|
|
2095
|
-
"source": "Show import dialog at start",
|
|
2096
|
-
"translation": "Importdialog beim Start anzeigen"
|
|
2097
|
-
},
|
|
2098
|
-
"feature_library_description": {
|
|
2099
|
-
"source": "Implements support for a block library to manage reusable blocks.",
|
|
2100
|
-
"translation": "Implementiert Unterstützung für eine Block-Bibliothek zur Verwaltung wiederverwendbarer Blöcke."
|
|
2101
|
-
},
|
|
2102
|
-
"feature_library_label": {
|
|
2103
|
-
"source": "Library",
|
|
2104
|
-
"translation": "Bibliothek"
|
|
2105
|
-
},
|
|
2106
|
-
"feature_media-library_description": {
|
|
2107
|
-
"source": "Implements a media library to easily drag and drop media like images or videos.",
|
|
2108
|
-
"translation": "Implementiert eine Medienbibliothek zum einfachen Ziehen und Ablegen von Medien wie Bildern oder Videos."
|
|
2109
|
-
},
|
|
2110
|
-
"feature_media-library_label": {
|
|
2111
|
-
"source": "Media Library",
|
|
2112
|
-
"translation": "Medienbibliothek"
|
|
2113
|
-
},
|
|
2114
|
-
"feature_multi-select_description": {
|
|
2115
|
-
"source": "Implements support for selecting multiple blocks using a select rectangle.",
|
|
2116
|
-
"translation": "Implementiert Unterstützung für die Auswahl mehrerer Blöcke mithilfe eines Auswahlrechtecks."
|
|
2117
|
-
},
|
|
2118
|
-
"feature_multi-select_label": {
|
|
2119
|
-
"source": "Multiselect",
|
|
2120
|
-
"translation": "Mehrfachauswahl"
|
|
2121
|
-
},
|
|
2122
|
-
"feature_options_description": {
|
|
2123
|
-
"source": "Renders the options form for one or more blocks.",
|
|
2124
|
-
"translation": "Zeigt das Optionsformular für einen oder mehrere Blöcke an."
|
|
2125
|
-
},
|
|
2126
|
-
"feature_options_label": {
|
|
2127
|
-
"source": "Options",
|
|
2128
|
-
"translation": "Optionen"
|
|
2129
|
-
},
|
|
2130
|
-
"feature_ownership_description": {
|
|
2131
|
-
"source": "Renders a large button to take ownership of the current edit state.",
|
|
2132
|
-
"translation": "Zeigt einen grossen Button an, um die Besitzrechte des aktuellen Bearbeitungsstatus zu übernehmen."
|
|
2133
|
-
},
|
|
2134
|
-
"feature_ownership_label": {
|
|
2135
|
-
"source": "Ownership",
|
|
2136
|
-
"translation": "Besitzrechte"
|
|
2137
|
-
},
|
|
2138
|
-
"feature_preview-grant_description": {
|
|
2139
|
-
"source": "Provides a button to open a dialog with a QR code to preview the page on a smartphone.",
|
|
2140
|
-
"translation": "Stellt einen Button bereit, um einen Dialog mit einem QR-Code zu öffnen, um die Seite auf einem Smartphone in der Vorschau anzuzeigen."
|
|
2141
|
-
},
|
|
2142
|
-
"feature_preview-grant_label": {
|
|
2143
|
-
"source": "Preview Grant",
|
|
2144
|
-
"translation": "Vorschau-Zugriff"
|
|
2145
|
-
},
|
|
2146
|
-
"feature_preview_description": {
|
|
2147
|
-
"source": "Provides a button to open a preview in a new window.",
|
|
2148
|
-
"translation": "Stellt einen Button bereit, um eine Vorschau in einem neuen Fenster zu öffnen."
|
|
2149
|
-
},
|
|
2150
|
-
"feature_preview_label": {
|
|
2151
|
-
"source": "Preview",
|
|
2152
|
-
"translation": "Vorschau"
|
|
2153
|
-
},
|
|
2154
|
-
"feature_proxy_view_description": {
|
|
2155
|
-
"source": "Displays the blocks as a structure in the preview.",
|
|
2156
|
-
"translation": "Zeigt die Blöcke als Struktur in der Vorschau an."
|
|
2157
|
-
},
|
|
2158
|
-
"feature_proxy_view_label": {
|
|
2159
|
-
"source": "Proxy View",
|
|
2160
|
-
"translation": "Strukturansicht"
|
|
2161
|
-
},
|
|
2162
|
-
"feature_publish_description": {
|
|
2163
|
-
"source": "Provides a menu button to publish the changes of the current entity.",
|
|
2164
|
-
"translation": "Stellt einen Menü-Button bereit, um die Änderungen der aktuellen Entität zu veröffentlichen."
|
|
2165
|
-
},
|
|
2166
|
-
"feature_publish_label": {
|
|
2167
|
-
"source": "Publish",
|
|
2168
|
-
"translation": "Veröffentlichen"
|
|
2169
|
-
},
|
|
2170
|
-
"feature_publish_setting_closeAfterPublish_description": {
|
|
2171
|
-
"source": "Immediately closes the editor after successfully publishing or saving.",
|
|
2172
|
-
"translation": "Den Editor umgehend schliessen nach dem Veröffentlichen/Speichern der Änderungen."
|
|
2173
|
-
},
|
|
2174
|
-
"feature_publish_setting_closeAfterPublish_label": {
|
|
2175
|
-
"source": "Close editor after publishing",
|
|
2176
|
-
"translation": "Nach «Veröffentlichen» den Editor schliessen"
|
|
2177
|
-
},
|
|
2178
|
-
"feature_referenced-entities_description": {
|
|
2179
|
-
"source": "Renders referenced entities of blocks.",
|
|
2180
|
-
"translation": "Zeigt referenzierte Entitäten von Blöcken an."
|
|
2181
|
-
},
|
|
2182
|
-
"feature_referenced-entities_label": {
|
|
2183
|
-
"source": "Referenced Entities",
|
|
2184
|
-
"translation": "Referenzierte Entitäten"
|
|
2185
|
-
},
|
|
2186
|
-
"feature_responsive-preview_description": {
|
|
2187
|
-
"source": "Provides a responsive preview of the current edit state in an iframe.",
|
|
2188
|
-
"translation": "Stellt eine responsive Vorschau des aktuellen Bearbeitungszustands in einem iFrame bereit."
|
|
2189
|
-
},
|
|
2190
|
-
"feature_responsive-preview_label": {
|
|
2191
|
-
"source": "Responsive Preview",
|
|
2192
|
-
"translation": "Responsive Vorschau"
|
|
2193
|
-
},
|
|
2194
|
-
"feature_revert_description": {
|
|
2195
|
-
"source": "Provides a menu button to revert all changes done on the current entity.",
|
|
2196
|
-
"translation": "Stellt einen Menü-Button bereit, um alle Änderungen an der aktuellen Entität rückgängig zu machen."
|
|
2197
|
-
},
|
|
2198
|
-
"feature_revert_label": {
|
|
2199
|
-
"source": "Revert",
|
|
2200
|
-
"translation": "Verwerfen"
|
|
2201
|
-
},
|
|
2202
|
-
"feature_search_description": {
|
|
2203
|
-
"source": "Provides an overlay with shortcut to search for blocks on the current page or existing content to add as blocks.",
|
|
2204
|
-
"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."
|
|
2205
|
-
},
|
|
2206
|
-
"feature_search_label": {
|
|
2207
|
-
"source": "Search",
|
|
2208
|
-
"translation": "Suchen"
|
|
2209
|
-
},
|
|
2210
|
-
"feature_selection_description": {
|
|
2211
|
-
"source": "Renders an overlay that highlights the selected blocks.",
|
|
2212
|
-
"translation": "Zeigt ein Overlay an, das die ausgewählten Blöcke hervorhebt."
|
|
2213
|
-
},
|
|
2214
|
-
"feature_selection_label": {
|
|
2215
|
-
"source": "Selection",
|
|
2216
|
-
"translation": "Auswahl"
|
|
2217
|
-
},
|
|
2218
|
-
"feature_settings_description": {
|
|
2219
|
-
"source": "Provides a menu button to display a settings dialog.",
|
|
2220
|
-
"translation": "Stellt einen Menü-Button bereit, um einen Einstellungsdialog anzuzeigen."
|
|
2221
|
-
},
|
|
2222
|
-
"feature_settings_label": {
|
|
2223
|
-
"source": "Settings",
|
|
2224
|
-
"translation": "Einstellungen"
|
|
2225
|
-
},
|
|
2226
|
-
"feature_settings_setting_lowPerformanceMode_description": {
|
|
2227
|
-
"source": "Reduces the animations and interactivity to a minimum for devices with low performance.",
|
|
2228
|
-
"translation": "Reduziert Animationen und interaktive Elemente auf ein Minimum, für Geräte mit niedriger Leistung."
|
|
2229
|
-
},
|
|
2230
|
-
"feature_settings_setting_lowPerformanceMode_label": {
|
|
2231
|
-
"source": "Enable low performance mode",
|
|
2232
|
-
"translation": "Modus für niedrige Leistung aktivieren"
|
|
2233
|
-
},
|
|
2234
|
-
"feature_settings_setting_resetAllSettings_label": {
|
|
2235
|
-
"source": "Reset all settings",
|
|
2236
|
-
"translation": "Alle Einstellungen zurücksetzen"
|
|
2237
|
-
},
|
|
2238
|
-
"feature_settings_setting_useAnimations_description": {
|
|
2239
|
-
"source": "Animates UI elements like dialogs or drawers or interactions like drag and drop or scroll changes.",
|
|
2240
|
-
"translation": "Animiert Elemente wie Dialoge oder Seitenleisten, oder Interaktionen wie «Drag and Drop» oder Änderungen in Position oder Grösse."
|
|
2241
|
-
},
|
|
2242
|
-
"feature_settings_setting_useAnimations_label": {
|
|
2243
|
-
"source": "Use animations",
|
|
2244
|
-
"translation": "Animationen verwenden"
|
|
2245
|
-
},
|
|
2246
|
-
"feature_structure_description": {
|
|
2247
|
-
"source": "Provides a sidebar button to render a structured list of all blocks on the current page.",
|
|
2248
|
-
"translation": "Stellt einen Seitenleisten-Button bereit, um eine strukturierte Liste aller Blöcke auf der aktuellen Seite anzuzeigen."
|
|
2249
|
-
},
|
|
2250
|
-
"feature_structure_label": {
|
|
2251
|
-
"source": "Structure",
|
|
2252
|
-
"translation": "Struktur"
|
|
2253
|
-
},
|
|
2254
|
-
"feature_swap_description": {
|
|
2255
|
-
"source": "Provides an action to swap two selected blocks.",
|
|
2256
|
-
"translation": "Stellt eine Aktion zum Vertauschen von zwei ausgewählten Blöcken bereit."
|
|
2257
|
-
},
|
|
2258
|
-
"feature_swap_label": {
|
|
2259
|
-
"source": "Swap",
|
|
2260
|
-
"translation": "Tauschen"
|
|
2261
|
-
},
|
|
2262
|
-
"feature_templates_description": {
|
|
2263
|
-
"source": "Add blocks from templates.",
|
|
2264
|
-
"translation": "Blöcke aus Vorlagen hinzufügen."
|
|
2265
|
-
},
|
|
2266
|
-
"feature_templates_label": {
|
|
2267
|
-
"source": "Templates",
|
|
2268
|
-
"translation": "Vorlagen"
|
|
2269
|
-
},
|
|
2270
|
-
"feature_theme_description": {
|
|
2271
|
-
"source": "Implements a theme editor.",
|
|
2272
|
-
"translation": "Implementiert einen Theme-Editor."
|
|
2273
|
-
},
|
|
2274
|
-
"feature_theme_label": {
|
|
2275
|
-
"source": "Theme",
|
|
2276
|
-
"translation": "Theme"
|
|
2277
|
-
},
|
|
2278
|
-
"feature_touch-action-bar_description": {
|
|
2279
|
-
"source": "Renders a button on touch devices to cancel touch actions.",
|
|
2280
|
-
"translation": "Zeigt einen Button auf Touch-Geräten an, um Touch-Aktionen abzubrechen."
|
|
2281
|
-
},
|
|
2282
|
-
"feature_touch-action-bar_label": {
|
|
2283
|
-
"source": "Touch Action Bar",
|
|
2284
|
-
"translation": "Touch-Aktionsleiste"
|
|
2285
|
-
},
|
|
2286
|
-
"feature_tour_description": {
|
|
2287
|
-
"source": "Provides a tour overlay to get to know the editor.",
|
|
2288
|
-
"translation": "Stellt ein Tour-Overlay bereit, um den Editor kennenzulernen."
|
|
2289
|
-
},
|
|
2290
|
-
"feature_tour_label": {
|
|
2291
|
-
"source": "Tour",
|
|
2292
|
-
"translation": "Tour"
|
|
2293
|
-
},
|
|
2294
|
-
"feature_transform_description": {
|
|
2295
|
-
"source": "Provides integration for block transform plugins.",
|
|
2296
|
-
"translation": "Stellt Integration für Block-Transform-Plugins bereit."
|
|
2297
|
-
},
|
|
2298
|
-
"feature_transform_label": {
|
|
2299
|
-
"source": "Transform",
|
|
2300
|
-
"translation": "Transform"
|
|
2301
|
-
},
|
|
2302
|
-
"feature_translations_description": {
|
|
2303
|
-
"source": "Adds support for block translations.",
|
|
2304
|
-
"translation": "Fügt Unterstützung für Block-Übersetzungen hinzu."
|
|
2305
|
-
},
|
|
2306
|
-
"feature_translations_label": {
|
|
2307
|
-
"source": "Translations",
|
|
2308
|
-
"translation": "Übersetzungen"
|
|
2309
|
-
},
|
|
2310
|
-
"feature_validations_description": {
|
|
2311
|
-
"source": "Provides a sidebar pane to render validations.",
|
|
2312
|
-
"translation": "Stellt ein Seitenleisten-Panel bereit, um Validierungen anzuzeigen."
|
|
2313
|
-
},
|
|
2314
|
-
"feature_validations_label": {
|
|
2315
|
-
"source": "Validations",
|
|
2316
|
-
"translation": "Validierungen"
|
|
2317
|
-
},
|
|
2318
|
-
"feature_workspace_description": {
|
|
2319
|
-
"source": "Allows users to switch between edit states.",
|
|
2320
|
-
"translation": "Ermöglicht das Wechseln zwischen Bearbeitungszuständen."
|
|
2321
|
-
},
|
|
2322
|
-
"feature_workspace_label": {
|
|
2323
|
-
"source": "Workspace",
|
|
2324
|
-
"translation": "Arbeitsbereich"
|
|
2325
|
-
},
|
|
2326
|
-
"fieldIsRequired": {
|
|
2327
|
-
"source": "This field is required",
|
|
2328
|
-
"translation": "Feld darf nicht leer sein"
|
|
2329
|
-
},
|
|
2330
|
-
"filterSelectNoResults": {
|
|
2331
|
-
"source": "No results",
|
|
2332
|
-
"translation": "Keine Ergebnisse"
|
|
2333
|
-
},
|
|
2334
|
-
"filterSelectSearch": {
|
|
2335
|
-
"source": "Search...",
|
|
2336
|
-
"translation": "Suchen..."
|
|
2337
|
-
},
|
|
2338
|
-
"formSaveNotEditStateInfo": {
|
|
2339
|
-
"source": "Saving this form applies changes immediately — they take effect without publishing the current blökkli page.",
|
|
2340
|
-
"translation": "Änderungen in diesem Formular werden sofort übernommen — ohne Veröffentlichung der aktuellen blökkli-Seite."
|
|
2341
|
-
},
|
|
2342
|
-
"fragmentsAddFragmentAction": {
|
|
2343
|
-
"source": "Fragment",
|
|
2344
|
-
"translation": "Fragment"
|
|
2345
|
-
},
|
|
2346
|
-
"fragmentsAddFragmentDescription": {
|
|
2347
|
-
"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>",
|
|
2348
|
-
"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>"
|
|
2349
|
-
},
|
|
2350
|
-
"fragmentsPlaceDialogLead": {
|
|
2351
|
-
"source": "Select a block fragment to add to the page.",
|
|
2352
|
-
"translation": "Wählen Sie ein Block-Fragment aus."
|
|
2353
|
-
},
|
|
2354
|
-
"fragmentsPlaceDialogSearchLabel": {
|
|
2355
|
-
"source": "Filter fragments",
|
|
2356
|
-
"translation": "Fragmente filtern"
|
|
2357
|
-
},
|
|
2358
|
-
"fragmentsPlaceDialogSearchPlaceholder": {
|
|
2359
|
-
"source": "Search fragments",
|
|
2360
|
-
"translation": "Fragmente durchsuchen"
|
|
2361
|
-
},
|
|
2362
|
-
"fragmentsPlaceDialogSubmitButton": {
|
|
2363
|
-
"source": "Add selected fragment",
|
|
2364
|
-
"translation": "Ausgewähltes Fragment hinzufügen"
|
|
2365
|
-
},
|
|
2366
|
-
"fragmentsPlaceDialogTitle": {
|
|
2367
|
-
"source": "Add fragment block",
|
|
2368
|
-
"translation": "Fragment hinzufügen"
|
|
2369
|
-
},
|
|
2370
|
-
"gridHide": {
|
|
2371
|
-
"source": "Hide grid",
|
|
2372
|
-
"translation": "Spalten verstecken"
|
|
2373
|
-
},
|
|
2374
|
-
"gridShow": {
|
|
2375
|
-
"source": "Show grid",
|
|
2376
|
-
"translation": "Spalten anzeigen"
|
|
2377
|
-
},
|
|
2378
|
-
"gridToggle": {
|
|
2379
|
-
"source": "Toggle grid",
|
|
2380
|
-
"translation": "Spalten anzeigen"
|
|
2381
|
-
},
|
|
2382
|
-
"gridTourText": {
|
|
2383
|
-
"source": "Display a layout grid overlay on top of the page.",
|
|
2384
|
-
"translation": "Zeigt die Layout-Spalten als Overlay über die Seite an."
|
|
2385
|
-
},
|
|
2386
|
-
"helpTourText": {
|
|
2387
|
-
"source": "Shows a list of available shortcuts.",
|
|
2388
|
-
"translation": "Zeigt eine Liste von verfügbaren Tastenkombinationen an."
|
|
2389
|
-
},
|
|
2390
|
-
"history": {
|
|
2391
|
-
"source": "History",
|
|
2392
|
-
"translation": "Änderungsverlauf"
|
|
2393
|
-
},
|
|
2394
|
-
"historyCurrentRevision": {
|
|
2395
|
-
"source": "Current revision",
|
|
2396
|
-
"translation": "Aktuelle Revision"
|
|
2397
|
-
},
|
|
2398
|
-
"historyEmpty": {
|
|
2399
|
-
"source": "There are now changes yet.",
|
|
2400
|
-
"translation": "Es gibt noch keine Änderungen."
|
|
2401
|
-
},
|
|
2402
|
-
"historyRedo": {
|
|
2403
|
-
"source": "Redo",
|
|
2404
|
-
"translation": "Wiederholen"
|
|
2405
|
-
},
|
|
2406
|
-
"historyRedoTourText": {
|
|
2407
|
-
"source": "Redo the previous change.",
|
|
2408
|
-
"translation": "Machen Sie die vorherige Änderung rückgängig."
|
|
2409
|
-
},
|
|
2410
|
-
"historyShowMore": {
|
|
2411
|
-
"source": "Show @count more",
|
|
2412
|
-
"translation": "@count weitere anzeigen"
|
|
2413
|
-
},
|
|
2414
|
-
"historyTourText": {
|
|
2415
|
-
"source": "See a list of all changes made so far and switch back and forth between changes.",
|
|
2416
|
-
"translation": "Zeigt den Verlauf aller Änderungen die gemacht wurden. Springen Sie beliebig zwischen Änderungen vor und zurück."
|
|
2417
|
-
},
|
|
2418
|
-
"historyUndo": {
|
|
2419
|
-
"source": "Undo",
|
|
2420
|
-
"translation": "Rückgängig"
|
|
2421
|
-
},
|
|
2422
|
-
"historyUndoTourText": {
|
|
2423
|
-
"source": "Undo the last change.",
|
|
2424
|
-
"translation": "Letzte Änderung rückgängig machen."
|
|
2425
|
-
},
|
|
2426
|
-
"iframesEditTitle": {
|
|
2427
|
-
"source": "Edit iframe size",
|
|
2428
|
-
"translation": "Iframe-Grösse bearbeiten"
|
|
2429
|
-
},
|
|
2430
|
-
"importExistingDescription": {
|
|
2431
|
-
"source": "Import from an existing page",
|
|
2432
|
-
"translation": "Von einer bestehenden Seite importieren"
|
|
2433
|
-
},
|
|
2434
|
-
"importExistingDialogLead": {
|
|
2435
|
-
"source": "Import content from an existing page. The items will be added to the end of the list. This action can be undone.",
|
|
2436
|
-
"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."
|
|
2437
|
-
},
|
|
2438
|
-
"importExistingDialogSubmit": {
|
|
2439
|
-
"source": "Import content",
|
|
2440
|
-
"translation": "Inhalte importieren"
|
|
2441
|
-
},
|
|
2442
|
-
"importExistingDialogTitle": {
|
|
2443
|
-
"source": "Import from existing page",
|
|
2444
|
-
"translation": "Von bestehender Seite importieren"
|
|
2445
|
-
},
|
|
2446
|
-
"importExistingError": {
|
|
2447
|
-
"source": "Content could not be imported.",
|
|
2448
|
-
"translation": "Inhalte konnten nicht übernommen werden."
|
|
2449
|
-
},
|
|
2450
|
-
"importExistingFieldsLabel": {
|
|
2451
|
-
"source": "Which content would you like to import?",
|
|
2452
|
-
"translation": "Welche Inhalte möchten Sie importieren?"
|
|
2453
|
-
},
|
|
2454
|
-
"importExistingPagesTitle": {
|
|
2455
|
-
"source": "Select page",
|
|
2456
|
-
"translation": "Seite auswählen"
|
|
2457
|
-
},
|
|
2458
|
-
"importExistingSuccess": {
|
|
2459
|
-
"source": "Content imported successfully.",
|
|
2460
|
-
"translation": "Inhalte erfolgreich übernommen."
|
|
2461
|
-
},
|
|
2462
|
-
"importExistingTitle": {
|
|
2463
|
-
"source": "Import...",
|
|
2464
|
-
"translation": "Importieren..."
|
|
2465
|
-
},
|
|
2466
|
-
"interactionLayerOff": {
|
|
2467
|
-
"source": "Show interaction layers",
|
|
2468
|
-
"translation": "Interaktionsebenen anzeigen"
|
|
2469
|
-
},
|
|
2470
|
-
"interactionLayersOn": {
|
|
2471
|
-
"source": "Hide interaction layers",
|
|
2472
|
-
"translation": "Interaktionsebenen ausblenden"
|
|
2473
|
-
},
|
|
2474
|
-
"keyboardSpace": {
|
|
2475
|
-
"source": "Space",
|
|
2476
|
-
"translation": "Leertaste"
|
|
2477
|
-
},
|
|
2478
|
-
"libraryAdd": {
|
|
2479
|
-
"source": "Add to library...",
|
|
2480
|
-
"translation": "Zur Bibliothek hinzufügen..."
|
|
2481
|
-
},
|
|
2482
|
-
"libraryAddDescription": {
|
|
2483
|
-
"source": "<p>Add a reusable block from the block library. Changes to that block will become visible on all pages.</p>",
|
|
2484
|
-
"translation": "Fügen Sie einen wiederverwendbaren Block aus der Bibliothek hinzu."
|
|
2485
|
-
},
|
|
2486
|
-
"libraryAddFromLibrary": {
|
|
2487
|
-
"source": "From library",
|
|
2488
|
-
"translation": "Aus der Bibliothek"
|
|
2489
|
-
},
|
|
2490
|
-
"libraryAddNoEditPermission": {
|
|
2491
|
-
"source": "You do not have permission to edit this block.",
|
|
2492
|
-
"translation": "Bearbeiten aufgrund fehlender Berechtigung nicht möglich."
|
|
2493
|
-
},
|
|
2494
|
-
"libraryAddNoPermission": {
|
|
2495
|
-
"source": "You do not have permission to create library items.",
|
|
2496
|
-
"translation": "Erstellen aufgrund fehlender Berechtigung nicht möglich."
|
|
2497
|
-
},
|
|
2498
|
-
"libraryAddNotAllowedInField": {
|
|
2499
|
-
"source": "Reusable blocks are not allowed in this field.",
|
|
2500
|
-
"translation": "Wiederverwendbare Blöcke sind in diesem Feld nicht erlaubt."
|
|
2501
|
-
},
|
|
2502
|
-
"libraryAddNotSupported": {
|
|
2503
|
-
"source": "This block type cannot be made reusable.",
|
|
2504
|
-
"translation": "Dieser Blocktyp kann nicht wiederverwendbar gemacht werden."
|
|
2505
|
-
},
|
|
2506
|
-
"libraryDetach": {
|
|
2507
|
-
"source": "Detach from library",
|
|
2508
|
-
"translation": "Von der Bibliothek loslösen"
|
|
2509
|
-
},
|
|
2510
|
-
"libraryDetachNoPermission": {
|
|
2511
|
-
"source": "You do not have permission to detach this block.",
|
|
2512
|
-
"translation": "Loslösen aufgrund fehlender Berechtigung nicht möglich."
|
|
2513
|
-
},
|
|
2514
|
-
"libraryDialogDescriptionLabel": {
|
|
2515
|
-
"source": "Description",
|
|
2516
|
-
"translation": "Beschreibung"
|
|
2517
|
-
},
|
|
2518
|
-
"libraryDialogLead": {
|
|
2519
|
-
"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.",
|
|
2520
|
-
"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."
|
|
2521
|
-
},
|
|
2522
|
-
"libraryDialogReusableInfo": {
|
|
2523
|
-
"source": "The library item will be available for placement on other pages once this page has been published.",
|
|
2524
|
-
"translation": "Das Bibliothekselement kann auf anderen Seiten platziert werden sobald diese Seite publiziert/gespeichert wurde."
|
|
2525
|
-
},
|
|
2526
|
-
"libraryDialogSubmit": {
|
|
2527
|
-
"source": "Add to library",
|
|
2528
|
-
"translation": "Zur Bibliothek hinzufügen"
|
|
2529
|
-
},
|
|
2530
|
-
"libraryDialogTitle": {
|
|
2531
|
-
"source": "Add to library",
|
|
2532
|
-
"translation": "Zur Bibliothek hinzufügen"
|
|
2533
|
-
},
|
|
2534
|
-
"libraryDialogTitleInputPlaceholder": {
|
|
2535
|
-
"source": "e.g. Teaser Campaign 2024",
|
|
2536
|
-
"translation": "z.B. Teaser Kampagne 2023"
|
|
2537
|
-
},
|
|
2538
|
-
"libraryError": {
|
|
2539
|
-
"source": "Failed to add block to library.",
|
|
2540
|
-
"translation": "Das Element konnte nicht wiederverwendbar gemacht werden."
|
|
2541
|
-
},
|
|
2542
|
-
"libraryItemEditOverlayBack": {
|
|
2543
|
-
"source": "Back to page",
|
|
2544
|
-
"translation": "Zurück zur Seite"
|
|
2545
|
-
},
|
|
2546
|
-
"libraryItemEditOverlayBackWithPage": {
|
|
2547
|
-
"source": "Save and go back to \"@label\"",
|
|
2548
|
-
"translation": "Speichern und zurück zu «@label»"
|
|
2549
|
-
},
|
|
2550
|
-
"libraryItemEditOverlayBackWithPageNoSave": {
|
|
2551
|
-
"source": "Go back to \"@label\"",
|
|
2552
|
-
"translation": "Zurück zu «@label»"
|
|
2553
|
-
},
|
|
2554
|
-
"libraryItemEditOverlayTitle": {
|
|
2555
|
-
"source": "Edit reusable block",
|
|
2556
|
-
"translation": "Wiederverwendbaren Block bearbeiten"
|
|
2557
|
-
},
|
|
2558
|
-
"libraryPlaceBundleSelectLabel": {
|
|
2559
|
-
"source": "Bundle",
|
|
2560
|
-
"translation": "Typ"
|
|
2561
|
-
},
|
|
2562
|
-
"libraryPlaceDialogLead": {
|
|
2563
|
-
"source": "Select a reusable block from the library to add it to your layout. You can detach the block later.",
|
|
2564
|
-
"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."
|
|
2565
|
-
},
|
|
2566
|
-
"libraryPlaceDialogSubmit": {
|
|
2567
|
-
"source": "Add reusable block",
|
|
2568
|
-
"translation": "Wiederverwendbaren Block hinzufügen"
|
|
2569
|
-
},
|
|
2570
|
-
"libraryPlaceDialogTitle": {
|
|
2571
|
-
"source": "Add block from library",
|
|
2572
|
-
"translation": "Block aus Bibliothek hinzufügen"
|
|
2573
|
-
},
|
|
2574
|
-
"libraryPreviewLabel": {
|
|
2575
|
-
"source": "Preview",
|
|
2576
|
-
"translation": "Vorschau"
|
|
2577
|
-
},
|
|
2578
|
-
"loading": {
|
|
2579
|
-
"source": "Loading...",
|
|
2580
|
-
"translation": "Wird geladen…"
|
|
2581
|
-
},
|
|
2582
|
-
"manageSchedule": {
|
|
2583
|
-
"source": "Manage schedule...",
|
|
2584
|
-
"translation": "Planung verwalten..."
|
|
2585
|
-
},
|
|
2586
|
-
"maskHide": {
|
|
2587
|
-
"source": "Hide non-editable areas",
|
|
2588
|
-
"translation": "Nicht-editierbare Bereiche verstecken"
|
|
2589
|
-
},
|
|
2590
|
-
"maskShow": {
|
|
2591
|
-
"source": "Show non-editable areas",
|
|
2592
|
-
"translation": "Nicht-editierbare Bereiche anzeigen"
|
|
2593
|
-
},
|
|
2594
|
-
"maskToggle": {
|
|
2595
|
-
"source": "Toggle non-editable areas",
|
|
2596
|
-
"translation": "Nicht-editierbare Bereiche anzeigen"
|
|
2597
|
-
},
|
|
2598
|
-
"maskTourText": {
|
|
2599
|
-
"source": "Toggle between showing or hiding non-editable parts of the page.",
|
|
2600
|
-
"translation": "Wechseln Sie zwischen Anzeigen und Verbergen nicht bearbeitbarer Teile der Seite."
|
|
2601
|
-
},
|
|
2602
|
-
"mediaLibrary": {
|
|
2603
|
-
"source": "Media Library",
|
|
2604
|
-
"translation": "Medienbibliothek"
|
|
2605
|
-
},
|
|
2606
|
-
"mediaLibraryReplaceFailed": {
|
|
2607
|
-
"source": "Failed to replace media.",
|
|
2608
|
-
"translation": "Das Medienelement konnte nicht ersetzt werden."
|
|
2609
|
-
},
|
|
2610
|
-
"mediaLibraryReplaceMedia": {
|
|
2611
|
-
"source": "Replace @field",
|
|
2612
|
-
"translation": "Medienelement ersetzen"
|
|
2613
|
-
},
|
|
2614
|
-
"mediaLibraryTourText": {
|
|
2615
|
-
"source": "Search for media like images and drag and drop them into the page.",
|
|
2616
|
-
"translation": "Suchen Sie nach Medien wie Bildern und ziehen Sie diese in die Seite."
|
|
2617
|
-
},
|
|
2618
|
-
"mediaSelectConfirm": {
|
|
2619
|
-
"source": "Use selected",
|
|
2620
|
-
"translation": "Auswahl verwenden"
|
|
2621
|
-
},
|
|
2622
|
-
"mediaSelectTitle": {
|
|
2623
|
-
"source": "Select a media item",
|
|
2624
|
-
"translation": "Medium auswählen"
|
|
2625
|
-
},
|
|
2626
|
-
"multipleItemsLabel": {
|
|
2627
|
-
"source": "Items",
|
|
2628
|
-
"translation": "Elemente"
|
|
2629
|
-
},
|
|
2630
|
-
"nameDescription": {
|
|
2631
|
-
"source": "Name / Description",
|
|
2632
|
-
"translation": "Name / Beschreibung"
|
|
2633
|
-
},
|
|
2634
|
-
"notSet": {
|
|
2635
|
-
"source": "Not set",
|
|
2636
|
-
"translation": "Nicht gesetzt"
|
|
2637
|
-
},
|
|
2638
|
-
"notSupported": {
|
|
2639
|
-
"source": "Not supported",
|
|
2640
|
-
"translation": "Nicht unterstützt"
|
|
2641
|
-
},
|
|
2642
|
-
"optionBkVisibleLanguagesAll": {
|
|
2643
|
-
"source": "All languages",
|
|
2644
|
-
"translation": "Alle Sprachen"
|
|
2645
|
-
},
|
|
2646
|
-
"optionsCommand.selectCheckboxValue": {
|
|
2647
|
-
"source": "Select \"@value\" in \"@option\"",
|
|
2648
|
-
"translation": "«@value» in «@option» auswählen"
|
|
2649
|
-
},
|
|
2650
|
-
"optionsCommand.setOption": {
|
|
2651
|
-
"source": "Set option \"@option\" to \"@value\"",
|
|
2652
|
-
"translation": "Option «@option» «@value» setzen"
|
|
2653
|
-
},
|
|
2654
|
-
"optionsCommand.unselectCheckboxValue": {
|
|
2655
|
-
"source": "Unselect \"@value\" in \"@option\"",
|
|
2656
|
-
"translation": "«@value» in «@option» abwählen"
|
|
2657
|
-
},
|
|
2658
|
-
"outdatedTranslation": {
|
|
2659
|
-
"source": "Outdated translation",
|
|
2660
|
-
"translation": "Veraltete Übersetzung"
|
|
2661
|
-
},
|
|
2662
|
-
"outdatedTranslationDescription": {
|
|
2663
|
-
"source": "Mark translation as up-to-date",
|
|
2664
|
-
"translation": "Übersetzung als aktuell markieren"
|
|
2665
|
-
},
|
|
2666
|
-
"overlayDoubleClickInfo": {
|
|
2667
|
-
"source": "<strong>Double click</strong> to close overlay",
|
|
2668
|
-
"translation": "<strong>Doppelklicken</strong> um Dialog zu schliessen"
|
|
2669
|
-
},
|
|
2670
|
-
"owner": {
|
|
2671
|
-
"source": "Owner",
|
|
2672
|
-
"translation": "Besitzer"
|
|
2673
|
-
},
|
|
2674
|
-
"ownershipError": {
|
|
2675
|
-
"source": "Error in assigning",
|
|
2676
|
-
"translation": "Fehler beim Zuweisen"
|
|
2677
|
-
},
|
|
2678
|
-
"ownershipNote": {
|
|
2679
|
-
"source": "This page is currently being edited by @name. Changes can only be made by one person at a time.",
|
|
2680
|
-
"translation": "Diese Seite wird aktuell von @name bearbeitet. Änderungen können nur von einer Person gleichzeitig durchgeführt werden."
|
|
2681
|
-
},
|
|
2682
|
-
"ownershipSuccess": {
|
|
2683
|
-
"source": "You are now the owner.",
|
|
2684
|
-
"translation": "Sie sind nun der Besitzer."
|
|
2685
|
-
},
|
|
2686
|
-
"ownershipTakeOwnership": {
|
|
2687
|
-
"source": "Assign to me",
|
|
2688
|
-
"translation": "Mir zuweisen"
|
|
2689
|
-
},
|
|
2690
|
-
"pageIsNotPublished": {
|
|
2691
|
-
"source": "Page is not published",
|
|
2692
|
-
"translation": "Seite ist nicht publiziert"
|
|
2693
|
-
},
|
|
2694
|
-
"pageIsPublished": {
|
|
2695
|
-
"source": "Page is published",
|
|
2696
|
-
"translation": "Seite ist publiziert"
|
|
2697
|
-
},
|
|
2698
|
-
"pageIsPublishedWithPendingChanges": {
|
|
2699
|
-
"source": "Page is published (changes pending)",
|
|
2700
|
-
"translation": "Seite ist publiziert (Änderungen ausstehend)"
|
|
2701
|
-
},
|
|
2702
|
-
"paste": {
|
|
2703
|
-
"source": "Paste",
|
|
2704
|
-
"translation": "Einfügen"
|
|
2705
|
-
},
|
|
2706
|
-
"previewDialogLead": {
|
|
2707
|
-
"source": "Scan the QR code with your smartphone to open the preview.",
|
|
2708
|
-
"translation": "Scannen Sie den QR-Code mit Ihrem Smartphone um die Vorschau zu öffnen."
|
|
2709
|
-
},
|
|
2710
|
-
"previewDialogTitle": {
|
|
2711
|
-
"source": "Preview with smartphone",
|
|
2712
|
-
"translation": "Vorschau mit Smartphone"
|
|
2713
|
-
},
|
|
2714
|
-
"previewNewWindow": {
|
|
2715
|
-
"source": "Preview (new window)",
|
|
2716
|
-
"translation": "Vorschau (neues Fenster)"
|
|
2717
|
-
},
|
|
2718
|
-
"previewNewWindowTourText": {
|
|
2719
|
-
"source": "Opens a preview of the current changes in a new window.",
|
|
2720
|
-
"translation": "Öffnet eine Vorschau der aktuellen Änderungen in einem neuen Fenster."
|
|
2721
|
-
},
|
|
2722
|
-
"previewQrCodeText": {
|
|
2723
|
-
"source": "You can also copy the link and share it.",
|
|
2724
|
-
"translation": "Sie können den Link auch kopieren und teilen."
|
|
2725
|
-
},
|
|
2726
|
-
"previewWithSmartphone": {
|
|
2727
|
-
"source": "Preview (with smartphone)",
|
|
2728
|
-
"translation": "Vorschau (mit Smartphone)"
|
|
2729
|
-
},
|
|
2730
|
-
"previewWithSmartphoneTourText": {
|
|
2731
|
-
"source": "Shows a QR code to quickly open a preview of the changes with your smartphone.",
|
|
2732
|
-
"translation": "Zeigt einen QR-Code an, um eine Vorschau der Änderungen mit Ihrem Smartphone zu öffnen."
|
|
2733
|
-
},
|
|
2734
|
-
"proxyViewHide": {
|
|
2735
|
-
"source": "Show content preview",
|
|
2736
|
-
"translation": "Inhaltsvorschau anzeigen"
|
|
2737
|
-
},
|
|
2738
|
-
"proxyViewShow": {
|
|
2739
|
-
"source": "Show structure view",
|
|
2740
|
-
"translation": "Strukturierte Vorschau anzeigen"
|
|
2741
|
-
},
|
|
2742
|
-
"proxyViewToggle": {
|
|
2743
|
-
"source": "Toggle structure view",
|
|
2744
|
-
"translation": "Vorschau wechseln"
|
|
2745
|
-
},
|
|
2746
|
-
"proxyViewTourText": {
|
|
2747
|
-
"source": "Displays the content blocks as a structured view.",
|
|
2748
|
-
"translation": "Stellt die Inhaltsblöcke in strukturierter Form dar."
|
|
2749
|
-
},
|
|
2750
|
-
"publishAlreadyScheduledDescription": {
|
|
2751
|
-
"source": "This page is already scheduled for publishing",
|
|
2752
|
-
"translation": "Diese Seite ist bereits zur Veröffentlichung geplant"
|
|
2753
|
-
},
|
|
2754
|
-
"publishAndCloseLabel": {
|
|
2755
|
-
"source": "Publish & Close",
|
|
2756
|
-
"translation": "Veröffentlichen & Schliessen"
|
|
2757
|
-
},
|
|
2758
|
-
"publishAndCloseLabelUnpublished": {
|
|
2759
|
-
"source": "Save & Close",
|
|
2760
|
-
"translation": "Speichern & Schliessen"
|
|
2761
|
-
},
|
|
2762
|
-
"publishCurrentPage": {
|
|
2763
|
-
"source": "Current page",
|
|
2764
|
-
"translation": "Aktuelle Seite"
|
|
2765
|
-
},
|
|
2766
|
-
"publishCurrentlyPublished": {
|
|
2767
|
-
"source": "Page is published",
|
|
2768
|
-
"translation": "Seite ist publiziert"
|
|
2769
|
-
},
|
|
2770
|
-
"publishCurrentlyUnpublished": {
|
|
2771
|
-
"source": "Page is unpublished",
|
|
2772
|
-
"translation": "Seite ist nicht publiziert"
|
|
2773
|
-
},
|
|
2774
|
-
"publishDescription": {
|
|
2775
|
-
"source": "Publish all changes.",
|
|
2776
|
-
"translation": "Alle Änderungen veröffentlichen"
|
|
2777
|
-
},
|
|
2778
|
-
"publishDescriptionScheduled": {
|
|
2779
|
-
"source": "View or change the scheduled publication",
|
|
2780
|
-
"translation": "Geplante Veröffentlichung ansehen oder ändern"
|
|
2781
|
-
},
|
|
2782
|
-
"publishDescriptionUnpublished": {
|
|
2783
|
-
"source": "Save all changes while keeping page unpublished",
|
|
2784
|
-
"translation": "Alle Änderungen speichern ohne die Seite zu publizieren"
|
|
2785
|
-
},
|
|
2786
|
-
"publishDialogTitle": {
|
|
2787
|
-
"source": "Publish changes",
|
|
2788
|
-
"translation": "Änderungen veröffentlichen"
|
|
2789
|
-
},
|
|
2790
|
-
"publishError": {
|
|
2791
|
-
"source": "Changes could not be published.",
|
|
2792
|
-
"translation": "Änderungen konnten nicht publiziert werden."
|
|
2793
|
-
},
|
|
2794
|
-
"publishLabel": {
|
|
2795
|
-
"source": "Publish",
|
|
2796
|
-
"translation": "Veröffentlichen"
|
|
2797
|
-
},
|
|
2798
|
-
"publishLabelUnpublished": {
|
|
2799
|
-
"source": "Save",
|
|
2800
|
-
"translation": "Speichern"
|
|
2801
|
-
},
|
|
2802
|
-
"publishManageSchedule": {
|
|
2803
|
-
"source": "Manage scheduling",
|
|
2804
|
-
"translation": "Planung verwalten"
|
|
2805
|
-
},
|
|
2806
|
-
"publishMode": {
|
|
2807
|
-
"source": "Publish mode",
|
|
2808
|
-
"translation": "Veröffentlichungsmodus"
|
|
2809
|
-
},
|
|
2810
|
-
"publishModeImmediateDescription": {
|
|
2811
|
-
"source": "Publish changes immediately",
|
|
2812
|
-
"translation": "Änderungen sofort veröffentlichen"
|
|
2813
|
-
},
|
|
2814
|
-
"publishModeImmediateTitle": {
|
|
2815
|
-
"source": "Publish",
|
|
2816
|
-
"translation": "Veröffentlichen"
|
|
2817
|
-
},
|
|
2818
|
-
"publishModeSaveDescription": {
|
|
2819
|
-
"source": "Save changes without publishing",
|
|
2820
|
-
"translation": "Änderungen speichern ohne veröffentlichen"
|
|
2821
|
-
},
|
|
2822
|
-
"publishModeSaveTitle": {
|
|
2823
|
-
"source": "Save",
|
|
2824
|
-
"translation": "Speichern"
|
|
2825
|
-
},
|
|
2826
|
-
"publishModeScheduledDescription": {
|
|
2827
|
-
"source": "Schedule changes for publishing",
|
|
2828
|
-
"translation": "Änderungen geplant veröffentlichen"
|
|
2829
|
-
},
|
|
2830
|
-
"publishModeScheduledTitle": {
|
|
2831
|
-
"source": "Schedule",
|
|
2832
|
-
"translation": "Planen"
|
|
2833
|
-
},
|
|
2834
|
-
"publishName": {
|
|
2835
|
-
"source": "Name",
|
|
2836
|
-
"translation": "Name"
|
|
2837
|
-
},
|
|
2838
|
-
"publishPublicationScheduled": {
|
|
2839
|
-
"source": "Publication scheduled",
|
|
2840
|
-
"translation": "Veröffentlichung geplant"
|
|
2841
|
-
},
|
|
2842
|
-
"publishPublishContent": {
|
|
2843
|
-
"source": "Publish content",
|
|
2844
|
-
"translation": "Inhalt veröffentlichen"
|
|
2845
|
-
},
|
|
2846
|
-
"publishPublishContents": {
|
|
2847
|
-
"source": "Publish @count contents",
|
|
2848
|
-
"translation": "@count Inhalte veröffentlichen"
|
|
2849
|
-
},
|
|
2850
|
-
"publishRemainsPublished": {
|
|
2851
|
-
"source": "Remains published",
|
|
2852
|
-
"translation": "Bleibt publiziert"
|
|
2853
|
-
},
|
|
2854
|
-
"publishRemainsUnpublished": {
|
|
2855
|
-
"source": "Remains unpublished",
|
|
2856
|
-
"translation": "Bleibt nicht publiziert"
|
|
2857
|
-
},
|
|
2858
|
-
"publishRemoveSchedule": {
|
|
2859
|
-
"source": "Remove schedule",
|
|
2860
|
-
"translation": "Planung entfernen"
|
|
2861
|
-
},
|
|
2862
|
-
"publishResultPublishChangesNowPublished": {
|
|
2863
|
-
"source": "Changes are published, page is now published",
|
|
2864
|
-
"translation": "Änderungen und Seite sind publiziert"
|
|
2865
|
-
},
|
|
2866
|
-
"publishResultPublishChangesRemainPublished": {
|
|
2867
|
-
"source": "Changes are published, page remains published",
|
|
2868
|
-
"translation": "Änderungen sind publiziert, Seite bleibt publiziert"
|
|
2869
|
-
},
|
|
2870
|
-
"publishResultSaveChanges": {
|
|
2871
|
-
"source": "Changes are saved, page remains unpublished",
|
|
2872
|
-
"translation": "Änderungen sind gespeichert, Seite bleibt unpubliziert"
|
|
2873
|
-
},
|
|
2874
|
-
"publishResultScheduledChanges": {
|
|
2875
|
-
"source": "Changes will be published on @date",
|
|
2876
|
-
"translation": "Änderungen werden am @date publiziert"
|
|
2877
|
-
},
|
|
2878
|
-
"publishResultScheduledPage": {
|
|
2879
|
-
"source": "Page will be published on @date",
|
|
2880
|
-
"translation": "Seite wird am @date publiziert"
|
|
2881
|
-
},
|
|
2882
|
-
"publishRevisionLogMessage": {
|
|
2883
|
-
"source": "Change description",
|
|
2884
|
-
"translation": "Beschreibung der Änderungen"
|
|
2885
|
-
},
|
|
2886
|
-
"publishRevisionLogMessageDescription": {
|
|
2887
|
-
"source": "Briefly describe the changes made",
|
|
2888
|
-
"translation": "Beschreiben Sie kurz die vorgenommenen Änderungen"
|
|
2889
|
-
},
|
|
2890
|
-
"publishSaveContent": {
|
|
2891
|
-
"source": "Save content",
|
|
2892
|
-
"translation": "Inhalt speichern"
|
|
2893
|
-
},
|
|
2894
|
-
"publishSaveContents": {
|
|
2895
|
-
"source": "Save @count contents",
|
|
2896
|
-
"translation": "@count Inhalte speichern"
|
|
2897
|
-
},
|
|
2898
|
-
"publishScheduleDate": {
|
|
2899
|
-
"source": "Publication date",
|
|
2900
|
-
"translation": "Veröffentlichungsdatum"
|
|
2901
|
-
},
|
|
2902
|
-
"publishScheduleDateTooSoon": {
|
|
2903
|
-
"source": "The scheduled date must be at least 2 minutes in the future",
|
|
2904
|
-
"translation": "Das geplante Datum muss mindestens 2 Minuten in der Zukunft liegen"
|
|
2905
|
-
},
|
|
2906
|
-
"publishSchedulePublication": {
|
|
2907
|
-
"source": "Schedule publication",
|
|
2908
|
-
"translation": "Veröffentlichung planen"
|
|
2909
|
-
},
|
|
2910
|
-
"publishSchedulePublications": {
|
|
2911
|
-
"source": "Schedule @count publications",
|
|
2912
|
-
"translation": "@count Veröffentlichungen planen"
|
|
2913
|
-
},
|
|
2914
|
-
"publishScheduleSuccess": {
|
|
2915
|
-
"source": "Publication scheduled for @date",
|
|
2916
|
-
"translation": "Veröffentlichung für @date geplant"
|
|
2917
|
-
},
|
|
2918
|
-
"publishScheduledBlockPlural": {
|
|
2919
|
-
"source": "@count blocks are scheduled to be published on @date",
|
|
2920
|
-
"translation": "@count Blöcke sind zur Veröffentlichung am @date geplant"
|
|
2921
|
-
},
|
|
2922
|
-
"publishScheduledBlockSingular": {
|
|
2923
|
-
"source": "1 block is scheduled to be published on @date",
|
|
2924
|
-
"translation": "1 Block ist zur Veröffentlichung am @date geplant"
|
|
2925
|
-
},
|
|
2926
|
-
"publishScheduledInfo": {
|
|
2927
|
-
"source": "You can still make changes until the scheduled publication date.",
|
|
2928
|
-
"translation": "Sie können bis zum geplanten Veröffentlichungsdatum noch Änderungen vornehmen."
|
|
2929
|
-
},
|
|
2930
|
-
"publishStatus": {
|
|
2931
|
-
"source": "Status",
|
|
2932
|
-
"translation": "Status"
|
|
2933
|
-
},
|
|
2934
|
-
"publishSuccess": {
|
|
2935
|
-
"source": "Changes published successfully.",
|
|
2936
|
-
"translation": "Änderungen erfolgreich publiziert."
|
|
2937
|
-
},
|
|
2938
|
-
"publishSuccessfullyPublished": {
|
|
2939
|
-
"source": "Successfully published",
|
|
2940
|
-
"translation": "Erfolgreich veröffentlicht"
|
|
2941
|
-
},
|
|
2942
|
-
"publishSuccessfullySaved": {
|
|
2943
|
-
"source": "Successfully saved",
|
|
2944
|
-
"translation": "Erfolgreich gespeichert"
|
|
2945
|
-
},
|
|
2946
|
-
"publishSummary": {
|
|
2947
|
-
"source": "Summary",
|
|
2948
|
-
"translation": "Zusammenfassung"
|
|
2949
|
-
},
|
|
2950
|
-
"publishWillBePublished": {
|
|
2951
|
-
"source": "Will be published",
|
|
2952
|
-
"translation": "Wird publiziert"
|
|
2953
|
-
},
|
|
2954
|
-
"publishWillBeScheduled": {
|
|
2955
|
-
"source": "Will be scheduled",
|
|
2956
|
-
"translation": "Wird geplant"
|
|
2957
|
-
},
|
|
2958
|
-
"readabilityEntireText": {
|
|
2959
|
-
"source": "This score is calculated for the entire text.",
|
|
2960
|
-
"translation": "Dieser Wert wird für den gesamten Text berechnet."
|
|
2961
|
-
},
|
|
2962
|
-
"readabilityTooShort": {
|
|
2963
|
-
"source": "Too short",
|
|
2964
|
-
"translation": "Zu kurz"
|
|
2965
|
-
},
|
|
2966
|
-
"readabilityTooShortTooltip": {
|
|
2967
|
-
"source": "Text needs at least @count words for readability analysis.",
|
|
2968
|
-
"translation": "Text braucht mindestens @count Wörter für die Lesbarkeitsanalyse."
|
|
2969
|
-
},
|
|
2970
|
-
"readabilityTooltipDescription": {
|
|
2971
|
-
"source": "@label measures how easy the text is to read.",
|
|
2972
|
-
"translation": "@label misst, wie leicht der Text zu lesen ist."
|
|
2973
|
-
},
|
|
2974
|
-
"referencedEntitiesEditorOverlayTitle": {
|
|
2975
|
-
"source": "Edit \"@label\"",
|
|
2976
|
-
"translation": "«@label» bearbeiten"
|
|
2977
|
-
},
|
|
2978
|
-
"relatedContent": {
|
|
2979
|
-
"source": "Related Content",
|
|
2980
|
-
"translation": "Verwandte Inhalte"
|
|
2981
|
-
},
|
|
2982
|
-
"relatedContentNoEntitiesFound": {
|
|
2983
|
-
"source": "No related content found",
|
|
2984
|
-
"translation": "Keine verwandten Inhalte gefunden"
|
|
2985
|
-
},
|
|
2986
|
-
"relatedContentTooltip": {
|
|
2987
|
-
"source": "Content like pages or images referenced or linked by this block.",
|
|
2988
|
-
"translation": "Inhalte wie Seiten oder Bilder, die von diesem Block referenziert oder verlinkt werden."
|
|
2989
|
-
},
|
|
2990
|
-
"responsivePreviewCustomViewport": {
|
|
2991
|
-
"source": "Custom",
|
|
2992
|
-
"translation": "Benutzerdefiniert"
|
|
2993
|
-
},
|
|
2994
|
-
"responsivePreviewTitle": {
|
|
2995
|
-
"source": "Responsive Preview",
|
|
2996
|
-
"translation": "Responsive Vorschau"
|
|
2997
|
-
},
|
|
2998
|
-
"responsivePreviewTourText": {
|
|
2999
|
-
"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.",
|
|
3000
|
-
"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."
|
|
3001
|
-
},
|
|
3002
|
-
"restrictedPermissionsAll": {
|
|
3003
|
-
"source": "Some actions are not available due to missing permissions.",
|
|
3004
|
-
"translation": "Einige Aktionen sind aufgrund fehlender Berechtigungen nicht verfügbar."
|
|
3005
|
-
},
|
|
3006
|
-
"restrictedPermissionsSome": {
|
|
3007
|
-
"source": "Some actions are restricted due to missing permissions.",
|
|
3008
|
-
"translation": "Einige Aktionen sind aufgrund fehlender Berechtigungen eingeschränkt."
|
|
3009
|
-
},
|
|
3010
|
-
"revertDialogLead": {
|
|
3011
|
-
"source": "This will delete all changes and restore the currently published state. This action cannot be undone.",
|
|
3012
|
-
"translation": "Damit werden alle Änderungen gelöscht und der aktuell publizierte Stand wiederhergestellt. Diese Aktion kann nicht rückgängig gemacht werden."
|
|
3013
|
-
},
|
|
3014
|
-
"revertDialogSubmit": {
|
|
3015
|
-
"source": "Discard changes",
|
|
3016
|
-
"translation": "Änderungen verwerfen"
|
|
3017
|
-
},
|
|
3018
|
-
"revertDialogTitle": {
|
|
3019
|
-
"source": "Irrevocably discard changes",
|
|
3020
|
-
"translation": "Änderungen unwiderruflich verwerfen"
|
|
3021
|
-
},
|
|
3022
|
-
"revertError": {
|
|
3023
|
-
"source": "Changes could not be discarded.",
|
|
3024
|
-
"translation": "Änderungen konnten nicht verworfen werden."
|
|
3025
|
-
},
|
|
3026
|
-
"revertMenuDescription": {
|
|
3027
|
-
"source": "Restore currently published state",
|
|
3028
|
-
"translation": "Aktuell veröffentlichten Zustand wiederherstellen"
|
|
3029
|
-
},
|
|
3030
|
-
"revertMenuTitle": {
|
|
3031
|
-
"source": "Discard...",
|
|
3032
|
-
"translation": "Verwerfen..."
|
|
3033
|
-
},
|
|
3034
|
-
"revertSuccess": {
|
|
3035
|
-
"source": "All changes have been discarded.",
|
|
3036
|
-
"translation": "Alle Änderungen wurden verworfen."
|
|
3037
|
-
},
|
|
3038
|
-
"save": {
|
|
3039
|
-
"source": "Save",
|
|
3040
|
-
"translation": "Speichern"
|
|
3041
|
-
},
|
|
3042
|
-
"scheduledFor": {
|
|
3043
|
-
"source": "The changes will be published on this date.",
|
|
3044
|
-
"translation": "Die Änderungen werden an diesem Datum publiziert."
|
|
3045
|
-
},
|
|
3046
|
-
"schedulerNotSupported": {
|
|
3047
|
-
"source": "Scheduling is not available for this block type.",
|
|
3048
|
-
"translation": "Zeitplanung ist für diesen Blocktyp nicht verfügbar."
|
|
3049
|
-
},
|
|
3050
|
-
"searchBoxNoResultsFound": {
|
|
3051
|
-
"source": "No results found",
|
|
3052
|
-
"translation": "Keine Resultate gefunden"
|
|
3053
|
-
},
|
|
3054
|
-
"searchBoxOnThisPage": {
|
|
3055
|
-
"source": "On this page",
|
|
3056
|
-
"translation": "Auf dieser Seite"
|
|
3057
|
-
},
|
|
3058
|
-
"searchBoxPlaceholder": {
|
|
3059
|
-
"source": "Enter search term",
|
|
3060
|
-
"translation": "Suchbegriff eingeben"
|
|
3061
|
-
},
|
|
3062
|
-
"searchContentReplace": {
|
|
3063
|
-
"source": "Replace @field",
|
|
3064
|
-
"translation": "@field ersetzen"
|
|
3065
|
-
},
|
|
3066
|
-
"searchContentReplaceFailed": {
|
|
3067
|
-
"source": "Failed to replace content.",
|
|
3068
|
-
"translation": "Inhalt konnte nicht ersetzt werden."
|
|
3069
|
-
},
|
|
3070
|
-
"searchOverlayNoResults": {
|
|
3071
|
-
"source": "No results found.",
|
|
3072
|
-
"translation": "Keine Ergebnisse gefunden."
|
|
3073
|
-
},
|
|
3074
|
-
"searchToolbarLabel": {
|
|
3075
|
-
"source": "Search content",
|
|
3076
|
-
"translation": "Inhalte suchen"
|
|
3077
|
-
},
|
|
3078
|
-
"searchTourText": {
|
|
3079
|
-
"source": "Quickly find blocks on the current page or existing content to drag and drop as blocks into the page.",
|
|
3080
|
-
"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."
|
|
3081
|
-
},
|
|
3082
|
-
"selectAllBlocks": {
|
|
3083
|
-
"source": "Select all blocks",
|
|
3084
|
-
"translation": "Alle Blöcke auswählen"
|
|
3085
|
-
},
|
|
3086
|
-
"selectAllOfBundle": {
|
|
3087
|
-
"source": "Select all \"@bundle\" blocks",
|
|
3088
|
-
"translation": "Alle «@bundle» Blöcke auswählen"
|
|
3089
|
-
},
|
|
3090
|
-
"selectedIsNew": {
|
|
3091
|
-
"source": "New",
|
|
3092
|
-
"translation": "Neu"
|
|
3093
|
-
},
|
|
3094
|
-
"selectedTranslationIsOutdated": {
|
|
3095
|
-
"source": "Outdated",
|
|
3096
|
-
"translation": "Veraltet"
|
|
3097
|
-
},
|
|
3098
|
-
"settingsAdvanced": {
|
|
3099
|
-
"source": "Advanced",
|
|
3100
|
-
"translation": "Erweitert"
|
|
3101
|
-
},
|
|
3102
|
-
"settingsAppearance": {
|
|
3103
|
-
"source": "Appearance",
|
|
3104
|
-
"translation": "Darstellung"
|
|
3105
|
-
},
|
|
3106
|
-
"settingsArtboard": {
|
|
3107
|
-
"source": "Artboard",
|
|
3108
|
-
"translation": "Vorschau"
|
|
3109
|
-
},
|
|
3110
|
-
"settingsBehaviour": {
|
|
3111
|
-
"source": "Behaviour",
|
|
3112
|
-
"translation": "Verhalten"
|
|
3113
|
-
},
|
|
3114
|
-
"settingsBeta": {
|
|
3115
|
-
"source": "New Features",
|
|
3116
|
-
"translation": "Neue Funktionen"
|
|
3117
|
-
},
|
|
3118
|
-
"settingsDialogTitle": {
|
|
3119
|
-
"source": "Change settings",
|
|
3120
|
-
"translation": "Einstellungen"
|
|
3121
|
-
},
|
|
3122
|
-
"settingsMenuDescription": {
|
|
3123
|
-
"source": "Personal settings for the editor",
|
|
3124
|
-
"translation": "Persönliche Einstellungen für den Editor"
|
|
3125
|
-
},
|
|
3126
|
-
"settingsMenuTitle": {
|
|
3127
|
-
"source": "Settings",
|
|
3128
|
-
"translation": "Einstellungen"
|
|
3129
|
-
},
|
|
3130
|
-
"shortcutGroupBlocks": {
|
|
3131
|
-
"source": "Blocks",
|
|
3132
|
-
"translation": "Blöcke"
|
|
3133
|
-
},
|
|
3134
|
-
"shortcutGroupGeneral": {
|
|
3135
|
-
"source": "General",
|
|
3136
|
-
"translation": "Allgemein"
|
|
3137
|
-
},
|
|
3138
|
-
"shortcutGroupUi": {
|
|
3139
|
-
"source": "UI",
|
|
3140
|
-
"translation": "Oberfläche"
|
|
3141
|
-
},
|
|
3142
|
-
"sidebar.hide": {
|
|
3143
|
-
"source": "Hide @title",
|
|
3144
|
-
"translation": "@title ausblenden"
|
|
3145
|
-
},
|
|
3146
|
-
"sidebar.show": {
|
|
3147
|
-
"source": "Show @title",
|
|
3148
|
-
"translation": "@title anzeigen"
|
|
3149
|
-
},
|
|
3150
|
-
"singleComment": {
|
|
3151
|
-
"source": "comment",
|
|
3152
|
-
"translation": "Kommentar"
|
|
3153
|
-
},
|
|
3154
|
-
"stateUnavailableText": {
|
|
3155
|
-
"source": "This could be due to missing permissions or a temporary problem. Please try again later.",
|
|
3156
|
-
"translation": "Dies könnte auf fehlende Berechtigungen oder ein vorübergehendes Problem zurückzuführen sein. Bitte versuchen Sie es später nochmal."
|
|
3157
|
-
},
|
|
3158
|
-
"stateUnavailableTitle": {
|
|
3159
|
-
"source": "The edit state could not be loaded.",
|
|
3160
|
-
"translation": "Der Bearbeitungszustand konnte nicht geladen werden."
|
|
3161
|
-
},
|
|
3162
|
-
"structureToolbarLabel": {
|
|
3163
|
-
"source": "Structure",
|
|
3164
|
-
"translation": "Struktur"
|
|
3165
|
-
},
|
|
3166
|
-
"structureTourText": {
|
|
3167
|
-
"source": "Shows a structured list of all blocks on the current page. Click on any block to quickly jump to it.",
|
|
3168
|
-
"translation": "Zeigt eine strukturierte Liste aller Blöcke auf der aktuellen Seite. Klicken Sie auf einen Block, um ihn auf der Seite anzuzeigen."
|
|
3169
|
-
},
|
|
3170
|
-
"swapButton": {
|
|
3171
|
-
"source": "Swap block positions",
|
|
3172
|
-
"translation": "Blockpositionen tauschen"
|
|
3173
|
-
},
|
|
3174
|
-
"swapError": {
|
|
3175
|
-
"source": "The blocks could not be swapped.",
|
|
3176
|
-
"translation": "Die Blöcke konnten nicht getauscht werden."
|
|
3177
|
-
},
|
|
3178
|
-
"swapNotPossible": {
|
|
3179
|
-
"source": "Block positions cannot be swapped.",
|
|
3180
|
-
"translation": "Blockpositionen können nicht getauscht werden."
|
|
3181
|
-
},
|
|
3182
|
-
"systemRequirementsDialogButton": {
|
|
3183
|
-
"source": "Continue anyway",
|
|
3184
|
-
"translation": "Trotzdem fortfahren"
|
|
3185
|
-
},
|
|
3186
|
-
"systemRequirementsDialogLead": {
|
|
3187
|
-
"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.",
|
|
3188
|
-
"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."
|
|
3189
|
-
},
|
|
3190
|
-
"systemRequirementsDialogText": {
|
|
3191
|
-
"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.",
|
|
3192
|
-
"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."
|
|
3193
|
-
},
|
|
3194
|
-
"systemRequirementsDialogTitle": {
|
|
3195
|
-
"source": "System Requirements",
|
|
3196
|
-
"translation": "Systemanforderungen"
|
|
3197
|
-
},
|
|
3198
|
-
"systemRequirementsWebglText": {
|
|
3199
|
-
"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.",
|
|
3200
|
-
"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."
|
|
3201
|
-
},
|
|
3202
|
-
"templatesAddTemplate": {
|
|
3203
|
-
"source": "Template",
|
|
3204
|
-
"translation": "Vorlage"
|
|
3205
|
-
},
|
|
3206
|
-
"templatesAddTemplateDescription": {
|
|
3207
|
-
"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>",
|
|
3208
|
-
"translation": "<p>Ziehen Sie das Symbol auf die Seite, um Blöcke aus einer Vorlage hinzuzufügen.</p>"
|
|
3209
|
-
},
|
|
3210
|
-
"templatesCanNotBeDefault": {
|
|
3211
|
-
"source": "Only single blocks can be made default.",
|
|
3212
|
-
"translation": "Nur einzelne Blöcke können als Standard definiert werden."
|
|
3213
|
-
},
|
|
3214
|
-
"templatesCreate": {
|
|
3215
|
-
"source": "Create template...",
|
|
3216
|
-
"translation": "Vorlage erstellen..."
|
|
3217
|
-
},
|
|
3218
|
-
"templatesCreateDialogDefaultDescription": {
|
|
3219
|
-
"source": "If set, this template is used automatically when adding a new block of this type.",
|
|
3220
|
-
"translation": "Falls aktiviert, wird diese Vorlage automatisch verwendet, wenn ein neuer Block dieses Typs hinzugefügt wird."
|
|
3221
|
-
},
|
|
3222
|
-
"templatesCreateDialogDefaultLabel": {
|
|
3223
|
-
"source": "Use as default",
|
|
3224
|
-
"translation": "Als Standard verwenden"
|
|
3225
|
-
},
|
|
3226
|
-
"templatesCreateDialogDescriptionLabel": {
|
|
3227
|
-
"source": "Description",
|
|
3228
|
-
"translation": "Beschreibung"
|
|
3229
|
-
},
|
|
3230
|
-
"templatesCreateDialogDescriptionPlaceholder": {
|
|
3231
|
-
"source": "Optional description of the template",
|
|
3232
|
-
"translation": "Optionale Beschreibung der Vorlage"
|
|
3233
|
-
},
|
|
3234
|
-
"templatesCreateDialogLabelLabel": {
|
|
3235
|
-
"source": "Name",
|
|
3236
|
-
"translation": "Name"
|
|
3237
|
-
},
|
|
3238
|
-
"templatesCreateDialogLabelPlaceholder": {
|
|
3239
|
-
"source": "e.g. Hero Section",
|
|
3240
|
-
"translation": "z.B. Hero-Bereich"
|
|
3241
|
-
},
|
|
3242
|
-
"templatesCreateDialogLead": {
|
|
3243
|
-
"source": "Create a reusable template from the selected blocks. Templates can be added to any page.",
|
|
3244
|
-
"translation": "Erstellen Sie eine wiederverwendbare Vorlage aus den ausgewählten Blöcken. Vorlagen können auf jeder Seite hinzugefügt werden."
|
|
3245
|
-
},
|
|
3246
|
-
"templatesCreateDialogPreviewLabel": {
|
|
3247
|
-
"source": "Preview",
|
|
3248
|
-
"translation": "Vorschau"
|
|
3249
|
-
},
|
|
3250
|
-
"templatesCreateDialogSubmit": {
|
|
3251
|
-
"source": "Create template",
|
|
3252
|
-
"translation": "Vorlage erstellen"
|
|
3253
|
-
},
|
|
3254
|
-
"templatesCreateDialogTitle": {
|
|
3255
|
-
"source": "Create template",
|
|
3256
|
-
"translation": "Vorlage erstellen"
|
|
3257
|
-
},
|
|
3258
|
-
"templatesCreateError": {
|
|
3259
|
-
"source": "Failed to create template.",
|
|
3260
|
-
"translation": "Vorlage konnte nicht erstellt werden."
|
|
3261
|
-
},
|
|
3262
|
-
"templatesDefaultPill": {
|
|
3263
|
-
"source": "Default",
|
|
3264
|
-
"translation": "Standard"
|
|
3265
|
-
},
|
|
3266
|
-
"templatesDefaultPillDescription": {
|
|
3267
|
-
"source": "This template is used when new blocks of this type are created.",
|
|
3268
|
-
"translation": "Diese Vorlage wird verwendet, wenn neue Blöcke dieses Typs erstellt werden."
|
|
3269
|
-
},
|
|
3270
|
-
"templatesDeleteError": {
|
|
3271
|
-
"source": "Failed to delete template.",
|
|
3272
|
-
"translation": "Vorlage konnte nicht gelöscht werden."
|
|
3273
|
-
},
|
|
3274
|
-
"templatesDeleteSuccess": {
|
|
3275
|
-
"source": "Template deleted successfully.",
|
|
3276
|
-
"translation": "Vorlage erfolgreich gelöscht."
|
|
3277
|
-
},
|
|
3278
|
-
"templatesEditOverlayTitle": {
|
|
3279
|
-
"source": "Edit template",
|
|
3280
|
-
"translation": "Vorlage bearbeiten"
|
|
3281
|
-
},
|
|
3282
|
-
"templatesManageDialogCancelDelete": {
|
|
3283
|
-
"source": "Cancel",
|
|
3284
|
-
"translation": "Abbrechen"
|
|
3285
|
-
},
|
|
3286
|
-
"templatesManageDialogConfirmDelete": {
|
|
3287
|
-
"source": "Delete",
|
|
3288
|
-
"translation": "Löschen"
|
|
3289
|
-
},
|
|
3290
|
-
"templatesManageDialogDelete": {
|
|
3291
|
-
"source": "Delete",
|
|
3292
|
-
"translation": "Löschen"
|
|
3293
|
-
},
|
|
3294
|
-
"templatesManageDialogEdit": {
|
|
3295
|
-
"source": "Edit",
|
|
3296
|
-
"translation": "Bearbeiten"
|
|
3297
|
-
},
|
|
3298
|
-
"templatesManageDialogLead": {
|
|
3299
|
-
"source": "View, edit and delete your block templates.",
|
|
3300
|
-
"translation": "Vorlagen verwalten, bearbeiten und löschen."
|
|
3301
|
-
},
|
|
3302
|
-
"templatesManageDialogNoResults": {
|
|
3303
|
-
"source": "No templates found.",
|
|
3304
|
-
"translation": "Keine Vorlagen gefunden."
|
|
3305
|
-
},
|
|
3306
|
-
"templatesManageDialogTitle": {
|
|
3307
|
-
"source": "Manage templates",
|
|
3308
|
-
"translation": "Vorlagen verwalten"
|
|
3309
|
-
},
|
|
3310
|
-
"templatesMenuDescription": {
|
|
3311
|
-
"source": "Edit and delete block templates",
|
|
3312
|
-
"translation": "Vorlagen bearbeiten und löschen"
|
|
3313
|
-
},
|
|
3314
|
-
"templatesMenuLabel": {
|
|
3315
|
-
"source": "Templates...",
|
|
3316
|
-
"translation": "Vorlagen..."
|
|
3317
|
-
},
|
|
3318
|
-
"templatesMissingDefaultPermissions": {
|
|
3319
|
-
"source": "Missing permission to create default templates.",
|
|
3320
|
-
"translation": "Fehlende Berechtigung um Standard-Vorlagen zu erstellen."
|
|
3321
|
-
},
|
|
3322
|
-
"templatesNoResults": {
|
|
3323
|
-
"source": "No templates available for this field.",
|
|
3324
|
-
"translation": "Keine Vorlagen für dieses Feld verfügbar."
|
|
3325
|
-
},
|
|
3326
|
-
"templatesPlaceDialogDescription": {
|
|
3327
|
-
"source": "Templates create copies of blocks that can be edited freely on this page without affecting other pages.",
|
|
3328
|
-
"translation": "Vorlagen erstellen Kopien von Blöcken, die auf dieser Seite frei bearbeitet werden können, ohne andere Seiten zu beeinflussen."
|
|
3329
|
-
},
|
|
3330
|
-
"templatesPlaceDialogSubmitButton": {
|
|
3331
|
-
"source": "Add template blocks",
|
|
3332
|
-
"translation": "Vorlagen-Blöcke hinzufügen"
|
|
3333
|
-
},
|
|
3334
|
-
"templatesPlaceDialogTitle": {
|
|
3335
|
-
"source": "Add blocks from template",
|
|
3336
|
-
"translation": "Blöcke aus Vorlage hinzufügen"
|
|
3337
|
-
},
|
|
3338
|
-
"templatesSuccessMessage": {
|
|
3339
|
-
"source": "Successfully created template \"@label\"",
|
|
3340
|
-
"translation": "Die Vorlage «@label» wurde erfolgreich erstellt."
|
|
3341
|
-
},
|
|
3342
|
-
"textareaNewLineHint": {
|
|
3343
|
-
"source": "Shift + Enter for new line",
|
|
3344
|
-
"translation": "Shift + Enter für neue Zeile"
|
|
3345
|
-
},
|
|
3346
|
-
"theme": {
|
|
3347
|
-
"source": "Theme",
|
|
3348
|
-
"translation": "Farben"
|
|
3349
|
-
},
|
|
3350
|
-
"themeTourText": {
|
|
3351
|
-
"source": "Change the colors of the theme and generate a theme file.",
|
|
3352
|
-
"translation": "Ändern Sie das Theme und generieren Sie eine Theme-Datei."
|
|
3353
|
-
},
|
|
3354
|
-
"toggleInteractionLayers": {
|
|
3355
|
-
"source": "Toggle interaction layers",
|
|
3356
|
-
"translation": "Interaktionsebenen umschalten"
|
|
3357
|
-
},
|
|
3358
|
-
"touchBarCancelDragging": {
|
|
3359
|
-
"source": "Cancel dragging",
|
|
3360
|
-
"translation": "Platzieren abbrechen"
|
|
3361
|
-
},
|
|
3362
|
-
"touchBarFinishSelecting": {
|
|
3363
|
-
"source": "Finish selecting",
|
|
3364
|
-
"translation": "Mehrfachauswahl beenden"
|
|
3365
|
-
},
|
|
3366
|
-
"tourDescription": {
|
|
3367
|
-
"source": "Explore the features of the editor",
|
|
3368
|
-
"translation": "Entdecken Sie die Funktionen vom Editor."
|
|
3369
|
-
},
|
|
3370
|
-
"tourIntro": {
|
|
3371
|
-
"source": "Explore the most important features of the editor and learn how to get started using blökkli.",
|
|
3372
|
-
"translation": "Lernen Sie die wichtigsten Funktionen des Editors kennen und erfahren Sie, wie Sie mit blökkli loslegen können."
|
|
3373
|
-
},
|
|
3374
|
-
"tourLabel": {
|
|
3375
|
-
"source": "Take a tour",
|
|
3376
|
-
"translation": "Tour machen"
|
|
3377
|
-
},
|
|
3378
|
-
"tourNext": {
|
|
3379
|
-
"source": "Next",
|
|
3380
|
-
"translation": "Weiter"
|
|
3381
|
-
},
|
|
3382
|
-
"tourPrev": {
|
|
3383
|
-
"source": "Previous",
|
|
3384
|
-
"translation": "Zurück"
|
|
3385
|
-
},
|
|
3386
|
-
"tourStartButton": {
|
|
3387
|
-
"source": "Start the tour",
|
|
3388
|
-
"translation": "Tour starten"
|
|
3389
|
-
},
|
|
3390
|
-
"transformDialogButtonApply": {
|
|
3391
|
-
"source": "Apply changes",
|
|
3392
|
-
"translation": "Änderungen annehmen"
|
|
3393
|
-
},
|
|
3394
|
-
"transformDialogButtonNewSuggestion": {
|
|
3395
|
-
"source": "New suggestion",
|
|
3396
|
-
"translation": "Neuer Vorschlag"
|
|
3397
|
-
},
|
|
3398
|
-
"transformDialogButtonPreview": {
|
|
3399
|
-
"source": "Preview",
|
|
3400
|
-
"translation": "Vorschau"
|
|
3401
|
-
},
|
|
3402
|
-
"translateEditDisabled": {
|
|
3403
|
-
"source": "Editing is disabled for this block type.",
|
|
3404
|
-
"translation": "Bearbeiten ist für diesen Blocktyp deaktiviert."
|
|
3405
|
-
},
|
|
3406
|
-
"translateLibraryBlock": {
|
|
3407
|
-
"source": "Reusable blocks cannot be translated here.",
|
|
3408
|
-
"translation": "Wiederverwendbare Blöcke können hier nicht übersetzt werden."
|
|
3409
|
-
},
|
|
3410
|
-
"translateNotTranslatable": {
|
|
3411
|
-
"source": "This block type is not translatable.",
|
|
3412
|
-
"translation": "Dieser Blocktyp ist nicht übersetzbar."
|
|
3413
|
-
},
|
|
3414
|
-
"translationOutdatedHint": {
|
|
3415
|
-
"source": "The translation is marked as outdated.",
|
|
3416
|
-
"translation": "Die Übersetzung ist als veraltet markiert."
|
|
3417
|
-
},
|
|
3418
|
-
"translationsAddFiles": {
|
|
3419
|
-
"source": "Add files...",
|
|
3420
|
-
"translation": "Dateien hinzufügen..."
|
|
3421
|
-
},
|
|
3422
|
-
"translationsAutoTranslate": {
|
|
3423
|
-
"source": "Auto-translate",
|
|
3424
|
-
"translation": "Automatisch übersetzen"
|
|
3425
|
-
},
|
|
3426
|
-
"translationsAutoTranslateButton": {
|
|
3427
|
-
"source": "Auto-translate...",
|
|
3428
|
-
"translation": "Automatisch übersetzen..."
|
|
3429
|
-
},
|
|
3430
|
-
"translationsAutoTranslateTooltip": {
|
|
3431
|
-
"source": "Automatically translate all texts using a translation service",
|
|
3432
|
-
"translation": "Alle Texte automatisch mit einem Übersetzungsdienst übersetzen"
|
|
3433
|
-
},
|
|
3434
|
-
"translationsBannerButton": {
|
|
3435
|
-
"source": "Edit source language instead",
|
|
3436
|
-
"translation": "Originalsprache bearbeiten"
|
|
3437
|
-
},
|
|
3438
|
-
"translationsBannerMarkAllAsUpToDate": {
|
|
3439
|
-
"source": "Mark all as up-to-date",
|
|
3440
|
-
"translation": "Alle als aktuell markieren"
|
|
3441
|
-
},
|
|
3442
|
-
"translationsBannerNext": {
|
|
3443
|
-
"source": "Next block",
|
|
3444
|
-
"translation": "Nächster Block"
|
|
3445
|
-
},
|
|
3446
|
-
"translationsBannerOutdatedCount": {
|
|
3447
|
-
"source": "@count blocks have <strong>outdated translations</strong>.",
|
|
3448
|
-
"translation": "@count Blöcke haben <strong>veraltete Übersetzungen</strong>."
|
|
3449
|
-
},
|
|
3450
|
-
"translationsBannerOutdatedSingular": {
|
|
3451
|
-
"source": "@count block has an <strong>outdated translation</strong>.",
|
|
3452
|
-
"translation": "@count Block hat eine <strong>veraltete Übersetzung</strong>."
|
|
3453
|
-
},
|
|
3454
|
-
"translationsBannerPrev": {
|
|
3455
|
-
"source": "Previous block",
|
|
3456
|
-
"translation": "Vorheriger Block"
|
|
3457
|
-
},
|
|
3458
|
-
"translationsBannerText": {
|
|
3459
|
-
"source": "You are currently editing the <strong>@language</strong> translation.",
|
|
3460
|
-
"translation": "Sie bearbeiten die Übersetzung <strong>«@language»</strong>."
|
|
3461
|
-
},
|
|
3462
|
-
"translationsBatchTranslateMenuDescription": {
|
|
3463
|
-
"source": "Translate all blocks",
|
|
3464
|
-
"translation": "Alle Elemente übersetzen"
|
|
3465
|
-
},
|
|
3466
|
-
"translationsBatchTranslateMenuTitle": {
|
|
3467
|
-
"source": "Translate...",
|
|
3468
|
-
"translation": "Übersetzen..."
|
|
3469
|
-
},
|
|
3470
|
-
"translationsCsvApply": {
|
|
3471
|
-
"source": "Import @count translations",
|
|
3472
|
-
"translation": "@count Übersetzungen importieren"
|
|
3473
|
-
},
|
|
3474
|
-
"translationsCsvChangesLabel": {
|
|
3475
|
-
"source": "fields will be updated",
|
|
3476
|
-
"translation": "Felder werden aktualisiert"
|
|
3477
|
-
},
|
|
3478
|
-
"translationsCsvDialogTitle": {
|
|
3479
|
-
"source": "Import/Export Translations",
|
|
3480
|
-
"translation": "Übersetzungen importieren/exportieren"
|
|
3481
|
-
},
|
|
3482
|
-
"translationsCsvDiff": {
|
|
3483
|
-
"source": "Changes",
|
|
3484
|
-
"translation": "Änderungen"
|
|
3485
|
-
},
|
|
3486
|
-
"translationsCsvExport": {
|
|
3487
|
-
"source": "Export",
|
|
3488
|
-
"translation": "Export"
|
|
3489
|
-
},
|
|
3490
|
-
"translationsCsvImport": {
|
|
3491
|
-
"source": "Import",
|
|
3492
|
-
"translation": "Import"
|
|
3493
|
-
},
|
|
3494
|
-
"translationsCsvLanguages": {
|
|
3495
|
-
"source": "Languages",
|
|
3496
|
-
"translation": "Sprachen"
|
|
3497
|
-
},
|
|
3498
|
-
"translationsCsvMenuTitle": {
|
|
3499
|
-
"source": "Import/export...",
|
|
3500
|
-
"translation": "Import/Export..."
|
|
3501
|
-
},
|
|
3502
|
-
"translationsCsvNoChanges": {
|
|
3503
|
-
"source": "No changes found",
|
|
3504
|
-
"translation": "Keine Änderungen gefunden"
|
|
3505
|
-
},
|
|
3506
|
-
"translationsCsvOnlyMissing": {
|
|
3507
|
-
"source": "Only missing translations",
|
|
3508
|
-
"translation": "Nur fehlende Übersetzungen"
|
|
3509
|
-
},
|
|
3510
|
-
"translationsCsvOnlyOutdated": {
|
|
3511
|
-
"source": "Only outdated translations",
|
|
3512
|
-
"translation": "Nur veraltete Übersetzungen"
|
|
3513
|
-
},
|
|
3514
|
-
"translationsCsvTooltip": {
|
|
3515
|
-
"source": "Import or export translations as CSV or PO files",
|
|
3516
|
-
"translation": "Übersetzungen als CSV- oder PO-Dateien importieren oder exportieren"
|
|
3517
|
-
},
|
|
3518
|
-
"translationsDropToImport": {
|
|
3519
|
-
"source": "Drop CSV or PO file to import",
|
|
3520
|
-
"translation": "CSV- oder PO-Datei zum Importieren ablegen"
|
|
3521
|
-
},
|
|
3522
|
-
"translationsItemAction": {
|
|
3523
|
-
"source": "Translate",
|
|
3524
|
-
"translation": "Übersetzen"
|
|
3525
|
-
},
|
|
3526
|
-
"translationsMarkUpToDate": {
|
|
3527
|
-
"source": "Mark translations as up to date",
|
|
3528
|
-
"translation": "Übersetzung als aktuell markieren"
|
|
3529
|
-
},
|
|
3530
|
-
"translationsMarkUpToDateDisabled": {
|
|
3531
|
-
"source": "No selected blocks have an outdated translation.",
|
|
3532
|
-
"translation": "Keiner der ausgewählten Blöcke hat eine veraltete Übersetzung."
|
|
3533
|
-
},
|
|
3534
|
-
"translationsSelectImportFile": {
|
|
3535
|
-
"source": "Select CSV or PO file",
|
|
3536
|
-
"translation": "CSV- oder PO-Datei auswählen"
|
|
3537
|
-
},
|
|
3538
|
-
"translationsTourText": {
|
|
3539
|
-
"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.",
|
|
3540
|
-
"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."
|
|
3541
|
-
},
|
|
3542
|
-
"translationsTourTitle": {
|
|
3543
|
-
"source": "Translations",
|
|
3544
|
-
"translation": "Übersetzungen"
|
|
3545
|
-
},
|
|
3546
|
-
"translationsTranslateApply": {
|
|
3547
|
-
"source": "Apply @count translations",
|
|
3548
|
-
"translation": "@count Übersetzungen anwenden"
|
|
3549
|
-
},
|
|
3550
|
-
"translationsTranslateButton": {
|
|
3551
|
-
"source": "Request @count translations",
|
|
3552
|
-
"translation": "@count Übersetzungen anfordern"
|
|
3553
|
-
},
|
|
3554
|
-
"translationsTranslateCurrentColumn": {
|
|
3555
|
-
"source": "Current translation (@language)",
|
|
3556
|
-
"translation": "Aktuelle Übersetzung (@language)"
|
|
3557
|
-
},
|
|
3558
|
-
"translationsTranslateDialogTitle": {
|
|
3559
|
-
"source": "Automatic Translation",
|
|
3560
|
-
"translation": "Automatische Übersetzung"
|
|
3561
|
-
},
|
|
3562
|
-
"translationsTranslateFieldsLabel": {
|
|
3563
|
-
"source": "fields selected",
|
|
3564
|
-
"translation": "Felder ausgewählt"
|
|
3565
|
-
},
|
|
3566
|
-
"translationsTranslateLoading": {
|
|
3567
|
-
"source": "Translating...",
|
|
3568
|
-
"translation": "Wird übersetzt..."
|
|
3569
|
-
},
|
|
3570
|
-
"translationsTranslateNoTexts": {
|
|
3571
|
-
"source": "No translatable texts found on this page.",
|
|
3572
|
-
"translation": "Keine übersetzbaren Texte auf dieser Seite gefunden."
|
|
3573
|
-
},
|
|
3574
|
-
"unexpectedMutationError": {
|
|
3575
|
-
"source": "An unexpected error happened.",
|
|
3576
|
-
"translation": "Ein unerwarteter Fehler ist aufgetreten"
|
|
3577
|
-
},
|
|
3578
|
-
"validationsNoneFound": {
|
|
3579
|
-
"source": "No validation errors found.",
|
|
3580
|
-
"translation": "Keine Validierungsfehler gefunden."
|
|
3581
|
-
},
|
|
3582
|
-
"validationsToolbarLabel": {
|
|
3583
|
-
"source": "Validations",
|
|
3584
|
-
"translation": "Validierungen"
|
|
3585
|
-
},
|
|
3586
|
-
"validationsTourText": {
|
|
3587
|
-
"source": "See validation errors for content or structure on the current page.",
|
|
3588
|
-
"translation": "Zeigt Validierungsfehler für Inhalte auf der aktuellen Seite an."
|
|
3589
|
-
},
|
|
3590
|
-
"viewBannerReviewText": {
|
|
3591
|
-
"source": "You can view and add comments but cannot edit content.",
|
|
3592
|
-
"translation": "Sie können Kommentare ansehen und hinzufügen, aber keine Inhalte bearbeiten."
|
|
3593
|
-
},
|
|
3594
|
-
"viewBannerReviewTitle": {
|
|
3595
|
-
"source": "You are in review mode.",
|
|
3596
|
-
"translation": "Sie befinden sich im Review-Modus."
|
|
3597
|
-
},
|
|
3598
|
-
"viewBannerViewText": {
|
|
3599
|
-
"source": "You can view comments but cannot edit content.",
|
|
3600
|
-
"translation": "Sie können Kommentare ansehen, aber keine Inhalte bearbeiten."
|
|
3601
|
-
},
|
|
3602
|
-
"viewBannerViewTitle": {
|
|
3603
|
-
"source": "You are in view-only mode.",
|
|
3604
|
-
"translation": "Sie befinden sich im Ansichtsmodus."
|
|
3605
|
-
},
|
|
3606
|
-
"workspaceOpen": {
|
|
3607
|
-
"source": "Switch page",
|
|
3608
|
-
"translation": "Seite wechseln"
|
|
3609
|
-
},
|
|
3610
|
-
"workspaceSearchPlaceholder": {
|
|
3611
|
-
"source": "Search pages...",
|
|
3612
|
-
"translation": "Seiten durchsuchen..."
|
|
3613
|
-
},
|
|
3614
|
-
"workspaceTitle": {
|
|
3615
|
-
"source": "Switch page",
|
|
3616
|
-
"translation": "Seite wechseln"
|
|
3617
|
-
}
|
|
2
|
+
"actions": "Aktonen",
|
|
3
|
+
"actionsDropdownToolip": "Weitere Aktionen",
|
|
4
|
+
"actionsMoveBlock": "Block verschieben",
|
|
5
|
+
"actionsMoveBlocks": "@count Blöcke verschieben",
|
|
6
|
+
"actionsSelectPage": "Seite auswählen",
|
|
7
|
+
"actionsSelectParent": "Übergeordneten Block (@label) auswählen",
|
|
8
|
+
"addBlockCommand.appendInField": "«@block» in «@field» anfügen",
|
|
9
|
+
"addBlockCommand.appendRoot": "«@block» anfügen",
|
|
10
|
+
"addBlockCommand.insertInField": "«@block» in «@field» einfügen",
|
|
11
|
+
"addButtonAfterBundle": "Danach hinzufügen...",
|
|
12
|
+
"addButtonBeforeBundle": "Vorher hinzufügen...",
|
|
13
|
+
"addButtonBundleAfter": "«@bundle» danach hinzufügen",
|
|
14
|
+
"addButtonBundleBefore": "«@bundle» Vorher hinzufügen",
|
|
15
|
+
"addButtonBundleInsideField": "«@bundle» in @parentBundle » @fieldLabel hinzufügen",
|
|
16
|
+
"addButtonBundleToField": "«@bundle» in @fieldLabel hinzufügen",
|
|
17
|
+
"addButtonInsideField": "In @parentBundle » @fieldLabel hinzufügen...",
|
|
18
|
+
"addButtonToField": "In @fieldLabel hinzufügen...",
|
|
19
|
+
"addCommentHeader": "Kommentar hinzufügen",
|
|
20
|
+
"addCommentToItem": "Kommentar hinzufügen...",
|
|
21
|
+
"addListItemFavoriteAdd": "Zu Favoriten hinzufügen",
|
|
22
|
+
"addListItemFavoriteRemove": "Aus Favoriten entfernen",
|
|
23
|
+
"addListSidebarTitle": "Block hinzufügen",
|
|
24
|
+
"addListTourText": "<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>",
|
|
25
|
+
"agentPromptReadabilityLabel": "Lesbarkeit verbessern...",
|
|
26
|
+
"agentPromptReadabilityPrompt": "Die Lesbarkeit wurde bereits analysiert und die Korrektur wurde angewendet. Rufe keine weiteren Tools auf. Bestätige nur kurz, dass du fertig bist.",
|
|
27
|
+
"agentPromptReadabilityUserPrompt": "Verbessere die Lesbarkeit der ausgewählten Blöcke.",
|
|
28
|
+
"agentSidebarTooltipLabel": "@name (KI-Assistent)",
|
|
29
|
+
"aiAgentAddBlockDone": "@bundle hinzugefügt",
|
|
30
|
+
"aiAgentAddBlocksDone": "@count Blöcke hinzugefügt",
|
|
31
|
+
"aiAgentAddBlocksRunning": "Blöcke hinzufügen...",
|
|
32
|
+
"aiAgentAddContentSearchBlockDone": "@bundle mit Inhalts-ID @id hinzugefügt",
|
|
33
|
+
"aiAgentAddContentSearchBlockRunning": "Inhalts-Block hinzufügen...",
|
|
34
|
+
"aiAgentAddFragmentDone": "Fragment «@label» hinzugefügt",
|
|
35
|
+
"aiAgentAddFragmentRunning": "Fragment hinzufügen...",
|
|
36
|
+
"aiAgentAddLibraryItemDone": "Wiederverwendbaren Block hinzugefügt",
|
|
37
|
+
"aiAgentAddLibraryItemRunning": "Wiederverwendbaren Block hinzufügen...",
|
|
38
|
+
"aiAgentAddMediaBlockDone": "@bundle mit Medien-ID @id hinzugefügt",
|
|
39
|
+
"aiAgentAddMediaBlockRunning": "Medien-Block hinzufügen...",
|
|
40
|
+
"aiAgentAddTemplateDone": "Vorlage hinzugefügt",
|
|
41
|
+
"aiAgentAddTemplateRunning": "Vorlage hinzufügen...",
|
|
42
|
+
"aiAgentAlwaysApprove": "Immer",
|
|
43
|
+
"aiAgentAnalyzeContentDone": "@count Ergebnisse analysiert",
|
|
44
|
+
"aiAgentAnalyzeContentRunning": "Inhalte werden analysiert...",
|
|
45
|
+
"aiAgentApprovalAccept": "Akzeptieren",
|
|
46
|
+
"aiAgentApprovalAccepted": "Akzeptiert",
|
|
47
|
+
"aiAgentApprovalHint": "Änderungen prüfen und einzeln annehmen oder ablehnen. Tab/Pfeiltasten: navigieren, Leertaste/Enter: annehmen/ablehnen.",
|
|
48
|
+
"aiAgentApprovalNextChange": "Nächste Änderung",
|
|
49
|
+
"aiAgentApprovalPrevChange": "Vorherige Änderung",
|
|
50
|
+
"aiAgentApprovalRejected": "Abgelehnt",
|
|
51
|
+
"aiAgentApprovalToggle": "Änderung annehmen/ablehnen",
|
|
52
|
+
"aiAgentApprove": "Bestätigen",
|
|
53
|
+
"aiAgentApprovePlan": "Plan akzeptieren",
|
|
54
|
+
"aiAgentAskQuestionOther": "Keine der Optionen",
|
|
55
|
+
"aiAgentAskQuestionOtherPlaceholder": "Eigene Antwort eingeben...",
|
|
56
|
+
"aiAgentAskQuestionRunning": "Auf Antwort warten...",
|
|
57
|
+
"aiAgentAwaitingApproval": "Wartet auf Ihre Bestätigung...",
|
|
58
|
+
"aiAgentBatchRewriteAllApplied": "Alle @count Änderungen angewendet",
|
|
59
|
+
"aiAgentBatchRewriteAllRejected": "Alle Änderungen abgelehnt",
|
|
60
|
+
"aiAgentBatchRewriteApply": "@count von @total anwenden",
|
|
61
|
+
"aiAgentBatchRewriteReasonPlaceholder": "Grund für Ablehnung (optional)",
|
|
62
|
+
"aiAgentBatchRewriteSomeApplied": "@applied von @total Änderungen angewendet",
|
|
63
|
+
"aiAgentBatchRewriteTextRunning": "Mehrere Texte umschreiben...",
|
|
64
|
+
"aiAgentBlockNotFound": "Block nicht gefunden",
|
|
65
|
+
"aiAgentCancelled": "Abgebrochen",
|
|
66
|
+
"aiAgentCheckReadabilityDone": "Lesbarkeit von @count Texten geprüft",
|
|
67
|
+
"aiAgentCheckReadabilityRunning": "Lesbarkeit wird geprüft...",
|
|
68
|
+
"aiAgentCompletePlanStep": "Abgeschlossen: @label",
|
|
69
|
+
"aiAgentConfirm": "Bestätigen",
|
|
70
|
+
"aiAgentConnecting": "Verbinden...",
|
|
71
|
+
"aiAgentCreateChartDone": "Diagramm hinzugefügt",
|
|
72
|
+
"aiAgentCreateChartRunning": "Diagramm wird erstellt...",
|
|
73
|
+
"aiAgentCreatePlan": "Plan: @label",
|
|
74
|
+
"aiAgentDelegateRewriteCancelled": "Umschreiben abgebrochen",
|
|
75
|
+
"aiAgentDelegateRewriteChecking": "Lesbarkeit wird geprüft...",
|
|
76
|
+
"aiAgentDelegateRewriteError": "Umschreiben fehlgeschlagen",
|
|
77
|
+
"aiAgentDelegateRewriteFailed": "Umschreiben fehlgeschlagen",
|
|
78
|
+
"aiAgentDelegateRewriteNoChanges": "Keine Änderungen erkannt",
|
|
79
|
+
"aiAgentDelegateRewriteRetrying": "@count Felder werden erneut versucht (Versuch @attempt)...",
|
|
80
|
+
"aiAgentDelegateRewriteRunning": "Texte werden umgeschrieben...",
|
|
81
|
+
"aiAgentDelegateRewriteStreaming": "@count Felder werden umgeschrieben...",
|
|
82
|
+
"aiAgentDeleteBlockDone": "@bundle gelöscht",
|
|
83
|
+
"aiAgentDeleteBlocksDone": "@count Blöcke gelöscht",
|
|
84
|
+
"aiAgentDeleteBlocksRunning": "Blöcke löschen...",
|
|
85
|
+
"aiAgentDeleteConversation": "Konversation löschen",
|
|
86
|
+
"aiAgentDetachLibraryBlockDone": "Bibliotheks-Block abgetrennt",
|
|
87
|
+
"aiAgentDetachLibraryBlockRunning": "Bibliotheks-Block abtrennen...",
|
|
88
|
+
"aiAgentDetachLibraryBlocksDone": "@count Bibliotheks-Blöcke abgetrennt",
|
|
89
|
+
"aiAgentDisconnected": "Verbindung wird wiederhergestellt...",
|
|
90
|
+
"aiAgentDropFiles": "Dateien ablegen zum Anhängen",
|
|
91
|
+
"aiAgentDuplicateBlockDone": "@bundle dupliziert",
|
|
92
|
+
"aiAgentDuplicateBlockToFieldDone": "@bundle nach @field dupliziert",
|
|
93
|
+
"aiAgentDuplicateBlocksDone": "@count Blöcke dupliziert",
|
|
94
|
+
"aiAgentDuplicateBlocksRunning": "Blöcke duplizieren...",
|
|
95
|
+
"aiAgentDuplicateBlocksToFieldDone": "@count Blöcke nach @field dupliziert",
|
|
96
|
+
"aiAgentErrorAuthentication": "API-Authentifizierung ist fehlgeschlagen. Bitte API-Key überprüfen.",
|
|
97
|
+
"aiAgentErrorBadRequest": "Die Anfrage an den KI-Dienst ist ungültig.",
|
|
98
|
+
"aiAgentErrorConnection": "Fehler beim Verbinden mit dem KI-Dienst.",
|
|
99
|
+
"aiAgentErrorNotFound": "Das konfigurierte KI-Model konnte nicht gefunden werden. Bitte Konfiguration überprüfen.",
|
|
100
|
+
"aiAgentErrorOverloaded": "Der KI-Dienst ist aktuell überlastet. Bitte versuchen Sie es später noch einmal.",
|
|
101
|
+
"aiAgentErrorRateLimit": "Das Limit wurde überschritten. Bitte warten Sie einen Moment, bevor Sie es erneut versuchen.",
|
|
102
|
+
"aiAgentErrorUnauthorized": "Authentifizierung fehlgeschlagen. Bitte laden Sie die Seite neu und versuchen Sie es erneut.",
|
|
103
|
+
"aiAgentErrorUnknown": "Ein unerwarteter Fehler ist aufgetreten.",
|
|
104
|
+
"aiAgentExpandButton": "Mehr anzeigen",
|
|
105
|
+
"aiAgentFeedbackBad": "Schlecht",
|
|
106
|
+
"aiAgentFeedbackFine": "Okay",
|
|
107
|
+
"aiAgentFeedbackGood": "Gut",
|
|
108
|
+
"aiAgentFeedbackPlaceholder": "Erzählen Sie uns mehr (optional)...",
|
|
109
|
+
"aiAgentFeedbackPrompt": "Wie war diese Antwort?",
|
|
110
|
+
"aiAgentFeedbackSubmit": "Absenden",
|
|
111
|
+
"aiAgentFeedbackThanks": "Danke für Ihr Feedback!",
|
|
112
|
+
"aiAgentFindBlocksDone": "@count Blöcke gefunden",
|
|
113
|
+
"aiAgentFindBlocksRunning": "Blöcke suchen...",
|
|
114
|
+
"aiAgentGetAllFragments": "Alle Fragmente abrufen",
|
|
115
|
+
"aiAgentGetAllFragmentsDone": "Alle Fragmente abgerufen",
|
|
116
|
+
"aiAgentGetAllPageContentDone": "Inhalt von @count Blöcken abgerufen",
|
|
117
|
+
"aiAgentGetAllPageContentRunning": "Gesamten Seiteninhalt abrufen...",
|
|
118
|
+
"aiAgentGetBlockContextDone": "Kontext für @bundle abgerufen",
|
|
119
|
+
"aiAgentGetBlockContextRunning": "Block-Kontext abrufen...",
|
|
120
|
+
"aiAgentGetBlockOptionsDone": "Optionen von @bundle abgerufen",
|
|
121
|
+
"aiAgentGetBlockOptionsMultipleDone": "Optionen von @count Blöcken abgerufen",
|
|
122
|
+
"aiAgentGetBlockOptionsRunning": "Block-Optionen abrufen...",
|
|
123
|
+
"aiAgentGetBlocksInViewportDone": "@count Blöcke im Viewport abgerufen",
|
|
124
|
+
"aiAgentGetBlocksInViewportRunning": "Blöcke im Viewport abrufen...",
|
|
125
|
+
"aiAgentGetBundleInfoDone": "Bundle-Info für @field abgerufen",
|
|
126
|
+
"aiAgentGetBundleInfoRunning": "Bundle-Info abrufen...",
|
|
127
|
+
"aiAgentGetChartDataDone": "Diagrammdaten geladen",
|
|
128
|
+
"aiAgentGetChartDataRunning": "Diagrammdaten werden geladen...",
|
|
129
|
+
"aiAgentGetChartTypeOptionsRunning": "Diagrammoptionen werden geladen...",
|
|
130
|
+
"aiAgentGetChildBlocks": "Kind-Blöcke abrufen",
|
|
131
|
+
"aiAgentGetChildBlocksDone": "Kind-Blöcke von @bundle abgerufen",
|
|
132
|
+
"aiAgentGetChildBlocksNone": "@bundle hat keine Kind-Felder",
|
|
133
|
+
"aiAgentGetContentFieldsDone": "Inhaltsfelder von @bundle abgerufen",
|
|
134
|
+
"aiAgentGetContentFieldsMultipleDone": "Inhaltsfelder von @count Blöcken geladen",
|
|
135
|
+
"aiAgentGetContentFieldsRunning": "Inhaltsfelder abrufen...",
|
|
136
|
+
"aiAgentGetEntityContentFieldsDone": "Inhaltsfelder der Seite abgerufen",
|
|
137
|
+
"aiAgentGetMutationHistoryDone": "Änderungsverlauf abgerufen",
|
|
138
|
+
"aiAgentGetMutationHistoryRunning": "Änderungsverlauf abrufen...",
|
|
139
|
+
"aiAgentGetPageStructureDone": "Seitenstruktur erhalten (@count Absätze)",
|
|
140
|
+
"aiAgentGetPageStructureRunning": "Seitenstruktur wird geladen...",
|
|
141
|
+
"aiAgentGetSelectedBlocksDone": "@count Blöcke ausgewählt",
|
|
142
|
+
"aiAgentGetSelectedBlocksNone": "Keine Blöcke ausgewählt",
|
|
143
|
+
"aiAgentGetSelectedBlocksRunning": "Ausgewählte Blöcke laden...",
|
|
144
|
+
"aiAgentGoToHistoryIndexRunning": "Im Verlauf navigieren...",
|
|
145
|
+
"aiAgentIntroPopup": "Brauchst du Hilfe? Ich bin @name, dein KI-Assistent — ich kann Blöcke hinzufügen, verschieben, bearbeiten und vieles mehr. Probier es aus!",
|
|
146
|
+
"aiAgentIntroPopupCta": "Jetzt ausprobieren",
|
|
147
|
+
"aiAgentLoadSkill": "Skill «@label» lesen",
|
|
148
|
+
"aiAgentLoadTools": "@count Tools geladen",
|
|
149
|
+
"aiAgentMoveBlockDone": "@bundle verschoben",
|
|
150
|
+
"aiAgentMoveBlocksDone": "@count Blöcke verschoben",
|
|
151
|
+
"aiAgentMoveBlocksRunning": "Blöcke verschieben...",
|
|
152
|
+
"aiAgentNewConversation": "Neue Konversation starten",
|
|
153
|
+
"aiAgentNoConversations": "Keine früheren Konversationen.",
|
|
154
|
+
"aiAgentPastConversations": "Frühere Konversationen",
|
|
155
|
+
"aiAgentPastedText": "Eingefügter Text",
|
|
156
|
+
"aiAgentPlaceholder": "Woran sollen wir arbeiten?",
|
|
157
|
+
"aiAgentPlaceholderReply": "Antworten...",
|
|
158
|
+
"aiAgentPlanCompleted": "Plan abgeschlossen: @label",
|
|
159
|
+
"aiAgentPopupTitle": "KI-Assistent",
|
|
160
|
+
"aiAgentProcessing": "Verarbeiten...",
|
|
161
|
+
"aiAgentRearrangeBlocksDone": "@count Blöcke neu angeordnet",
|
|
162
|
+
"aiAgentRearrangeBlocksRunning": "Blöcke werden neu angeordnet...",
|
|
163
|
+
"aiAgentRedoDone": "@count Änderungen wiederhergestellt",
|
|
164
|
+
"aiAgentReject": "Ablehnen",
|
|
165
|
+
"aiAgentRemoveAttachment": "Anhang entfernen",
|
|
166
|
+
"aiAgentReplaceContentSearchItemDone": "Inhaltsreferenz auf @field ersetzt",
|
|
167
|
+
"aiAgentReplaceContentSearchItemRunning": "Inhaltsreferenz ersetzen...",
|
|
168
|
+
"aiAgentReplaceMediaDone": "Medien auf @field ersetzt",
|
|
169
|
+
"aiAgentReplaceMediaRunning": "Medien ersetzen...",
|
|
170
|
+
"aiAgentRetry": "Erneut versuchen",
|
|
171
|
+
"aiAgentSearchContentRunning": "Inhalte werden durchsucht...",
|
|
172
|
+
"aiAgentSearchLibraryDone": "Bibliothek durchsucht",
|
|
173
|
+
"aiAgentSearchLibraryRunning": "Wiederverwendbare Blöcke suchen...",
|
|
174
|
+
"aiAgentSearchMediaAllDone": "Alle Medien durchsucht",
|
|
175
|
+
"aiAgentSearchMediaDone": "Medien nach «@query» durchsucht",
|
|
176
|
+
"aiAgentSearchMediaRunning": "Medien suchen...",
|
|
177
|
+
"aiAgentSearchTemplatesAllDone": "Alle Vorlagen durchsucht",
|
|
178
|
+
"aiAgentSearchTemplatesDone": "Vorlagen nach «@query» durchsucht",
|
|
179
|
+
"aiAgentSearchTemplatesRunning": "Vorlagen suchen...",
|
|
180
|
+
"aiAgentSearchTextDone": "@count Blöcke mit «@query» gefunden",
|
|
181
|
+
"aiAgentSearchTextError": "Ungültiges Regex-Muster",
|
|
182
|
+
"aiAgentSearchTextRunning": "Text suchen...",
|
|
183
|
+
"aiAgentSelectMediaRunning": "Medien auswählen...",
|
|
184
|
+
"aiAgentSetBlockOptionsRunning": "Block-Optionen setzen...",
|
|
185
|
+
"aiAgentShowTranscript": "Transkript anzeigen...",
|
|
186
|
+
"aiAgentSwapBlocksDone": "@bundleA und @bundleB getauscht",
|
|
187
|
+
"aiAgentSwapBlocksRunning": "Blöcke tauschen...",
|
|
188
|
+
"aiAgentThinking": "Überlegen...",
|
|
189
|
+
"aiAgentTokensCached": "Wiederverwendete Eingabe-Tokens (günstiger)",
|
|
190
|
+
"aiAgentTokensCachedLabel": "Cache",
|
|
191
|
+
"aiAgentTokensCost": "Geschätzte Kosten für diese Konversation",
|
|
192
|
+
"aiAgentTokensCostLabel": "Kosten",
|
|
193
|
+
"aiAgentTokensInput": "Tokens, die als Kontext an die KI gesendet werden",
|
|
194
|
+
"aiAgentTokensInputLabel": "Eingabe",
|
|
195
|
+
"aiAgentTokensOutput": "Von der KI generierte Tokens in Antworten",
|
|
196
|
+
"aiAgentTokensOutputLabel": "Ausgabe",
|
|
197
|
+
"aiAgentTourText": "Chatten Sie mit einem KI-Assistenten, um Seiteninhalte zu bearbeiten.",
|
|
198
|
+
"aiAgentUndoDone": "@count Änderungen rückgängig gemacht",
|
|
199
|
+
"aiAgentUnknownMessage": "Unbekannter Nachrichtentyp",
|
|
200
|
+
"aiAgentUpdateChartDone": "Diagramm aktualisiert",
|
|
201
|
+
"aiAgentUpdateChartRunning": "Diagramm wird aktualisiert...",
|
|
202
|
+
"aiAgentUpdateOptionsOnBlockDone": "@count Option(en) auf Block aktualisiert",
|
|
203
|
+
"aiAgentUpdateOptionsOnBlocksDone": "@count Option(en) auf @blockCount Blöcken aktualisiert",
|
|
204
|
+
"aiAgentViewAttachment": "Anhang anzeigen",
|
|
205
|
+
"aiAgentWebFetchDone": "«@title» abgerufen",
|
|
206
|
+
"aiAgentWebFetchRunning": "Webseite abrufen...",
|
|
207
|
+
"aiAgentWelcomeDisclaimer": "@agent kann Fehler machen! Überprüfen Sie immer die Resultate. <strong>Geben Sie keine vertraulichen Informationen ein.</strong>",
|
|
208
|
+
"all": "Alle",
|
|
209
|
+
"allowedBlocks": "Erlaubte Blöcke",
|
|
210
|
+
"analyzeAltTextLabel": "Bilder Alt-Texte",
|
|
211
|
+
"analyzeAltTextMissing": "Bilder ohne Alternativtext",
|
|
212
|
+
"analyzeAltTextMissingDescription": "Bilder haben keinen Alternativtext. Alt-Texte sind wichtig für die Barrierefreiheit und SEO.",
|
|
213
|
+
"analyzeAltTextMissingNode": "Bild ohne Alt-Text",
|
|
214
|
+
"analyzeAltTextValid": "Bilder mit Alternativtext",
|
|
215
|
+
"analyzeAltTextValidDescription": "Bilder haben einen Alternativtext.",
|
|
216
|
+
"analyzeButtonLabel": "Seite analysieren",
|
|
217
|
+
"analyzeCategory": "Kategorie",
|
|
218
|
+
"analyzeCategoryAccessibility": "Barrierefreiheit",
|
|
219
|
+
"analyzeCategoryContent": "Inhalt",
|
|
220
|
+
"analyzeCategorySeo": "SEO",
|
|
221
|
+
"analyzeCategoryText": "Texte",
|
|
222
|
+
"analyzeClickButton": "Klicken Sie auf den Button oben um die Analyse auszuführen.",
|
|
223
|
+
"analyzeHeadingHasH2": "H2-Überschriften vorhanden",
|
|
224
|
+
"analyzeHeadingHasH2Description": "Die Seite enthält H2-Überschriften für eine klare Inhaltsstruktur.",
|
|
225
|
+
"analyzeHeadingMultipleH1": "Mehrere H1-Überschriften",
|
|
226
|
+
"analyzeHeadingMultipleH1Description": "Die Seite enthält mehrere H1-Überschriften. Es sollte nur eine H1-Überschrift pro Seite geben.",
|
|
227
|
+
"analyzeHeadingNoH2": "Fehlende H2-Überschriften",
|
|
228
|
+
"analyzeHeadingNoH2Description": "Die Seite enthält keine H2-Überschriften. Eine klare Überschriftenstruktur ist wichtig für SEO und Barrierefreiheit.",
|
|
229
|
+
"analyzeHeadingNoH2Found": "Keine H2-Überschriften gefunden",
|
|
230
|
+
"analyzeHeadingNoSkippedLevels": "Keine übersprungenen Überschriftenebenen",
|
|
231
|
+
"analyzeHeadingNoSkippedLevelsDescription": "Die Überschriftenhierarchie überspringt keine Ebenen.",
|
|
232
|
+
"analyzeHeadingSingleH1": "Einzelne H1-Überschrift",
|
|
233
|
+
"analyzeHeadingSingleH1Description": "Die Seite hat genau eine H1-Überschrift.",
|
|
234
|
+
"analyzeHeadingSkippedLevels": "Übersprungene Überschriftenebenen",
|
|
235
|
+
"analyzeHeadingSkippedLevelsDescription": "Überschriften überspringen eine Ebene. Die Überschriftenhierarchie sollte keine Ebenen überspringen (z.B. nicht von H2 zu H4).",
|
|
236
|
+
"analyzeHeadingStructureLabel": "Titelstruktur",
|
|
237
|
+
"analyzeIgnore": "Ignorieren",
|
|
238
|
+
"analyzeIgnoredResults": "Ignoriert",
|
|
239
|
+
"analyzeKeepVisible": "Ergebnisse sichtbar halten",
|
|
240
|
+
"analyzeKeepVisibleDescription": "Wenn aktiviert, bleiben die Analyseergebnisse auf der Seite hervorgehoben, auch wenn das Analyse-Panel geschlossen ist.",
|
|
241
|
+
"analyzeLastRun": "Zuletzt ausgeführt: @time",
|
|
242
|
+
"analyzeMoreLink": "Mehr",
|
|
243
|
+
"analyzeNotAvailableInStructureView": "«Analysieren» ist in der strukturierten Vorschau nicht verfügbar.",
|
|
244
|
+
"analyzeResultsOutdated": "Resultate sind veraltet. Klicken Sie auf den Button um zu aktualisieren.",
|
|
245
|
+
"analyzeShowDetails": "Details anzeigen",
|
|
246
|
+
"analyzeSidebarTitle": "Analysieren",
|
|
247
|
+
"analyzeStatusInapplicable": "Nicht anwendbar",
|
|
248
|
+
"analyzeStatusIncomplete": "Unvollständig",
|
|
249
|
+
"analyzeStatusPass": "Bestanden",
|
|
250
|
+
"analyzeStatusStale": "Veraltet",
|
|
251
|
+
"analyzeStatusViolation": "Fehler",
|
|
252
|
+
"analyzeTourText": "Inhalte auf dieser Seite analysieren.",
|
|
253
|
+
"analyzeUnignore": "Wiederherstellen",
|
|
254
|
+
"analyzerReadabiliyCouldBeSimpler": "Könnte einfacher sein (@lang).",
|
|
255
|
+
"analyzerReadabiliyDescription": "Vermeiden Sie Texte die schwer lesbar sind.",
|
|
256
|
+
"analyzerReadabiliyHardToRead": "Schwierig zu lesen (@lang).",
|
|
257
|
+
"analyzerReadabiliyOkDescription": "Text, der einfacher zu lesen sein könnte.",
|
|
258
|
+
"analyzerReadabiliyOkTitle": "Text könnte einfacher sein",
|
|
259
|
+
"analyzerReadabiliyShorterSentences": "Verwenden Sie kürzere Sätze und einfachere Formulierungen.",
|
|
260
|
+
"analyzerReadabiliyTitle": "Probleme bei Lesbarkeit",
|
|
261
|
+
"anchorHide": "Anker-Links verstecken",
|
|
262
|
+
"anchorShow": "Anker-Links anzeigen",
|
|
263
|
+
"anchorToggle": "Anzeige von Anker-Links umschalten",
|
|
264
|
+
"arrowLeft": "Pfeil links",
|
|
265
|
+
"arrowRight": "Pfeil rechts",
|
|
266
|
+
"artboard": "Vorschau",
|
|
267
|
+
"artboardOverviewHide": "Übersicht verstecken",
|
|
268
|
+
"artboardOverviewShow": "Übersicht anzeigen",
|
|
269
|
+
"artboardOverviewToggle": "Übersicht umschalten",
|
|
270
|
+
"artboardOverviewTourText": "Zeigt eine schematische Übersicht aller Inhalte an.",
|
|
271
|
+
"artboardResetZoom": "Zoom zurücksetzen",
|
|
272
|
+
"artboardScaleToFit": "An Höhe anpassen",
|
|
273
|
+
"artboardScrollDown": "runterscrollen",
|
|
274
|
+
"artboardScrollOnePageDown": "Eine Seite hochscrollen",
|
|
275
|
+
"artboardScrollOnePageUp": "Eine Seite runterscrollen",
|
|
276
|
+
"artboardScrollToEnd": "Zum Ende scrollen",
|
|
277
|
+
"artboardScrollToTop": "Zum Anfang scrollen",
|
|
278
|
+
"artboardScrollUp": "hochscrollen",
|
|
279
|
+
"artboardToolbarButtonTourText": "Zeigt den aktuellen Zoom-Wert. Klicken Sie auf den Button um den Zoom auf 100% zurückzusetzen.",
|
|
280
|
+
"availableBlocks": "Verfügbare Blöcke",
|
|
281
|
+
"availableFragments": "Verfügbare Fragmente",
|
|
282
|
+
"blockAddListTourText": "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.",
|
|
283
|
+
"blockAddListTourTitle": "Favoriten-Blöcke",
|
|
284
|
+
"blockNotImplemented": "Keine Komponente für Block-Typ <strong>@bundle</strong> gefunden.",
|
|
285
|
+
"blockOption_bkHiddenGlobally_description": "Den Block immer verstecken.",
|
|
286
|
+
"blockOption_bkHiddenGlobally_label": "Global verstecken",
|
|
287
|
+
"blockOption_bkVisibleLanguages_description": "Nur auf bestimmten Sprachen anzeigen.",
|
|
288
|
+
"blockOption_bkVisibleLanguages_label": "Sichtbare Sprachen",
|
|
289
|
+
"blockSchedulerChangesPreview": "Anzuwendende Änderungen",
|
|
290
|
+
"blockSchedulerDialogLead": "Planen Sie automatische Veröffentlichungs- und Depublikationsdaten für die ausgewählten Blöcke.",
|
|
291
|
+
"blockSchedulerDialogPublishOn": "Veröffentlichen am",
|
|
292
|
+
"blockSchedulerDialogSubmit": "Planung speichern",
|
|
293
|
+
"blockSchedulerDialogTitle": "Planung verwalten",
|
|
294
|
+
"blockSchedulerDialogUnpublishOn": "Depublizieren am",
|
|
295
|
+
"blockSchedulerMixedDates": "Ausgewählte Blöcke haben unterschiedliche Daten: @dates",
|
|
296
|
+
"blockSchedulerNoChanges": "Keine Änderungen vorhanden.",
|
|
297
|
+
"blockSchedulerOverride": "Datum für alle setzen",
|
|
298
|
+
"blockSchedulerSuccessMessage": "Planungsdaten erfolgreich aktualisiert.",
|
|
299
|
+
"bundle": "Typ",
|
|
300
|
+
"bundleSelectorActionsLabel": "Aktionen",
|
|
301
|
+
"bundleSelectorFragmentsLabel": "Fragmente",
|
|
302
|
+
"cancelSelection": "Auswahl abbrechen",
|
|
303
|
+
"changelogDialogTitle": "Neuigkeiten",
|
|
304
|
+
"changelogMenuDescription": "Aktuelle Änderungen und neue Funktionen anzeigen",
|
|
305
|
+
"changelogMenuTitle": "Neuigkeiten",
|
|
306
|
+
"chartsAddColumn": "Spalte hinzufügen",
|
|
307
|
+
"chartsAddFootnote": "Fussnote hinzufügen",
|
|
308
|
+
"chartsAddRow": "Zeile hinzufügen",
|
|
309
|
+
"chartsAreaCurved": "Glatte Kurven",
|
|
310
|
+
"chartsAreaMarkers": "Markierungen anzeigen",
|
|
311
|
+
"chartsAutoUpdate": "Automatisch aktualisieren",
|
|
312
|
+
"chartsBarHorizontal": "Horizontal",
|
|
313
|
+
"chartsBarStacked": "Gestapelt",
|
|
314
|
+
"chartsBorderRadius": "Eckenradius",
|
|
315
|
+
"chartsBorderRadiusLarge": "Gross",
|
|
316
|
+
"chartsBorderRadiusNone": "Keine",
|
|
317
|
+
"chartsBorderRadiusSmall": "Klein",
|
|
318
|
+
"chartsData": "Daten",
|
|
319
|
+
"chartsDataLabels": "Datenbeschriftungen",
|
|
320
|
+
"chartsDonutShowLabels": "Beschriftungen anzeigen",
|
|
321
|
+
"chartsDonutShowTotal": "Total anzeigen",
|
|
322
|
+
"chartsEditTitle": "Diagramm bearbeiten",
|
|
323
|
+
"chartsFootnotes": "Fussnoten",
|
|
324
|
+
"chartsGridLines": "Rasterlinien",
|
|
325
|
+
"chartsImportCsv": "CSV importieren",
|
|
326
|
+
"chartsLegendPosition": "Legendenposition",
|
|
327
|
+
"chartsLineCurved": "Glatte Kurven",
|
|
328
|
+
"chartsLineMarkers": "Markierungen anzeigen",
|
|
329
|
+
"chartsOpacityLight": "Leicht",
|
|
330
|
+
"chartsOpacitySolid": "Deckend",
|
|
331
|
+
"chartsOpacityTransparent": "Transparent",
|
|
332
|
+
"chartsOptionGroupDisplay": "Darstellung",
|
|
333
|
+
"chartsOptionGroupLabels": "Beschriftungen",
|
|
334
|
+
"chartsPieShowLabels": "Beschriftungen anzeigen",
|
|
335
|
+
"chartsPositionBottom": "Unten",
|
|
336
|
+
"chartsPositionRight": "Rechts",
|
|
337
|
+
"chartsPositionTop": "Oben",
|
|
338
|
+
"chartsPreview": "Vorschau",
|
|
339
|
+
"chartsRadarFillOpacity": "Fülldeckkraft",
|
|
340
|
+
"chartsRadarMarkers": "Markierungen anzeigen",
|
|
341
|
+
"chartsRadialBarShowLabels": "Beschriftungen anzeigen",
|
|
342
|
+
"chartsRadialBarShowTotal": "Total anzeigen",
|
|
343
|
+
"chartsRefreshPreview": "Vorschau aktualisieren",
|
|
344
|
+
"chartsRotationAuto": "Automatisch",
|
|
345
|
+
"chartsStrokeMedium": "Mittel",
|
|
346
|
+
"chartsStrokeThick": "Dick",
|
|
347
|
+
"chartsStrokeThin": "Dünn",
|
|
348
|
+
"chartsStrokeWidth": "Linienstärke",
|
|
349
|
+
"chartsTitle": "Titel",
|
|
350
|
+
"chartsTypeArea": "Fläche",
|
|
351
|
+
"chartsTypeBar": "Balken",
|
|
352
|
+
"chartsTypeDonut": "Donut",
|
|
353
|
+
"chartsTypeHeatmap": "Heatmap",
|
|
354
|
+
"chartsTypeLine": "Linie",
|
|
355
|
+
"chartsTypePie": "Kreis",
|
|
356
|
+
"chartsTypeRadar": "Radar",
|
|
357
|
+
"chartsTypeRadialBar": "Radialdiagramm",
|
|
358
|
+
"chartsXAxisRotation": "Beschriftungswinkel",
|
|
359
|
+
"clearInput": "Eingabe löschen",
|
|
360
|
+
"clipboardCopyShortcutHelp": "Ausgewählte Blöcke kopieren",
|
|
361
|
+
"clipboardNoCommonBundle": "Kein gemeinsamer Blocktyp für diese Dateien.",
|
|
362
|
+
"clipboardPasteDescription": "Blöcke aus Zwischenablage einfügen",
|
|
363
|
+
"clipboardPasteError": "Einfügen fehlgeschlagen:",
|
|
364
|
+
"clipboardPasteShortcutHelp": "Text, Bild oder kopierte Blöcke einfügen",
|
|
365
|
+
"clipboardTypeFile": "Datei",
|
|
366
|
+
"clipboardTypeImage": "Bild",
|
|
367
|
+
"clipboardTypeText": "Text",
|
|
368
|
+
"clipboardTypeVideo": "Video",
|
|
369
|
+
"clipboardUnsupportedFileType": "Dieser Dateityp wird nicht unterstützt.",
|
|
370
|
+
"close": "Schliessen",
|
|
371
|
+
"commandGroup.action": "Aktionen",
|
|
372
|
+
"commandGroup.add": "Hinzufügen",
|
|
373
|
+
"commandGroup.misc": "Diverse",
|
|
374
|
+
"commandGroup.selection": "Auswahl",
|
|
375
|
+
"commandGroup.ui": "Oberfläche",
|
|
376
|
+
"commandPalette.inputPlaceholder": "Befehle durchsuchen...",
|
|
377
|
+
"commandPaletteOpen": "Befehle öffnen",
|
|
378
|
+
"commandPaletteTitle": "Befehlspalette",
|
|
379
|
+
"commandPaletteTourText": "Führen Sie Aktionen ganz einfach mit Ihrer Tastatur aus, indem Sie «Befehle» öffnen. Fast alle Funktionen sind auch über «Befehle» ausführbar.",
|
|
380
|
+
"commentAdd": "Kommentar hinzufügen",
|
|
381
|
+
"commentBodyPlaceholder": "Antwort hinzufügen",
|
|
382
|
+
"commentSave": "Kommentar speichern",
|
|
383
|
+
"comments": "Kommentare",
|
|
384
|
+
"commentsMarkAsResolved": "Erledigen",
|
|
385
|
+
"commentsTourText": "Zeigt alle Kommentare auf der aktuellen Seite an.",
|
|
386
|
+
"complexOptionsSaveError": "Die Daten konnten nicht gespeichert werden.",
|
|
387
|
+
"conversionsConvertTo": "Konvertieren zu: @bundle",
|
|
388
|
+
"copiedToClipboardMessage": "«@text» wurde in die Zwischenablage kopiert",
|
|
389
|
+
"copy": "Kopieren",
|
|
390
|
+
"created": "Erstellt",
|
|
391
|
+
"createdBy": "Erstellt von",
|
|
392
|
+
"dateUpdated": "Aktualisiert",
|
|
393
|
+
"deleteButton": "Löschen",
|
|
394
|
+
"deleteError": "Das Element konnte nicht entfernt werden.",
|
|
395
|
+
"deleteNoPermission": "Löschen aufgrund fehlender Berechtigung nicht möglich.",
|
|
396
|
+
"diffAfter": "Nachher",
|
|
397
|
+
"diffBefore": "Vorher",
|
|
398
|
+
"diffModeAfter": "Nachher",
|
|
399
|
+
"diffModeInline": "Hervorgehoben",
|
|
400
|
+
"diffModeLabel": "Darstellung",
|
|
401
|
+
"diffModeSideBySide": "Beide",
|
|
402
|
+
"diffSidebarTitle": "Änderungen",
|
|
403
|
+
"diffSidebarTourText": "Zeigt die Änderungen an die während dem Bearbeiten durchgeführt wurden.",
|
|
404
|
+
"diffStatusAdded": "Hinzugefügt",
|
|
405
|
+
"diffStatusDeleted": "Gelöscht",
|
|
406
|
+
"diffStatusEdited": "Bearbeitet",
|
|
407
|
+
"diffStatusUnchanged": "Keine Änderung",
|
|
408
|
+
"download": "Herunterladen",
|
|
409
|
+
"downloadLogsButton": "Fehlerprotokoll herunterladen",
|
|
410
|
+
"downloadWithLabel": "@label herunterladen",
|
|
411
|
+
"draggingOverlaySelectBundle": "Block-Typ zum Erstellen auswählen",
|
|
412
|
+
"droppableFieldAdd": "Zu @field hinzufügen",
|
|
413
|
+
"droppableFieldAddFailed": "Eintrag konnte nicht hinzugefügt werden.",
|
|
414
|
+
"droppableFieldCommandEdit": "Feld \"@name\" bearbeiten",
|
|
415
|
+
"droppableFieldDropHint": "Bild hierhin ziehen",
|
|
416
|
+
"droppableFieldEditLabel": "@label bearbeiten",
|
|
417
|
+
"droppableFieldItemCount": "@count Einträge",
|
|
418
|
+
"droppableFieldOpenLibrary": "Medienbibliothek",
|
|
419
|
+
"droppableFieldRemaining": "@count verbleibend",
|
|
420
|
+
"droppableFieldRequiredWarning": "Dieses Feld ist erforderlich. Fügen Sie ein Element hinzu, bevor Sie speichern, oder klicken Sie auf «Verwerfen», um abzubrechen.",
|
|
421
|
+
"droppableFieldSaveFailed": "Feld konnte nicht gespeichert werden.",
|
|
422
|
+
"duplicate": "Duplizieren",
|
|
423
|
+
"duplicateError": "Die Elemente konnten nicht dupliziert werden.",
|
|
424
|
+
"duplicateFieldFull": "Das Feld hat die maximale Anzahl an Blöcken erreicht.",
|
|
425
|
+
"duplicateNoPermission": "Duplizieren aufgrund fehlender Berechtigung nicht möglich.",
|
|
426
|
+
"duplicateNotAllowed": "Dieser Blocktyp ist in diesem Feld nicht erlaubt.",
|
|
427
|
+
"edit": "Bearbeiten...",
|
|
428
|
+
"editDisabledByDefinition": "Bearbeiten ist für diesen Blocktyp deaktiviert.",
|
|
429
|
+
"editFormBlockAdd": "@label hinzufügen",
|
|
430
|
+
"editFormBlockEdit": "@label bearbeiten",
|
|
431
|
+
"editFormBlockTranslate": "@label übersetzen (@language)",
|
|
432
|
+
"editFormEntityEdit": "\"@label\" bearbeiten",
|
|
433
|
+
"editFormEntityTranslate": "\"@label\" übersetzen (@language)",
|
|
434
|
+
"editFragmentNotEditable": "Dieses Fragment kann nicht bearbeitet werden.",
|
|
435
|
+
"editIndicatorLabel": "Elemente bearbeiten",
|
|
436
|
+
"editIndicatorLabelReview": "Änderungen überprüfen",
|
|
437
|
+
"editIndicatorLabelView": "Änderungen ansehen",
|
|
438
|
+
"editLibraryNotAvailable": "Dieser wiederverwendbare Block kann momentan nicht bearbeitet werden.",
|
|
439
|
+
"editNoLibraryPermission": "Bearbeiten aufgrund fehlender Berechtigung nicht möglich.",
|
|
440
|
+
"editNoPermission": "Bearbeiten aufgrund fehlender Berechtigung nicht möglich.",
|
|
441
|
+
"editableCommandEdit": "Feld «@name» bearbeiten",
|
|
442
|
+
"editableFieldCharCountMax": "@count von @max Zeichen verwendet",
|
|
443
|
+
"editableFieldDiscard": "Verwerfen",
|
|
444
|
+
"editableFieldExitFullscreen": "Vollbild beenden",
|
|
445
|
+
"editableFieldFullscreen": "Vollbild",
|
|
446
|
+
"editableFieldTranslate": "Übersetzen",
|
|
447
|
+
"editableFieldTranslateTooltip": "Den aktuellen Text automatisch übersetzen.",
|
|
448
|
+
"entityTitleTourText": "<p>Zeigt den Titel und Status der aktuellen Seite an.</p><p>Klicken Sie auf den Titel um das Bearbeitungsformular anzuzeigen.</p>",
|
|
449
|
+
"entityTitleTourTitle": "Seite",
|
|
450
|
+
"errorCapturedMessage": "Fehler in «@label»: @errorMessage",
|
|
451
|
+
"errorCapturedMessageDisabled": "«@label» hat mehr als 3 Fehler verursacht. Die Funktion wird deaktiviert.",
|
|
452
|
+
"exitDescription": "Editor schliessen ohne veröffentlichen",
|
|
453
|
+
"exitTitle": "Schliessen",
|
|
454
|
+
"failedToConvert": "Das Element konnte nicht konvertiert werden.",
|
|
455
|
+
"failedToTransform": "Die Aktion «@name» konnte nicht ausgeführt werden.",
|
|
456
|
+
"fatalErrorButton": "Trotzdem fortfahren...",
|
|
457
|
+
"fatalErrorText": "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.",
|
|
458
|
+
"fatalErrorTitle": "blökkli funktioniert nicht mehr",
|
|
459
|
+
"featureHelpShortcuts": "Tastenkombinationen",
|
|
460
|
+
"featureHelpTitle": "Hilfe",
|
|
461
|
+
"feature_add-list_description": "Stellt den Container bereit, um eine Liste von Blöcken zum Hinzufügen oder Aktionen anzuzeigen.",
|
|
462
|
+
"feature_add-list_label": "Hinzufügen-Liste",
|
|
463
|
+
"feature_add-list_setting_hideDisabledBlocks_description": "Versteckt Blöcke in der «Hinzufügen-Liste», wenn sie nirgendwo hinzugefügt werden können.",
|
|
464
|
+
"feature_add-list_setting_hideDisabledBlocks_label": "Blöcke verstecken, die nicht hinzugefügt werden können",
|
|
465
|
+
"feature_agent_description": "Mit einem KI-Assistenten chatten, um Seiteninhalte zu bearbeiten.",
|
|
466
|
+
"feature_agent_label": "KI-Agent",
|
|
467
|
+
"feature_analyze_description": "Analysiert Blöcke und Seite für SEO, Barrierefreiheit, etc.",
|
|
468
|
+
"feature_analyze_label": "Analysieren",
|
|
469
|
+
"feature_anchors_description": "Zeigt Indikatoren für Blöcke mit Anker-IDs an",
|
|
470
|
+
"feature_anchors_label": "Anker",
|
|
471
|
+
"feature_artboard_description": "Umhüllt die gesamte Seite in einer Arbeitsfläche, die mit der Maus gezoomt und bewegt werden kann.",
|
|
472
|
+
"feature_artboard_label": "Arbeitsfläche",
|
|
473
|
+
"feature_artboard_setting_momentum_description": "Verwendet sanftes Scrollen und Vergrössern der Vorschau.",
|
|
474
|
+
"feature_artboard_setting_momentum_label": "Sanftes Scrollen verwenden",
|
|
475
|
+
"feature_artboard_setting_persist_description": "Speichern und Wiederherstellen der letzten Position und Skalierung der Vorschau.",
|
|
476
|
+
"feature_artboard_setting_persist_label": "Position und Zoom speichern",
|
|
477
|
+
"feature_artboard_setting_scrollSpeed_label": "Scrollgeschwindigkeit der Vorschau",
|
|
478
|
+
"feature_block-scheduler_description": "Ermöglicht das zeitgesteuerte Veröffentlichen von Blöcken.",
|
|
479
|
+
"feature_block-scheduler_label": "Block-Planung",
|
|
480
|
+
"feature_breadcrumbs_description": "Zeigt den Breadcrumbs-Pfad der Auswahl an.",
|
|
481
|
+
"feature_breadcrumbs_label": "Breadcrumbs",
|
|
482
|
+
"feature_changelog_description": "Stellt eine Menüschaltfläche bereit, um ein Änderungsprotokoll mit Neuigkeiten anzuzeigen.",
|
|
483
|
+
"feature_changelog_label": "Änderungsprotokoll",
|
|
484
|
+
"feature_clipboard_description": "Stellt Zwischenablage-Integration bereit zum Kopieren/Einfügen von bestehenden Blöcken oder zum Einfügen von unterstützten Inhalten wie Text oder Bildern.",
|
|
485
|
+
"feature_clipboard_label": "Zwischenablage",
|
|
486
|
+
"feature_command-palette_description": "Stellt eine Befehlspalette mit Suche bereit, um die meisten UI-Funktionen mit der Tastatur zu verwenden.",
|
|
487
|
+
"feature_command-palette_label": "Befehlspalette",
|
|
488
|
+
"feature_comments_description": "Stellt Kommentarfunktionalität für Blöcke bereit.",
|
|
489
|
+
"feature_comments_label": "Kommentare",
|
|
490
|
+
"feature_complex-options_description": "Ermöglicht die Bearbeitung komplexer Optionstypen wie z. B. Diagramme.",
|
|
491
|
+
"feature_complex-options_label": "Komplexe Optionen",
|
|
492
|
+
"feature_conversions_description": "Stellt Block-Aktionen bereit, um einen oder mehrere Blöcke in einen anderen Typ zu konvertieren.",
|
|
493
|
+
"feature_conversions_label": "Konvertierungen",
|
|
494
|
+
"feature_debug_description": "Stellt Debugging-Funktionalität bereit.",
|
|
495
|
+
"feature_debug_label": "Debug",
|
|
496
|
+
"feature_delete_description": "Stellt eine Aktion bereit, um einen oder mehrere Blöcke zu löschen.",
|
|
497
|
+
"feature_delete_label": "Löschen",
|
|
498
|
+
"feature_dev-mode_description": "Funktion ist im Dev Mode aktiviert.",
|
|
499
|
+
"feature_dev-mode_label": "Dev Mode",
|
|
500
|
+
"feature_diff_description": "Zeigt die Änderungen an die während dem Bearbeiten durchgeführt wurden.",
|
|
501
|
+
"feature_diff_label": "Änderungen",
|
|
502
|
+
"feature_dragging-overlay_description": "Zeigt ein Overlay beim Ziehen oder Platzieren eines Blocks an.",
|
|
503
|
+
"feature_dragging-overlay_label": "Drag-Overlay",
|
|
504
|
+
"feature_droppable-field-edit_description": "Bearbeitungsmodus für mehrwertige Referenzfelder (hinzufügen, entfernen, umsortieren).",
|
|
505
|
+
"feature_droppable-field-edit_label": "Referenzfeld bearbeiten",
|
|
506
|
+
"feature_duplicate_description": "Stellt eine Aktion bereit, um einen oder mehrere Blöcke zu duplizieren.",
|
|
507
|
+
"feature_duplicate_label": "Duplizieren",
|
|
508
|
+
"feature_edit-form_description": "Reagiert auf Bearbeitungs-Events und zeigt ein iFrame mit dem Bearbeitungsformular an.",
|
|
509
|
+
"feature_edit-form_label": "Bearbeitungsformular",
|
|
510
|
+
"feature_edit_description": "Stellt eine Aktion bereit, um einen Block zu bearbeiten.",
|
|
511
|
+
"feature_edit_label": "Bearbeiten",
|
|
512
|
+
"feature_editable-field_description": "Implementiert ein Formular-Overlay zum Bearbeiten eines einzelnen Felds eines Blocks.",
|
|
513
|
+
"feature_editable-field_label": "Bearbeitbares Feld",
|
|
514
|
+
"feature_editable-mask_description": "Stellt eine Ansichtsoption bereit, um nicht bearbeitbare Teile der Seite zu verstecken.",
|
|
515
|
+
"feature_editable-mask_label": "Bearbeitbare Maske",
|
|
516
|
+
"feature_entity-title_description": "Zeigt den Titel und Status der Seitenentität an.",
|
|
517
|
+
"feature_entity-title_label": "Entitäts-Titel",
|
|
518
|
+
"feature_exit_description": "Stellt einen Menü-Button bereit, um den Editor ohne Speichern zu verlassen.",
|
|
519
|
+
"feature_exit_label": "Verlassen",
|
|
520
|
+
"feature_fragments_description": "Ermöglicht das Hinzufügen von Inhaltsfragmenten, die vom Frontend definiert wurden.",
|
|
521
|
+
"feature_fragments_label": "Fragmente",
|
|
522
|
+
"feature_grid_description": "Stellt eine Ansichtsoption bereit, um ein Raster anzuzeigen.",
|
|
523
|
+
"feature_grid_label": "Raster",
|
|
524
|
+
"feature_help_description": "Stellt ein Seitenleisten-Panel mit hilfreichen Informationen zur Verwendung von blökkli bereit.",
|
|
525
|
+
"feature_help_label": "Hilfe",
|
|
526
|
+
"feature_highlights_description": "Zeigt dauerhafte Markierungen für Blöcke mit Problemen oder veralteten Übersetzungen an.",
|
|
527
|
+
"feature_highlights_label": "Markierungen",
|
|
528
|
+
"feature_history_description": "Implementiert Unterstützung für Verlaufsfunktionen (Rückgängig, Wiederherstellen, Liste der Änderungen).",
|
|
529
|
+
"feature_history_label": "Verlauf",
|
|
530
|
+
"feature_history_setting_useMouseButtons_description": "Verwendet die Zurück- und Vorärts-Taste der Maus um die letzte Änderung rückgängig zu machen, respektive wiederherzustellen.",
|
|
531
|
+
"feature_history_setting_useMouseButtons_label": "Maustasten für Rückgängig/Wiederherstellen verwenden",
|
|
532
|
+
"feature_hover_description": "Zeigt einen Rahmen um Blöcke an, über denen sich der Mauszeiger befindet.",
|
|
533
|
+
"feature_hover_label": "Hover",
|
|
534
|
+
"feature_import-existing_description": "Implementiert eine Menü-Aktion, die einen Dialog zum Importieren von Blöcken aus einer anderen Entität anzeigt.",
|
|
535
|
+
"feature_import-existing_label": "Bestehende Inhalte importieren",
|
|
536
|
+
"feature_import-existing_setting_showDialogWhenEmpty_description": "Zeigt den Importdialog beim öffnen von blökkli wenn die Seite leer ist.",
|
|
537
|
+
"feature_import-existing_setting_showDialogWhenEmpty_label": "Importdialog beim Start anzeigen",
|
|
538
|
+
"feature_library_description": "Implementiert Unterstützung für eine Block-Bibliothek zur Verwaltung wiederverwendbarer Blöcke.",
|
|
539
|
+
"feature_library_label": "Bibliothek",
|
|
540
|
+
"feature_media-library_description": "Implementiert eine Medienbibliothek zum einfachen Ziehen und Ablegen von Medien wie Bildern oder Videos.",
|
|
541
|
+
"feature_media-library_label": "Medienbibliothek",
|
|
542
|
+
"feature_multi-select_description": "Implementiert Unterstützung für die Auswahl mehrerer Blöcke mithilfe eines Auswahlrechtecks.",
|
|
543
|
+
"feature_multi-select_label": "Mehrfachauswahl",
|
|
544
|
+
"feature_options_description": "Zeigt das Optionsformular für einen oder mehrere Blöcke an.",
|
|
545
|
+
"feature_options_label": "Optionen",
|
|
546
|
+
"feature_ownership_description": "Zeigt einen grossen Button an, um die Besitzrechte des aktuellen Bearbeitungsstatus zu übernehmen.",
|
|
547
|
+
"feature_ownership_label": "Besitzrechte",
|
|
548
|
+
"feature_preview-grant_description": "Stellt einen Button bereit, um einen Dialog mit einem QR-Code zu öffnen, um die Seite auf einem Smartphone in der Vorschau anzuzeigen.",
|
|
549
|
+
"feature_preview-grant_label": "Vorschau-Zugriff",
|
|
550
|
+
"feature_preview_description": "Stellt einen Button bereit, um eine Vorschau in einem neuen Fenster zu öffnen.",
|
|
551
|
+
"feature_preview_label": "Vorschau",
|
|
552
|
+
"feature_proxy_view_description": "Zeigt die Blöcke als Struktur in der Vorschau an.",
|
|
553
|
+
"feature_proxy_view_label": "Strukturansicht",
|
|
554
|
+
"feature_publish_description": "Stellt einen Menü-Button bereit, um die Änderungen der aktuellen Entität zu veröffentlichen.",
|
|
555
|
+
"feature_publish_label": "Veröffentlichen",
|
|
556
|
+
"feature_publish_setting_closeAfterPublish_description": "Den Editor umgehend schliessen nach dem Veröffentlichen/Speichern der Änderungen.",
|
|
557
|
+
"feature_publish_setting_closeAfterPublish_label": "Nach «Veröffentlichen» den Editor schliessen",
|
|
558
|
+
"feature_referenced-entities_description": "Zeigt referenzierte Entitäten von Blöcken an.",
|
|
559
|
+
"feature_referenced-entities_label": "Referenzierte Entitäten",
|
|
560
|
+
"feature_responsive-preview_description": "Stellt eine responsive Vorschau des aktuellen Bearbeitungszustands in einem iFrame bereit.",
|
|
561
|
+
"feature_responsive-preview_label": "Responsive Vorschau",
|
|
562
|
+
"feature_revert_description": "Stellt einen Menü-Button bereit, um alle Änderungen an der aktuellen Entität rückgängig zu machen.",
|
|
563
|
+
"feature_revert_label": "Verwerfen",
|
|
564
|
+
"feature_search_description": "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.",
|
|
565
|
+
"feature_search_label": "Suchen",
|
|
566
|
+
"feature_selection_description": "Zeigt ein Overlay an, das die ausgewählten Blöcke hervorhebt.",
|
|
567
|
+
"feature_selection_label": "Auswahl",
|
|
568
|
+
"feature_settings_description": "Stellt einen Menü-Button bereit, um einen Einstellungsdialog anzuzeigen.",
|
|
569
|
+
"feature_settings_label": "Einstellungen",
|
|
570
|
+
"feature_settings_setting_lowPerformanceMode_description": "Reduziert Animationen und interaktive Elemente auf ein Minimum, für Geräte mit niedriger Leistung.",
|
|
571
|
+
"feature_settings_setting_lowPerformanceMode_label": "Modus für niedrige Leistung aktivieren",
|
|
572
|
+
"feature_settings_setting_resetAllSettings_label": "Alle Einstellungen zurücksetzen",
|
|
573
|
+
"feature_settings_setting_useAnimations_description": "Animiert Elemente wie Dialoge oder Seitenleisten, oder Interaktionen wie «Drag and Drop» oder Änderungen in Position oder Grösse.",
|
|
574
|
+
"feature_settings_setting_useAnimations_label": "Animationen verwenden",
|
|
575
|
+
"feature_structure_description": "Stellt einen Seitenleisten-Button bereit, um eine strukturierte Liste aller Blöcke auf der aktuellen Seite anzuzeigen.",
|
|
576
|
+
"feature_structure_label": "Struktur",
|
|
577
|
+
"feature_swap_description": "Stellt eine Aktion zum Vertauschen von zwei ausgewählten Blöcken bereit.",
|
|
578
|
+
"feature_swap_label": "Tauschen",
|
|
579
|
+
"feature_templates_description": "Blöcke aus Vorlagen hinzufügen.",
|
|
580
|
+
"feature_templates_label": "Vorlagen",
|
|
581
|
+
"feature_theme_description": "Implementiert einen Theme-Editor.",
|
|
582
|
+
"feature_theme_label": "Theme",
|
|
583
|
+
"feature_touch-action-bar_description": "Zeigt einen Button auf Touch-Geräten an, um Touch-Aktionen abzubrechen.",
|
|
584
|
+
"feature_touch-action-bar_label": "Touch-Aktionsleiste",
|
|
585
|
+
"feature_tour_description": "Stellt ein Tour-Overlay bereit, um den Editor kennenzulernen.",
|
|
586
|
+
"feature_tour_label": "Tour",
|
|
587
|
+
"feature_transform_description": "Stellt Integration für Block-Transform-Plugins bereit.",
|
|
588
|
+
"feature_transform_label": "Transform",
|
|
589
|
+
"feature_translations_description": "Fügt Unterstützung für Block-Übersetzungen hinzu.",
|
|
590
|
+
"feature_translations_label": "Übersetzungen",
|
|
591
|
+
"feature_validations_description": "Stellt ein Seitenleisten-Panel bereit, um Validierungen anzuzeigen.",
|
|
592
|
+
"feature_validations_label": "Validierungen",
|
|
593
|
+
"feature_workspace_description": "Ermöglicht das Wechseln zwischen Bearbeitungszuständen.",
|
|
594
|
+
"feature_workspace_label": "Arbeitsbereich",
|
|
595
|
+
"fieldIsRequired": "Feld darf nicht leer sein",
|
|
596
|
+
"filterSelectNoResults": "Keine Ergebnisse",
|
|
597
|
+
"filterSelectSearch": "Suchen...",
|
|
598
|
+
"formSaveNotEditStateInfo": "Änderungen in diesem Formular werden sofort übernommen — ohne Veröffentlichung der aktuellen blökkli-Seite.",
|
|
599
|
+
"fragmentsAddFragmentAction": "Fragment",
|
|
600
|
+
"fragmentsAddFragmentDescription": "<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>",
|
|
601
|
+
"fragmentsPlaceDialogLead": "Wählen Sie ein Block-Fragment aus.",
|
|
602
|
+
"fragmentsPlaceDialogSearchLabel": "Fragmente filtern",
|
|
603
|
+
"fragmentsPlaceDialogSearchPlaceholder": "Fragmente durchsuchen",
|
|
604
|
+
"fragmentsPlaceDialogSubmitButton": "Ausgewähltes Fragment hinzufügen",
|
|
605
|
+
"fragmentsPlaceDialogTitle": "Fragment hinzufügen",
|
|
606
|
+
"gridHide": "Spalten verstecken",
|
|
607
|
+
"gridShow": "Spalten anzeigen",
|
|
608
|
+
"gridToggle": "Spalten anzeigen",
|
|
609
|
+
"gridTourText": "Zeigt die Layout-Spalten als Overlay über die Seite an.",
|
|
610
|
+
"helpTourText": "Zeigt eine Liste von verfügbaren Tastenkombinationen an.",
|
|
611
|
+
"history": "Änderungsverlauf",
|
|
612
|
+
"historyCurrentRevision": "Aktuelle Revision",
|
|
613
|
+
"historyEmpty": "Es gibt noch keine Änderungen.",
|
|
614
|
+
"historyRedo": "Wiederholen",
|
|
615
|
+
"historyRedoTourText": "Machen Sie die vorherige Änderung rückgängig.",
|
|
616
|
+
"historyShowMore": "@count weitere anzeigen",
|
|
617
|
+
"historyTourText": "Zeigt den Verlauf aller Änderungen die gemacht wurden. Springen Sie beliebig zwischen Änderungen vor und zurück.",
|
|
618
|
+
"historyUndo": "Rückgängig",
|
|
619
|
+
"historyUndoTourText": "Letzte Änderung rückgängig machen.",
|
|
620
|
+
"iframesEditTitle": "Iframe-Grösse bearbeiten",
|
|
621
|
+
"importExistingDescription": "Von einer bestehenden Seite importieren",
|
|
622
|
+
"importExistingDialogLead": "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.",
|
|
623
|
+
"importExistingDialogSubmit": "Inhalte importieren",
|
|
624
|
+
"importExistingDialogTitle": "Von bestehender Seite importieren",
|
|
625
|
+
"importExistingError": "Inhalte konnten nicht übernommen werden.",
|
|
626
|
+
"importExistingFieldsLabel": "Welche Inhalte möchten Sie importieren?",
|
|
627
|
+
"importExistingNoResults": "Keine Seiten gefunden.",
|
|
628
|
+
"importExistingPagesTitle": "Seite auswählen",
|
|
629
|
+
"importExistingSearchPlaceholder": "Seiten suchen...",
|
|
630
|
+
"importExistingSuccess": "Inhalte erfolgreich übernommen.",
|
|
631
|
+
"importExistingTitle": "Importieren...",
|
|
632
|
+
"interactionLayerOff": "Interaktionsebenen anzeigen",
|
|
633
|
+
"interactionLayersOn": "Interaktionsebenen ausblenden",
|
|
634
|
+
"keyboardSpace": "Leertaste",
|
|
635
|
+
"libraryAdd": "Zur Bibliothek hinzufügen...",
|
|
636
|
+
"libraryAddDescription": "Fügen Sie einen wiederverwendbaren Block aus der Bibliothek hinzu.",
|
|
637
|
+
"libraryAddFromLibrary": "Aus der Bibliothek",
|
|
638
|
+
"libraryAddNoEditPermission": "Bearbeiten aufgrund fehlender Berechtigung nicht möglich.",
|
|
639
|
+
"libraryAddNoPermission": "Erstellen aufgrund fehlender Berechtigung nicht möglich.",
|
|
640
|
+
"libraryAddNotAllowedInField": "Wiederverwendbare Blöcke sind in diesem Feld nicht erlaubt.",
|
|
641
|
+
"libraryAddNotSupported": "Dieser Blocktyp kann nicht wiederverwendbar gemacht werden.",
|
|
642
|
+
"libraryDetach": "Von der Bibliothek loslösen",
|
|
643
|
+
"libraryDetachNoPermission": "Loslösen aufgrund fehlender Berechtigung nicht möglich.",
|
|
644
|
+
"libraryDialogDescriptionLabel": "Beschreibung",
|
|
645
|
+
"libraryDialogLead": "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.",
|
|
646
|
+
"libraryDialogReusableInfo": "Das Bibliothekselement kann auf anderen Seiten platziert werden sobald diese Seite publiziert/gespeichert wurde.",
|
|
647
|
+
"libraryDialogSubmit": "Zur Bibliothek hinzufügen",
|
|
648
|
+
"libraryDialogTitle": "Zur Bibliothek hinzufügen",
|
|
649
|
+
"libraryDialogTitleInputPlaceholder": "z.B. Teaser Kampagne 2023",
|
|
650
|
+
"libraryError": "Das Element konnte nicht wiederverwendbar gemacht werden.",
|
|
651
|
+
"libraryItemEditOverlayBack": "Zurück zur Seite",
|
|
652
|
+
"libraryItemEditOverlayBackWithPage": "Speichern und zurück zu «@label»",
|
|
653
|
+
"libraryItemEditOverlayBackWithPageNoSave": "Zurück zu «@label»",
|
|
654
|
+
"libraryItemEditOverlayTitle": "Wiederverwendbaren Block bearbeiten",
|
|
655
|
+
"libraryPlaceBundleSelectLabel": "Typ",
|
|
656
|
+
"libraryPlaceDialogLead": "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.",
|
|
657
|
+
"libraryPlaceDialogSubmit": "Wiederverwendbaren Block hinzufügen",
|
|
658
|
+
"libraryPlaceDialogTitle": "Block aus Bibliothek hinzufügen",
|
|
659
|
+
"libraryPreviewLabel": "Vorschau",
|
|
660
|
+
"loading": "Wird geladen…",
|
|
661
|
+
"manageSchedule": "Planung verwalten...",
|
|
662
|
+
"maskHide": "Nicht-editierbare Bereiche verstecken",
|
|
663
|
+
"maskShow": "Nicht-editierbare Bereiche anzeigen",
|
|
664
|
+
"maskToggle": "Nicht-editierbare Bereiche anzeigen",
|
|
665
|
+
"maskTourText": "Wechseln Sie zwischen Anzeigen und Verbergen nicht bearbeitbarer Teile der Seite.",
|
|
666
|
+
"mediaLibrary": "Medienbibliothek",
|
|
667
|
+
"mediaLibraryReplaceFailed": "Das Medienelement konnte nicht ersetzt werden.",
|
|
668
|
+
"mediaLibraryReplaceMedia": "@field ersetzen",
|
|
669
|
+
"mediaLibraryTourText": "Suchen Sie nach Medien wie Bildern und ziehen Sie diese in die Seite.",
|
|
670
|
+
"mediaSelectConfirm": "Auswahl verwenden",
|
|
671
|
+
"mediaSelectTitle": "Medium auswählen",
|
|
672
|
+
"multipleItemsLabel": "Elemente",
|
|
673
|
+
"nameDescription": "Name / Beschreibung",
|
|
674
|
+
"notSet": "Nicht gesetzt",
|
|
675
|
+
"notSupported": "Nicht unterstützt",
|
|
676
|
+
"optionBkVisibleLanguagesAll": "Alle Sprachen",
|
|
677
|
+
"optionsCommand.selectCheckboxValue": "«@value» in «@option» auswählen",
|
|
678
|
+
"optionsCommand.setOption": "Option «@option» «@value» setzen",
|
|
679
|
+
"optionsCommand.unselectCheckboxValue": "«@value» in «@option» abwählen",
|
|
680
|
+
"outdatedTranslation": "Veraltete Übersetzung",
|
|
681
|
+
"outdatedTranslationDescription": "Übersetzung als aktuell markieren",
|
|
682
|
+
"overlayDoubleClickInfo": "<strong>Doppelklicken</strong> um Dialog zu schliessen",
|
|
683
|
+
"owner": "Besitzer",
|
|
684
|
+
"ownershipError": "Fehler beim Zuweisen",
|
|
685
|
+
"ownershipNote": "Diese Seite wird aktuell von @name bearbeitet. Änderungen können nur von einer Person gleichzeitig durchgeführt werden.",
|
|
686
|
+
"ownershipSuccess": "Sie sind nun der Besitzer.",
|
|
687
|
+
"ownershipTakeOwnership": "Mir zuweisen",
|
|
688
|
+
"pageIsNotPublished": "Seite ist nicht publiziert",
|
|
689
|
+
"pageIsPublished": "Seite ist publiziert",
|
|
690
|
+
"pageIsPublishedWithPendingChanges": "Seite ist publiziert (Änderungen ausstehend)",
|
|
691
|
+
"paste": "Einfügen",
|
|
692
|
+
"previewDialogLead": "Scannen Sie den QR-Code mit Ihrem Smartphone um die Vorschau zu öffnen.",
|
|
693
|
+
"previewDialogTitle": "Vorschau mit Smartphone",
|
|
694
|
+
"previewNewWindow": "Vorschau (neues Fenster)",
|
|
695
|
+
"previewNewWindowTourText": "Öffnet eine Vorschau der aktuellen Änderungen in einem neuen Fenster.",
|
|
696
|
+
"previewQrCodeText": "Sie können den Link auch kopieren und teilen.",
|
|
697
|
+
"previewWithSmartphone": "Vorschau (mit Smartphone)",
|
|
698
|
+
"previewWithSmartphoneTourText": "Zeigt einen QR-Code an, um eine Vorschau der Änderungen mit Ihrem Smartphone zu öffnen.",
|
|
699
|
+
"proxyViewHide": "Inhaltsvorschau anzeigen",
|
|
700
|
+
"proxyViewShow": "Strukturierte Vorschau anzeigen",
|
|
701
|
+
"proxyViewToggle": "Vorschau wechseln",
|
|
702
|
+
"proxyViewTourText": "Stellt die Inhaltsblöcke in strukturierter Form dar.",
|
|
703
|
+
"publishAlreadyScheduledDescription": "Diese Seite ist bereits zur Veröffentlichung geplant",
|
|
704
|
+
"publishAndCloseLabel": "Veröffentlichen & Schliessen",
|
|
705
|
+
"publishAndCloseLabelUnpublished": "Speichern & Schliessen",
|
|
706
|
+
"publishCurrentPage": "Aktuelle Seite",
|
|
707
|
+
"publishCurrentlyPublished": "Seite ist publiziert",
|
|
708
|
+
"publishCurrentlyUnpublished": "Seite ist nicht publiziert",
|
|
709
|
+
"publishDescription": "Alle Änderungen veröffentlichen",
|
|
710
|
+
"publishDescriptionScheduled": "Geplante Veröffentlichung ansehen oder ändern",
|
|
711
|
+
"publishDescriptionUnpublished": "Alle Änderungen speichern ohne die Seite zu publizieren",
|
|
712
|
+
"publishDialogTitle": "Änderungen veröffentlichen",
|
|
713
|
+
"publishError": "Änderungen konnten nicht publiziert werden.",
|
|
714
|
+
"publishLabel": "Veröffentlichen",
|
|
715
|
+
"publishLabelUnpublished": "Speichern",
|
|
716
|
+
"publishManageSchedule": "Planung verwalten",
|
|
717
|
+
"publishMode": "Veröffentlichungsmodus",
|
|
718
|
+
"publishModeImmediateDescription": "Änderungen sofort veröffentlichen",
|
|
719
|
+
"publishModeImmediateTitle": "Veröffentlichen",
|
|
720
|
+
"publishModeSaveDescription": "Änderungen speichern ohne veröffentlichen",
|
|
721
|
+
"publishModeSaveTitle": "Speichern",
|
|
722
|
+
"publishModeScheduledDescription": "Änderungen geplant veröffentlichen",
|
|
723
|
+
"publishModeScheduledTitle": "Planen",
|
|
724
|
+
"publishName": "Name",
|
|
725
|
+
"publishPublicationScheduled": "Veröffentlichung geplant",
|
|
726
|
+
"publishPublishContent": "Inhalt veröffentlichen",
|
|
727
|
+
"publishPublishContents": "@count Inhalte veröffentlichen",
|
|
728
|
+
"publishRemainsPublished": "Bleibt publiziert",
|
|
729
|
+
"publishRemainsUnpublished": "Bleibt nicht publiziert",
|
|
730
|
+
"publishRemoveSchedule": "Planung entfernen",
|
|
731
|
+
"publishResultPublishChangesNowPublished": "Änderungen und Seite sind publiziert",
|
|
732
|
+
"publishResultPublishChangesRemainPublished": "Änderungen sind publiziert, Seite bleibt publiziert",
|
|
733
|
+
"publishResultSaveChanges": "Änderungen sind gespeichert, Seite bleibt unpubliziert",
|
|
734
|
+
"publishResultScheduledChanges": "Änderungen werden am @date publiziert",
|
|
735
|
+
"publishResultScheduledPage": "Seite wird am @date publiziert",
|
|
736
|
+
"publishRevisionLogMessage": "Beschreibung der Änderungen",
|
|
737
|
+
"publishRevisionLogMessageDescription": "Beschreiben Sie kurz die vorgenommenen Änderungen",
|
|
738
|
+
"publishSaveContent": "Inhalt speichern",
|
|
739
|
+
"publishSaveContents": "@count Inhalte speichern",
|
|
740
|
+
"publishScheduleDate": "Veröffentlichungsdatum",
|
|
741
|
+
"publishScheduleDateTooSoon": "Das geplante Datum muss mindestens 2 Minuten in der Zukunft liegen",
|
|
742
|
+
"publishSchedulePublication": "Veröffentlichung planen",
|
|
743
|
+
"publishSchedulePublications": "@count Veröffentlichungen planen",
|
|
744
|
+
"publishScheduleSuccess": "Veröffentlichung für @date geplant",
|
|
745
|
+
"publishScheduledBlockPlural": "@count Blöcke sind zur Veröffentlichung am @date geplant",
|
|
746
|
+
"publishScheduledBlockSingular": "1 Block ist zur Veröffentlichung am @date geplant",
|
|
747
|
+
"publishScheduledInfo": "Sie können bis zum geplanten Veröffentlichungsdatum noch Änderungen vornehmen.",
|
|
748
|
+
"publishStatus": "Status",
|
|
749
|
+
"publishSuccess": "Änderungen erfolgreich publiziert.",
|
|
750
|
+
"publishSuccessfullyPublished": "Erfolgreich veröffentlicht",
|
|
751
|
+
"publishSuccessfullySaved": "Erfolgreich gespeichert",
|
|
752
|
+
"publishSummary": "Zusammenfassung",
|
|
753
|
+
"publishWillBePublished": "Wird publiziert",
|
|
754
|
+
"publishWillBeScheduled": "Wird geplant",
|
|
755
|
+
"readabilityEntireText": "Dieser Wert wird für den gesamten Text berechnet.",
|
|
756
|
+
"readabilityTooShort": "Zu kurz",
|
|
757
|
+
"readabilityTooShortTooltip": "Text braucht mindestens @count Wörter für die Lesbarkeitsanalyse.",
|
|
758
|
+
"readabilityTooltipDescription": "@label misst, wie leicht der Text zu lesen ist.",
|
|
759
|
+
"referencedEntitiesEditorOverlayTitle": "«@label» bearbeiten",
|
|
760
|
+
"relatedContent": "Verwandte Inhalte",
|
|
761
|
+
"relatedContentNoEntitiesFound": "Keine verwandten Inhalte gefunden",
|
|
762
|
+
"relatedContentTooltip": "Inhalte wie Seiten oder Bilder, die von diesem Block referenziert oder verlinkt werden.",
|
|
763
|
+
"responsivePreviewCustomViewport": "Benutzerdefiniert",
|
|
764
|
+
"responsivePreviewTitle": "Responsive Vorschau",
|
|
765
|
+
"responsivePreviewTourText": "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.",
|
|
766
|
+
"restrictedPermissionsAll": "Einige Aktionen sind aufgrund fehlender Berechtigungen nicht verfügbar.",
|
|
767
|
+
"restrictedPermissionsSome": "Einige Aktionen sind aufgrund fehlender Berechtigungen eingeschränkt.",
|
|
768
|
+
"revertDialogLead": "Damit werden alle Änderungen gelöscht und der aktuell publizierte Stand wiederhergestellt. Diese Aktion kann nicht rückgängig gemacht werden.",
|
|
769
|
+
"revertDialogSubmit": "Änderungen verwerfen",
|
|
770
|
+
"revertDialogTitle": "Änderungen unwiderruflich verwerfen",
|
|
771
|
+
"revertError": "Änderungen konnten nicht verworfen werden.",
|
|
772
|
+
"revertMenuDescription": "Aktuell veröffentlichten Zustand wiederherstellen",
|
|
773
|
+
"revertMenuTitle": "Verwerfen...",
|
|
774
|
+
"revertSuccess": "Alle Änderungen wurden verworfen.",
|
|
775
|
+
"save": "Speichern",
|
|
776
|
+
"scheduledFor": "Die Änderungen werden an diesem Datum publiziert.",
|
|
777
|
+
"schedulerNotSupported": "Zeitplanung ist für diesen Blocktyp nicht verfügbar.",
|
|
778
|
+
"searchBoxNoResultsFound": "Keine Resultate gefunden",
|
|
779
|
+
"searchBoxOnThisPage": "Auf dieser Seite",
|
|
780
|
+
"searchBoxPlaceholder": "Suchbegriff eingeben",
|
|
781
|
+
"searchContentReplace": "@field ersetzen",
|
|
782
|
+
"searchContentReplaceFailed": "Inhalt konnte nicht ersetzt werden.",
|
|
783
|
+
"searchOverlayNoResults": "Keine Ergebnisse gefunden.",
|
|
784
|
+
"searchToolbarLabel": "Inhalte suchen",
|
|
785
|
+
"searchTourText": "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.",
|
|
786
|
+
"selectAllBlocks": "Alle Blöcke auswählen",
|
|
787
|
+
"selectAllOfBundle": "Alle «@bundle» Blöcke auswählen",
|
|
788
|
+
"selectedIsNew": "Neu",
|
|
789
|
+
"selectedTranslationIsOutdated": "Veraltet",
|
|
790
|
+
"settingsAdvanced": "Erweitert",
|
|
791
|
+
"settingsAppearance": "Darstellung",
|
|
792
|
+
"settingsArtboard": "Vorschau",
|
|
793
|
+
"settingsBehaviour": "Verhalten",
|
|
794
|
+
"settingsBeta": "Neue Funktionen",
|
|
795
|
+
"settingsDialogTitle": "Einstellungen",
|
|
796
|
+
"settingsMenuDescription": "Persönliche Einstellungen für den Editor",
|
|
797
|
+
"settingsMenuTitle": "Einstellungen",
|
|
798
|
+
"shortcutGroupBlocks": "Blöcke",
|
|
799
|
+
"shortcutGroupGeneral": "Allgemein",
|
|
800
|
+
"shortcutGroupUi": "Oberfläche",
|
|
801
|
+
"sidebar.hide": "@title ausblenden",
|
|
802
|
+
"sidebar.show": "@title anzeigen",
|
|
803
|
+
"singleComment": "Kommentar",
|
|
804
|
+
"stateUnavailableText": "Dies könnte auf fehlende Berechtigungen oder ein vorübergehendes Problem zurückzuführen sein. Bitte versuchen Sie es später nochmal.",
|
|
805
|
+
"stateUnavailableTitle": "Der Bearbeitungszustand konnte nicht geladen werden.",
|
|
806
|
+
"structureToolbarLabel": "Struktur",
|
|
807
|
+
"structureTourText": "Zeigt eine strukturierte Liste aller Blöcke auf der aktuellen Seite. Klicken Sie auf einen Block, um ihn auf der Seite anzuzeigen.",
|
|
808
|
+
"swapButton": "Blockpositionen tauschen",
|
|
809
|
+
"swapError": "Die Blöcke konnten nicht getauscht werden.",
|
|
810
|
+
"swapNotPossible": "Blockpositionen können nicht getauscht werden.",
|
|
811
|
+
"systemRequirementsDialogButton": "Trotzdem fortfahren",
|
|
812
|
+
"systemRequirementsDialogLead": "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.",
|
|
813
|
+
"systemRequirementsDialogText": "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.",
|
|
814
|
+
"systemRequirementsDialogTitle": "Systemanforderungen",
|
|
815
|
+
"systemRequirementsWebglText": "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.",
|
|
816
|
+
"templatesAddTemplate": "Vorlage",
|
|
817
|
+
"templatesAddTemplateDescription": "<p>Ziehen Sie das Symbol auf die Seite, um Blöcke aus einer Vorlage hinzuzufügen.</p>",
|
|
818
|
+
"templatesCanNotBeDefault": "Nur einzelne Blöcke können als Standard definiert werden.",
|
|
819
|
+
"templatesCreate": "Vorlage erstellen...",
|
|
820
|
+
"templatesCreateDialogDefaultDescription": "Falls aktiviert, wird diese Vorlage automatisch verwendet, wenn ein neuer Block dieses Typs hinzugefügt wird.",
|
|
821
|
+
"templatesCreateDialogDefaultLabel": "Als Standard verwenden",
|
|
822
|
+
"templatesCreateDialogDescriptionLabel": "Beschreibung",
|
|
823
|
+
"templatesCreateDialogDescriptionPlaceholder": "Optionale Beschreibung der Vorlage",
|
|
824
|
+
"templatesCreateDialogLabelLabel": "Name",
|
|
825
|
+
"templatesCreateDialogLabelPlaceholder": "z.B. Hero-Bereich",
|
|
826
|
+
"templatesCreateDialogLead": "Erstellen Sie eine wiederverwendbare Vorlage aus den ausgewählten Blöcken. Vorlagen können auf jeder Seite hinzugefügt werden.",
|
|
827
|
+
"templatesCreateDialogPreviewLabel": "Vorschau",
|
|
828
|
+
"templatesCreateDialogSubmit": "Vorlage erstellen",
|
|
829
|
+
"templatesCreateDialogTitle": "Vorlage erstellen",
|
|
830
|
+
"templatesCreateError": "Vorlage konnte nicht erstellt werden.",
|
|
831
|
+
"templatesDefaultPill": "Standard",
|
|
832
|
+
"templatesDefaultPillDescription": "Diese Vorlage wird verwendet, wenn neue Blöcke dieses Typs erstellt werden.",
|
|
833
|
+
"templatesDeleteError": "Vorlage konnte nicht gelöscht werden.",
|
|
834
|
+
"templatesDeleteSuccess": "Vorlage erfolgreich gelöscht.",
|
|
835
|
+
"templatesEditOverlayTitle": "Vorlage bearbeiten",
|
|
836
|
+
"templatesManageDialogCancelDelete": "Abbrechen",
|
|
837
|
+
"templatesManageDialogConfirmDelete": "Löschen",
|
|
838
|
+
"templatesManageDialogDelete": "Löschen",
|
|
839
|
+
"templatesManageDialogEdit": "Bearbeiten",
|
|
840
|
+
"templatesManageDialogLead": "Vorlagen verwalten, bearbeiten und löschen.",
|
|
841
|
+
"templatesManageDialogNoResults": "Keine Vorlagen gefunden.",
|
|
842
|
+
"templatesManageDialogTitle": "Vorlagen verwalten",
|
|
843
|
+
"templatesMenuDescription": "Vorlagen bearbeiten und löschen",
|
|
844
|
+
"templatesMenuLabel": "Vorlagen...",
|
|
845
|
+
"templatesMissingDefaultPermissions": "Fehlende Berechtigung um Standard-Vorlagen zu erstellen.",
|
|
846
|
+
"templatesNoResults": "Keine Vorlagen für dieses Feld verfügbar.",
|
|
847
|
+
"templatesPlaceDialogDescription": "Vorlagen erstellen Kopien von Blöcken, die auf dieser Seite frei bearbeitet werden können, ohne andere Seiten zu beeinflussen.",
|
|
848
|
+
"templatesPlaceDialogSubmitButton": "Vorlagen-Blöcke hinzufügen",
|
|
849
|
+
"templatesPlaceDialogTitle": "Blöcke aus Vorlage hinzufügen",
|
|
850
|
+
"templatesSuccessMessage": "Die Vorlage «@label» wurde erfolgreich erstellt.",
|
|
851
|
+
"textareaNewLineHint": "Shift + Enter für neue Zeile",
|
|
852
|
+
"theme": "Farben",
|
|
853
|
+
"themeTourText": "Ändern Sie das Theme und generieren Sie eine Theme-Datei.",
|
|
854
|
+
"toggleInteractionLayers": "Interaktionsebenen umschalten",
|
|
855
|
+
"touchBarCancelDragging": "Platzieren abbrechen",
|
|
856
|
+
"touchBarFinishSelecting": "Mehrfachauswahl beenden",
|
|
857
|
+
"tourDescription": "Entdecken Sie die Funktionen vom Editor.",
|
|
858
|
+
"tourIntro": "Lernen Sie die wichtigsten Funktionen des Editors kennen und erfahren Sie, wie Sie mit blökkli loslegen können.",
|
|
859
|
+
"tourLabel": "Tour machen",
|
|
860
|
+
"tourNext": "Weiter",
|
|
861
|
+
"tourPrev": "Zurück",
|
|
862
|
+
"tourStartButton": "Tour starten",
|
|
863
|
+
"transformDialogButtonApply": "Änderungen annehmen",
|
|
864
|
+
"transformDialogButtonNewSuggestion": "Neuer Vorschlag",
|
|
865
|
+
"transformDialogButtonPreview": "Vorschau",
|
|
866
|
+
"translateEditDisabled": "Bearbeiten ist für diesen Blocktyp deaktiviert.",
|
|
867
|
+
"translateLibraryBlock": "Wiederverwendbare Blöcke können hier nicht übersetzt werden.",
|
|
868
|
+
"translateNotTranslatable": "Dieser Blocktyp ist nicht übersetzbar.",
|
|
869
|
+
"translationOutdatedHint": "Die Übersetzung ist als veraltet markiert.",
|
|
870
|
+
"translationsAddFiles": "Dateien hinzufügen...",
|
|
871
|
+
"translationsAutoTranslate": "Automatisch übersetzen",
|
|
872
|
+
"translationsAutoTranslateButton": "Automatisch übersetzen...",
|
|
873
|
+
"translationsAutoTranslateTooltip": "Alle Texte automatisch mit einem Übersetzungsdienst übersetzen",
|
|
874
|
+
"translationsBannerButton": "Originalsprache bearbeiten",
|
|
875
|
+
"translationsBannerMarkAllAsUpToDate": "Alle als aktuell markieren",
|
|
876
|
+
"translationsBannerNext": "Nächster Block",
|
|
877
|
+
"translationsBannerOutdatedCount": "@count Blöcke haben <strong>veraltete Übersetzungen</strong>.",
|
|
878
|
+
"translationsBannerOutdatedSingular": "@count Block hat eine <strong>veraltete Übersetzung</strong>.",
|
|
879
|
+
"translationsBannerPrev": "Vorheriger Block",
|
|
880
|
+
"translationsBannerText": "Sie bearbeiten die Übersetzung <strong>«@language»</strong>.",
|
|
881
|
+
"translationsBatchTranslateMenuDescription": "Alle Elemente übersetzen",
|
|
882
|
+
"translationsBatchTranslateMenuTitle": "Übersetzen...",
|
|
883
|
+
"translationsCsvApply": "@count Übersetzungen importieren",
|
|
884
|
+
"translationsCsvChangesLabel": "Felder werden aktualisiert",
|
|
885
|
+
"translationsCsvDialogTitle": "Übersetzungen importieren/exportieren",
|
|
886
|
+
"translationsCsvDiff": "Änderungen",
|
|
887
|
+
"translationsCsvExport": "Export",
|
|
888
|
+
"translationsCsvImport": "Import",
|
|
889
|
+
"translationsCsvLanguages": "Sprachen",
|
|
890
|
+
"translationsCsvMenuTitle": "Import/Export...",
|
|
891
|
+
"translationsCsvNoChanges": "Keine Änderungen gefunden",
|
|
892
|
+
"translationsCsvOnlyMissing": "Nur fehlende Übersetzungen",
|
|
893
|
+
"translationsCsvOnlyOutdated": "Nur veraltete Übersetzungen",
|
|
894
|
+
"translationsCsvTooltip": "Übersetzungen als CSV- oder PO-Dateien importieren oder exportieren",
|
|
895
|
+
"translationsDropToImport": "CSV- oder PO-Datei zum Importieren ablegen",
|
|
896
|
+
"translationsItemAction": "Übersetzen",
|
|
897
|
+
"translationsMarkUpToDate": "Übersetzung als aktuell markieren",
|
|
898
|
+
"translationsMarkUpToDateDisabled": "Keiner der ausgewählten Blöcke hat eine veraltete Übersetzung.",
|
|
899
|
+
"translationsSelectImportFile": "CSV- oder PO-Datei auswählen",
|
|
900
|
+
"translationsTourText": "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.",
|
|
901
|
+
"translationsTourTitle": "Übersetzungen",
|
|
902
|
+
"translationsTranslateApply": "@count Übersetzungen anwenden",
|
|
903
|
+
"translationsTranslateButton": "@count Übersetzungen anfordern",
|
|
904
|
+
"translationsTranslateCurrentColumn": "Aktuelle Übersetzung (@language)",
|
|
905
|
+
"translationsTranslateDialogTitle": "Automatische Übersetzung",
|
|
906
|
+
"translationsTranslateFieldsLabel": "Felder ausgewählt",
|
|
907
|
+
"translationsTranslateLoading": "Wird übersetzt...",
|
|
908
|
+
"translationsTranslateNoTexts": "Keine übersetzbaren Texte auf dieser Seite gefunden.",
|
|
909
|
+
"unexpectedMutationError": "Ein unerwarteter Fehler ist aufgetreten",
|
|
910
|
+
"validationsNoneFound": "Keine Validierungsfehler gefunden.",
|
|
911
|
+
"validationsToolbarLabel": "Validierungen",
|
|
912
|
+
"validationsTourText": "Zeigt Validierungsfehler für Inhalte auf der aktuellen Seite an.",
|
|
913
|
+
"viewBannerReviewText": "Sie können Kommentare ansehen und hinzufügen, aber keine Inhalte bearbeiten.",
|
|
914
|
+
"viewBannerReviewTitle": "Sie befinden sich im Review-Modus.",
|
|
915
|
+
"viewBannerViewText": "Sie können Kommentare ansehen, aber keine Inhalte bearbeiten.",
|
|
916
|
+
"viewBannerViewTitle": "Sie befinden sich im Ansichtsmodus.",
|
|
917
|
+
"workspaceOpen": "Seite wechseln",
|
|
918
|
+
"workspaceSearchPlaceholder": "Seiten durchsuchen...",
|
|
919
|
+
"workspaceTitle": "Seite wechseln"
|
|
3618
920
|
}
|