@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,252 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
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
|
-
"translation": ""
|
|
253
|
-
},
|
|
254
|
-
"aiAgentCancelled": {
|
|
255
|
-
"source": "Cancelled",
|
|
256
|
-
"translation": ""
|
|
257
|
-
},
|
|
258
|
-
"aiAgentCheckReadabilityDone": {
|
|
259
|
-
"source": "Checked readability for @count texts",
|
|
260
|
-
"translation": ""
|
|
261
|
-
},
|
|
262
|
-
"aiAgentCheckReadabilityRunning": {
|
|
263
|
-
"source": "Checking readability...",
|
|
264
|
-
"translation": ""
|
|
265
|
-
},
|
|
266
|
-
"aiAgentCompletePlanStep": {
|
|
267
|
-
"source": "Completed: @label",
|
|
268
|
-
"translation": ""
|
|
269
|
-
},
|
|
270
|
-
"aiAgentConfirm": {
|
|
271
|
-
"source": "Confirm",
|
|
272
|
-
"translation": ""
|
|
273
|
-
},
|
|
274
|
-
"aiAgentConnecting": {
|
|
275
|
-
"source": "Connecting...",
|
|
276
|
-
"translation": ""
|
|
277
|
-
},
|
|
278
|
-
"aiAgentCreateChartDone": {
|
|
279
|
-
"source": "Added chart",
|
|
280
|
-
"translation": ""
|
|
281
|
-
},
|
|
282
|
-
"aiAgentCreateChartRunning": {
|
|
283
|
-
"source": "Creating chart...",
|
|
284
|
-
"translation": ""
|
|
285
|
-
},
|
|
286
|
-
"aiAgentCreatePlan": {
|
|
287
|
-
"source": "Plan: @label",
|
|
288
|
-
"translation": ""
|
|
289
|
-
},
|
|
290
|
-
"aiAgentDelegateRewriteCancelled": {
|
|
291
|
-
"source": "Rewriting cancelled",
|
|
292
|
-
"translation": ""
|
|
293
|
-
},
|
|
294
|
-
"aiAgentDelegateRewriteChecking": {
|
|
295
|
-
"source": "Checking readability...",
|
|
296
|
-
"translation": ""
|
|
297
|
-
},
|
|
298
|
-
"aiAgentDelegateRewriteError": {
|
|
299
|
-
"source": "Rewriting failed",
|
|
300
|
-
"translation": ""
|
|
301
|
-
},
|
|
302
|
-
"aiAgentDelegateRewriteFailed": {
|
|
303
|
-
"source": "Rewriting failed",
|
|
304
|
-
"translation": ""
|
|
305
|
-
},
|
|
306
|
-
"aiAgentDelegateRewriteNoChanges": {
|
|
307
|
-
"source": "No changes detected",
|
|
308
|
-
"translation": ""
|
|
309
|
-
},
|
|
310
|
-
"aiAgentDelegateRewriteRetrying": {
|
|
311
|
-
"source": "Retrying @count fields (attempt @attempt)...",
|
|
312
|
-
"translation": ""
|
|
313
|
-
},
|
|
314
|
-
"aiAgentDelegateRewriteRunning": {
|
|
315
|
-
"source": "Rewriting texts...",
|
|
316
|
-
"translation": ""
|
|
317
|
-
},
|
|
318
|
-
"aiAgentDelegateRewriteStreaming": {
|
|
319
|
-
"source": "Rewriting @count fields...",
|
|
320
|
-
"translation": ""
|
|
321
|
-
},
|
|
322
|
-
"aiAgentDeleteBlockDone": {
|
|
323
|
-
"source": "Deleted @bundle",
|
|
324
|
-
"translation": ""
|
|
325
|
-
},
|
|
326
|
-
"aiAgentDeleteBlocksDone": {
|
|
327
|
-
"source": "Deleted @count blocks",
|
|
328
|
-
"translation": ""
|
|
329
|
-
},
|
|
330
|
-
"aiAgentDeleteBlocksRunning": {
|
|
331
|
-
"source": "Deleting blocks...",
|
|
332
|
-
"translation": ""
|
|
333
|
-
},
|
|
334
|
-
"aiAgentDeleteConversation": {
|
|
335
|
-
"source": "Delete conversation",
|
|
336
|
-
"translation": ""
|
|
337
|
-
},
|
|
338
|
-
"aiAgentDetachLibraryBlockDone": {
|
|
339
|
-
"source": "Detached library block",
|
|
340
|
-
"translation": ""
|
|
341
|
-
},
|
|
342
|
-
"aiAgentDetachLibraryBlockRunning": {
|
|
343
|
-
"source": "Detaching library block...",
|
|
344
|
-
"translation": ""
|
|
345
|
-
},
|
|
346
|
-
"aiAgentDetachLibraryBlocksDone": {
|
|
347
|
-
"source": "Detached @count library blocks",
|
|
348
|
-
"translation": ""
|
|
349
|
-
},
|
|
350
|
-
"aiAgentDisconnected": {
|
|
351
|
-
"source": "Connection lost. Reconnecting...",
|
|
352
|
-
"translation": ""
|
|
353
|
-
},
|
|
354
|
-
"aiAgentDropFiles": {
|
|
355
|
-
"source": "Drop files to attach",
|
|
356
|
-
"translation": ""
|
|
357
|
-
},
|
|
358
|
-
"aiAgentDuplicateBlockDone": {
|
|
359
|
-
"source": "Duplicated @bundle",
|
|
360
|
-
"translation": ""
|
|
361
|
-
},
|
|
362
|
-
"aiAgentDuplicateBlockToFieldDone": {
|
|
363
|
-
"source": "Duplicated @bundle to @field",
|
|
364
|
-
"translation": ""
|
|
365
|
-
},
|
|
366
|
-
"aiAgentDuplicateBlocksDone": {
|
|
367
|
-
"source": "Duplicated @count blocks",
|
|
368
|
-
"translation": ""
|
|
369
|
-
},
|
|
370
|
-
"aiAgentDuplicateBlocksRunning": {
|
|
371
|
-
"source": "Duplicating blocks...",
|
|
372
|
-
"translation": ""
|
|
373
|
-
},
|
|
374
|
-
"aiAgentDuplicateBlocksToFieldDone": {
|
|
375
|
-
"source": "Duplicated @count blocks to @field",
|
|
376
|
-
"translation": ""
|
|
377
|
-
},
|
|
378
|
-
"aiAgentErrorAuthentication": {
|
|
379
|
-
"source": "API authentication failed. Please check your API key.",
|
|
380
|
-
"translation": ""
|
|
381
|
-
},
|
|
382
|
-
"aiAgentErrorBadRequest": {
|
|
383
|
-
"source": "The request to the AI service was invalid.",
|
|
384
|
-
"translation": ""
|
|
385
|
-
},
|
|
386
|
-
"aiAgentErrorConnection": {
|
|
387
|
-
"source": "Could not connect to the AI service. Please check your network connection.",
|
|
388
|
-
"translation": ""
|
|
389
|
-
},
|
|
390
|
-
"aiAgentErrorNotFound": {
|
|
391
|
-
"source": "The configured AI model was not found. Please check the configuration.",
|
|
392
|
-
"translation": ""
|
|
393
|
-
},
|
|
394
|
-
"aiAgentErrorOverloaded": {
|
|
395
|
-
"source": "The AI service is currently overloaded. Please try again in a moment.",
|
|
396
|
-
"translation": ""
|
|
397
|
-
},
|
|
398
|
-
"aiAgentErrorRateLimit": {
|
|
399
|
-
"source": "Rate limit exceeded. Please wait a moment before trying again.",
|
|
400
|
-
"translation": ""
|
|
401
|
-
},
|
|
402
|
-
"aiAgentErrorUnauthorized": {
|
|
403
|
-
"source": "Authentication failed. Please reload the page and try again.",
|
|
404
|
-
"translation": ""
|
|
405
|
-
},
|
|
406
|
-
"aiAgentErrorUnknown": {
|
|
407
|
-
"source": "An unexpected error occurred.",
|
|
408
|
-
"translation": ""
|
|
409
|
-
},
|
|
410
|
-
"aiAgentExpandButton": {
|
|
411
|
-
"source": "Show more",
|
|
412
|
-
"translation": ""
|
|
413
|
-
},
|
|
414
|
-
"aiAgentFeedbackBad": {
|
|
415
|
-
"source": "Bad",
|
|
416
|
-
"translation": ""
|
|
417
|
-
},
|
|
418
|
-
"aiAgentFeedbackFine": {
|
|
419
|
-
"source": "Fine",
|
|
420
|
-
"translation": ""
|
|
421
|
-
},
|
|
422
|
-
"aiAgentFeedbackGood": {
|
|
423
|
-
"source": "Good",
|
|
424
|
-
"translation": ""
|
|
425
|
-
},
|
|
426
|
-
"aiAgentFeedbackPlaceholder": {
|
|
427
|
-
"source": "Tell us more (optional)...",
|
|
428
|
-
"translation": ""
|
|
429
|
-
},
|
|
430
|
-
"aiAgentFeedbackPrompt": {
|
|
431
|
-
"source": "How was this response?",
|
|
432
|
-
"translation": ""
|
|
433
|
-
},
|
|
434
|
-
"aiAgentFeedbackSubmit": {
|
|
435
|
-
"source": "Submit",
|
|
436
|
-
"translation": ""
|
|
437
|
-
},
|
|
438
|
-
"aiAgentFeedbackThanks": {
|
|
439
|
-
"source": "Thanks for your feedback!",
|
|
440
|
-
"translation": ""
|
|
441
|
-
},
|
|
442
|
-
"aiAgentFindBlocksDone": {
|
|
443
|
-
"source": "Found @count blocks",
|
|
444
|
-
"translation": ""
|
|
445
|
-
},
|
|
446
|
-
"aiAgentFindBlocksRunning": {
|
|
447
|
-
"source": "Finding blocks...",
|
|
448
|
-
"translation": ""
|
|
449
|
-
},
|
|
450
|
-
"aiAgentGetAllFragments": {
|
|
451
|
-
"source": "Get all fragments",
|
|
452
|
-
"translation": ""
|
|
453
|
-
},
|
|
454
|
-
"aiAgentGetAllFragmentsDone": {
|
|
455
|
-
"source": "Got all fragments",
|
|
456
|
-
"translation": ""
|
|
457
|
-
},
|
|
458
|
-
"aiAgentGetAllPageContentDone": {
|
|
459
|
-
"source": "Got content from @count blocks",
|
|
460
|
-
"translation": ""
|
|
461
|
-
},
|
|
462
|
-
"aiAgentGetAllPageContentRunning": {
|
|
463
|
-
"source": "Getting all page content...",
|
|
464
|
-
"translation": ""
|
|
465
|
-
},
|
|
466
|
-
"aiAgentGetBlockContextDone": {
|
|
467
|
-
"source": "Got context for @bundle",
|
|
468
|
-
"translation": ""
|
|
469
|
-
},
|
|
470
|
-
"aiAgentGetBlockContextRunning": {
|
|
471
|
-
"source": "Getting block context...",
|
|
472
|
-
"translation": ""
|
|
473
|
-
},
|
|
474
|
-
"aiAgentGetBlockOptionsDone": {
|
|
475
|
-
"source": "Got options of @bundle",
|
|
476
|
-
"translation": ""
|
|
477
|
-
},
|
|
478
|
-
"aiAgentGetBlockOptionsMultipleDone": {
|
|
479
|
-
"source": "Got options of @count blocks",
|
|
480
|
-
"translation": ""
|
|
481
|
-
},
|
|
482
|
-
"aiAgentGetBlockOptionsRunning": {
|
|
483
|
-
"source": "Getting block options...",
|
|
484
|
-
"translation": ""
|
|
485
|
-
},
|
|
486
|
-
"aiAgentGetBlocksInViewportDone": {
|
|
487
|
-
"source": "Got @count blocks in viewport",
|
|
488
|
-
"translation": ""
|
|
489
|
-
},
|
|
490
|
-
"aiAgentGetBlocksInViewportRunning": {
|
|
491
|
-
"source": "Getting blocks in viewport...",
|
|
492
|
-
"translation": ""
|
|
493
|
-
},
|
|
494
|
-
"aiAgentGetBundleInfoDone": {
|
|
495
|
-
"source": "Got bundle info for @field",
|
|
496
|
-
"translation": ""
|
|
497
|
-
},
|
|
498
|
-
"aiAgentGetBundleInfoRunning": {
|
|
499
|
-
"source": "Getting bundle info...",
|
|
500
|
-
"translation": ""
|
|
501
|
-
},
|
|
502
|
-
"aiAgentGetChartDataDone": {
|
|
503
|
-
"source": "Got chart data",
|
|
504
|
-
"translation": ""
|
|
505
|
-
},
|
|
506
|
-
"aiAgentGetChartDataRunning": {
|
|
507
|
-
"source": "Getting chart data...",
|
|
508
|
-
"translation": ""
|
|
509
|
-
},
|
|
510
|
-
"aiAgentGetChartTypeOptionsRunning": {
|
|
511
|
-
"source": "Getting chart options...",
|
|
512
|
-
"translation": ""
|
|
513
|
-
},
|
|
514
|
-
"aiAgentGetChildBlocks": {
|
|
515
|
-
"source": "Get child blocks",
|
|
516
|
-
"translation": ""
|
|
517
|
-
},
|
|
518
|
-
"aiAgentGetChildBlocksDone": {
|
|
519
|
-
"source": "Got children of @bundle",
|
|
520
|
-
"translation": ""
|
|
521
|
-
},
|
|
522
|
-
"aiAgentGetChildBlocksNone": {
|
|
523
|
-
"source": "@bundle has no child fields",
|
|
524
|
-
"translation": ""
|
|
525
|
-
},
|
|
526
|
-
"aiAgentGetContentFieldsDone": {
|
|
527
|
-
"source": "Got content fields of @bundle block",
|
|
528
|
-
"translation": ""
|
|
529
|
-
},
|
|
530
|
-
"aiAgentGetContentFieldsMultipleDone": {
|
|
531
|
-
"source": "Got content fields of @count blocks",
|
|
532
|
-
"translation": ""
|
|
533
|
-
},
|
|
534
|
-
"aiAgentGetContentFieldsRunning": {
|
|
535
|
-
"source": "Getting content fields...",
|
|
536
|
-
"translation": ""
|
|
537
|
-
},
|
|
538
|
-
"aiAgentGetEntityContentFieldsDone": {
|
|
539
|
-
"source": "Got content fields of page entity",
|
|
540
|
-
"translation": ""
|
|
541
|
-
},
|
|
542
|
-
"aiAgentGetMutationHistoryDone": {
|
|
543
|
-
"source": "Got mutation history",
|
|
544
|
-
"translation": ""
|
|
545
|
-
},
|
|
546
|
-
"aiAgentGetMutationHistoryRunning": {
|
|
547
|
-
"source": "Getting mutation history...",
|
|
548
|
-
"translation": ""
|
|
549
|
-
},
|
|
550
|
-
"aiAgentGetPageStructureDone": {
|
|
551
|
-
"source": "Got page structure (@count paragraphs)",
|
|
552
|
-
"translation": ""
|
|
553
|
-
},
|
|
554
|
-
"aiAgentGetPageStructureRunning": {
|
|
555
|
-
"source": "Getting page structure...",
|
|
556
|
-
"translation": ""
|
|
557
|
-
},
|
|
558
|
-
"aiAgentGetSelectedBlocksDone": {
|
|
559
|
-
"source": "@count block(s) selected",
|
|
560
|
-
"translation": ""
|
|
561
|
-
},
|
|
562
|
-
"aiAgentGetSelectedBlocksNone": {
|
|
563
|
-
"source": "No blocks selected",
|
|
564
|
-
"translation": ""
|
|
565
|
-
},
|
|
566
|
-
"aiAgentGetSelectedBlocksRunning": {
|
|
567
|
-
"source": "Getting selected blocks...",
|
|
568
|
-
"translation": ""
|
|
569
|
-
},
|
|
570
|
-
"aiAgentGoToHistoryIndexRunning": {
|
|
571
|
-
"source": "Navigating history...",
|
|
572
|
-
"translation": ""
|
|
573
|
-
},
|
|
574
|
-
"aiAgentIntroPopup": {
|
|
575
|
-
"source": "Need help editing? @name is your AI assistant — it can add, move, and update blocks and much more. Give it a try!",
|
|
576
|
-
"translation": ""
|
|
577
|
-
},
|
|
578
|
-
"aiAgentIntroPopupCta": {
|
|
579
|
-
"source": "Get started",
|
|
580
|
-
"translation": ""
|
|
581
|
-
},
|
|
582
|
-
"aiAgentLoadSkill": {
|
|
583
|
-
"source": "Using skill \"@label\"",
|
|
584
|
-
"translation": ""
|
|
585
|
-
},
|
|
586
|
-
"aiAgentLoadTools": {
|
|
587
|
-
"source": "@count tools loaded",
|
|
588
|
-
"translation": ""
|
|
589
|
-
},
|
|
590
|
-
"aiAgentMoveBlockDone": {
|
|
591
|
-
"source": "Moved @bundle",
|
|
592
|
-
"translation": ""
|
|
593
|
-
},
|
|
594
|
-
"aiAgentMoveBlocksDone": {
|
|
595
|
-
"source": "Moved @count blocks",
|
|
596
|
-
"translation": ""
|
|
597
|
-
},
|
|
598
|
-
"aiAgentMoveBlocksRunning": {
|
|
599
|
-
"source": "Moving blocks...",
|
|
600
|
-
"translation": ""
|
|
601
|
-
},
|
|
602
|
-
"aiAgentNewConversation": {
|
|
603
|
-
"source": "Start new conversation",
|
|
604
|
-
"translation": ""
|
|
605
|
-
},
|
|
606
|
-
"aiAgentNoConversations": {
|
|
607
|
-
"source": "No past conversations.",
|
|
608
|
-
"translation": ""
|
|
609
|
-
},
|
|
610
|
-
"aiAgentPastConversations": {
|
|
611
|
-
"source": "Past conversations",
|
|
612
|
-
"translation": ""
|
|
613
|
-
},
|
|
614
|
-
"aiAgentPastedText": {
|
|
615
|
-
"source": "Pasted text",
|
|
616
|
-
"translation": "Texte collé"
|
|
617
|
-
},
|
|
618
|
-
"aiAgentPlaceholder": {
|
|
619
|
-
"source": "What should we work on?",
|
|
620
|
-
"translation": ""
|
|
621
|
-
},
|
|
622
|
-
"aiAgentPlaceholderReply": {
|
|
623
|
-
"source": "Reply...",
|
|
624
|
-
"translation": "Répondre..."
|
|
625
|
-
},
|
|
626
|
-
"aiAgentPlanCompleted": {
|
|
627
|
-
"source": "Plan completed: @label",
|
|
628
|
-
"translation": ""
|
|
629
|
-
},
|
|
630
|
-
"aiAgentPopupTitle": {
|
|
631
|
-
"source": "AI-Assistant",
|
|
632
|
-
"translation": ""
|
|
633
|
-
},
|
|
634
|
-
"aiAgentProcessing": {
|
|
635
|
-
"source": "Processing...",
|
|
636
|
-
"translation": ""
|
|
637
|
-
},
|
|
638
|
-
"aiAgentRearrangeBlocksDone": {
|
|
639
|
-
"source": "Rearranged @count blocks",
|
|
640
|
-
"translation": ""
|
|
641
|
-
},
|
|
642
|
-
"aiAgentRearrangeBlocksRunning": {
|
|
643
|
-
"source": "Rearranging blocks...",
|
|
644
|
-
"translation": ""
|
|
645
|
-
},
|
|
646
|
-
"aiAgentRedoDone": {
|
|
647
|
-
"source": "Redid @count changes",
|
|
648
|
-
"translation": ""
|
|
649
|
-
},
|
|
650
|
-
"aiAgentReject": {
|
|
651
|
-
"source": "Reject",
|
|
652
|
-
"translation": ""
|
|
653
|
-
},
|
|
654
|
-
"aiAgentRemoveAttachment": {
|
|
655
|
-
"source": "Remove attachment",
|
|
656
|
-
"translation": "Supprimer la pièce jointe"
|
|
657
|
-
},
|
|
658
|
-
"aiAgentReplaceContentSearchItemDone": {
|
|
659
|
-
"source": "Replaced content reference on @field",
|
|
660
|
-
"translation": ""
|
|
661
|
-
},
|
|
662
|
-
"aiAgentReplaceContentSearchItemRunning": {
|
|
663
|
-
"source": "Replacing content reference...",
|
|
664
|
-
"translation": ""
|
|
665
|
-
},
|
|
666
|
-
"aiAgentReplaceMediaDone": {
|
|
667
|
-
"source": "Replaced media on @field",
|
|
668
|
-
"translation": ""
|
|
669
|
-
},
|
|
670
|
-
"aiAgentReplaceMediaRunning": {
|
|
671
|
-
"source": "Replacing media...",
|
|
672
|
-
"translation": ""
|
|
673
|
-
},
|
|
674
|
-
"aiAgentRetry": {
|
|
675
|
-
"source": "Retry",
|
|
676
|
-
"translation": ""
|
|
677
|
-
},
|
|
678
|
-
"aiAgentSearchContentRunning": {
|
|
679
|
-
"source": "Searching content...",
|
|
680
|
-
"translation": ""
|
|
681
|
-
},
|
|
682
|
-
"aiAgentSearchLibraryDone": {
|
|
683
|
-
"source": "Searched library",
|
|
684
|
-
"translation": ""
|
|
685
|
-
},
|
|
686
|
-
"aiAgentSearchLibraryRunning": {
|
|
687
|
-
"source": "Searching reusable blocks...",
|
|
688
|
-
"translation": ""
|
|
689
|
-
},
|
|
690
|
-
"aiAgentSearchMediaAllDone": {
|
|
691
|
-
"source": "Searched all media",
|
|
692
|
-
"translation": ""
|
|
693
|
-
},
|
|
694
|
-
"aiAgentSearchMediaDone": {
|
|
695
|
-
"source": "Searched media for '@query'",
|
|
696
|
-
"translation": ""
|
|
697
|
-
},
|
|
698
|
-
"aiAgentSearchMediaRunning": {
|
|
699
|
-
"source": "Searching media...",
|
|
700
|
-
"translation": ""
|
|
701
|
-
},
|
|
702
|
-
"aiAgentSearchTemplatesAllDone": {
|
|
703
|
-
"source": "Searched all templates",
|
|
704
|
-
"translation": ""
|
|
705
|
-
},
|
|
706
|
-
"aiAgentSearchTemplatesDone": {
|
|
707
|
-
"source": "Searched templates for '@query'",
|
|
708
|
-
"translation": ""
|
|
709
|
-
},
|
|
710
|
-
"aiAgentSearchTemplatesRunning": {
|
|
711
|
-
"source": "Searching templates...",
|
|
712
|
-
"translation": ""
|
|
713
|
-
},
|
|
714
|
-
"aiAgentSearchTextDone": {
|
|
715
|
-
"source": "Found @count blocks matching '@query'",
|
|
716
|
-
"translation": ""
|
|
717
|
-
},
|
|
718
|
-
"aiAgentSearchTextError": {
|
|
719
|
-
"source": "Invalid regex pattern",
|
|
720
|
-
"translation": ""
|
|
721
|
-
},
|
|
722
|
-
"aiAgentSearchTextRunning": {
|
|
723
|
-
"source": "Searching text...",
|
|
724
|
-
"translation": ""
|
|
725
|
-
},
|
|
726
|
-
"aiAgentSelectMediaRunning": {
|
|
727
|
-
"source": "Selecting media...",
|
|
728
|
-
"translation": ""
|
|
729
|
-
},
|
|
730
|
-
"aiAgentSetBlockOptionsRunning": {
|
|
731
|
-
"source": "Setting block options...",
|
|
732
|
-
"translation": ""
|
|
733
|
-
},
|
|
734
|
-
"aiAgentShowTranscript": {
|
|
735
|
-
"source": "Show transcript...",
|
|
736
|
-
"translation": ""
|
|
737
|
-
},
|
|
738
|
-
"aiAgentSwapBlocksDone": {
|
|
739
|
-
"source": "Swapped @bundleA and @bundleB",
|
|
740
|
-
"translation": ""
|
|
741
|
-
},
|
|
742
|
-
"aiAgentSwapBlocksRunning": {
|
|
743
|
-
"source": "Swapping blocks...",
|
|
744
|
-
"translation": ""
|
|
745
|
-
},
|
|
746
|
-
"aiAgentThinking": {
|
|
747
|
-
"source": "Thinking...",
|
|
748
|
-
"translation": ""
|
|
749
|
-
},
|
|
750
|
-
"aiAgentTokensCached": {
|
|
751
|
-
"source": "Reused input tokens (cheaper)",
|
|
752
|
-
"translation": "Tokens d'entrée réutilisés (moins cher)"
|
|
753
|
-
},
|
|
754
|
-
"aiAgentTokensCachedLabel": {
|
|
755
|
-
"source": "Cached",
|
|
756
|
-
"translation": "Cache"
|
|
757
|
-
},
|
|
758
|
-
"aiAgentTokensCost": {
|
|
759
|
-
"source": "Estimated cost for this conversation",
|
|
760
|
-
"translation": "Coût estimé pour cette conversation"
|
|
761
|
-
},
|
|
762
|
-
"aiAgentTokensCostLabel": {
|
|
763
|
-
"source": "Cost",
|
|
764
|
-
"translation": "Coût"
|
|
765
|
-
},
|
|
766
|
-
"aiAgentTokensInput": {
|
|
767
|
-
"source": "Tokens used to send context to the AI",
|
|
768
|
-
"translation": "Tokens utilisés pour envoyer le contexte à l'IA"
|
|
769
|
-
},
|
|
770
|
-
"aiAgentTokensInputLabel": {
|
|
771
|
-
"source": "Input",
|
|
772
|
-
"translation": "Entrée"
|
|
773
|
-
},
|
|
774
|
-
"aiAgentTokensOutput": {
|
|
775
|
-
"source": "Tokens generated by the AI in responses",
|
|
776
|
-
"translation": "Tokens générés par l'IA dans les réponses"
|
|
777
|
-
},
|
|
778
|
-
"aiAgentTokensOutputLabel": {
|
|
779
|
-
"source": "Output",
|
|
780
|
-
"translation": "Sortie"
|
|
781
|
-
},
|
|
782
|
-
"aiAgentTourText": {
|
|
783
|
-
"source": "Chat with an AI assistant to edit page content.",
|
|
784
|
-
"translation": ""
|
|
785
|
-
},
|
|
786
|
-
"aiAgentUndoDone": {
|
|
787
|
-
"source": "Undid @count changes",
|
|
788
|
-
"translation": ""
|
|
789
|
-
},
|
|
790
|
-
"aiAgentUnknownMessage": {
|
|
791
|
-
"source": "Unknown message type",
|
|
792
|
-
"translation": ""
|
|
793
|
-
},
|
|
794
|
-
"aiAgentUpdateChartDone": {
|
|
795
|
-
"source": "Updated chart",
|
|
796
|
-
"translation": ""
|
|
797
|
-
},
|
|
798
|
-
"aiAgentUpdateChartRunning": {
|
|
799
|
-
"source": "Updating chart...",
|
|
800
|
-
"translation": ""
|
|
801
|
-
},
|
|
802
|
-
"aiAgentUpdateOptionsOnBlockDone": {
|
|
803
|
-
"source": "Updated @count option(s) on block",
|
|
804
|
-
"translation": ""
|
|
805
|
-
},
|
|
806
|
-
"aiAgentUpdateOptionsOnBlocksDone": {
|
|
807
|
-
"source": "Updated @count option(s) on @blockCount blocks",
|
|
808
|
-
"translation": ""
|
|
809
|
-
},
|
|
810
|
-
"aiAgentViewAttachment": {
|
|
811
|
-
"source": "View attachment",
|
|
812
|
-
"translation": ""
|
|
813
|
-
},
|
|
814
|
-
"aiAgentWebFetchDone": {
|
|
815
|
-
"source": "Fetched '@title'",
|
|
816
|
-
"translation": ""
|
|
817
|
-
},
|
|
818
|
-
"aiAgentWebFetchRunning": {
|
|
819
|
-
"source": "Fetching web page...",
|
|
820
|
-
"translation": ""
|
|
821
|
-
},
|
|
822
|
-
"aiAgentWelcomeDisclaimer": {
|
|
823
|
-
"source": "@agent can make mistakes! Always check the output. <strong>Do not enter sensitive information.</strong>",
|
|
824
|
-
"translation": ""
|
|
825
|
-
},
|
|
826
|
-
"all": {
|
|
827
|
-
"source": "All",
|
|
828
|
-
"translation": ""
|
|
829
|
-
},
|
|
830
|
-
"allowedBlocks": {
|
|
831
|
-
"source": "Allowed Blocks",
|
|
832
|
-
"translation": ""
|
|
833
|
-
},
|
|
834
|
-
"analyzeAltTextLabel": {
|
|
835
|
-
"source": "Image Alt Texts",
|
|
836
|
-
"translation": ""
|
|
837
|
-
},
|
|
838
|
-
"analyzeAltTextMissing": {
|
|
839
|
-
"source": "Images without alt text",
|
|
840
|
-
"translation": ""
|
|
841
|
-
},
|
|
842
|
-
"analyzeAltTextMissingDescription": {
|
|
843
|
-
"source": "Images are missing alt text. Alt texts are important for accessibility and SEO.",
|
|
844
|
-
"translation": ""
|
|
845
|
-
},
|
|
846
|
-
"analyzeAltTextMissingNode": {
|
|
847
|
-
"source": "Image without alt text",
|
|
848
|
-
"translation": ""
|
|
849
|
-
},
|
|
850
|
-
"analyzeAltTextValid": {
|
|
851
|
-
"source": "Images with alt text",
|
|
852
|
-
"translation": ""
|
|
853
|
-
},
|
|
854
|
-
"analyzeAltTextValidDescription": {
|
|
855
|
-
"source": "Images have an alt text.",
|
|
856
|
-
"translation": ""
|
|
857
|
-
},
|
|
858
|
-
"analyzeButtonLabel": {
|
|
859
|
-
"source": "Analyze Page",
|
|
860
|
-
"translation": ""
|
|
861
|
-
},
|
|
862
|
-
"analyzeCategory": {
|
|
863
|
-
"source": "Category",
|
|
864
|
-
"translation": ""
|
|
865
|
-
},
|
|
866
|
-
"analyzeCategoryAccessibility": {
|
|
867
|
-
"source": "Accessibility",
|
|
868
|
-
"translation": ""
|
|
869
|
-
},
|
|
870
|
-
"analyzeCategoryContent": {
|
|
871
|
-
"source": "Content",
|
|
872
|
-
"translation": ""
|
|
873
|
-
},
|
|
874
|
-
"analyzeCategorySeo": {
|
|
875
|
-
"source": "SEO",
|
|
876
|
-
"translation": ""
|
|
877
|
-
},
|
|
878
|
-
"analyzeCategoryText": {
|
|
879
|
-
"source": "Text",
|
|
880
|
-
"translation": ""
|
|
881
|
-
},
|
|
882
|
-
"analyzeClickButton": {
|
|
883
|
-
"source": "Click the button above to run the analysis.",
|
|
884
|
-
"translation": ""
|
|
885
|
-
},
|
|
886
|
-
"analyzeHeadingHasH2": {
|
|
887
|
-
"source": "H2 headings present",
|
|
888
|
-
"translation": ""
|
|
889
|
-
},
|
|
890
|
-
"analyzeHeadingHasH2Description": {
|
|
891
|
-
"source": "The page contains H2 headings for a clear content structure.",
|
|
892
|
-
"translation": ""
|
|
893
|
-
},
|
|
894
|
-
"analyzeHeadingMultipleH1": {
|
|
895
|
-
"source": "Multiple H1 headings",
|
|
896
|
-
"translation": ""
|
|
897
|
-
},
|
|
898
|
-
"analyzeHeadingMultipleH1Description": {
|
|
899
|
-
"source": "The page contains multiple H1 headings. There should only be one H1 heading per page.",
|
|
900
|
-
"translation": ""
|
|
901
|
-
},
|
|
902
|
-
"analyzeHeadingNoH2": {
|
|
903
|
-
"source": "Missing H2 headings",
|
|
904
|
-
"translation": ""
|
|
905
|
-
},
|
|
906
|
-
"analyzeHeadingNoH2Description": {
|
|
907
|
-
"source": "The page contains no H2 headings. A clear heading structure is important for SEO and accessibility.",
|
|
908
|
-
"translation": ""
|
|
909
|
-
},
|
|
910
|
-
"analyzeHeadingNoH2Found": {
|
|
911
|
-
"source": "No H2 headings found",
|
|
912
|
-
"translation": ""
|
|
913
|
-
},
|
|
914
|
-
"analyzeHeadingNoSkippedLevels": {
|
|
915
|
-
"source": "No skipped heading levels",
|
|
916
|
-
"translation": ""
|
|
917
|
-
},
|
|
918
|
-
"analyzeHeadingNoSkippedLevelsDescription": {
|
|
919
|
-
"source": "The heading hierarchy does not skip any levels.",
|
|
920
|
-
"translation": ""
|
|
921
|
-
},
|
|
922
|
-
"analyzeHeadingSingleH1": {
|
|
923
|
-
"source": "Single H1 heading",
|
|
924
|
-
"translation": ""
|
|
925
|
-
},
|
|
926
|
-
"analyzeHeadingSingleH1Description": {
|
|
927
|
-
"source": "The page has exactly one H1 heading.",
|
|
928
|
-
"translation": ""
|
|
929
|
-
},
|
|
930
|
-
"analyzeHeadingSkippedLevels": {
|
|
931
|
-
"source": "Skipped heading levels",
|
|
932
|
-
"translation": ""
|
|
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": ""
|
|
937
|
-
},
|
|
938
|
-
"analyzeHeadingStructureLabel": {
|
|
939
|
-
"source": "Heading Structure",
|
|
940
|
-
"translation": ""
|
|
941
|
-
},
|
|
942
|
-
"analyzeIgnore": {
|
|
943
|
-
"source": "Ignore",
|
|
944
|
-
"translation": ""
|
|
945
|
-
},
|
|
946
|
-
"analyzeIgnoredResults": {
|
|
947
|
-
"source": "Ignored",
|
|
948
|
-
"translation": ""
|
|
949
|
-
},
|
|
950
|
-
"analyzeKeepVisible": {
|
|
951
|
-
"source": "Keep results visible",
|
|
952
|
-
"translation": ""
|
|
953
|
-
},
|
|
954
|
-
"analyzeKeepVisibleDescription": {
|
|
955
|
-
"source": "When enabled, analysis results remain highlighted on the page even when the analyze panel is closed.",
|
|
956
|
-
"translation": "Lorsque activé, les résultats d'analyse restent surlignés sur la page même lorsque le panneau d'analyse est fermé."
|
|
957
|
-
},
|
|
958
|
-
"analyzeLastRun": {
|
|
959
|
-
"source": "Last run: @time",
|
|
960
|
-
"translation": ""
|
|
961
|
-
},
|
|
962
|
-
"analyzeMoreLink": {
|
|
963
|
-
"source": "More",
|
|
964
|
-
"translation": ""
|
|
965
|
-
},
|
|
966
|
-
"analyzeNotAvailableInStructureView": {
|
|
967
|
-
"source": "Analyze is not available in structure view.",
|
|
968
|
-
"translation": ""
|
|
969
|
-
},
|
|
970
|
-
"analyzeResultsOutdated": {
|
|
971
|
-
"source": "Results are outdated. Click the button to update.",
|
|
972
|
-
"translation": ""
|
|
973
|
-
},
|
|
974
|
-
"analyzeShowDetails": {
|
|
975
|
-
"source": "Show details",
|
|
976
|
-
"translation": ""
|
|
977
|
-
},
|
|
978
|
-
"analyzeSidebarTitle": {
|
|
979
|
-
"source": "Analyze",
|
|
980
|
-
"translation": ""
|
|
981
|
-
},
|
|
982
|
-
"analyzeStatusInapplicable": {
|
|
983
|
-
"source": "Inapplicable",
|
|
984
|
-
"translation": ""
|
|
985
|
-
},
|
|
986
|
-
"analyzeStatusIncomplete": {
|
|
987
|
-
"source": "Incomplete",
|
|
988
|
-
"translation": ""
|
|
989
|
-
},
|
|
990
|
-
"analyzeStatusPass": {
|
|
991
|
-
"source": "Pass",
|
|
992
|
-
"translation": ""
|
|
993
|
-
},
|
|
994
|
-
"analyzeStatusStale": {
|
|
995
|
-
"source": "Stale",
|
|
996
|
-
"translation": ""
|
|
997
|
-
},
|
|
998
|
-
"analyzeStatusViolation": {
|
|
999
|
-
"source": "Violation",
|
|
1000
|
-
"translation": ""
|
|
1001
|
-
},
|
|
1002
|
-
"analyzeTourText": {
|
|
1003
|
-
"source": "Analyze the content of your page",
|
|
1004
|
-
"translation": ""
|
|
1005
|
-
},
|
|
1006
|
-
"analyzeUnignore": {
|
|
1007
|
-
"source": "Restore",
|
|
1008
|
-
"translation": ""
|
|
1009
|
-
},
|
|
1010
|
-
"analyzerReadabiliyCouldBeSimpler": {
|
|
1011
|
-
"source": "Could be simpler (@lang).",
|
|
1012
|
-
"translation": "Pourrait être plus simple (@lang)."
|
|
1013
|
-
},
|
|
1014
|
-
"analyzerReadabiliyDescription": {
|
|
1015
|
-
"source": "Avoid texts that are hard to read.",
|
|
1016
|
-
"translation": ""
|
|
1017
|
-
},
|
|
1018
|
-
"analyzerReadabiliyHardToRead": {
|
|
1019
|
-
"source": "Hard to read (@lang).",
|
|
1020
|
-
"translation": ""
|
|
1021
|
-
},
|
|
1022
|
-
"analyzerReadabiliyOkDescription": {
|
|
1023
|
-
"source": "Text that could be easier to read.",
|
|
1024
|
-
"translation": "Texte qui pourrait être plus facile à lire."
|
|
1025
|
-
},
|
|
1026
|
-
"analyzerReadabiliyOkTitle": {
|
|
1027
|
-
"source": "Text could be simpler",
|
|
1028
|
-
"translation": "Le texte pourrait être plus simple"
|
|
1029
|
-
},
|
|
1030
|
-
"analyzerReadabiliyShorterSentences": {
|
|
1031
|
-
"source": "Consider shorter sentences and simpler wording.",
|
|
1032
|
-
"translation": ""
|
|
1033
|
-
},
|
|
1034
|
-
"analyzerReadabiliyTitle": {
|
|
1035
|
-
"source": "Text readability issues",
|
|
1036
|
-
"translation": ""
|
|
1037
|
-
},
|
|
1038
|
-
"anchorHide": {
|
|
1039
|
-
"source": "Hide anchor links",
|
|
1040
|
-
"translation": ""
|
|
1041
|
-
},
|
|
1042
|
-
"anchorShow": {
|
|
1043
|
-
"source": "Show anchor links",
|
|
1044
|
-
"translation": ""
|
|
1045
|
-
},
|
|
1046
|
-
"anchorToggle": {
|
|
1047
|
-
"source": "Toggle anchor links",
|
|
1048
|
-
"translation": ""
|
|
1049
|
-
},
|
|
1050
|
-
"arrowLeft": {
|
|
1051
|
-
"source": "Arrow Left",
|
|
1052
|
-
"translation": ""
|
|
1053
|
-
},
|
|
1054
|
-
"arrowRight": {
|
|
1055
|
-
"source": "Arrow Right",
|
|
1056
|
-
"translation": ""
|
|
1057
|
-
},
|
|
1058
|
-
"artboard": {
|
|
1059
|
-
"source": "Artboard",
|
|
1060
|
-
"translation": ""
|
|
1061
|
-
},
|
|
1062
|
-
"artboardOverviewHide": {
|
|
1063
|
-
"source": "Hide overview",
|
|
1064
|
-
"translation": ""
|
|
1065
|
-
},
|
|
1066
|
-
"artboardOverviewShow": {
|
|
1067
|
-
"source": "Show overview",
|
|
1068
|
-
"translation": ""
|
|
1069
|
-
},
|
|
1070
|
-
"artboardOverviewToggle": {
|
|
1071
|
-
"source": "Toggle overview",
|
|
1072
|
-
"translation": ""
|
|
1073
|
-
},
|
|
1074
|
-
"artboardOverviewTourText": {
|
|
1075
|
-
"source": "Displays a top level overview of your content.",
|
|
1076
|
-
"translation": ""
|
|
1077
|
-
},
|
|
1078
|
-
"artboardResetZoom": {
|
|
1079
|
-
"source": "Reset zoom",
|
|
1080
|
-
"translation": ""
|
|
1081
|
-
},
|
|
1082
|
-
"artboardScaleToFit": {
|
|
1083
|
-
"source": "Scale to fit",
|
|
1084
|
-
"translation": ""
|
|
1085
|
-
},
|
|
1086
|
-
"artboardScrollDown": {
|
|
1087
|
-
"source": "Scroll down",
|
|
1088
|
-
"translation": ""
|
|
1089
|
-
},
|
|
1090
|
-
"artboardScrollOnePageDown": {
|
|
1091
|
-
"source": "Scroll one page down",
|
|
1092
|
-
"translation": ""
|
|
1093
|
-
},
|
|
1094
|
-
"artboardScrollOnePageUp": {
|
|
1095
|
-
"source": "Scroll one page up",
|
|
1096
|
-
"translation": ""
|
|
1097
|
-
},
|
|
1098
|
-
"artboardScrollToEnd": {
|
|
1099
|
-
"source": "Scroll to end",
|
|
1100
|
-
"translation": ""
|
|
1101
|
-
},
|
|
1102
|
-
"artboardScrollToTop": {
|
|
1103
|
-
"source": "Scroll to top",
|
|
1104
|
-
"translation": ""
|
|
1105
|
-
},
|
|
1106
|
-
"artboardScrollUp": {
|
|
1107
|
-
"source": "Scroll up",
|
|
1108
|
-
"translation": ""
|
|
1109
|
-
},
|
|
1110
|
-
"artboardToolbarButtonTourText": {
|
|
1111
|
-
"source": "Shows the current zoom factor. Click on it to reset the zoom back to 100%.",
|
|
1112
|
-
"translation": ""
|
|
1113
|
-
},
|
|
1114
|
-
"availableBlocks": {
|
|
1115
|
-
"source": "Available blocks",
|
|
1116
|
-
"translation": ""
|
|
1117
|
-
},
|
|
1118
|
-
"availableFragments": {
|
|
1119
|
-
"source": "Available fragments",
|
|
1120
|
-
"translation": ""
|
|
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": ""
|
|
1125
|
-
},
|
|
1126
|
-
"blockAddListTourTitle": {
|
|
1127
|
-
"source": "Favorite blocks",
|
|
1128
|
-
"translation": ""
|
|
1129
|
-
},
|
|
1130
|
-
"blockNotImplemented": {
|
|
1131
|
-
"source": "Missing component for block bundle <strong>@bundle</strong>.",
|
|
1132
|
-
"translation": ""
|
|
1133
|
-
},
|
|
1134
|
-
"blockOption_bkHiddenGlobally_description": {
|
|
1135
|
-
"source": "Always hides the block.",
|
|
1136
|
-
"translation": ""
|
|
1137
|
-
},
|
|
1138
|
-
"blockOption_bkHiddenGlobally_label": {
|
|
1139
|
-
"source": "Hide globally",
|
|
1140
|
-
"translation": ""
|
|
1141
|
-
},
|
|
1142
|
-
"blockOption_bkVisibleLanguages_description": {
|
|
1143
|
-
"source": "Only show on specific languages.",
|
|
1144
|
-
"translation": ""
|
|
1145
|
-
},
|
|
1146
|
-
"blockOption_bkVisibleLanguages_label": {
|
|
1147
|
-
"source": "Visible languages",
|
|
1148
|
-
"translation": ""
|
|
1149
|
-
},
|
|
1150
|
-
"blockSchedulerChangesPreview": {
|
|
1151
|
-
"source": "Changes to be applied",
|
|
1152
|
-
"translation": ""
|
|
1153
|
-
},
|
|
1154
|
-
"blockSchedulerDialogLead": {
|
|
1155
|
-
"source": "Schedule automatic publishing and unpublishing dates for the selected blocks.",
|
|
1156
|
-
"translation": ""
|
|
1157
|
-
},
|
|
1158
|
-
"blockSchedulerDialogPublishOn": {
|
|
1159
|
-
"source": "Publish on",
|
|
1160
|
-
"translation": ""
|
|
1161
|
-
},
|
|
1162
|
-
"blockSchedulerDialogSubmit": {
|
|
1163
|
-
"source": "Save schedule",
|
|
1164
|
-
"translation": ""
|
|
1165
|
-
},
|
|
1166
|
-
"blockSchedulerDialogTitle": {
|
|
1167
|
-
"source": "Manage scheduling",
|
|
1168
|
-
"translation": ""
|
|
1169
|
-
},
|
|
1170
|
-
"blockSchedulerDialogUnpublishOn": {
|
|
1171
|
-
"source": "Unpublish on",
|
|
1172
|
-
"translation": ""
|
|
1173
|
-
},
|
|
1174
|
-
"blockSchedulerMixedDates": {
|
|
1175
|
-
"source": "Selected blocks have different dates: @dates",
|
|
1176
|
-
"translation": ""
|
|
1177
|
-
},
|
|
1178
|
-
"blockSchedulerNoChanges": {
|
|
1179
|
-
"source": "No changes to be applied.",
|
|
1180
|
-
"translation": ""
|
|
1181
|
-
},
|
|
1182
|
-
"blockSchedulerOverride": {
|
|
1183
|
-
"source": "Set date for all",
|
|
1184
|
-
"translation": ""
|
|
1185
|
-
},
|
|
1186
|
-
"blockSchedulerSuccessMessage": {
|
|
1187
|
-
"source": "Successfully updated schedule dates.",
|
|
1188
|
-
"translation": ""
|
|
1189
|
-
},
|
|
1190
|
-
"bundle": {
|
|
1191
|
-
"source": "Bundle",
|
|
1192
|
-
"translation": ""
|
|
1193
|
-
},
|
|
1194
|
-
"bundleSelectorActionsLabel": {
|
|
1195
|
-
"source": "Actions",
|
|
1196
|
-
"translation": ""
|
|
1197
|
-
},
|
|
1198
|
-
"bundleSelectorFragmentsLabel": {
|
|
1199
|
-
"source": "Fragments",
|
|
1200
|
-
"translation": ""
|
|
1201
|
-
},
|
|
1202
|
-
"cancelSelection": {
|
|
1203
|
-
"source": "Cancel selection",
|
|
1204
|
-
"translation": ""
|
|
1205
|
-
},
|
|
1206
|
-
"changelogDialogTitle": {
|
|
1207
|
-
"source": "What's New",
|
|
1208
|
-
"translation": ""
|
|
1209
|
-
},
|
|
1210
|
-
"changelogMenuDescription": {
|
|
1211
|
-
"source": "View recent changes and new features",
|
|
1212
|
-
"translation": ""
|
|
1213
|
-
},
|
|
1214
|
-
"changelogMenuTitle": {
|
|
1215
|
-
"source": "What's New",
|
|
1216
|
-
"translation": ""
|
|
1217
|
-
},
|
|
1218
|
-
"chartsAddColumn": {
|
|
1219
|
-
"source": "Add column",
|
|
1220
|
-
"translation": ""
|
|
1221
|
-
},
|
|
1222
|
-
"chartsAddFootnote": {
|
|
1223
|
-
"source": "Add footnote",
|
|
1224
|
-
"translation": ""
|
|
1225
|
-
},
|
|
1226
|
-
"chartsAddRow": {
|
|
1227
|
-
"source": "Add row",
|
|
1228
|
-
"translation": ""
|
|
1229
|
-
},
|
|
1230
|
-
"chartsAreaCurved": {
|
|
1231
|
-
"source": "Smooth curves",
|
|
1232
|
-
"translation": "Courbes lisses"
|
|
1233
|
-
},
|
|
1234
|
-
"chartsAreaMarkers": {
|
|
1235
|
-
"source": "Show markers",
|
|
1236
|
-
"translation": "Afficher les marqueurs"
|
|
1237
|
-
},
|
|
1238
|
-
"chartsAutoUpdate": {
|
|
1239
|
-
"source": "Auto-update",
|
|
1240
|
-
"translation": ""
|
|
1241
|
-
},
|
|
1242
|
-
"chartsBarHorizontal": {
|
|
1243
|
-
"source": "Horizontal",
|
|
1244
|
-
"translation": "Horizontal"
|
|
1245
|
-
},
|
|
1246
|
-
"chartsBarStacked": {
|
|
1247
|
-
"source": "Stacked",
|
|
1248
|
-
"translation": "Empilé"
|
|
1249
|
-
},
|
|
1250
|
-
"chartsBorderRadius": {
|
|
1251
|
-
"source": "Corner radius",
|
|
1252
|
-
"translation": "Rayon des coins"
|
|
1253
|
-
},
|
|
1254
|
-
"chartsBorderRadiusLarge": {
|
|
1255
|
-
"source": "Large",
|
|
1256
|
-
"translation": "Grand"
|
|
1257
|
-
},
|
|
1258
|
-
"chartsBorderRadiusNone": {
|
|
1259
|
-
"source": "None",
|
|
1260
|
-
"translation": "Aucun"
|
|
1261
|
-
},
|
|
1262
|
-
"chartsBorderRadiusSmall": {
|
|
1263
|
-
"source": "Small",
|
|
1264
|
-
"translation": "Petit"
|
|
1265
|
-
},
|
|
1266
|
-
"chartsData": {
|
|
1267
|
-
"source": "Data",
|
|
1268
|
-
"translation": ""
|
|
1269
|
-
},
|
|
1270
|
-
"chartsDataLabels": {
|
|
1271
|
-
"source": "Data labels",
|
|
1272
|
-
"translation": "Étiquettes de données"
|
|
1273
|
-
},
|
|
1274
|
-
"chartsDonutShowLabels": {
|
|
1275
|
-
"source": "Show labels",
|
|
1276
|
-
"translation": "Afficher les étiquettes"
|
|
1277
|
-
},
|
|
1278
|
-
"chartsDonutShowTotal": {
|
|
1279
|
-
"source": "Show total",
|
|
1280
|
-
"translation": "Afficher le total"
|
|
1281
|
-
},
|
|
1282
|
-
"chartsEditTitle": {
|
|
1283
|
-
"source": "Edit chart",
|
|
1284
|
-
"translation": ""
|
|
1285
|
-
},
|
|
1286
|
-
"chartsFootnotes": {
|
|
1287
|
-
"source": "Footnotes",
|
|
1288
|
-
"translation": ""
|
|
1289
|
-
},
|
|
1290
|
-
"chartsGridLines": {
|
|
1291
|
-
"source": "Grid lines",
|
|
1292
|
-
"translation": "Lignes de grille"
|
|
1293
|
-
},
|
|
1294
|
-
"chartsImportCsv": {
|
|
1295
|
-
"source": "Import CSV",
|
|
1296
|
-
"translation": ""
|
|
1297
|
-
},
|
|
1298
|
-
"chartsLegendPosition": {
|
|
1299
|
-
"source": "Legend position",
|
|
1300
|
-
"translation": "Position de la légende"
|
|
1301
|
-
},
|
|
1302
|
-
"chartsLineCurved": {
|
|
1303
|
-
"source": "Smooth curves",
|
|
1304
|
-
"translation": "Courbes lisses"
|
|
1305
|
-
},
|
|
1306
|
-
"chartsLineMarkers": {
|
|
1307
|
-
"source": "Show markers",
|
|
1308
|
-
"translation": "Afficher les marqueurs"
|
|
1309
|
-
},
|
|
1310
|
-
"chartsOpacityLight": {
|
|
1311
|
-
"source": "Light",
|
|
1312
|
-
"translation": "Léger"
|
|
1313
|
-
},
|
|
1314
|
-
"chartsOpacitySolid": {
|
|
1315
|
-
"source": "Solid",
|
|
1316
|
-
"translation": "Solide"
|
|
1317
|
-
},
|
|
1318
|
-
"chartsOpacityTransparent": {
|
|
1319
|
-
"source": "Transparent",
|
|
1320
|
-
"translation": "Transparent"
|
|
1321
|
-
},
|
|
1322
|
-
"chartsOptionGroupDisplay": {
|
|
1323
|
-
"source": "Display",
|
|
1324
|
-
"translation": ""
|
|
1325
|
-
},
|
|
1326
|
-
"chartsOptionGroupLabels": {
|
|
1327
|
-
"source": "Labels",
|
|
1328
|
-
"translation": ""
|
|
1329
|
-
},
|
|
1330
|
-
"chartsPieShowLabels": {
|
|
1331
|
-
"source": "Show labels",
|
|
1332
|
-
"translation": "Afficher les étiquettes"
|
|
1333
|
-
},
|
|
1334
|
-
"chartsPositionBottom": {
|
|
1335
|
-
"source": "Bottom",
|
|
1336
|
-
"translation": "En bas"
|
|
1337
|
-
},
|
|
1338
|
-
"chartsPositionRight": {
|
|
1339
|
-
"source": "Right",
|
|
1340
|
-
"translation": "À droite"
|
|
1341
|
-
},
|
|
1342
|
-
"chartsPositionTop": {
|
|
1343
|
-
"source": "Top",
|
|
1344
|
-
"translation": "En haut"
|
|
1345
|
-
},
|
|
1346
|
-
"chartsPreview": {
|
|
1347
|
-
"source": "Preview",
|
|
1348
|
-
"translation": ""
|
|
1349
|
-
},
|
|
1350
|
-
"chartsRadarFillOpacity": {
|
|
1351
|
-
"source": "Fill opacity",
|
|
1352
|
-
"translation": "Opacité du remplissage"
|
|
1353
|
-
},
|
|
1354
|
-
"chartsRadarMarkers": {
|
|
1355
|
-
"source": "Show markers",
|
|
1356
|
-
"translation": "Afficher les marqueurs"
|
|
1357
|
-
},
|
|
1358
|
-
"chartsRadialBarShowLabels": {
|
|
1359
|
-
"source": "Show labels",
|
|
1360
|
-
"translation": "Afficher les libellés"
|
|
1361
|
-
},
|
|
1362
|
-
"chartsRadialBarShowTotal": {
|
|
1363
|
-
"source": "Show total",
|
|
1364
|
-
"translation": "Afficher le total"
|
|
1365
|
-
},
|
|
1366
|
-
"chartsRefreshPreview": {
|
|
1367
|
-
"source": "Refresh Preview",
|
|
1368
|
-
"translation": ""
|
|
1369
|
-
},
|
|
1370
|
-
"chartsRotationAuto": {
|
|
1371
|
-
"source": "Auto",
|
|
1372
|
-
"translation": "Automatique"
|
|
1373
|
-
},
|
|
1374
|
-
"chartsStrokeMedium": {
|
|
1375
|
-
"source": "Medium",
|
|
1376
|
-
"translation": "Moyen"
|
|
1377
|
-
},
|
|
1378
|
-
"chartsStrokeThick": {
|
|
1379
|
-
"source": "Thick",
|
|
1380
|
-
"translation": "Épais"
|
|
1381
|
-
},
|
|
1382
|
-
"chartsStrokeThin": {
|
|
1383
|
-
"source": "Thin",
|
|
1384
|
-
"translation": "Fin"
|
|
1385
|
-
},
|
|
1386
|
-
"chartsStrokeWidth": {
|
|
1387
|
-
"source": "Line thickness",
|
|
1388
|
-
"translation": "Épaisseur de ligne"
|
|
1389
|
-
},
|
|
1390
|
-
"chartsTitle": {
|
|
1391
|
-
"source": "Title",
|
|
1392
|
-
"translation": ""
|
|
1393
|
-
},
|
|
1394
|
-
"chartsTypeArea": {
|
|
1395
|
-
"source": "Area",
|
|
1396
|
-
"translation": ""
|
|
1397
|
-
},
|
|
1398
|
-
"chartsTypeBar": {
|
|
1399
|
-
"source": "Bar",
|
|
1400
|
-
"translation": ""
|
|
1401
|
-
},
|
|
1402
|
-
"chartsTypeDonut": {
|
|
1403
|
-
"source": "Donut",
|
|
1404
|
-
"translation": ""
|
|
1405
|
-
},
|
|
1406
|
-
"chartsTypeHeatmap": {
|
|
1407
|
-
"source": "Heatmap",
|
|
1408
|
-
"translation": "Carte de chaleur"
|
|
1409
|
-
},
|
|
1410
|
-
"chartsTypeLine": {
|
|
1411
|
-
"source": "Line",
|
|
1412
|
-
"translation": ""
|
|
1413
|
-
},
|
|
1414
|
-
"chartsTypePie": {
|
|
1415
|
-
"source": "Pie",
|
|
1416
|
-
"translation": ""
|
|
1417
|
-
},
|
|
1418
|
-
"chartsTypeRadar": {
|
|
1419
|
-
"source": "Radar",
|
|
1420
|
-
"translation": "Radar"
|
|
1421
|
-
},
|
|
1422
|
-
"chartsTypeRadialBar": {
|
|
1423
|
-
"source": "Radial Bar",
|
|
1424
|
-
"translation": "Barre radiale"
|
|
1425
|
-
},
|
|
1426
|
-
"chartsXAxisRotation": {
|
|
1427
|
-
"source": "Label rotation",
|
|
1428
|
-
"translation": "Rotation des libellés"
|
|
1429
|
-
},
|
|
1430
|
-
"clearInput": {
|
|
1431
|
-
"source": "Clear input",
|
|
1432
|
-
"translation": ""
|
|
1433
|
-
},
|
|
1434
|
-
"clipboardCopyShortcutHelp": {
|
|
1435
|
-
"source": "Copy selected blocks",
|
|
1436
|
-
"translation": ""
|
|
1437
|
-
},
|
|
1438
|
-
"clipboardNoCommonBundle": {
|
|
1439
|
-
"source": "No common block type for these files.",
|
|
1440
|
-
"translation": ""
|
|
1441
|
-
},
|
|
1442
|
-
"clipboardPasteDescription": {
|
|
1443
|
-
"source": "Paste blocks from clipboard",
|
|
1444
|
-
"translation": ""
|
|
1445
|
-
},
|
|
1446
|
-
"clipboardPasteError": {
|
|
1447
|
-
"source": "Failed to paste:",
|
|
1448
|
-
"translation": ""
|
|
1449
|
-
},
|
|
1450
|
-
"clipboardPasteShortcutHelp": {
|
|
1451
|
-
"source": "Paste text, image or copied blocks",
|
|
1452
|
-
"translation": ""
|
|
1453
|
-
},
|
|
1454
|
-
"clipboardTypeFile": {
|
|
1455
|
-
"source": "File",
|
|
1456
|
-
"translation": ""
|
|
1457
|
-
},
|
|
1458
|
-
"clipboardTypeImage": {
|
|
1459
|
-
"source": "Image",
|
|
1460
|
-
"translation": ""
|
|
1461
|
-
},
|
|
1462
|
-
"clipboardTypeText": {
|
|
1463
|
-
"source": "Text",
|
|
1464
|
-
"translation": ""
|
|
1465
|
-
},
|
|
1466
|
-
"clipboardTypeVideo": {
|
|
1467
|
-
"source": "Video",
|
|
1468
|
-
"translation": ""
|
|
1469
|
-
},
|
|
1470
|
-
"clipboardUnsupportedFileType": {
|
|
1471
|
-
"source": "This file type is not supported.",
|
|
1472
|
-
"translation": ""
|
|
1473
|
-
},
|
|
1474
|
-
"close": {
|
|
1475
|
-
"source": "Close",
|
|
1476
|
-
"translation": "Fermer"
|
|
1477
|
-
},
|
|
1478
|
-
"commandGroup.action": {
|
|
1479
|
-
"source": "Actions",
|
|
1480
|
-
"translation": ""
|
|
1481
|
-
},
|
|
1482
|
-
"commandGroup.add": {
|
|
1483
|
-
"source": "Add new",
|
|
1484
|
-
"translation": ""
|
|
1485
|
-
},
|
|
1486
|
-
"commandGroup.misc": {
|
|
1487
|
-
"source": "Miscellaneous",
|
|
1488
|
-
"translation": ""
|
|
1489
|
-
},
|
|
1490
|
-
"commandGroup.selection": {
|
|
1491
|
-
"source": "Selection",
|
|
1492
|
-
"translation": ""
|
|
1493
|
-
},
|
|
1494
|
-
"commandGroup.ui": {
|
|
1495
|
-
"source": "Interface",
|
|
1496
|
-
"translation": ""
|
|
1497
|
-
},
|
|
1498
|
-
"commandPalette.inputPlaceholder": {
|
|
1499
|
-
"source": "Search commands...",
|
|
1500
|
-
"translation": ""
|
|
1501
|
-
},
|
|
1502
|
-
"commandPaletteOpen": {
|
|
1503
|
-
"source": "Open Command Palette",
|
|
1504
|
-
"translation": ""
|
|
1505
|
-
},
|
|
1506
|
-
"commandPaletteTitle": {
|
|
1507
|
-
"source": "Command Palette",
|
|
1508
|
-
"translation": ""
|
|
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": ""
|
|
1513
|
-
},
|
|
1514
|
-
"commentAdd": {
|
|
1515
|
-
"source": "Add comment",
|
|
1516
|
-
"translation": ""
|
|
1517
|
-
},
|
|
1518
|
-
"commentBodyPlaceholder": {
|
|
1519
|
-
"source": "Add reply",
|
|
1520
|
-
"translation": ""
|
|
1521
|
-
},
|
|
1522
|
-
"commentSave": {
|
|
1523
|
-
"source": "Submit comment",
|
|
1524
|
-
"translation": "Sauvegarder le commentaire"
|
|
1525
|
-
},
|
|
1526
|
-
"comments": {
|
|
1527
|
-
"source": "Comments",
|
|
1528
|
-
"translation": "Commentaires"
|
|
1529
|
-
},
|
|
1530
|
-
"commentsMarkAsResolved": {
|
|
1531
|
-
"source": "Resolve",
|
|
1532
|
-
"translation": ""
|
|
1533
|
-
},
|
|
1534
|
-
"commentsTourText": {
|
|
1535
|
-
"source": "Shows all comments for the current page.",
|
|
1536
|
-
"translation": ""
|
|
1537
|
-
},
|
|
1538
|
-
"complexOptionsSaveError": {
|
|
1539
|
-
"source": "The data could not be saved.",
|
|
1540
|
-
"translation": ""
|
|
1541
|
-
},
|
|
1542
|
-
"conversionsConvertTo": {
|
|
1543
|
-
"source": "Convert to: @bundle",
|
|
1544
|
-
"translation": ""
|
|
1545
|
-
},
|
|
1546
|
-
"copiedToClipboardMessage": {
|
|
1547
|
-
"source": "\"@text\" has been copied to your clipboard",
|
|
1548
|
-
"translation": ""
|
|
1549
|
-
},
|
|
1550
|
-
"copy": {
|
|
1551
|
-
"source": "Copy",
|
|
1552
|
-
"translation": ""
|
|
1553
|
-
},
|
|
1554
|
-
"created": {
|
|
1555
|
-
"source": "Created",
|
|
1556
|
-
"translation": ""
|
|
1557
|
-
},
|
|
1558
|
-
"createdBy": {
|
|
1559
|
-
"source": "Created by",
|
|
1560
|
-
"translation": ""
|
|
1561
|
-
},
|
|
1562
|
-
"dateUpdated": {
|
|
1563
|
-
"source": "Updated",
|
|
1564
|
-
"translation": ""
|
|
1565
|
-
},
|
|
1566
|
-
"deleteButton": {
|
|
1567
|
-
"source": "Delete",
|
|
1568
|
-
"translation": "Supprimer"
|
|
1569
|
-
},
|
|
1570
|
-
"deleteError": {
|
|
1571
|
-
"source": "The block could not be deleted.",
|
|
1572
|
-
"translation": "L'élément n'a pas pu être supprimé."
|
|
1573
|
-
},
|
|
1574
|
-
"deleteNoPermission": {
|
|
1575
|
-
"source": "You do not have permission to delete this block.",
|
|
1576
|
-
"translation": ""
|
|
1577
|
-
},
|
|
1578
|
-
"diffAfter": {
|
|
1579
|
-
"source": "After",
|
|
1580
|
-
"translation": ""
|
|
1581
|
-
},
|
|
1582
|
-
"diffBefore": {
|
|
1583
|
-
"source": "Before",
|
|
1584
|
-
"translation": ""
|
|
1585
|
-
},
|
|
1586
|
-
"diffModeAfter": {
|
|
1587
|
-
"source": "After",
|
|
1588
|
-
"translation": ""
|
|
1589
|
-
},
|
|
1590
|
-
"diffModeInline": {
|
|
1591
|
-
"source": "Inline",
|
|
1592
|
-
"translation": ""
|
|
1593
|
-
},
|
|
1594
|
-
"diffModeLabel": {
|
|
1595
|
-
"source": "Display",
|
|
1596
|
-
"translation": ""
|
|
1597
|
-
},
|
|
1598
|
-
"diffModeSideBySide": {
|
|
1599
|
-
"source": "Both",
|
|
1600
|
-
"translation": ""
|
|
1601
|
-
},
|
|
1602
|
-
"diffSidebarTitle": {
|
|
1603
|
-
"source": "Changes",
|
|
1604
|
-
"translation": ""
|
|
1605
|
-
},
|
|
1606
|
-
"diffSidebarTourText": {
|
|
1607
|
-
"source": "Displays all the changes made during editing.",
|
|
1608
|
-
"translation": ""
|
|
1609
|
-
},
|
|
1610
|
-
"diffStatusAdded": {
|
|
1611
|
-
"source": "Added",
|
|
1612
|
-
"translation": ""
|
|
1613
|
-
},
|
|
1614
|
-
"diffStatusDeleted": {
|
|
1615
|
-
"source": "Deleted",
|
|
1616
|
-
"translation": ""
|
|
1617
|
-
},
|
|
1618
|
-
"diffStatusEdited": {
|
|
1619
|
-
"source": "Edited",
|
|
1620
|
-
"translation": ""
|
|
1621
|
-
},
|
|
1622
|
-
"diffStatusUnchanged": {
|
|
1623
|
-
"source": "Unchanged",
|
|
1624
|
-
"translation": ""
|
|
1625
|
-
},
|
|
1626
|
-
"download": {
|
|
1627
|
-
"source": "Download",
|
|
1628
|
-
"translation": ""
|
|
1629
|
-
},
|
|
1630
|
-
"downloadLogsButton": {
|
|
1631
|
-
"source": "Download Logs",
|
|
1632
|
-
"translation": ""
|
|
1633
|
-
},
|
|
1634
|
-
"downloadWithLabel": {
|
|
1635
|
-
"source": "Download @label",
|
|
1636
|
-
"translation": ""
|
|
1637
|
-
},
|
|
1638
|
-
"draggingOverlaySelectBundle": {
|
|
1639
|
-
"source": "Select block type to create",
|
|
1640
|
-
"translation": ""
|
|
1641
|
-
},
|
|
1642
|
-
"duplicate": {
|
|
1643
|
-
"source": "Duplicate",
|
|
1644
|
-
"translation": "Dupliquer"
|
|
1645
|
-
},
|
|
1646
|
-
"duplicateError": {
|
|
1647
|
-
"source": "The items could not be duplicated.",
|
|
1648
|
-
"translation": "Les éléments n'ont pas pu être dupliqués."
|
|
1649
|
-
},
|
|
1650
|
-
"duplicateFieldFull": {
|
|
1651
|
-
"source": "The field has reached its maximum number of blocks.",
|
|
1652
|
-
"translation": ""
|
|
1653
|
-
},
|
|
1654
|
-
"duplicateNoPermission": {
|
|
1655
|
-
"source": "You do not have permission to duplicate this block.",
|
|
1656
|
-
"translation": ""
|
|
1657
|
-
},
|
|
1658
|
-
"duplicateNotAllowed": {
|
|
1659
|
-
"source": "This block type is not allowed in this field.",
|
|
1660
|
-
"translation": ""
|
|
1661
|
-
},
|
|
1662
|
-
"edit": {
|
|
1663
|
-
"source": "Edit...",
|
|
1664
|
-
"translation": "Modifier"
|
|
1665
|
-
},
|
|
1666
|
-
"editDisabledByDefinition": {
|
|
1667
|
-
"source": "Editing is disabled for this block type.",
|
|
1668
|
-
"translation": ""
|
|
1669
|
-
},
|
|
1670
|
-
"editFormBlockAdd": {
|
|
1671
|
-
"source": "Add @label",
|
|
1672
|
-
"translation": ""
|
|
1673
|
-
},
|
|
1674
|
-
"editFormBlockEdit": {
|
|
1675
|
-
"source": "Edit @label",
|
|
1676
|
-
"translation": ""
|
|
1677
|
-
},
|
|
1678
|
-
"editFormBlockTranslate": {
|
|
1679
|
-
"source": "Translate @label (@language)",
|
|
1680
|
-
"translation": ""
|
|
1681
|
-
},
|
|
1682
|
-
"editFormEntityEdit": {
|
|
1683
|
-
"source": "Edit @label",
|
|
1684
|
-
"translation": ""
|
|
1685
|
-
},
|
|
1686
|
-
"editFormEntityTranslate": {
|
|
1687
|
-
"source": "Translate \"@label\" (@language)",
|
|
1688
|
-
"translation": ""
|
|
1689
|
-
},
|
|
1690
|
-
"editFragmentNotEditable": {
|
|
1691
|
-
"source": "This fragment cannot be edited.",
|
|
1692
|
-
"translation": ""
|
|
1693
|
-
},
|
|
1694
|
-
"editIndicatorLabel": {
|
|
1695
|
-
"source": "Edit blocks",
|
|
1696
|
-
"translation": "Modifier les éléments"
|
|
1697
|
-
},
|
|
1698
|
-
"editIndicatorLabelReview": {
|
|
1699
|
-
"source": "Review changes",
|
|
1700
|
-
"translation": ""
|
|
1701
|
-
},
|
|
1702
|
-
"editIndicatorLabelView": {
|
|
1703
|
-
"source": "View changes",
|
|
1704
|
-
"translation": ""
|
|
1705
|
-
},
|
|
1706
|
-
"editLibraryNotAvailable": {
|
|
1707
|
-
"source": "This reusable block cannot be edited right now.",
|
|
1708
|
-
"translation": ""
|
|
1709
|
-
},
|
|
1710
|
-
"editNoLibraryPermission": {
|
|
1711
|
-
"source": "You do not have permission to edit library items.",
|
|
1712
|
-
"translation": ""
|
|
1713
|
-
},
|
|
1714
|
-
"editNoPermission": {
|
|
1715
|
-
"source": "You do not have permission to edit this block.",
|
|
1716
|
-
"translation": ""
|
|
1717
|
-
},
|
|
1718
|
-
"editableCommandEdit": {
|
|
1719
|
-
"source": "Edit field \"@name\"",
|
|
1720
|
-
"translation": ""
|
|
1721
|
-
},
|
|
1722
|
-
"editableFieldCharCountMax": {
|
|
1723
|
-
"source": "@count of @max characters used",
|
|
1724
|
-
"translation": ""
|
|
1725
|
-
},
|
|
1726
|
-
"editableFieldDiscard": {
|
|
1727
|
-
"source": "Discard",
|
|
1728
|
-
"translation": ""
|
|
1729
|
-
},
|
|
1730
|
-
"editableFieldExitFullscreen": {
|
|
1731
|
-
"source": "Exit Fullscreen",
|
|
1732
|
-
"translation": ""
|
|
1733
|
-
},
|
|
1734
|
-
"editableFieldFullscreen": {
|
|
1735
|
-
"source": "Fullscreen",
|
|
1736
|
-
"translation": ""
|
|
1737
|
-
},
|
|
1738
|
-
"editableFieldTranslate": {
|
|
1739
|
-
"source": "Translate",
|
|
1740
|
-
"translation": ""
|
|
1741
|
-
},
|
|
1742
|
-
"editableFieldTranslateTooltip": {
|
|
1743
|
-
"source": "Automatically translate the current text.",
|
|
1744
|
-
"translation": ""
|
|
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": ""
|
|
1749
|
-
},
|
|
1750
|
-
"entityTitleTourTitle": {
|
|
1751
|
-
"source": "Page",
|
|
1752
|
-
"translation": ""
|
|
1753
|
-
},
|
|
1754
|
-
"errorCapturedMessage": {
|
|
1755
|
-
"source": "Error in \"@label\": @errorMessage",
|
|
1756
|
-
"translation": ""
|
|
1757
|
-
},
|
|
1758
|
-
"errorCapturedMessageDisabled": {
|
|
1759
|
-
"source": "\"@label\" has errored more than 3 times. The feature will be disabled.",
|
|
1760
|
-
"translation": ""
|
|
1761
|
-
},
|
|
1762
|
-
"exitDescription": {
|
|
1763
|
-
"source": "Close editor without publishing",
|
|
1764
|
-
"translation": "Fermer l’éditeur sans publier"
|
|
1765
|
-
},
|
|
1766
|
-
"exitTitle": {
|
|
1767
|
-
"source": "Close",
|
|
1768
|
-
"translation": "Fermer"
|
|
1769
|
-
},
|
|
1770
|
-
"failedToConvert": {
|
|
1771
|
-
"source": "The block could not be converted.",
|
|
1772
|
-
"translation": "L'élément n'a pas pu être converti."
|
|
1773
|
-
},
|
|
1774
|
-
"failedToTransform": {
|
|
1775
|
-
"source": "The action \"@name\" could not be executed.",
|
|
1776
|
-
"translation": "The action \"@name\" could not be executed."
|
|
1777
|
-
},
|
|
1778
|
-
"fatalErrorButton": {
|
|
1779
|
-
"source": "Continue anyway...",
|
|
1780
|
-
"translation": ""
|
|
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": ""
|
|
1785
|
-
},
|
|
1786
|
-
"fatalErrorTitle": {
|
|
1787
|
-
"source": "blökkli has stopped working",
|
|
1788
|
-
"translation": ""
|
|
1789
|
-
},
|
|
1790
|
-
"featureHelpShortcuts": {
|
|
1791
|
-
"source": "Shortcuts",
|
|
1792
|
-
"translation": ""
|
|
1793
|
-
},
|
|
1794
|
-
"featureHelpTitle": {
|
|
1795
|
-
"source": "Help",
|
|
1796
|
-
"translation": ""
|
|
1797
|
-
},
|
|
1798
|
-
"feature_add-list_description": {
|
|
1799
|
-
"source": "Provides the container to render a list of blocks to add or add actions.",
|
|
1800
|
-
"translation": "Fournit le conteneur pour afficher une liste de blocs à ajouter ou d'actions."
|
|
1801
|
-
},
|
|
1802
|
-
"feature_add-list_label": {
|
|
1803
|
-
"source": "Add List",
|
|
1804
|
-
"translation": "Liste d'ajout"
|
|
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": ""
|
|
1809
|
-
},
|
|
1810
|
-
"feature_add-list_setting_hideDisabledBlocks_label": {
|
|
1811
|
-
"source": "Hide blocks that can't be added",
|
|
1812
|
-
"translation": ""
|
|
1813
|
-
},
|
|
1814
|
-
"feature_agent_description": {
|
|
1815
|
-
"source": "Chat with an AI assistant to edit page content.",
|
|
1816
|
-
"translation": ""
|
|
1817
|
-
},
|
|
1818
|
-
"feature_agent_label": {
|
|
1819
|
-
"source": "AI Agent",
|
|
1820
|
-
"translation": ""
|
|
1821
|
-
},
|
|
1822
|
-
"feature_analyze_description": {
|
|
1823
|
-
"source": "Analyze blocks and page for SEO, accessibility, etc.",
|
|
1824
|
-
"translation": "Analyse les blocs et la page pour le SEO, l'accessibilité, etc."
|
|
1825
|
-
},
|
|
1826
|
-
"feature_analyze_label": {
|
|
1827
|
-
"source": "Analyze",
|
|
1828
|
-
"translation": "Analyser"
|
|
1829
|
-
},
|
|
1830
|
-
"feature_anchors_description": {
|
|
1831
|
-
"source": "Displays indicators for blocks with anchor IDs",
|
|
1832
|
-
"translation": "Affiche des indicateurs pour les blocs avec des ID d'ancre"
|
|
1833
|
-
},
|
|
1834
|
-
"feature_anchors_label": {
|
|
1835
|
-
"source": "Anchors",
|
|
1836
|
-
"translation": "Ancres"
|
|
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": "Enveloppe toute la page dans une zone de travail qui peut être zoomée et déplacée avec la souris."
|
|
1841
|
-
},
|
|
1842
|
-
"feature_artboard_label": {
|
|
1843
|
-
"source": "Artboard",
|
|
1844
|
-
"translation": "Zone de travail"
|
|
1845
|
-
},
|
|
1846
|
-
"feature_artboard_setting_momentum_description": {
|
|
1847
|
-
"source": "Applies smooth animations when scrolling or zooming the artboard.",
|
|
1848
|
-
"translation": "Applique des animations fluides lors du défilement ou du zoom de la zone de travail."
|
|
1849
|
-
},
|
|
1850
|
-
"feature_artboard_setting_momentum_label": {
|
|
1851
|
-
"source": "Use smooth scrolling",
|
|
1852
|
-
"translation": "Utiliser le défilement fluide"
|
|
1853
|
-
},
|
|
1854
|
-
"feature_artboard_setting_persist_description": {
|
|
1855
|
-
"source": "Stores and restores the last position and zoom factor of the artboard.",
|
|
1856
|
-
"translation": "Stocke et restaure la dernière position et le facteur de zoom de la zone de travail."
|
|
1857
|
-
},
|
|
1858
|
-
"feature_artboard_setting_persist_label": {
|
|
1859
|
-
"source": "Persist position and zoom",
|
|
1860
|
-
"translation": "Conserver la position et le zoom"
|
|
1861
|
-
},
|
|
1862
|
-
"feature_artboard_setting_scrollSpeed_label": {
|
|
1863
|
-
"source": "Artboard scroll speed",
|
|
1864
|
-
"translation": "Vitesse de défilement de la zone de travail"
|
|
1865
|
-
},
|
|
1866
|
-
"feature_block-scheduler_description": {
|
|
1867
|
-
"source": "Adds support for scheduling blocks.",
|
|
1868
|
-
"translation": ""
|
|
1869
|
-
},
|
|
1870
|
-
"feature_block-scheduler_label": {
|
|
1871
|
-
"source": "Block Scheduler",
|
|
1872
|
-
"translation": ""
|
|
1873
|
-
},
|
|
1874
|
-
"feature_breadcrumbs_description": {
|
|
1875
|
-
"source": "Provides a breadcrumb of the selection.",
|
|
1876
|
-
"translation": ""
|
|
1877
|
-
},
|
|
1878
|
-
"feature_breadcrumbs_label": {
|
|
1879
|
-
"source": "Breadcrumbs",
|
|
1880
|
-
"translation": ""
|
|
1881
|
-
},
|
|
1882
|
-
"feature_changelog_description": {
|
|
1883
|
-
"source": "Provides a menu button to display a changelog of what's new.",
|
|
1884
|
-
"translation": ""
|
|
1885
|
-
},
|
|
1886
|
-
"feature_changelog_label": {
|
|
1887
|
-
"source": "Changelog",
|
|
1888
|
-
"translation": ""
|
|
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": "Fournit l'intégration du presse-papiers pour copier/coller des blocs existants ou coller du contenu pris en charge comme du texte ou des images."
|
|
1893
|
-
},
|
|
1894
|
-
"feature_clipboard_label": {
|
|
1895
|
-
"source": "Clipboard",
|
|
1896
|
-
"translation": "Presse-papiers"
|
|
1897
|
-
},
|
|
1898
|
-
"feature_command-palette_description": {
|
|
1899
|
-
"source": "Provides a command palette with search to access most UI features with a keyboard.",
|
|
1900
|
-
"translation": "Fournit une palette de commandes avec recherche pour accéder à la plupart des fonctionnalités de l'interface avec le clavier."
|
|
1901
|
-
},
|
|
1902
|
-
"feature_command-palette_label": {
|
|
1903
|
-
"source": "Command Palette",
|
|
1904
|
-
"translation": "Palette de commandes"
|
|
1905
|
-
},
|
|
1906
|
-
"feature_comments_description": {
|
|
1907
|
-
"source": "Provides comment functionality for blocks.",
|
|
1908
|
-
"translation": "Fournit la fonctionnalité de commentaire pour les blocs."
|
|
1909
|
-
},
|
|
1910
|
-
"feature_comments_label": {
|
|
1911
|
-
"source": "Comments",
|
|
1912
|
-
"translation": "Commentaires"
|
|
1913
|
-
},
|
|
1914
|
-
"feature_complex-options_description": {
|
|
1915
|
-
"source": "Edit complex option types such as charts.",
|
|
1916
|
-
"translation": ""
|
|
1917
|
-
},
|
|
1918
|
-
"feature_complex-options_label": {
|
|
1919
|
-
"source": "Complex Options",
|
|
1920
|
-
"translation": ""
|
|
1921
|
-
},
|
|
1922
|
-
"feature_conversions_description": {
|
|
1923
|
-
"source": "Provides block actions to convert one or more blocks to a different bundle.",
|
|
1924
|
-
"translation": "Fournit des actions de bloc pour convertir un ou plusieurs blocs vers un type différent."
|
|
1925
|
-
},
|
|
1926
|
-
"feature_conversions_label": {
|
|
1927
|
-
"source": "Conversions",
|
|
1928
|
-
"translation": "Conversions"
|
|
1929
|
-
},
|
|
1930
|
-
"feature_debug_description": {
|
|
1931
|
-
"source": "Provides debugging functionality.",
|
|
1932
|
-
"translation": "Fournit la fonctionnalité de débogage."
|
|
1933
|
-
},
|
|
1934
|
-
"feature_debug_label": {
|
|
1935
|
-
"source": "Debug",
|
|
1936
|
-
"translation": "Débogage"
|
|
1937
|
-
},
|
|
1938
|
-
"feature_delete_description": {
|
|
1939
|
-
"source": "Provides an action to delete one or more blocks.",
|
|
1940
|
-
"translation": "Fournit une action pour supprimer un ou plusieurs blocs."
|
|
1941
|
-
},
|
|
1942
|
-
"feature_delete_label": {
|
|
1943
|
-
"source": "Delete",
|
|
1944
|
-
"translation": "Supprimer"
|
|
1945
|
-
},
|
|
1946
|
-
"feature_dev-mode_description": {
|
|
1947
|
-
"source": "Feature enabled in development mode.",
|
|
1948
|
-
"translation": ""
|
|
1949
|
-
},
|
|
1950
|
-
"feature_dev-mode_label": {
|
|
1951
|
-
"source": "Dev Mode",
|
|
1952
|
-
"translation": ""
|
|
1953
|
-
},
|
|
1954
|
-
"feature_diff_description": {
|
|
1955
|
-
"source": "Displays a diff of all changes in the edit state.",
|
|
1956
|
-
"translation": "Affiche un différentiel de toutes les modifications dans l'état d'édition."
|
|
1957
|
-
},
|
|
1958
|
-
"feature_diff_label": {
|
|
1959
|
-
"source": "Diff",
|
|
1960
|
-
"translation": "Différences"
|
|
1961
|
-
},
|
|
1962
|
-
"feature_dragging-overlay_description": {
|
|
1963
|
-
"source": "Renders an overlay when dragging or placing a block.",
|
|
1964
|
-
"translation": "Affiche une superposition lors du glissement ou du placement d'un bloc."
|
|
1965
|
-
},
|
|
1966
|
-
"feature_dragging-overlay_label": {
|
|
1967
|
-
"source": "Dragging Overlay",
|
|
1968
|
-
"translation": "Superposition de glissement"
|
|
1969
|
-
},
|
|
1970
|
-
"feature_duplicate_description": {
|
|
1971
|
-
"source": "Provides an action to duplicate one or more blocks in place.",
|
|
1972
|
-
"translation": "Fournit une action pour dupliquer un ou plusieurs blocs sur place."
|
|
1973
|
-
},
|
|
1974
|
-
"feature_duplicate_label": {
|
|
1975
|
-
"source": "Duplicate",
|
|
1976
|
-
"translation": "Dupliquer"
|
|
1977
|
-
},
|
|
1978
|
-
"feature_edit-form_description": {
|
|
1979
|
-
"source": "Listens to edit events and renders an iframe containing the edit form.",
|
|
1980
|
-
"translation": "Écoute les événements d'édition et affiche une iframe contenant le formulaire d'édition."
|
|
1981
|
-
},
|
|
1982
|
-
"feature_edit-form_label": {
|
|
1983
|
-
"source": "Edit Form",
|
|
1984
|
-
"translation": "Formulaire d'édition"
|
|
1985
|
-
},
|
|
1986
|
-
"feature_edit_description": {
|
|
1987
|
-
"source": "Provides an action to edit a block.",
|
|
1988
|
-
"translation": "Fournit une action pour modifier un bloc."
|
|
1989
|
-
},
|
|
1990
|
-
"feature_edit_label": {
|
|
1991
|
-
"source": "Edit",
|
|
1992
|
-
"translation": "Modifier"
|
|
1993
|
-
},
|
|
1994
|
-
"feature_editable-field_description": {
|
|
1995
|
-
"source": "Implements a form overlay to edit a single field of a block.",
|
|
1996
|
-
"translation": "Implémente une superposition de formulaire pour modifier un seul champ d'un bloc."
|
|
1997
|
-
},
|
|
1998
|
-
"feature_editable-field_label": {
|
|
1999
|
-
"source": "Editable Field",
|
|
2000
|
-
"translation": "Champ modifiable"
|
|
2001
|
-
},
|
|
2002
|
-
"feature_editable-mask_description": {
|
|
2003
|
-
"source": "Provides a view option to hide non-editable parts of the page.",
|
|
2004
|
-
"translation": "Fournit une option d'affichage pour masquer les parties non modifiables de la page."
|
|
2005
|
-
},
|
|
2006
|
-
"feature_editable-mask_label": {
|
|
2007
|
-
"source": "Editable Mask",
|
|
2008
|
-
"translation": "Masque modifiable"
|
|
2009
|
-
},
|
|
2010
|
-
"feature_entity-title_description": {
|
|
2011
|
-
"source": "Renders the title and status of the page entity.",
|
|
2012
|
-
"translation": "Affiche le titre et le statut de l'entité de page."
|
|
2013
|
-
},
|
|
2014
|
-
"feature_entity-title_label": {
|
|
2015
|
-
"source": "Entity Title",
|
|
2016
|
-
"translation": "Titre de l'entité"
|
|
2017
|
-
},
|
|
2018
|
-
"feature_exit_description": {
|
|
2019
|
-
"source": "Provides a menu button to exit the editor without saving.",
|
|
2020
|
-
"translation": "Fournit un bouton de menu pour quitter l'éditeur sans sauvegarder."
|
|
2021
|
-
},
|
|
2022
|
-
"feature_exit_label": {
|
|
2023
|
-
"source": "Exit",
|
|
2024
|
-
"translation": "Quitter"
|
|
2025
|
-
},
|
|
2026
|
-
"feature_fragments_description": {
|
|
2027
|
-
"source": "Provides way to add content fragments defined by the frontend.",
|
|
2028
|
-
"translation": "Permet d'ajouter des fragments de contenu définis par le frontend."
|
|
2029
|
-
},
|
|
2030
|
-
"feature_fragments_label": {
|
|
2031
|
-
"source": "Fragments",
|
|
2032
|
-
"translation": "Fragments"
|
|
2033
|
-
},
|
|
2034
|
-
"feature_grid_description": {
|
|
2035
|
-
"source": "Provides a view option to render a grid.",
|
|
2036
|
-
"translation": "Fournit une option d'affichage pour afficher une grille."
|
|
2037
|
-
},
|
|
2038
|
-
"feature_grid_label": {
|
|
2039
|
-
"source": "Grid",
|
|
2040
|
-
"translation": "Grille"
|
|
2041
|
-
},
|
|
2042
|
-
"feature_help_description": {
|
|
2043
|
-
"source": "Provides a sidebar pane with helpful information on how to use blokkli.",
|
|
2044
|
-
"translation": "Fournit un panneau d'encadré avec des informations utiles sur l'utilisation de blökkli."
|
|
2045
|
-
},
|
|
2046
|
-
"feature_help_label": {
|
|
2047
|
-
"source": "Help",
|
|
2048
|
-
"translation": "Aide"
|
|
2049
|
-
},
|
|
2050
|
-
"feature_highlights_description": {
|
|
2051
|
-
"source": "Renders persistent highlights for blocks with issues or outdated translations.",
|
|
2052
|
-
"translation": ""
|
|
2053
|
-
},
|
|
2054
|
-
"feature_highlights_label": {
|
|
2055
|
-
"source": "Highlights",
|
|
2056
|
-
"translation": ""
|
|
2057
|
-
},
|
|
2058
|
-
"feature_history_description": {
|
|
2059
|
-
"source": "Implements support for history features (undo, redo, list of mutations).",
|
|
2060
|
-
"translation": "Implémente le support des fonctionnalités d'historique (annuler, rétablir, liste des mutations)."
|
|
2061
|
-
},
|
|
2062
|
-
"feature_history_label": {
|
|
2063
|
-
"source": "History",
|
|
2064
|
-
"translation": "Historique"
|
|
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": "Lorsque activé, vous pouvez utiliser les boutons arrière/avant de votre souris pour annuler et rétablir."
|
|
2069
|
-
},
|
|
2070
|
-
"feature_history_setting_useMouseButtons_label": {
|
|
2071
|
-
"source": "Use mouse buttons for undo/redo",
|
|
2072
|
-
"translation": "Utiliser les boutons de la souris pour annuler/rétablir"
|
|
2073
|
-
},
|
|
2074
|
-
"feature_hover_description": {
|
|
2075
|
-
"source": "Renders a border around blocks that are currently being hovered.",
|
|
2076
|
-
"translation": ""
|
|
2077
|
-
},
|
|
2078
|
-
"feature_hover_label": {
|
|
2079
|
-
"source": "Hover",
|
|
2080
|
-
"translation": ""
|
|
2081
|
-
},
|
|
2082
|
-
"feature_import-existing_description": {
|
|
2083
|
-
"source": "Implements a menu action that renders a dialog to import blocks from another entity.",
|
|
2084
|
-
"translation": "Implémente une action de menu qui affiche une boîte de dialogue pour importer des blocs depuis une autre entité."
|
|
2085
|
-
},
|
|
2086
|
-
"feature_import-existing_label": {
|
|
2087
|
-
"source": "Import existing content",
|
|
2088
|
-
"translation": "Importer du contenu existant"
|
|
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": "Affiche la boîte de dialogue d'importation au démarrage de blökkli si la page est vide."
|
|
2093
|
-
},
|
|
2094
|
-
"feature_import-existing_setting_showDialogWhenEmpty_label": {
|
|
2095
|
-
"source": "Show import dialog at start",
|
|
2096
|
-
"translation": "Afficher la boîte de dialogue d'importation au démarrage"
|
|
2097
|
-
},
|
|
2098
|
-
"feature_library_description": {
|
|
2099
|
-
"source": "Implements support for a block library to manage reusable blocks.",
|
|
2100
|
-
"translation": "Implémente le support d'une bibliothèque de blocs pour gérer les blocs réutilisables."
|
|
2101
|
-
},
|
|
2102
|
-
"feature_library_label": {
|
|
2103
|
-
"source": "Library",
|
|
2104
|
-
"translation": "Bibliothèque"
|
|
2105
|
-
},
|
|
2106
|
-
"feature_media-library_description": {
|
|
2107
|
-
"source": "Implements a media library to easily drag and drop media like images or videos.",
|
|
2108
|
-
"translation": "Implémente une bibliothèque de médias pour glisser-déposer facilement des médias comme des images ou des vidéos."
|
|
2109
|
-
},
|
|
2110
|
-
"feature_media-library_label": {
|
|
2111
|
-
"source": "Media Library",
|
|
2112
|
-
"translation": "Bibliothèque de médias"
|
|
2113
|
-
},
|
|
2114
|
-
"feature_multi-select_description": {
|
|
2115
|
-
"source": "Implements support for selecting multiple blocks using a select rectangle.",
|
|
2116
|
-
"translation": "Implémente le support de la sélection de plusieurs blocs à l'aide d'un rectangle de sélection."
|
|
2117
|
-
},
|
|
2118
|
-
"feature_multi-select_label": {
|
|
2119
|
-
"source": "Multiselect",
|
|
2120
|
-
"translation": "Sélection multiple"
|
|
2121
|
-
},
|
|
2122
|
-
"feature_options_description": {
|
|
2123
|
-
"source": "Renders the options form for one or more blocks.",
|
|
2124
|
-
"translation": "Affiche le formulaire d'options pour un ou plusieurs blocs."
|
|
2125
|
-
},
|
|
2126
|
-
"feature_options_label": {
|
|
2127
|
-
"source": "Options",
|
|
2128
|
-
"translation": "Options"
|
|
2129
|
-
},
|
|
2130
|
-
"feature_ownership_description": {
|
|
2131
|
-
"source": "Renders a large button to take ownership of the current edit state.",
|
|
2132
|
-
"translation": "Affiche un grand bouton pour prendre la propriété de l'état d'édition actuel."
|
|
2133
|
-
},
|
|
2134
|
-
"feature_ownership_label": {
|
|
2135
|
-
"source": "Ownership",
|
|
2136
|
-
"translation": "Propriété"
|
|
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": "Fournit un bouton pour ouvrir une boîte de dialogue avec un code QR pour prévisualiser la page sur un smartphone."
|
|
2141
|
-
},
|
|
2142
|
-
"feature_preview-grant_label": {
|
|
2143
|
-
"source": "Preview Grant",
|
|
2144
|
-
"translation": "Accès à l'aperçu"
|
|
2145
|
-
},
|
|
2146
|
-
"feature_preview_description": {
|
|
2147
|
-
"source": "Provides a button to open a preview in a new window.",
|
|
2148
|
-
"translation": "Fournit un bouton pour ouvrir un aperçu dans une nouvelle fenêtre."
|
|
2149
|
-
},
|
|
2150
|
-
"feature_preview_label": {
|
|
2151
|
-
"source": "Preview",
|
|
2152
|
-
"translation": "Aperçu"
|
|
2153
|
-
},
|
|
2154
|
-
"feature_proxy_view_description": {
|
|
2155
|
-
"source": "Displays the blocks as a structure in the preview.",
|
|
2156
|
-
"translation": "Affiche les blocs sous forme de structure dans l'aperçu."
|
|
2157
|
-
},
|
|
2158
|
-
"feature_proxy_view_label": {
|
|
2159
|
-
"source": "Proxy View",
|
|
2160
|
-
"translation": "Vue structurée"
|
|
2161
|
-
},
|
|
2162
|
-
"feature_publish_description": {
|
|
2163
|
-
"source": "Provides a menu button to publish the changes of the current entity.",
|
|
2164
|
-
"translation": "Fournit un bouton de menu pour publier les modifications de l'entité actuelle."
|
|
2165
|
-
},
|
|
2166
|
-
"feature_publish_label": {
|
|
2167
|
-
"source": "Publish",
|
|
2168
|
-
"translation": "Publier"
|
|
2169
|
-
},
|
|
2170
|
-
"feature_publish_setting_closeAfterPublish_description": {
|
|
2171
|
-
"source": "Immediately closes the editor after successfully publishing or saving.",
|
|
2172
|
-
"translation": "Ferme immédiatement l'éditeur après une publication ou une sauvegarde réussie."
|
|
2173
|
-
},
|
|
2174
|
-
"feature_publish_setting_closeAfterPublish_label": {
|
|
2175
|
-
"source": "Close editor after publishing",
|
|
2176
|
-
"translation": "Fermer l'éditeur après publication"
|
|
2177
|
-
},
|
|
2178
|
-
"feature_referenced-entities_description": {
|
|
2179
|
-
"source": "Renders referenced entities of blocks.",
|
|
2180
|
-
"translation": ""
|
|
2181
|
-
},
|
|
2182
|
-
"feature_referenced-entities_label": {
|
|
2183
|
-
"source": "Referenced Entities",
|
|
2184
|
-
"translation": ""
|
|
2185
|
-
},
|
|
2186
|
-
"feature_responsive-preview_description": {
|
|
2187
|
-
"source": "Provides a responsive preview of the current edit state in an iframe.",
|
|
2188
|
-
"translation": "Fournit un aperçu responsive de l'état d'édition actuel dans une iframe."
|
|
2189
|
-
},
|
|
2190
|
-
"feature_responsive-preview_label": {
|
|
2191
|
-
"source": "Responsive Preview",
|
|
2192
|
-
"translation": "Aperçu responsive"
|
|
2193
|
-
},
|
|
2194
|
-
"feature_revert_description": {
|
|
2195
|
-
"source": "Provides a menu button to revert all changes done on the current entity.",
|
|
2196
|
-
"translation": "Fournit un bouton de menu pour annuler toutes les modifications effectuées sur l'entité actuelle."
|
|
2197
|
-
},
|
|
2198
|
-
"feature_revert_label": {
|
|
2199
|
-
"source": "Revert",
|
|
2200
|
-
"translation": "Annuler"
|
|
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": "Fournit une superposition avec raccourci pour rechercher des blocs sur la page actuelle ou du contenu existant à ajouter en tant que blocs."
|
|
2205
|
-
},
|
|
2206
|
-
"feature_search_label": {
|
|
2207
|
-
"source": "Search",
|
|
2208
|
-
"translation": "Rechercher"
|
|
2209
|
-
},
|
|
2210
|
-
"feature_selection_description": {
|
|
2211
|
-
"source": "Renders an overlay that highlights the selected blocks.",
|
|
2212
|
-
"translation": "Affiche une superposition qui met en évidence les blocs sélectionnés."
|
|
2213
|
-
},
|
|
2214
|
-
"feature_selection_label": {
|
|
2215
|
-
"source": "Selection",
|
|
2216
|
-
"translation": "Sélection"
|
|
2217
|
-
},
|
|
2218
|
-
"feature_settings_description": {
|
|
2219
|
-
"source": "Provides a menu button to display a settings dialog.",
|
|
2220
|
-
"translation": "Fournit un bouton de menu pour afficher une boîte de dialogue de paramètres."
|
|
2221
|
-
},
|
|
2222
|
-
"feature_settings_label": {
|
|
2223
|
-
"source": "Settings",
|
|
2224
|
-
"translation": "Paramètres"
|
|
2225
|
-
},
|
|
2226
|
-
"feature_settings_setting_lowPerformanceMode_description": {
|
|
2227
|
-
"source": "Reduces the animations and interactivity to a minimum for devices with low performance.",
|
|
2228
|
-
"translation": "Réduit les animations et l'interactivité au minimum pour les appareils avec de faibles performances."
|
|
2229
|
-
},
|
|
2230
|
-
"feature_settings_setting_lowPerformanceMode_label": {
|
|
2231
|
-
"source": "Enable low performance mode",
|
|
2232
|
-
"translation": "Activer le mode basse performance"
|
|
2233
|
-
},
|
|
2234
|
-
"feature_settings_setting_resetAllSettings_label": {
|
|
2235
|
-
"source": "Reset all settings",
|
|
2236
|
-
"translation": "Réinitialiser tous les paramètres"
|
|
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": "Anime les éléments de l'interface comme les boîtes de dialogue ou les tiroirs, ou les interactions comme le glisser-déposer ou les changements de défilement."
|
|
2241
|
-
},
|
|
2242
|
-
"feature_settings_setting_useAnimations_label": {
|
|
2243
|
-
"source": "Use animations",
|
|
2244
|
-
"translation": "Utiliser les animations"
|
|
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": "Fournit un bouton d'encadré pour afficher une liste structurée de tous les blocs sur la page actuelle."
|
|
2249
|
-
},
|
|
2250
|
-
"feature_structure_label": {
|
|
2251
|
-
"source": "Structure",
|
|
2252
|
-
"translation": "Structure"
|
|
2253
|
-
},
|
|
2254
|
-
"feature_swap_description": {
|
|
2255
|
-
"source": "Provides an action to swap two selected blocks.",
|
|
2256
|
-
"translation": ""
|
|
2257
|
-
},
|
|
2258
|
-
"feature_swap_label": {
|
|
2259
|
-
"source": "Swap",
|
|
2260
|
-
"translation": ""
|
|
2261
|
-
},
|
|
2262
|
-
"feature_templates_description": {
|
|
2263
|
-
"source": "Add blocks from templates.",
|
|
2264
|
-
"translation": ""
|
|
2265
|
-
},
|
|
2266
|
-
"feature_templates_label": {
|
|
2267
|
-
"source": "Templates",
|
|
2268
|
-
"translation": ""
|
|
2269
|
-
},
|
|
2270
|
-
"feature_theme_description": {
|
|
2271
|
-
"source": "Implements a theme editor.",
|
|
2272
|
-
"translation": "Implémente un éditeur de thème."
|
|
2273
|
-
},
|
|
2274
|
-
"feature_theme_label": {
|
|
2275
|
-
"source": "Theme",
|
|
2276
|
-
"translation": "Thème"
|
|
2277
|
-
},
|
|
2278
|
-
"feature_touch-action-bar_description": {
|
|
2279
|
-
"source": "Renders a button on touch devices to cancel touch actions.",
|
|
2280
|
-
"translation": "Affiche un bouton sur les appareils tactiles pour annuler les actions tactiles."
|
|
2281
|
-
},
|
|
2282
|
-
"feature_touch-action-bar_label": {
|
|
2283
|
-
"source": "Touch Action Bar",
|
|
2284
|
-
"translation": "Barre d'actions tactiles"
|
|
2285
|
-
},
|
|
2286
|
-
"feature_tour_description": {
|
|
2287
|
-
"source": "Provides a tour overlay to get to know the editor.",
|
|
2288
|
-
"translation": "Fournit une superposition de visite guidée pour découvrir l'éditeur."
|
|
2289
|
-
},
|
|
2290
|
-
"feature_tour_label": {
|
|
2291
|
-
"source": "Tour",
|
|
2292
|
-
"translation": "Visite guidée"
|
|
2293
|
-
},
|
|
2294
|
-
"feature_transform_description": {
|
|
2295
|
-
"source": "Provides integration for block transform plugins.",
|
|
2296
|
-
"translation": "Fournit l'intégration pour les plugins de transformation de blocs."
|
|
2297
|
-
},
|
|
2298
|
-
"feature_transform_label": {
|
|
2299
|
-
"source": "Transform",
|
|
2300
|
-
"translation": "Transformer"
|
|
2301
|
-
},
|
|
2302
|
-
"feature_translations_description": {
|
|
2303
|
-
"source": "Adds support for block translations.",
|
|
2304
|
-
"translation": "Ajoute le support des traductions de blocs."
|
|
2305
|
-
},
|
|
2306
|
-
"feature_translations_label": {
|
|
2307
|
-
"source": "Translations",
|
|
2308
|
-
"translation": "Traductions"
|
|
2309
|
-
},
|
|
2310
|
-
"feature_validations_description": {
|
|
2311
|
-
"source": "Provides a sidebar pane to render validations.",
|
|
2312
|
-
"translation": "Fournit un panneau d'encadré pour afficher les validations."
|
|
2313
|
-
},
|
|
2314
|
-
"feature_validations_label": {
|
|
2315
|
-
"source": "Validations",
|
|
2316
|
-
"translation": "Validations"
|
|
2317
|
-
},
|
|
2318
|
-
"feature_workspace_description": {
|
|
2319
|
-
"source": "Allows users to switch between edit states.",
|
|
2320
|
-
"translation": ""
|
|
2321
|
-
},
|
|
2322
|
-
"feature_workspace_label": {
|
|
2323
|
-
"source": "Workspace",
|
|
2324
|
-
"translation": ""
|
|
2325
|
-
},
|
|
2326
|
-
"fieldIsRequired": {
|
|
2327
|
-
"source": "This field is required",
|
|
2328
|
-
"translation": "Ce champ est obligatoire"
|
|
2329
|
-
},
|
|
2330
|
-
"filterSelectNoResults": {
|
|
2331
|
-
"source": "No results",
|
|
2332
|
-
"translation": ""
|
|
2333
|
-
},
|
|
2334
|
-
"filterSelectSearch": {
|
|
2335
|
-
"source": "Search...",
|
|
2336
|
-
"translation": ""
|
|
2337
|
-
},
|
|
2338
|
-
"formSaveNotEditStateInfo": {
|
|
2339
|
-
"source": "Saving this form applies changes immediately — they take effect without publishing the current blökkli page.",
|
|
2340
|
-
"translation": ""
|
|
2341
|
-
},
|
|
2342
|
-
"fragmentsAddFragmentAction": {
|
|
2343
|
-
"source": "Fragment",
|
|
2344
|
-
"translation": ""
|
|
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": ""
|
|
2349
|
-
},
|
|
2350
|
-
"fragmentsPlaceDialogLead": {
|
|
2351
|
-
"source": "Select a block fragment to add to the page.",
|
|
2352
|
-
"translation": ""
|
|
2353
|
-
},
|
|
2354
|
-
"fragmentsPlaceDialogSearchLabel": {
|
|
2355
|
-
"source": "Filter fragments",
|
|
2356
|
-
"translation": ""
|
|
2357
|
-
},
|
|
2358
|
-
"fragmentsPlaceDialogSearchPlaceholder": {
|
|
2359
|
-
"source": "Search fragments",
|
|
2360
|
-
"translation": ""
|
|
2361
|
-
},
|
|
2362
|
-
"fragmentsPlaceDialogSubmitButton": {
|
|
2363
|
-
"source": "Add selected fragment",
|
|
2364
|
-
"translation": ""
|
|
2365
|
-
},
|
|
2366
|
-
"fragmentsPlaceDialogTitle": {
|
|
2367
|
-
"source": "Add fragment block",
|
|
2368
|
-
"translation": ""
|
|
2369
|
-
},
|
|
2370
|
-
"gridHide": {
|
|
2371
|
-
"source": "Hide grid",
|
|
2372
|
-
"translation": "Masquer la grille"
|
|
2373
|
-
},
|
|
2374
|
-
"gridShow": {
|
|
2375
|
-
"source": "Show grid",
|
|
2376
|
-
"translation": "Afficher la grille"
|
|
2377
|
-
},
|
|
2378
|
-
"gridToggle": {
|
|
2379
|
-
"source": "Toggle grid",
|
|
2380
|
-
"translation": ""
|
|
2381
|
-
},
|
|
2382
|
-
"gridTourText": {
|
|
2383
|
-
"source": "Display a layout grid overlay on top of the page.",
|
|
2384
|
-
"translation": ""
|
|
2385
|
-
},
|
|
2386
|
-
"helpTourText": {
|
|
2387
|
-
"source": "Shows a list of available shortcuts.",
|
|
2388
|
-
"translation": ""
|
|
2389
|
-
},
|
|
2390
|
-
"history": {
|
|
2391
|
-
"source": "History",
|
|
2392
|
-
"translation": "Historique"
|
|
2393
|
-
},
|
|
2394
|
-
"historyCurrentRevision": {
|
|
2395
|
-
"source": "Current revision",
|
|
2396
|
-
"translation": "Révision actuelle"
|
|
2397
|
-
},
|
|
2398
|
-
"historyEmpty": {
|
|
2399
|
-
"source": "There are now changes yet.",
|
|
2400
|
-
"translation": ""
|
|
2401
|
-
},
|
|
2402
|
-
"historyRedo": {
|
|
2403
|
-
"source": "Redo",
|
|
2404
|
-
"translation": ""
|
|
2405
|
-
},
|
|
2406
|
-
"historyRedoTourText": {
|
|
2407
|
-
"source": "Redo the previous change.",
|
|
2408
|
-
"translation": ""
|
|
2409
|
-
},
|
|
2410
|
-
"historyShowMore": {
|
|
2411
|
-
"source": "Show @count more",
|
|
2412
|
-
"translation": "@count autres à afficher"
|
|
2413
|
-
},
|
|
2414
|
-
"historyTourText": {
|
|
2415
|
-
"source": "See a list of all changes made so far and switch back and forth between changes.",
|
|
2416
|
-
"translation": ""
|
|
2417
|
-
},
|
|
2418
|
-
"historyUndo": {
|
|
2419
|
-
"source": "Undo",
|
|
2420
|
-
"translation": ""
|
|
2421
|
-
},
|
|
2422
|
-
"historyUndoTourText": {
|
|
2423
|
-
"source": "Undo the last change.",
|
|
2424
|
-
"translation": ""
|
|
2425
|
-
},
|
|
2426
|
-
"iframesEditTitle": {
|
|
2427
|
-
"source": "Edit iframe size",
|
|
2428
|
-
"translation": ""
|
|
2429
|
-
},
|
|
2430
|
-
"importExistingDescription": {
|
|
2431
|
-
"source": "Import from an existing page",
|
|
2432
|
-
"translation": "Importer d’une page existante"
|
|
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": "Importez du contenu d’une page existante. Les éléments seront ajoutés à la fin de la liste. Cette action peut être annulée."
|
|
2437
|
-
},
|
|
2438
|
-
"importExistingDialogSubmit": {
|
|
2439
|
-
"source": "Import content",
|
|
2440
|
-
"translation": "Importer le contenu"
|
|
2441
|
-
},
|
|
2442
|
-
"importExistingDialogTitle": {
|
|
2443
|
-
"source": "Import from existing page",
|
|
2444
|
-
"translation": "Importer d’une page existante"
|
|
2445
|
-
},
|
|
2446
|
-
"importExistingError": {
|
|
2447
|
-
"source": "Content could not be imported.",
|
|
2448
|
-
"translation": "Le contenu n’a pas pu être importé."
|
|
2449
|
-
},
|
|
2450
|
-
"importExistingFieldsLabel": {
|
|
2451
|
-
"source": "Which content would you like to import?",
|
|
2452
|
-
"translation": "Quel contenu souhaitez-vous importer ?"
|
|
2453
|
-
},
|
|
2454
|
-
"importExistingPagesTitle": {
|
|
2455
|
-
"source": "Select page",
|
|
2456
|
-
"translation": ""
|
|
2457
|
-
},
|
|
2458
|
-
"importExistingSuccess": {
|
|
2459
|
-
"source": "Content imported successfully.",
|
|
2460
|
-
"translation": "Contenu importé avec succès."
|
|
2461
|
-
},
|
|
2462
|
-
"importExistingTitle": {
|
|
2463
|
-
"source": "Import...",
|
|
2464
|
-
"translation": "Importer..."
|
|
2465
|
-
},
|
|
2466
|
-
"interactionLayerOff": {
|
|
2467
|
-
"source": "Show interaction layers",
|
|
2468
|
-
"translation": ""
|
|
2469
|
-
},
|
|
2470
|
-
"interactionLayersOn": {
|
|
2471
|
-
"source": "Hide interaction layers",
|
|
2472
|
-
"translation": ""
|
|
2473
|
-
},
|
|
2474
|
-
"keyboardSpace": {
|
|
2475
|
-
"source": "Space",
|
|
2476
|
-
"translation": ""
|
|
2477
|
-
},
|
|
2478
|
-
"libraryAdd": {
|
|
2479
|
-
"source": "Add to library...",
|
|
2480
|
-
"translation": "Ajouter à la bibliothèque"
|
|
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": ""
|
|
2485
|
-
},
|
|
2486
|
-
"libraryAddFromLibrary": {
|
|
2487
|
-
"source": "From library",
|
|
2488
|
-
"translation": ""
|
|
2489
|
-
},
|
|
2490
|
-
"libraryAddNoEditPermission": {
|
|
2491
|
-
"source": "You do not have permission to edit this block.",
|
|
2492
|
-
"translation": ""
|
|
2493
|
-
},
|
|
2494
|
-
"libraryAddNoPermission": {
|
|
2495
|
-
"source": "You do not have permission to create library items.",
|
|
2496
|
-
"translation": ""
|
|
2497
|
-
},
|
|
2498
|
-
"libraryAddNotAllowedInField": {
|
|
2499
|
-
"source": "Reusable blocks are not allowed in this field.",
|
|
2500
|
-
"translation": ""
|
|
2501
|
-
},
|
|
2502
|
-
"libraryAddNotSupported": {
|
|
2503
|
-
"source": "This block type cannot be made reusable.",
|
|
2504
|
-
"translation": ""
|
|
2505
|
-
},
|
|
2506
|
-
"libraryDetach": {
|
|
2507
|
-
"source": "Detach from library",
|
|
2508
|
-
"translation": ""
|
|
2509
|
-
},
|
|
2510
|
-
"libraryDetachNoPermission": {
|
|
2511
|
-
"source": "You do not have permission to detach this block.",
|
|
2512
|
-
"translation": ""
|
|
2513
|
-
},
|
|
2514
|
-
"libraryDialogDescriptionLabel": {
|
|
2515
|
-
"source": "Description",
|
|
2516
|
-
"translation": "Description"
|
|
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": "En ajoutant un élément à la bibliothèque, vous pouvez l’utiliser sur plusieurs pages à la fois. Les modifications apportées à cet élément seront alors immédiatement publiées sur toutes les pages."
|
|
2521
|
-
},
|
|
2522
|
-
"libraryDialogReusableInfo": {
|
|
2523
|
-
"source": "The library item will be available for placement on other pages once this page has been published.",
|
|
2524
|
-
"translation": ""
|
|
2525
|
-
},
|
|
2526
|
-
"libraryDialogSubmit": {
|
|
2527
|
-
"source": "Add to library",
|
|
2528
|
-
"translation": "Ajouter à la bibliothèque"
|
|
2529
|
-
},
|
|
2530
|
-
"libraryDialogTitle": {
|
|
2531
|
-
"source": "Add to library",
|
|
2532
|
-
"translation": "Ajouter à la bibliothèque"
|
|
2533
|
-
},
|
|
2534
|
-
"libraryDialogTitleInputPlaceholder": {
|
|
2535
|
-
"source": "e.g. Teaser Campaign 2024",
|
|
2536
|
-
"translation": "Ex. : Teaser campagne 2023"
|
|
2537
|
-
},
|
|
2538
|
-
"libraryError": {
|
|
2539
|
-
"source": "Failed to add block to library.",
|
|
2540
|
-
"translation": "L'élément n’a pas pu être rendu réutilisable."
|
|
2541
|
-
},
|
|
2542
|
-
"libraryItemEditOverlayBack": {
|
|
2543
|
-
"source": "Back to page",
|
|
2544
|
-
"translation": ""
|
|
2545
|
-
},
|
|
2546
|
-
"libraryItemEditOverlayBackWithPage": {
|
|
2547
|
-
"source": "Save and go back to \"@label\"",
|
|
2548
|
-
"translation": ""
|
|
2549
|
-
},
|
|
2550
|
-
"libraryItemEditOverlayBackWithPageNoSave": {
|
|
2551
|
-
"source": "Go back to \"@label\"",
|
|
2552
|
-
"translation": ""
|
|
2553
|
-
},
|
|
2554
|
-
"libraryItemEditOverlayTitle": {
|
|
2555
|
-
"source": "Edit reusable block",
|
|
2556
|
-
"translation": ""
|
|
2557
|
-
},
|
|
2558
|
-
"libraryPlaceBundleSelectLabel": {
|
|
2559
|
-
"source": "Bundle",
|
|
2560
|
-
"translation": ""
|
|
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": ""
|
|
2565
|
-
},
|
|
2566
|
-
"libraryPlaceDialogSubmit": {
|
|
2567
|
-
"source": "Add reusable block",
|
|
2568
|
-
"translation": ""
|
|
2569
|
-
},
|
|
2570
|
-
"libraryPlaceDialogTitle": {
|
|
2571
|
-
"source": "Add block from library",
|
|
2572
|
-
"translation": ""
|
|
2573
|
-
},
|
|
2574
|
-
"libraryPreviewLabel": {
|
|
2575
|
-
"source": "Preview",
|
|
2576
|
-
"translation": "Aperçu"
|
|
2577
|
-
},
|
|
2578
|
-
"loading": {
|
|
2579
|
-
"source": "Loading...",
|
|
2580
|
-
"translation": ""
|
|
2581
|
-
},
|
|
2582
|
-
"manageSchedule": {
|
|
2583
|
-
"source": "Manage schedule...",
|
|
2584
|
-
"translation": ""
|
|
2585
|
-
},
|
|
2586
|
-
"maskHide": {
|
|
2587
|
-
"source": "Hide non-editable areas",
|
|
2588
|
-
"translation": "Masquer les champs de contenu"
|
|
2589
|
-
},
|
|
2590
|
-
"maskShow": {
|
|
2591
|
-
"source": "Show non-editable areas",
|
|
2592
|
-
"translation": "Afficher les champs de contenu"
|
|
2593
|
-
},
|
|
2594
|
-
"maskToggle": {
|
|
2595
|
-
"source": "Toggle non-editable areas",
|
|
2596
|
-
"translation": ""
|
|
2597
|
-
},
|
|
2598
|
-
"maskTourText": {
|
|
2599
|
-
"source": "Toggle between showing or hiding non-editable parts of the page.",
|
|
2600
|
-
"translation": ""
|
|
2601
|
-
},
|
|
2602
|
-
"mediaLibrary": {
|
|
2603
|
-
"source": "Media Library",
|
|
2604
|
-
"translation": ""
|
|
2605
|
-
},
|
|
2606
|
-
"mediaLibraryReplaceFailed": {
|
|
2607
|
-
"source": "Failed to replace media.",
|
|
2608
|
-
"translation": ""
|
|
2609
|
-
},
|
|
2610
|
-
"mediaLibraryReplaceMedia": {
|
|
2611
|
-
"source": "Replace @field",
|
|
2612
|
-
"translation": ""
|
|
2613
|
-
},
|
|
2614
|
-
"mediaLibraryTourText": {
|
|
2615
|
-
"source": "Search for media like images and drag and drop them into the page.",
|
|
2616
|
-
"translation": ""
|
|
2617
|
-
},
|
|
2618
|
-
"mediaSelectConfirm": {
|
|
2619
|
-
"source": "Use selected",
|
|
2620
|
-
"translation": ""
|
|
2621
|
-
},
|
|
2622
|
-
"mediaSelectTitle": {
|
|
2623
|
-
"source": "Select a media item",
|
|
2624
|
-
"translation": ""
|
|
2625
|
-
},
|
|
2626
|
-
"multipleItemsLabel": {
|
|
2627
|
-
"source": "Items",
|
|
2628
|
-
"translation": "Éléments"
|
|
2629
|
-
},
|
|
2630
|
-
"nameDescription": {
|
|
2631
|
-
"source": "Name / Description",
|
|
2632
|
-
"translation": ""
|
|
2633
|
-
},
|
|
2634
|
-
"notSet": {
|
|
2635
|
-
"source": "Not set",
|
|
2636
|
-
"translation": ""
|
|
2637
|
-
},
|
|
2638
|
-
"notSupported": {
|
|
2639
|
-
"source": "Not supported",
|
|
2640
|
-
"translation": ""
|
|
2641
|
-
},
|
|
2642
|
-
"optionBkVisibleLanguagesAll": {
|
|
2643
|
-
"source": "All languages",
|
|
2644
|
-
"translation": ""
|
|
2645
|
-
},
|
|
2646
|
-
"optionsCommand.selectCheckboxValue": {
|
|
2647
|
-
"source": "Select \"@value\" in \"@option\"",
|
|
2648
|
-
"translation": ""
|
|
2649
|
-
},
|
|
2650
|
-
"optionsCommand.setOption": {
|
|
2651
|
-
"source": "Set option \"@option\" to \"@value\"",
|
|
2652
|
-
"translation": ""
|
|
2653
|
-
},
|
|
2654
|
-
"optionsCommand.unselectCheckboxValue": {
|
|
2655
|
-
"source": "Unselect \"@value\" in \"@option\"",
|
|
2656
|
-
"translation": ""
|
|
2657
|
-
},
|
|
2658
|
-
"outdatedTranslation": {
|
|
2659
|
-
"source": "Outdated translation",
|
|
2660
|
-
"translation": ""
|
|
2661
|
-
},
|
|
2662
|
-
"outdatedTranslationDescription": {
|
|
2663
|
-
"source": "Mark translation as up-to-date",
|
|
2664
|
-
"translation": ""
|
|
2665
|
-
},
|
|
2666
|
-
"overlayDoubleClickInfo": {
|
|
2667
|
-
"source": "<strong>Double click</strong> to close overlay",
|
|
2668
|
-
"translation": ""
|
|
2669
|
-
},
|
|
2670
|
-
"owner": {
|
|
2671
|
-
"source": "Owner",
|
|
2672
|
-
"translation": ""
|
|
2673
|
-
},
|
|
2674
|
-
"ownershipError": {
|
|
2675
|
-
"source": "Error in assigning",
|
|
2676
|
-
"translation": "Erreur lors de l’attribution"
|
|
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": "Cette page est actuellement en cours de modification par @name. Les modifications ne peuvent être effectuées que par une personne à la fois."
|
|
2681
|
-
},
|
|
2682
|
-
"ownershipSuccess": {
|
|
2683
|
-
"source": "You are now the owner.",
|
|
2684
|
-
"translation": "Vous en êtes maintenant le propriétaire."
|
|
2685
|
-
},
|
|
2686
|
-
"ownershipTakeOwnership": {
|
|
2687
|
-
"source": "Assign to me",
|
|
2688
|
-
"translation": "Me l’attribuer"
|
|
2689
|
-
},
|
|
2690
|
-
"pageIsNotPublished": {
|
|
2691
|
-
"source": "Page is not published",
|
|
2692
|
-
"translation": "La page n’est pas publiée"
|
|
2693
|
-
},
|
|
2694
|
-
"pageIsPublished": {
|
|
2695
|
-
"source": "Page is published",
|
|
2696
|
-
"translation": "La page est publiée"
|
|
2697
|
-
},
|
|
2698
|
-
"pageIsPublishedWithPendingChanges": {
|
|
2699
|
-
"source": "Page is published (changes pending)",
|
|
2700
|
-
"translation": "La page est publiée (modifications en attente)"
|
|
2701
|
-
},
|
|
2702
|
-
"paste": {
|
|
2703
|
-
"source": "Paste",
|
|
2704
|
-
"translation": ""
|
|
2705
|
-
},
|
|
2706
|
-
"previewDialogLead": {
|
|
2707
|
-
"source": "Scan the QR code with your smartphone to open the preview.",
|
|
2708
|
-
"translation": "Scannez le code QR avec votre smartphone pour ouvrir l’aperçu."
|
|
2709
|
-
},
|
|
2710
|
-
"previewDialogTitle": {
|
|
2711
|
-
"source": "Preview with smartphone",
|
|
2712
|
-
"translation": "Aperçu avec smartphone"
|
|
2713
|
-
},
|
|
2714
|
-
"previewNewWindow": {
|
|
2715
|
-
"source": "Preview (new window)",
|
|
2716
|
-
"translation": "Aperçu (nouvelle fenêtre)"
|
|
2717
|
-
},
|
|
2718
|
-
"previewNewWindowTourText": {
|
|
2719
|
-
"source": "Opens a preview of the current changes in a new window.",
|
|
2720
|
-
"translation": ""
|
|
2721
|
-
},
|
|
2722
|
-
"previewQrCodeText": {
|
|
2723
|
-
"source": "You can also copy the link and share it.",
|
|
2724
|
-
"translation": ""
|
|
2725
|
-
},
|
|
2726
|
-
"previewWithSmartphone": {
|
|
2727
|
-
"source": "Preview (with smartphone)",
|
|
2728
|
-
"translation": "Aperçu (avec smartphone)"
|
|
2729
|
-
},
|
|
2730
|
-
"previewWithSmartphoneTourText": {
|
|
2731
|
-
"source": "Shows a QR code to quickly open a preview of the changes with your smartphone.",
|
|
2732
|
-
"translation": ""
|
|
2733
|
-
},
|
|
2734
|
-
"proxyViewHide": {
|
|
2735
|
-
"source": "Show content preview",
|
|
2736
|
-
"translation": ""
|
|
2737
|
-
},
|
|
2738
|
-
"proxyViewShow": {
|
|
2739
|
-
"source": "Show structure view",
|
|
2740
|
-
"translation": ""
|
|
2741
|
-
},
|
|
2742
|
-
"proxyViewToggle": {
|
|
2743
|
-
"source": "Toggle structure view",
|
|
2744
|
-
"translation": ""
|
|
2745
|
-
},
|
|
2746
|
-
"proxyViewTourText": {
|
|
2747
|
-
"source": "Displays the content blocks as a structured view.",
|
|
2748
|
-
"translation": ""
|
|
2749
|
-
},
|
|
2750
|
-
"publishAlreadyScheduledDescription": {
|
|
2751
|
-
"source": "This page is already scheduled for publishing",
|
|
2752
|
-
"translation": ""
|
|
2753
|
-
},
|
|
2754
|
-
"publishAndCloseLabel": {
|
|
2755
|
-
"source": "Publish & Close",
|
|
2756
|
-
"translation": ""
|
|
2757
|
-
},
|
|
2758
|
-
"publishAndCloseLabelUnpublished": {
|
|
2759
|
-
"source": "Save & Close",
|
|
2760
|
-
"translation": ""
|
|
2761
|
-
},
|
|
2762
|
-
"publishCurrentPage": {
|
|
2763
|
-
"source": "Current page",
|
|
2764
|
-
"translation": ""
|
|
2765
|
-
},
|
|
2766
|
-
"publishCurrentlyPublished": {
|
|
2767
|
-
"source": "Page is published",
|
|
2768
|
-
"translation": ""
|
|
2769
|
-
},
|
|
2770
|
-
"publishCurrentlyUnpublished": {
|
|
2771
|
-
"source": "Page is unpublished",
|
|
2772
|
-
"translation": ""
|
|
2773
|
-
},
|
|
2774
|
-
"publishDescription": {
|
|
2775
|
-
"source": "Publish all changes.",
|
|
2776
|
-
"translation": "Rendre toutes les modifications publiques"
|
|
2777
|
-
},
|
|
2778
|
-
"publishDescriptionScheduled": {
|
|
2779
|
-
"source": "View or change the scheduled publication",
|
|
2780
|
-
"translation": ""
|
|
2781
|
-
},
|
|
2782
|
-
"publishDescriptionUnpublished": {
|
|
2783
|
-
"source": "Save all changes while keeping page unpublished",
|
|
2784
|
-
"translation": ""
|
|
2785
|
-
},
|
|
2786
|
-
"publishDialogTitle": {
|
|
2787
|
-
"source": "Publish changes",
|
|
2788
|
-
"translation": ""
|
|
2789
|
-
},
|
|
2790
|
-
"publishError": {
|
|
2791
|
-
"source": "Changes could not be published.",
|
|
2792
|
-
"translation": "Les modifications n’ont pas pu être publiées."
|
|
2793
|
-
},
|
|
2794
|
-
"publishLabel": {
|
|
2795
|
-
"source": "Publish",
|
|
2796
|
-
"translation": "Publier"
|
|
2797
|
-
},
|
|
2798
|
-
"publishLabelUnpublished": {
|
|
2799
|
-
"source": "Save",
|
|
2800
|
-
"translation": ""
|
|
2801
|
-
},
|
|
2802
|
-
"publishManageSchedule": {
|
|
2803
|
-
"source": "Manage scheduling",
|
|
2804
|
-
"translation": ""
|
|
2805
|
-
},
|
|
2806
|
-
"publishMode": {
|
|
2807
|
-
"source": "Publish mode",
|
|
2808
|
-
"translation": ""
|
|
2809
|
-
},
|
|
2810
|
-
"publishModeImmediateDescription": {
|
|
2811
|
-
"source": "Publish changes immediately",
|
|
2812
|
-
"translation": ""
|
|
2813
|
-
},
|
|
2814
|
-
"publishModeImmediateTitle": {
|
|
2815
|
-
"source": "Publish",
|
|
2816
|
-
"translation": ""
|
|
2817
|
-
},
|
|
2818
|
-
"publishModeSaveDescription": {
|
|
2819
|
-
"source": "Save changes without publishing",
|
|
2820
|
-
"translation": ""
|
|
2821
|
-
},
|
|
2822
|
-
"publishModeSaveTitle": {
|
|
2823
|
-
"source": "Save",
|
|
2824
|
-
"translation": ""
|
|
2825
|
-
},
|
|
2826
|
-
"publishModeScheduledDescription": {
|
|
2827
|
-
"source": "Schedule changes for publishing",
|
|
2828
|
-
"translation": ""
|
|
2829
|
-
},
|
|
2830
|
-
"publishModeScheduledTitle": {
|
|
2831
|
-
"source": "Schedule",
|
|
2832
|
-
"translation": ""
|
|
2833
|
-
},
|
|
2834
|
-
"publishName": {
|
|
2835
|
-
"source": "Name",
|
|
2836
|
-
"translation": ""
|
|
2837
|
-
},
|
|
2838
|
-
"publishPublicationScheduled": {
|
|
2839
|
-
"source": "Publication scheduled",
|
|
2840
|
-
"translation": ""
|
|
2841
|
-
},
|
|
2842
|
-
"publishPublishContent": {
|
|
2843
|
-
"source": "Publish content",
|
|
2844
|
-
"translation": ""
|
|
2845
|
-
},
|
|
2846
|
-
"publishPublishContents": {
|
|
2847
|
-
"source": "Publish @count contents",
|
|
2848
|
-
"translation": ""
|
|
2849
|
-
},
|
|
2850
|
-
"publishRemainsPublished": {
|
|
2851
|
-
"source": "Remains published",
|
|
2852
|
-
"translation": ""
|
|
2853
|
-
},
|
|
2854
|
-
"publishRemainsUnpublished": {
|
|
2855
|
-
"source": "Remains unpublished",
|
|
2856
|
-
"translation": ""
|
|
2857
|
-
},
|
|
2858
|
-
"publishRemoveSchedule": {
|
|
2859
|
-
"source": "Remove schedule",
|
|
2860
|
-
"translation": ""
|
|
2861
|
-
},
|
|
2862
|
-
"publishResultPublishChangesNowPublished": {
|
|
2863
|
-
"source": "Changes are published, page is now published",
|
|
2864
|
-
"translation": ""
|
|
2865
|
-
},
|
|
2866
|
-
"publishResultPublishChangesRemainPublished": {
|
|
2867
|
-
"source": "Changes are published, page remains published",
|
|
2868
|
-
"translation": ""
|
|
2869
|
-
},
|
|
2870
|
-
"publishResultSaveChanges": {
|
|
2871
|
-
"source": "Changes are saved, page remains unpublished",
|
|
2872
|
-
"translation": ""
|
|
2873
|
-
},
|
|
2874
|
-
"publishResultScheduledChanges": {
|
|
2875
|
-
"source": "Changes will be published on @date",
|
|
2876
|
-
"translation": ""
|
|
2877
|
-
},
|
|
2878
|
-
"publishResultScheduledPage": {
|
|
2879
|
-
"source": "Page will be published on @date",
|
|
2880
|
-
"translation": ""
|
|
2881
|
-
},
|
|
2882
|
-
"publishRevisionLogMessage": {
|
|
2883
|
-
"source": "Change description",
|
|
2884
|
-
"translation": "Description des modifications"
|
|
2885
|
-
},
|
|
2886
|
-
"publishRevisionLogMessageDescription": {
|
|
2887
|
-
"source": "Briefly describe the changes made",
|
|
2888
|
-
"translation": ""
|
|
2889
|
-
},
|
|
2890
|
-
"publishSaveContent": {
|
|
2891
|
-
"source": "Save content",
|
|
2892
|
-
"translation": ""
|
|
2893
|
-
},
|
|
2894
|
-
"publishSaveContents": {
|
|
2895
|
-
"source": "Save @count contents",
|
|
2896
|
-
"translation": ""
|
|
2897
|
-
},
|
|
2898
|
-
"publishScheduleDate": {
|
|
2899
|
-
"source": "Publication date",
|
|
2900
|
-
"translation": ""
|
|
2901
|
-
},
|
|
2902
|
-
"publishScheduleDateTooSoon": {
|
|
2903
|
-
"source": "The scheduled date must be at least 2 minutes in the future",
|
|
2904
|
-
"translation": ""
|
|
2905
|
-
},
|
|
2906
|
-
"publishSchedulePublication": {
|
|
2907
|
-
"source": "Schedule publication",
|
|
2908
|
-
"translation": ""
|
|
2909
|
-
},
|
|
2910
|
-
"publishSchedulePublications": {
|
|
2911
|
-
"source": "Schedule @count publications",
|
|
2912
|
-
"translation": ""
|
|
2913
|
-
},
|
|
2914
|
-
"publishScheduleSuccess": {
|
|
2915
|
-
"source": "Publication scheduled for @date",
|
|
2916
|
-
"translation": ""
|
|
2917
|
-
},
|
|
2918
|
-
"publishScheduledBlockPlural": {
|
|
2919
|
-
"source": "@count blocks are scheduled to be published on @date",
|
|
2920
|
-
"translation": ""
|
|
2921
|
-
},
|
|
2922
|
-
"publishScheduledBlockSingular": {
|
|
2923
|
-
"source": "1 block is scheduled to be published on @date",
|
|
2924
|
-
"translation": ""
|
|
2925
|
-
},
|
|
2926
|
-
"publishScheduledInfo": {
|
|
2927
|
-
"source": "You can still make changes until the scheduled publication date.",
|
|
2928
|
-
"translation": ""
|
|
2929
|
-
},
|
|
2930
|
-
"publishStatus": {
|
|
2931
|
-
"source": "Status",
|
|
2932
|
-
"translation": ""
|
|
2933
|
-
},
|
|
2934
|
-
"publishSuccess": {
|
|
2935
|
-
"source": "Changes published successfully.",
|
|
2936
|
-
"translation": "Modifications publiées avec succès."
|
|
2937
|
-
},
|
|
2938
|
-
"publishSuccessfullyPublished": {
|
|
2939
|
-
"source": "Successfully published",
|
|
2940
|
-
"translation": ""
|
|
2941
|
-
},
|
|
2942
|
-
"publishSuccessfullySaved": {
|
|
2943
|
-
"source": "Successfully saved",
|
|
2944
|
-
"translation": ""
|
|
2945
|
-
},
|
|
2946
|
-
"publishSummary": {
|
|
2947
|
-
"source": "Summary",
|
|
2948
|
-
"translation": ""
|
|
2949
|
-
},
|
|
2950
|
-
"publishWillBePublished": {
|
|
2951
|
-
"source": "Will be published",
|
|
2952
|
-
"translation": ""
|
|
2953
|
-
},
|
|
2954
|
-
"publishWillBeScheduled": {
|
|
2955
|
-
"source": "Will be scheduled",
|
|
2956
|
-
"translation": ""
|
|
2957
|
-
},
|
|
2958
|
-
"readabilityEntireText": {
|
|
2959
|
-
"source": "This score is calculated for the entire text.",
|
|
2960
|
-
"translation": ""
|
|
2961
|
-
},
|
|
2962
|
-
"readabilityTooShort": {
|
|
2963
|
-
"source": "Too short",
|
|
2964
|
-
"translation": "Trop court"
|
|
2965
|
-
},
|
|
2966
|
-
"readabilityTooShortTooltip": {
|
|
2967
|
-
"source": "Text needs at least @count words for readability analysis.",
|
|
2968
|
-
"translation": "Le texte nécessite au moins @count mots pour l'analyse de lisibilité."
|
|
2969
|
-
},
|
|
2970
|
-
"readabilityTooltipDescription": {
|
|
2971
|
-
"source": "@label measures how easy the text is to read.",
|
|
2972
|
-
"translation": "@label mesure la facilité de lecture du texte."
|
|
2973
|
-
},
|
|
2974
|
-
"referencedEntitiesEditorOverlayTitle": {
|
|
2975
|
-
"source": "Edit \"@label\"",
|
|
2976
|
-
"translation": ""
|
|
2977
|
-
},
|
|
2978
|
-
"relatedContent": {
|
|
2979
|
-
"source": "Related Content",
|
|
2980
|
-
"translation": ""
|
|
2981
|
-
},
|
|
2982
|
-
"relatedContentNoEntitiesFound": {
|
|
2983
|
-
"source": "No related content found",
|
|
2984
|
-
"translation": ""
|
|
2985
|
-
},
|
|
2986
|
-
"relatedContentTooltip": {
|
|
2987
|
-
"source": "Content like pages or images referenced or linked by this block.",
|
|
2988
|
-
"translation": ""
|
|
2989
|
-
},
|
|
2990
|
-
"responsivePreviewCustomViewport": {
|
|
2991
|
-
"source": "Custom",
|
|
2992
|
-
"translation": ""
|
|
2993
|
-
},
|
|
2994
|
-
"responsivePreviewTitle": {
|
|
2995
|
-
"source": "Responsive Preview",
|
|
2996
|
-
"translation": ""
|
|
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": ""
|
|
3001
|
-
},
|
|
3002
|
-
"restrictedPermissionsAll": {
|
|
3003
|
-
"source": "Some actions are not available due to missing permissions.",
|
|
3004
|
-
"translation": ""
|
|
3005
|
-
},
|
|
3006
|
-
"restrictedPermissionsSome": {
|
|
3007
|
-
"source": "Some actions are restricted due to missing permissions.",
|
|
3008
|
-
"translation": ""
|
|
3009
|
-
},
|
|
3010
|
-
"revertDialogLead": {
|
|
3011
|
-
"source": "This will delete all changes and restore the currently published state. This action cannot be undone.",
|
|
3012
|
-
"translation": "Cela supprimera toutes les modifications et restaurera l’état actuellement publié. Cette action est irréversible."
|
|
3013
|
-
},
|
|
3014
|
-
"revertDialogSubmit": {
|
|
3015
|
-
"source": "Discard changes",
|
|
3016
|
-
"translation": "Annuler les modifications"
|
|
3017
|
-
},
|
|
3018
|
-
"revertDialogTitle": {
|
|
3019
|
-
"source": "Irrevocably discard changes",
|
|
3020
|
-
"translation": "Annuler les modifications de façon irréversible"
|
|
3021
|
-
},
|
|
3022
|
-
"revertError": {
|
|
3023
|
-
"source": "Changes could not be discarded.",
|
|
3024
|
-
"translation": "Les modifications n’ont pas pu être annulées."
|
|
3025
|
-
},
|
|
3026
|
-
"revertMenuDescription": {
|
|
3027
|
-
"source": "Restore currently published state",
|
|
3028
|
-
"translation": "Restaurer l’état actuellement publié"
|
|
3029
|
-
},
|
|
3030
|
-
"revertMenuTitle": {
|
|
3031
|
-
"source": "Discard...",
|
|
3032
|
-
"translation": "Annuler..."
|
|
3033
|
-
},
|
|
3034
|
-
"revertSuccess": {
|
|
3035
|
-
"source": "All changes have been discarded.",
|
|
3036
|
-
"translation": "Toutes les modifications ont été annulées."
|
|
3037
|
-
},
|
|
3038
|
-
"save": {
|
|
3039
|
-
"source": "Save",
|
|
3040
|
-
"translation": ""
|
|
3041
|
-
},
|
|
3042
|
-
"scheduledFor": {
|
|
3043
|
-
"source": "The changes will be published on this date.",
|
|
3044
|
-
"translation": ""
|
|
3045
|
-
},
|
|
3046
|
-
"schedulerNotSupported": {
|
|
3047
|
-
"source": "Scheduling is not available for this block type.",
|
|
3048
|
-
"translation": ""
|
|
3049
|
-
},
|
|
3050
|
-
"searchBoxNoResultsFound": {
|
|
3051
|
-
"source": "No results found",
|
|
3052
|
-
"translation": "Aucun résultat trouvé"
|
|
3053
|
-
},
|
|
3054
|
-
"searchBoxOnThisPage": {
|
|
3055
|
-
"source": "On this page",
|
|
3056
|
-
"translation": "Sur cette page"
|
|
3057
|
-
},
|
|
3058
|
-
"searchBoxPlaceholder": {
|
|
3059
|
-
"source": "Enter search term",
|
|
3060
|
-
"translation": "Entrer un terme de recherche"
|
|
3061
|
-
},
|
|
3062
|
-
"searchContentReplace": {
|
|
3063
|
-
"source": "Replace @field",
|
|
3064
|
-
"translation": ""
|
|
3065
|
-
},
|
|
3066
|
-
"searchContentReplaceFailed": {
|
|
3067
|
-
"source": "Failed to replace content.",
|
|
3068
|
-
"translation": ""
|
|
3069
|
-
},
|
|
3070
|
-
"searchOverlayNoResults": {
|
|
3071
|
-
"source": "No results found.",
|
|
3072
|
-
"translation": ""
|
|
3073
|
-
},
|
|
3074
|
-
"searchToolbarLabel": {
|
|
3075
|
-
"source": "Search content",
|
|
3076
|
-
"translation": "Rechercher des contenus"
|
|
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": ""
|
|
3081
|
-
},
|
|
3082
|
-
"selectAllBlocks": {
|
|
3083
|
-
"source": "Select all blocks",
|
|
3084
|
-
"translation": ""
|
|
3085
|
-
},
|
|
3086
|
-
"selectAllOfBundle": {
|
|
3087
|
-
"source": "Select all \"@bundle\" blocks",
|
|
3088
|
-
"translation": ""
|
|
3089
|
-
},
|
|
3090
|
-
"selectedIsNew": {
|
|
3091
|
-
"source": "New",
|
|
3092
|
-
"translation": ""
|
|
3093
|
-
},
|
|
3094
|
-
"selectedTranslationIsOutdated": {
|
|
3095
|
-
"source": "Outdated",
|
|
3096
|
-
"translation": ""
|
|
3097
|
-
},
|
|
3098
|
-
"settingsAdvanced": {
|
|
3099
|
-
"source": "Advanced",
|
|
3100
|
-
"translation": ""
|
|
3101
|
-
},
|
|
3102
|
-
"settingsAppearance": {
|
|
3103
|
-
"source": "Appearance",
|
|
3104
|
-
"translation": ""
|
|
3105
|
-
},
|
|
3106
|
-
"settingsArtboard": {
|
|
3107
|
-
"source": "Artboard",
|
|
3108
|
-
"translation": ""
|
|
3109
|
-
},
|
|
3110
|
-
"settingsBehaviour": {
|
|
3111
|
-
"source": "Behaviour",
|
|
3112
|
-
"translation": "Comportement"
|
|
3113
|
-
},
|
|
3114
|
-
"settingsBeta": {
|
|
3115
|
-
"source": "New Features",
|
|
3116
|
-
"translation": ""
|
|
3117
|
-
},
|
|
3118
|
-
"settingsDialogTitle": {
|
|
3119
|
-
"source": "Change settings",
|
|
3120
|
-
"translation": "Paramètres"
|
|
3121
|
-
},
|
|
3122
|
-
"settingsMenuDescription": {
|
|
3123
|
-
"source": "Personal settings for the editor",
|
|
3124
|
-
"translation": "Paramètres personnels pour l’éditeur"
|
|
3125
|
-
},
|
|
3126
|
-
"settingsMenuTitle": {
|
|
3127
|
-
"source": "Settings",
|
|
3128
|
-
"translation": "Paramètres"
|
|
3129
|
-
},
|
|
3130
|
-
"shortcutGroupBlocks": {
|
|
3131
|
-
"source": "Blocks",
|
|
3132
|
-
"translation": ""
|
|
3133
|
-
},
|
|
3134
|
-
"shortcutGroupGeneral": {
|
|
3135
|
-
"source": "General",
|
|
3136
|
-
"translation": ""
|
|
3137
|
-
},
|
|
3138
|
-
"shortcutGroupUi": {
|
|
3139
|
-
"source": "UI",
|
|
3140
|
-
"translation": ""
|
|
3141
|
-
},
|
|
3142
|
-
"sidebar.hide": {
|
|
3143
|
-
"source": "Hide @title",
|
|
3144
|
-
"translation": ""
|
|
3145
|
-
},
|
|
3146
|
-
"sidebar.show": {
|
|
3147
|
-
"source": "Show @title",
|
|
3148
|
-
"translation": ""
|
|
3149
|
-
},
|
|
3150
|
-
"singleComment": {
|
|
3151
|
-
"source": "comment",
|
|
3152
|
-
"translation": ""
|
|
3153
|
-
},
|
|
3154
|
-
"stateUnavailableText": {
|
|
3155
|
-
"source": "This could be due to missing permissions or a temporary problem. Please try again later.",
|
|
3156
|
-
"translation": ""
|
|
3157
|
-
},
|
|
3158
|
-
"stateUnavailableTitle": {
|
|
3159
|
-
"source": "The edit state could not be loaded.",
|
|
3160
|
-
"translation": ""
|
|
3161
|
-
},
|
|
3162
|
-
"structureToolbarLabel": {
|
|
3163
|
-
"source": "Structure",
|
|
3164
|
-
"translation": "Structure"
|
|
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": ""
|
|
3169
|
-
},
|
|
3170
|
-
"swapButton": {
|
|
3171
|
-
"source": "Swap block positions",
|
|
3172
|
-
"translation": ""
|
|
3173
|
-
},
|
|
3174
|
-
"swapError": {
|
|
3175
|
-
"source": "The blocks could not be swapped.",
|
|
3176
|
-
"translation": ""
|
|
3177
|
-
},
|
|
3178
|
-
"swapNotPossible": {
|
|
3179
|
-
"source": "Block positions cannot be swapped.",
|
|
3180
|
-
"translation": ""
|
|
3181
|
-
},
|
|
3182
|
-
"systemRequirementsDialogButton": {
|
|
3183
|
-
"source": "Continue anyway",
|
|
3184
|
-
"translation": ""
|
|
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": ""
|
|
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": ""
|
|
3193
|
-
},
|
|
3194
|
-
"systemRequirementsDialogTitle": {
|
|
3195
|
-
"source": "System Requirements",
|
|
3196
|
-
"translation": ""
|
|
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": ""
|
|
3201
|
-
},
|
|
3202
|
-
"templatesAddTemplate": {
|
|
3203
|
-
"source": "Template",
|
|
3204
|
-
"translation": ""
|
|
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": ""
|
|
3209
|
-
},
|
|
3210
|
-
"templatesCanNotBeDefault": {
|
|
3211
|
-
"source": "Only single blocks can be made default.",
|
|
3212
|
-
"translation": ""
|
|
3213
|
-
},
|
|
3214
|
-
"templatesCreate": {
|
|
3215
|
-
"source": "Create template...",
|
|
3216
|
-
"translation": ""
|
|
3217
|
-
},
|
|
3218
|
-
"templatesCreateDialogDefaultDescription": {
|
|
3219
|
-
"source": "If set, this template is used automatically when adding a new block of this type.",
|
|
3220
|
-
"translation": ""
|
|
3221
|
-
},
|
|
3222
|
-
"templatesCreateDialogDefaultLabel": {
|
|
3223
|
-
"source": "Use as default",
|
|
3224
|
-
"translation": ""
|
|
3225
|
-
},
|
|
3226
|
-
"templatesCreateDialogDescriptionLabel": {
|
|
3227
|
-
"source": "Description",
|
|
3228
|
-
"translation": ""
|
|
3229
|
-
},
|
|
3230
|
-
"templatesCreateDialogDescriptionPlaceholder": {
|
|
3231
|
-
"source": "Optional description of the template",
|
|
3232
|
-
"translation": ""
|
|
3233
|
-
},
|
|
3234
|
-
"templatesCreateDialogLabelLabel": {
|
|
3235
|
-
"source": "Name",
|
|
3236
|
-
"translation": ""
|
|
3237
|
-
},
|
|
3238
|
-
"templatesCreateDialogLabelPlaceholder": {
|
|
3239
|
-
"source": "e.g. Hero Section",
|
|
3240
|
-
"translation": ""
|
|
3241
|
-
},
|
|
3242
|
-
"templatesCreateDialogLead": {
|
|
3243
|
-
"source": "Create a reusable template from the selected blocks. Templates can be added to any page.",
|
|
3244
|
-
"translation": ""
|
|
3245
|
-
},
|
|
3246
|
-
"templatesCreateDialogPreviewLabel": {
|
|
3247
|
-
"source": "Preview",
|
|
3248
|
-
"translation": ""
|
|
3249
|
-
},
|
|
3250
|
-
"templatesCreateDialogSubmit": {
|
|
3251
|
-
"source": "Create template",
|
|
3252
|
-
"translation": ""
|
|
3253
|
-
},
|
|
3254
|
-
"templatesCreateDialogTitle": {
|
|
3255
|
-
"source": "Create template",
|
|
3256
|
-
"translation": ""
|
|
3257
|
-
},
|
|
3258
|
-
"templatesCreateError": {
|
|
3259
|
-
"source": "Failed to create template.",
|
|
3260
|
-
"translation": ""
|
|
3261
|
-
},
|
|
3262
|
-
"templatesDefaultPill": {
|
|
3263
|
-
"source": "Default",
|
|
3264
|
-
"translation": ""
|
|
3265
|
-
},
|
|
3266
|
-
"templatesDefaultPillDescription": {
|
|
3267
|
-
"source": "This template is used when new blocks of this type are created.",
|
|
3268
|
-
"translation": ""
|
|
3269
|
-
},
|
|
3270
|
-
"templatesDeleteError": {
|
|
3271
|
-
"source": "Failed to delete template.",
|
|
3272
|
-
"translation": ""
|
|
3273
|
-
},
|
|
3274
|
-
"templatesDeleteSuccess": {
|
|
3275
|
-
"source": "Template deleted successfully.",
|
|
3276
|
-
"translation": ""
|
|
3277
|
-
},
|
|
3278
|
-
"templatesEditOverlayTitle": {
|
|
3279
|
-
"source": "Edit template",
|
|
3280
|
-
"translation": ""
|
|
3281
|
-
},
|
|
3282
|
-
"templatesManageDialogCancelDelete": {
|
|
3283
|
-
"source": "Cancel",
|
|
3284
|
-
"translation": ""
|
|
3285
|
-
},
|
|
3286
|
-
"templatesManageDialogConfirmDelete": {
|
|
3287
|
-
"source": "Delete",
|
|
3288
|
-
"translation": ""
|
|
3289
|
-
},
|
|
3290
|
-
"templatesManageDialogDelete": {
|
|
3291
|
-
"source": "Delete",
|
|
3292
|
-
"translation": ""
|
|
3293
|
-
},
|
|
3294
|
-
"templatesManageDialogEdit": {
|
|
3295
|
-
"source": "Edit",
|
|
3296
|
-
"translation": ""
|
|
3297
|
-
},
|
|
3298
|
-
"templatesManageDialogLead": {
|
|
3299
|
-
"source": "View, edit and delete your block templates.",
|
|
3300
|
-
"translation": ""
|
|
3301
|
-
},
|
|
3302
|
-
"templatesManageDialogNoResults": {
|
|
3303
|
-
"source": "No templates found.",
|
|
3304
|
-
"translation": ""
|
|
3305
|
-
},
|
|
3306
|
-
"templatesManageDialogTitle": {
|
|
3307
|
-
"source": "Manage templates",
|
|
3308
|
-
"translation": ""
|
|
3309
|
-
},
|
|
3310
|
-
"templatesMenuDescription": {
|
|
3311
|
-
"source": "Edit and delete block templates",
|
|
3312
|
-
"translation": ""
|
|
3313
|
-
},
|
|
3314
|
-
"templatesMenuLabel": {
|
|
3315
|
-
"source": "Templates...",
|
|
3316
|
-
"translation": ""
|
|
3317
|
-
},
|
|
3318
|
-
"templatesMissingDefaultPermissions": {
|
|
3319
|
-
"source": "Missing permission to create default templates.",
|
|
3320
|
-
"translation": ""
|
|
3321
|
-
},
|
|
3322
|
-
"templatesNoResults": {
|
|
3323
|
-
"source": "No templates available for this field.",
|
|
3324
|
-
"translation": ""
|
|
3325
|
-
},
|
|
3326
|
-
"templatesPlaceDialogDescription": {
|
|
3327
|
-
"source": "Templates create copies of blocks that can be edited freely on this page without affecting other pages.",
|
|
3328
|
-
"translation": ""
|
|
3329
|
-
},
|
|
3330
|
-
"templatesPlaceDialogSubmitButton": {
|
|
3331
|
-
"source": "Add template blocks",
|
|
3332
|
-
"translation": ""
|
|
3333
|
-
},
|
|
3334
|
-
"templatesPlaceDialogTitle": {
|
|
3335
|
-
"source": "Add blocks from template",
|
|
3336
|
-
"translation": ""
|
|
3337
|
-
},
|
|
3338
|
-
"templatesSuccessMessage": {
|
|
3339
|
-
"source": "Successfully created template \"@label\"",
|
|
3340
|
-
"translation": ""
|
|
3341
|
-
},
|
|
3342
|
-
"textareaNewLineHint": {
|
|
3343
|
-
"source": "Shift + Enter for new line",
|
|
3344
|
-
"translation": ""
|
|
3345
|
-
},
|
|
3346
|
-
"theme": {
|
|
3347
|
-
"source": "Theme",
|
|
3348
|
-
"translation": ""
|
|
3349
|
-
},
|
|
3350
|
-
"themeTourText": {
|
|
3351
|
-
"source": "Change the colors of the theme and generate a theme file.",
|
|
3352
|
-
"translation": ""
|
|
3353
|
-
},
|
|
3354
|
-
"toggleInteractionLayers": {
|
|
3355
|
-
"source": "Toggle interaction layers",
|
|
3356
|
-
"translation": ""
|
|
3357
|
-
},
|
|
3358
|
-
"touchBarCancelDragging": {
|
|
3359
|
-
"source": "Cancel dragging",
|
|
3360
|
-
"translation": ""
|
|
3361
|
-
},
|
|
3362
|
-
"touchBarFinishSelecting": {
|
|
3363
|
-
"source": "Finish selecting",
|
|
3364
|
-
"translation": ""
|
|
3365
|
-
},
|
|
3366
|
-
"tourDescription": {
|
|
3367
|
-
"source": "Explore the features of the editor",
|
|
3368
|
-
"translation": ""
|
|
3369
|
-
},
|
|
3370
|
-
"tourIntro": {
|
|
3371
|
-
"source": "Explore the most important features of the editor and learn how to get started using blökkli.",
|
|
3372
|
-
"translation": ""
|
|
3373
|
-
},
|
|
3374
|
-
"tourLabel": {
|
|
3375
|
-
"source": "Take a tour",
|
|
3376
|
-
"translation": ""
|
|
3377
|
-
},
|
|
3378
|
-
"tourNext": {
|
|
3379
|
-
"source": "Next",
|
|
3380
|
-
"translation": ""
|
|
3381
|
-
},
|
|
3382
|
-
"tourPrev": {
|
|
3383
|
-
"source": "Previous",
|
|
3384
|
-
"translation": ""
|
|
3385
|
-
},
|
|
3386
|
-
"tourStartButton": {
|
|
3387
|
-
"source": "Start the tour",
|
|
3388
|
-
"translation": ""
|
|
3389
|
-
},
|
|
3390
|
-
"transformDialogButtonApply": {
|
|
3391
|
-
"source": "Apply changes",
|
|
3392
|
-
"translation": ""
|
|
3393
|
-
},
|
|
3394
|
-
"transformDialogButtonNewSuggestion": {
|
|
3395
|
-
"source": "New suggestion",
|
|
3396
|
-
"translation": ""
|
|
3397
|
-
},
|
|
3398
|
-
"transformDialogButtonPreview": {
|
|
3399
|
-
"source": "Preview",
|
|
3400
|
-
"translation": ""
|
|
3401
|
-
},
|
|
3402
|
-
"translateEditDisabled": {
|
|
3403
|
-
"source": "Editing is disabled for this block type.",
|
|
3404
|
-
"translation": ""
|
|
3405
|
-
},
|
|
3406
|
-
"translateLibraryBlock": {
|
|
3407
|
-
"source": "Reusable blocks cannot be translated here.",
|
|
3408
|
-
"translation": ""
|
|
3409
|
-
},
|
|
3410
|
-
"translateNotTranslatable": {
|
|
3411
|
-
"source": "This block type is not translatable.",
|
|
3412
|
-
"translation": ""
|
|
3413
|
-
},
|
|
3414
|
-
"translationOutdatedHint": {
|
|
3415
|
-
"source": "The translation is marked as outdated.",
|
|
3416
|
-
"translation": ""
|
|
3417
|
-
},
|
|
3418
|
-
"translationsAddFiles": {
|
|
3419
|
-
"source": "Add files...",
|
|
3420
|
-
"translation": ""
|
|
3421
|
-
},
|
|
3422
|
-
"translationsAutoTranslate": {
|
|
3423
|
-
"source": "Auto-translate",
|
|
3424
|
-
"translation": ""
|
|
3425
|
-
},
|
|
3426
|
-
"translationsAutoTranslateButton": {
|
|
3427
|
-
"source": "Auto-translate...",
|
|
3428
|
-
"translation": ""
|
|
3429
|
-
},
|
|
3430
|
-
"translationsAutoTranslateTooltip": {
|
|
3431
|
-
"source": "Automatically translate all texts using a translation service",
|
|
3432
|
-
"translation": ""
|
|
3433
|
-
},
|
|
3434
|
-
"translationsBannerButton": {
|
|
3435
|
-
"source": "Edit source language instead",
|
|
3436
|
-
"translation": ""
|
|
3437
|
-
},
|
|
3438
|
-
"translationsBannerMarkAllAsUpToDate": {
|
|
3439
|
-
"source": "Mark all as up-to-date",
|
|
3440
|
-
"translation": ""
|
|
3441
|
-
},
|
|
3442
|
-
"translationsBannerNext": {
|
|
3443
|
-
"source": "Next block",
|
|
3444
|
-
"translation": ""
|
|
3445
|
-
},
|
|
3446
|
-
"translationsBannerOutdatedCount": {
|
|
3447
|
-
"source": "@count blocks have <strong>outdated translations</strong>.",
|
|
3448
|
-
"translation": ""
|
|
3449
|
-
},
|
|
3450
|
-
"translationsBannerOutdatedSingular": {
|
|
3451
|
-
"source": "@count block has an <strong>outdated translation</strong>.",
|
|
3452
|
-
"translation": ""
|
|
3453
|
-
},
|
|
3454
|
-
"translationsBannerPrev": {
|
|
3455
|
-
"source": "Previous block",
|
|
3456
|
-
"translation": ""
|
|
3457
|
-
},
|
|
3458
|
-
"translationsBannerText": {
|
|
3459
|
-
"source": "You are currently editing the <strong>@language</strong> translation.",
|
|
3460
|
-
"translation": ""
|
|
3461
|
-
},
|
|
3462
|
-
"translationsBatchTranslateMenuDescription": {
|
|
3463
|
-
"source": "Translate all blocks",
|
|
3464
|
-
"translation": "Traduire tous les éléments"
|
|
3465
|
-
},
|
|
3466
|
-
"translationsBatchTranslateMenuTitle": {
|
|
3467
|
-
"source": "Translate...",
|
|
3468
|
-
"translation": "Traduire..."
|
|
3469
|
-
},
|
|
3470
|
-
"translationsCsvApply": {
|
|
3471
|
-
"source": "Import @count translations",
|
|
3472
|
-
"translation": ""
|
|
3473
|
-
},
|
|
3474
|
-
"translationsCsvChangesLabel": {
|
|
3475
|
-
"source": "fields will be updated",
|
|
3476
|
-
"translation": ""
|
|
3477
|
-
},
|
|
3478
|
-
"translationsCsvDialogTitle": {
|
|
3479
|
-
"source": "Import/Export Translations",
|
|
3480
|
-
"translation": ""
|
|
3481
|
-
},
|
|
3482
|
-
"translationsCsvDiff": {
|
|
3483
|
-
"source": "Changes",
|
|
3484
|
-
"translation": ""
|
|
3485
|
-
},
|
|
3486
|
-
"translationsCsvExport": {
|
|
3487
|
-
"source": "Export",
|
|
3488
|
-
"translation": ""
|
|
3489
|
-
},
|
|
3490
|
-
"translationsCsvImport": {
|
|
3491
|
-
"source": "Import",
|
|
3492
|
-
"translation": ""
|
|
3493
|
-
},
|
|
3494
|
-
"translationsCsvLanguages": {
|
|
3495
|
-
"source": "Languages",
|
|
3496
|
-
"translation": ""
|
|
3497
|
-
},
|
|
3498
|
-
"translationsCsvMenuTitle": {
|
|
3499
|
-
"source": "Import/export...",
|
|
3500
|
-
"translation": ""
|
|
3501
|
-
},
|
|
3502
|
-
"translationsCsvNoChanges": {
|
|
3503
|
-
"source": "No changes found",
|
|
3504
|
-
"translation": ""
|
|
3505
|
-
},
|
|
3506
|
-
"translationsCsvOnlyMissing": {
|
|
3507
|
-
"source": "Only missing translations",
|
|
3508
|
-
"translation": ""
|
|
3509
|
-
},
|
|
3510
|
-
"translationsCsvOnlyOutdated": {
|
|
3511
|
-
"source": "Only outdated translations",
|
|
3512
|
-
"translation": ""
|
|
3513
|
-
},
|
|
3514
|
-
"translationsCsvTooltip": {
|
|
3515
|
-
"source": "Import or export translations as CSV or PO files",
|
|
3516
|
-
"translation": ""
|
|
3517
|
-
},
|
|
3518
|
-
"translationsDropToImport": {
|
|
3519
|
-
"source": "Drop CSV or PO file to import",
|
|
3520
|
-
"translation": ""
|
|
3521
|
-
},
|
|
3522
|
-
"translationsItemAction": {
|
|
3523
|
-
"source": "Translate",
|
|
3524
|
-
"translation": "Traduire..."
|
|
3525
|
-
},
|
|
3526
|
-
"translationsMarkUpToDate": {
|
|
3527
|
-
"source": "Mark translations as up to date",
|
|
3528
|
-
"translation": ""
|
|
3529
|
-
},
|
|
3530
|
-
"translationsMarkUpToDateDisabled": {
|
|
3531
|
-
"source": "No selected blocks have an outdated translation.",
|
|
3532
|
-
"translation": ""
|
|
3533
|
-
},
|
|
3534
|
-
"translationsSelectImportFile": {
|
|
3535
|
-
"source": "Select CSV or PO file",
|
|
3536
|
-
"translation": ""
|
|
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": ""
|
|
3541
|
-
},
|
|
3542
|
-
"translationsTourTitle": {
|
|
3543
|
-
"source": "Translations",
|
|
3544
|
-
"translation": ""
|
|
3545
|
-
},
|
|
3546
|
-
"translationsTranslateApply": {
|
|
3547
|
-
"source": "Apply @count translations",
|
|
3548
|
-
"translation": ""
|
|
3549
|
-
},
|
|
3550
|
-
"translationsTranslateButton": {
|
|
3551
|
-
"source": "Request @count translations",
|
|
3552
|
-
"translation": ""
|
|
3553
|
-
},
|
|
3554
|
-
"translationsTranslateCurrentColumn": {
|
|
3555
|
-
"source": "Current translation (@language)",
|
|
3556
|
-
"translation": ""
|
|
3557
|
-
},
|
|
3558
|
-
"translationsTranslateDialogTitle": {
|
|
3559
|
-
"source": "Automatic Translation",
|
|
3560
|
-
"translation": ""
|
|
3561
|
-
},
|
|
3562
|
-
"translationsTranslateFieldsLabel": {
|
|
3563
|
-
"source": "fields selected",
|
|
3564
|
-
"translation": ""
|
|
3565
|
-
},
|
|
3566
|
-
"translationsTranslateLoading": {
|
|
3567
|
-
"source": "Translating...",
|
|
3568
|
-
"translation": ""
|
|
3569
|
-
},
|
|
3570
|
-
"translationsTranslateNoTexts": {
|
|
3571
|
-
"source": "No translatable texts found on this page.",
|
|
3572
|
-
"translation": ""
|
|
3573
|
-
},
|
|
3574
|
-
"unexpectedMutationError": {
|
|
3575
|
-
"source": "An unexpected error happened.",
|
|
3576
|
-
"translation": ""
|
|
3577
|
-
},
|
|
3578
|
-
"validationsNoneFound": {
|
|
3579
|
-
"source": "No validation errors found.",
|
|
3580
|
-
"translation": "Aucune erreur de validation trouvée."
|
|
3581
|
-
},
|
|
3582
|
-
"validationsToolbarLabel": {
|
|
3583
|
-
"source": "Validations",
|
|
3584
|
-
"translation": "Validations"
|
|
3585
|
-
},
|
|
3586
|
-
"validationsTourText": {
|
|
3587
|
-
"source": "See validation errors for content or structure on the current page.",
|
|
3588
|
-
"translation": ""
|
|
3589
|
-
},
|
|
3590
|
-
"viewBannerReviewText": {
|
|
3591
|
-
"source": "You can view and add comments but cannot edit content.",
|
|
3592
|
-
"translation": ""
|
|
3593
|
-
},
|
|
3594
|
-
"viewBannerReviewTitle": {
|
|
3595
|
-
"source": "You are in review mode.",
|
|
3596
|
-
"translation": ""
|
|
3597
|
-
},
|
|
3598
|
-
"viewBannerViewText": {
|
|
3599
|
-
"source": "You can view comments but cannot edit content.",
|
|
3600
|
-
"translation": ""
|
|
3601
|
-
},
|
|
3602
|
-
"viewBannerViewTitle": {
|
|
3603
|
-
"source": "You are in view-only mode.",
|
|
3604
|
-
"translation": ""
|
|
3605
|
-
},
|
|
3606
|
-
"workspaceOpen": {
|
|
3607
|
-
"source": "Switch page",
|
|
3608
|
-
"translation": ""
|
|
3609
|
-
},
|
|
3610
|
-
"workspaceSearchPlaceholder": {
|
|
3611
|
-
"source": "Search pages...",
|
|
3612
|
-
"translation": ""
|
|
3613
|
-
},
|
|
3614
|
-
"workspaceTitle": {
|
|
3615
|
-
"source": "Switch page",
|
|
3616
|
-
"translation": ""
|
|
3617
|
-
}
|
|
2
|
+
"actionsDropdownToolip": "Autres actions",
|
|
3
|
+
"addBlockCommand.appendInField": "Ajouter «@block» dans «@field»",
|
|
4
|
+
"addBlockCommand.appendRoot": "Ajouter «@block»",
|
|
5
|
+
"addBlockCommand.insertInField": "Insérer «@block» dans «@field»",
|
|
6
|
+
"addButtonAfterBundle": "Ajouter après...",
|
|
7
|
+
"addButtonBeforeBundle": "Ajouter avant...",
|
|
8
|
+
"addButtonBundleAfter": "Ajouter «@bundle» après",
|
|
9
|
+
"addButtonBundleBefore": "Ajouter «@bundle» avant",
|
|
10
|
+
"addButtonBundleInsideField": "Ajouter «@bundle» dans @parentBundle » @fieldLabel",
|
|
11
|
+
"addButtonInsideField": "Ajouter dans @parentBundle » @fieldLabel...",
|
|
12
|
+
"addCommentToItem": "Commenter",
|
|
13
|
+
"addListItemFavoriteAdd": "Ajouter aux favoris",
|
|
14
|
+
"addListItemFavoriteRemove": "Retirer des favoris",
|
|
15
|
+
"addListSidebarTitle": "Ajouter des blocs",
|
|
16
|
+
"aiAgentAnalyzeContentDone": "@count résultats analysés",
|
|
17
|
+
"aiAgentAnalyzeContentRunning": "Analyse du contenu...",
|
|
18
|
+
"aiAgentPastedText": "Texte collé",
|
|
19
|
+
"aiAgentPlaceholderReply": "Répondre...",
|
|
20
|
+
"aiAgentRemoveAttachment": "Supprimer la pièce jointe",
|
|
21
|
+
"aiAgentTokensCached": "Tokens d'entrée réutilisés (moins cher)",
|
|
22
|
+
"aiAgentTokensCachedLabel": "Cache",
|
|
23
|
+
"aiAgentTokensCost": "Coût estimé pour cette conversation",
|
|
24
|
+
"aiAgentTokensCostLabel": "Coût",
|
|
25
|
+
"aiAgentTokensInput": "Tokens utilisés pour envoyer le contexte à l'IA",
|
|
26
|
+
"aiAgentTokensInputLabel": "Entrée",
|
|
27
|
+
"aiAgentTokensOutput": "Tokens générés par l'IA dans les réponses",
|
|
28
|
+
"aiAgentTokensOutputLabel": "Sortie",
|
|
29
|
+
"analyzeKeepVisibleDescription": "Lorsque activé, les résultats d'analyse restent surlignés sur la page même lorsque le panneau d'analyse est fermé.",
|
|
30
|
+
"analyzerReadabiliyCouldBeSimpler": "Pourrait être plus simple (@lang).",
|
|
31
|
+
"analyzerReadabiliyOkDescription": "Texte qui pourrait être plus facile à lire.",
|
|
32
|
+
"analyzerReadabiliyOkTitle": "Le texte pourrait être plus simple",
|
|
33
|
+
"chartsAreaCurved": "Courbes lisses",
|
|
34
|
+
"chartsAreaMarkers": "Afficher les marqueurs",
|
|
35
|
+
"chartsBarHorizontal": "Horizontal",
|
|
36
|
+
"chartsBarStacked": "Empilé",
|
|
37
|
+
"chartsBorderRadius": "Rayon des coins",
|
|
38
|
+
"chartsBorderRadiusLarge": "Grand",
|
|
39
|
+
"chartsBorderRadiusNone": "Aucun",
|
|
40
|
+
"chartsBorderRadiusSmall": "Petit",
|
|
41
|
+
"chartsDataLabels": "Étiquettes de données",
|
|
42
|
+
"chartsDonutShowLabels": "Afficher les étiquettes",
|
|
43
|
+
"chartsDonutShowTotal": "Afficher le total",
|
|
44
|
+
"chartsGridLines": "Lignes de grille",
|
|
45
|
+
"chartsLegendPosition": "Position de la légende",
|
|
46
|
+
"chartsLineCurved": "Courbes lisses",
|
|
47
|
+
"chartsLineMarkers": "Afficher les marqueurs",
|
|
48
|
+
"chartsOpacityLight": "Léger",
|
|
49
|
+
"chartsOpacitySolid": "Solide",
|
|
50
|
+
"chartsOpacityTransparent": "Transparent",
|
|
51
|
+
"chartsPieShowLabels": "Afficher les étiquettes",
|
|
52
|
+
"chartsPositionBottom": "En bas",
|
|
53
|
+
"chartsPositionRight": "À droite",
|
|
54
|
+
"chartsPositionTop": "En haut",
|
|
55
|
+
"chartsRadarFillOpacity": "Opacité du remplissage",
|
|
56
|
+
"chartsRadarMarkers": "Afficher les marqueurs",
|
|
57
|
+
"chartsRadialBarShowLabels": "Afficher les libellés",
|
|
58
|
+
"chartsRadialBarShowTotal": "Afficher le total",
|
|
59
|
+
"chartsRotationAuto": "Automatique",
|
|
60
|
+
"chartsStrokeMedium": "Moyen",
|
|
61
|
+
"chartsStrokeThick": "Épais",
|
|
62
|
+
"chartsStrokeThin": "Fin",
|
|
63
|
+
"chartsStrokeWidth": "Épaisseur de ligne",
|
|
64
|
+
"chartsTypeHeatmap": "Carte de chaleur",
|
|
65
|
+
"chartsTypeRadar": "Radar",
|
|
66
|
+
"chartsTypeRadialBar": "Barre radiale",
|
|
67
|
+
"chartsXAxisRotation": "Rotation des libellés",
|
|
68
|
+
"close": "Fermer",
|
|
69
|
+
"commentSave": "Sauvegarder le commentaire",
|
|
70
|
+
"comments": "Commentaires",
|
|
71
|
+
"deleteButton": "Supprimer",
|
|
72
|
+
"deleteError": "L'élément n'a pas pu être supprimé.",
|
|
73
|
+
"duplicate": "Dupliquer",
|
|
74
|
+
"duplicateError": "Les éléments n'ont pas pu être dupliqués.",
|
|
75
|
+
"edit": "Modifier",
|
|
76
|
+
"editIndicatorLabel": "Modifier les éléments",
|
|
77
|
+
"exitDescription": "Fermer l’éditeur sans publier",
|
|
78
|
+
"exitTitle": "Fermer",
|
|
79
|
+
"failedToConvert": "L'élément n'a pas pu être converti.",
|
|
80
|
+
"failedToTransform": "The action \"@name\" could not be executed.",
|
|
81
|
+
"feature_add-list_description": "Fournit le conteneur pour afficher une liste de blocs à ajouter ou d'actions.",
|
|
82
|
+
"feature_add-list_label": "Liste d'ajout",
|
|
83
|
+
"feature_analyze_description": "Analyse les blocs et la page pour le SEO, l'accessibilité, etc.",
|
|
84
|
+
"feature_analyze_label": "Analyser",
|
|
85
|
+
"feature_anchors_description": "Affiche des indicateurs pour les blocs avec des ID d'ancre",
|
|
86
|
+
"feature_anchors_label": "Ancres",
|
|
87
|
+
"feature_artboard_description": "Enveloppe toute la page dans une zone de travail qui peut être zoomée et déplacée avec la souris.",
|
|
88
|
+
"feature_artboard_label": "Zone de travail",
|
|
89
|
+
"feature_artboard_setting_momentum_description": "Applique des animations fluides lors du défilement ou du zoom de la zone de travail.",
|
|
90
|
+
"feature_artboard_setting_momentum_label": "Utiliser le défilement fluide",
|
|
91
|
+
"feature_artboard_setting_persist_description": "Stocke et restaure la dernière position et le facteur de zoom de la zone de travail.",
|
|
92
|
+
"feature_artboard_setting_persist_label": "Conserver la position et le zoom",
|
|
93
|
+
"feature_artboard_setting_scrollSpeed_label": "Vitesse de défilement de la zone de travail",
|
|
94
|
+
"feature_clipboard_description": "Fournit l'intégration du presse-papiers pour copier/coller des blocs existants ou coller du contenu pris en charge comme du texte ou des images.",
|
|
95
|
+
"feature_clipboard_label": "Presse-papiers",
|
|
96
|
+
"feature_command-palette_description": "Fournit une palette de commandes avec recherche pour accéder à la plupart des fonctionnalités de l'interface avec le clavier.",
|
|
97
|
+
"feature_command-palette_label": "Palette de commandes",
|
|
98
|
+
"feature_comments_description": "Fournit la fonctionnalité de commentaire pour les blocs.",
|
|
99
|
+
"feature_comments_label": "Commentaires",
|
|
100
|
+
"feature_conversions_description": "Fournit des actions de bloc pour convertir un ou plusieurs blocs vers un type différent.",
|
|
101
|
+
"feature_conversions_label": "Conversions",
|
|
102
|
+
"feature_debug_description": "Fournit la fonctionnalité de débogage.",
|
|
103
|
+
"feature_debug_label": "Débogage",
|
|
104
|
+
"feature_delete_description": "Fournit une action pour supprimer un ou plusieurs blocs.",
|
|
105
|
+
"feature_delete_label": "Supprimer",
|
|
106
|
+
"feature_diff_description": "Affiche un différentiel de toutes les modifications dans l'état d'édition.",
|
|
107
|
+
"feature_diff_label": "Différences",
|
|
108
|
+
"feature_dragging-overlay_description": "Affiche une superposition lors du glissement ou du placement d'un bloc.",
|
|
109
|
+
"feature_dragging-overlay_label": "Superposition de glissement",
|
|
110
|
+
"feature_duplicate_description": "Fournit une action pour dupliquer un ou plusieurs blocs sur place.",
|
|
111
|
+
"feature_duplicate_label": "Dupliquer",
|
|
112
|
+
"feature_edit-form_description": "Écoute les événements d'édition et affiche une iframe contenant le formulaire d'édition.",
|
|
113
|
+
"feature_edit-form_label": "Formulaire d'édition",
|
|
114
|
+
"feature_edit_description": "Fournit une action pour modifier un bloc.",
|
|
115
|
+
"feature_edit_label": "Modifier",
|
|
116
|
+
"feature_editable-field_description": "Implémente une superposition de formulaire pour modifier un seul champ d'un bloc.",
|
|
117
|
+
"feature_editable-field_label": "Champ modifiable",
|
|
118
|
+
"feature_editable-mask_description": "Fournit une option d'affichage pour masquer les parties non modifiables de la page.",
|
|
119
|
+
"feature_editable-mask_label": "Masque modifiable",
|
|
120
|
+
"feature_entity-title_description": "Affiche le titre et le statut de l'entité de page.",
|
|
121
|
+
"feature_entity-title_label": "Titre de l'entité",
|
|
122
|
+
"feature_exit_description": "Fournit un bouton de menu pour quitter l'éditeur sans sauvegarder.",
|
|
123
|
+
"feature_exit_label": "Quitter",
|
|
124
|
+
"feature_fragments_description": "Permet d'ajouter des fragments de contenu définis par le frontend.",
|
|
125
|
+
"feature_fragments_label": "Fragments",
|
|
126
|
+
"feature_grid_description": "Fournit une option d'affichage pour afficher une grille.",
|
|
127
|
+
"feature_grid_label": "Grille",
|
|
128
|
+
"feature_help_description": "Fournit un panneau d'encadré avec des informations utiles sur l'utilisation de blökkli.",
|
|
129
|
+
"feature_help_label": "Aide",
|
|
130
|
+
"feature_history_description": "Implémente le support des fonctionnalités d'historique (annuler, rétablir, liste des mutations).",
|
|
131
|
+
"feature_history_label": "Historique",
|
|
132
|
+
"feature_history_setting_useMouseButtons_description": "Lorsque activé, vous pouvez utiliser les boutons arrière/avant de votre souris pour annuler et rétablir.",
|
|
133
|
+
"feature_history_setting_useMouseButtons_label": "Utiliser les boutons de la souris pour annuler/rétablir",
|
|
134
|
+
"feature_import-existing_description": "Implémente une action de menu qui affiche une boîte de dialogue pour importer des blocs depuis une autre entité.",
|
|
135
|
+
"feature_import-existing_label": "Importer du contenu existant",
|
|
136
|
+
"feature_import-existing_setting_showDialogWhenEmpty_description": "Affiche la boîte de dialogue d'importation au démarrage de blökkli si la page est vide.",
|
|
137
|
+
"feature_import-existing_setting_showDialogWhenEmpty_label": "Afficher la boîte de dialogue d'importation au démarrage",
|
|
138
|
+
"feature_library_description": "Implémente le support d'une bibliothèque de blocs pour gérer les blocs réutilisables.",
|
|
139
|
+
"feature_library_label": "Bibliothèque",
|
|
140
|
+
"feature_media-library_description": "Implémente une bibliothèque de médias pour glisser-déposer facilement des médias comme des images ou des vidéos.",
|
|
141
|
+
"feature_media-library_label": "Bibliothèque de médias",
|
|
142
|
+
"feature_multi-select_description": "Implémente le support de la sélection de plusieurs blocs à l'aide d'un rectangle de sélection.",
|
|
143
|
+
"feature_multi-select_label": "Sélection multiple",
|
|
144
|
+
"feature_options_description": "Affiche le formulaire d'options pour un ou plusieurs blocs.",
|
|
145
|
+
"feature_options_label": "Options",
|
|
146
|
+
"feature_ownership_description": "Affiche un grand bouton pour prendre la propriété de l'état d'édition actuel.",
|
|
147
|
+
"feature_ownership_label": "Propriété",
|
|
148
|
+
"feature_preview-grant_description": "Fournit un bouton pour ouvrir une boîte de dialogue avec un code QR pour prévisualiser la page sur un smartphone.",
|
|
149
|
+
"feature_preview-grant_label": "Accès à l'aperçu",
|
|
150
|
+
"feature_preview_description": "Fournit un bouton pour ouvrir un aperçu dans une nouvelle fenêtre.",
|
|
151
|
+
"feature_preview_label": "Aperçu",
|
|
152
|
+
"feature_proxy_view_description": "Affiche les blocs sous forme de structure dans l'aperçu.",
|
|
153
|
+
"feature_proxy_view_label": "Vue structurée",
|
|
154
|
+
"feature_publish_description": "Fournit un bouton de menu pour publier les modifications de l'entité actuelle.",
|
|
155
|
+
"feature_publish_label": "Publier",
|
|
156
|
+
"feature_publish_setting_closeAfterPublish_description": "Ferme immédiatement l'éditeur après une publication ou une sauvegarde réussie.",
|
|
157
|
+
"feature_publish_setting_closeAfterPublish_label": "Fermer l'éditeur après publication",
|
|
158
|
+
"feature_responsive-preview_description": "Fournit un aperçu responsive de l'état d'édition actuel dans une iframe.",
|
|
159
|
+
"feature_responsive-preview_label": "Aperçu responsive",
|
|
160
|
+
"feature_revert_description": "Fournit un bouton de menu pour annuler toutes les modifications effectuées sur l'entité actuelle.",
|
|
161
|
+
"feature_revert_label": "Annuler",
|
|
162
|
+
"feature_search_description": "Fournit une superposition avec raccourci pour rechercher des blocs sur la page actuelle ou du contenu existant à ajouter en tant que blocs.",
|
|
163
|
+
"feature_search_label": "Rechercher",
|
|
164
|
+
"feature_selection_description": "Affiche une superposition qui met en évidence les blocs sélectionnés.",
|
|
165
|
+
"feature_selection_label": "Sélection",
|
|
166
|
+
"feature_settings_description": "Fournit un bouton de menu pour afficher une boîte de dialogue de paramètres.",
|
|
167
|
+
"feature_settings_label": "Paramètres",
|
|
168
|
+
"feature_settings_setting_lowPerformanceMode_description": "Réduit les animations et l'interactivité au minimum pour les appareils avec de faibles performances.",
|
|
169
|
+
"feature_settings_setting_lowPerformanceMode_label": "Activer le mode basse performance",
|
|
170
|
+
"feature_settings_setting_resetAllSettings_label": "Réinitialiser tous les paramètres",
|
|
171
|
+
"feature_settings_setting_useAnimations_description": "Anime les éléments de l'interface comme les boîtes de dialogue ou les tiroirs, ou les interactions comme le glisser-déposer ou les changements de défilement.",
|
|
172
|
+
"feature_settings_setting_useAnimations_label": "Utiliser les animations",
|
|
173
|
+
"feature_structure_description": "Fournit un bouton d'encadré pour afficher une liste structurée de tous les blocs sur la page actuelle.",
|
|
174
|
+
"feature_structure_label": "Structure",
|
|
175
|
+
"feature_theme_description": "Implémente un éditeur de thème.",
|
|
176
|
+
"feature_theme_label": "Thème",
|
|
177
|
+
"feature_touch-action-bar_description": "Affiche un bouton sur les appareils tactiles pour annuler les actions tactiles.",
|
|
178
|
+
"feature_touch-action-bar_label": "Barre d'actions tactiles",
|
|
179
|
+
"feature_tour_description": "Fournit une superposition de visite guidée pour découvrir l'éditeur.",
|
|
180
|
+
"feature_tour_label": "Visite guidée",
|
|
181
|
+
"feature_transform_description": "Fournit l'intégration pour les plugins de transformation de blocs.",
|
|
182
|
+
"feature_transform_label": "Transformer",
|
|
183
|
+
"feature_translations_description": "Ajoute le support des traductions de blocs.",
|
|
184
|
+
"feature_translations_label": "Traductions",
|
|
185
|
+
"feature_validations_description": "Fournit un panneau d'encadré pour afficher les validations.",
|
|
186
|
+
"feature_validations_label": "Validations",
|
|
187
|
+
"fieldIsRequired": "Ce champ est obligatoire",
|
|
188
|
+
"gridHide": "Masquer la grille",
|
|
189
|
+
"gridShow": "Afficher la grille",
|
|
190
|
+
"history": "Historique",
|
|
191
|
+
"historyCurrentRevision": "Révision actuelle",
|
|
192
|
+
"historyShowMore": "@count autres à afficher",
|
|
193
|
+
"importExistingDescription": "Importer d’une page existante",
|
|
194
|
+
"importExistingDialogLead": "Importez du contenu d’une page existante. Les éléments seront ajoutés à la fin de la liste. Cette action peut être annulée.",
|
|
195
|
+
"importExistingDialogSubmit": "Importer le contenu",
|
|
196
|
+
"importExistingDialogTitle": "Importer d’une page existante",
|
|
197
|
+
"importExistingError": "Le contenu n’a pas pu être importé.",
|
|
198
|
+
"importExistingFieldsLabel": "Quel contenu souhaitez-vous importer ?",
|
|
199
|
+
"importExistingSuccess": "Contenu importé avec succès.",
|
|
200
|
+
"importExistingTitle": "Importer...",
|
|
201
|
+
"libraryAdd": "Ajouter à la bibliothèque",
|
|
202
|
+
"libraryDialogDescriptionLabel": "Description",
|
|
203
|
+
"libraryDialogLead": "En ajoutant un élément à la bibliothèque, vous pouvez l’utiliser sur plusieurs pages à la fois. Les modifications apportées à cet élément seront alors immédiatement publiées sur toutes les pages.",
|
|
204
|
+
"libraryDialogSubmit": "Ajouter à la bibliothèque",
|
|
205
|
+
"libraryDialogTitle": "Ajouter à la bibliothèque",
|
|
206
|
+
"libraryDialogTitleInputPlaceholder": "Ex. : Teaser campagne 2023",
|
|
207
|
+
"libraryError": "L'élément n’a pas pu être rendu réutilisable.",
|
|
208
|
+
"libraryPreviewLabel": "Aperçu",
|
|
209
|
+
"maskHide": "Masquer les champs de contenu",
|
|
210
|
+
"maskShow": "Afficher les champs de contenu",
|
|
211
|
+
"multipleItemsLabel": "Éléments",
|
|
212
|
+
"ownershipError": "Erreur lors de l’attribution",
|
|
213
|
+
"ownershipNote": "Cette page est actuellement en cours de modification par @name. Les modifications ne peuvent être effectuées que par une personne à la fois.",
|
|
214
|
+
"ownershipSuccess": "Vous en êtes maintenant le propriétaire.",
|
|
215
|
+
"ownershipTakeOwnership": "Me l’attribuer",
|
|
216
|
+
"pageIsNotPublished": "La page n’est pas publiée",
|
|
217
|
+
"pageIsPublished": "La page est publiée",
|
|
218
|
+
"pageIsPublishedWithPendingChanges": "La page est publiée (modifications en attente)",
|
|
219
|
+
"previewDialogLead": "Scannez le code QR avec votre smartphone pour ouvrir l’aperçu.",
|
|
220
|
+
"previewDialogTitle": "Aperçu avec smartphone",
|
|
221
|
+
"previewNewWindow": "Aperçu (nouvelle fenêtre)",
|
|
222
|
+
"previewWithSmartphone": "Aperçu (avec smartphone)",
|
|
223
|
+
"publishDescription": "Rendre toutes les modifications publiques",
|
|
224
|
+
"publishError": "Les modifications n’ont pas pu être publiées.",
|
|
225
|
+
"publishLabel": "Publier",
|
|
226
|
+
"publishRevisionLogMessage": "Description des modifications",
|
|
227
|
+
"publishSuccess": "Modifications publiées avec succès.",
|
|
228
|
+
"readabilityTooShort": "Trop court",
|
|
229
|
+
"readabilityTooShortTooltip": "Le texte nécessite au moins @count mots pour l'analyse de lisibilité.",
|
|
230
|
+
"readabilityTooltipDescription": "@label mesure la facilité de lecture du texte.",
|
|
231
|
+
"revertDialogLead": "Cela supprimera toutes les modifications et restaurera l’état actuellement publié. Cette action est irréversible.",
|
|
232
|
+
"revertDialogSubmit": "Annuler les modifications",
|
|
233
|
+
"revertDialogTitle": "Annuler les modifications de façon irréversible",
|
|
234
|
+
"revertError": "Les modifications n’ont pas pu être annulées.",
|
|
235
|
+
"revertMenuDescription": "Restaurer l’état actuellement publié",
|
|
236
|
+
"revertMenuTitle": "Annuler...",
|
|
237
|
+
"revertSuccess": "Toutes les modifications ont été annulées.",
|
|
238
|
+
"searchBoxNoResultsFound": "Aucun résultat trouvé",
|
|
239
|
+
"searchBoxOnThisPage": "Sur cette page",
|
|
240
|
+
"searchBoxPlaceholder": "Entrer un terme de recherche",
|
|
241
|
+
"searchToolbarLabel": "Rechercher des contenus",
|
|
242
|
+
"settingsBehaviour": "Comportement",
|
|
243
|
+
"settingsDialogTitle": "Paramètres",
|
|
244
|
+
"settingsMenuDescription": "Paramètres personnels pour l’éditeur",
|
|
245
|
+
"settingsMenuTitle": "Paramètres",
|
|
246
|
+
"structureToolbarLabel": "Structure",
|
|
247
|
+
"translationsBatchTranslateMenuDescription": "Traduire tous les éléments",
|
|
248
|
+
"translationsBatchTranslateMenuTitle": "Traduire...",
|
|
249
|
+
"translationsItemAction": "Traduire...",
|
|
250
|
+
"validationsNoneFound": "Aucune erreur de validation trouvée.",
|
|
251
|
+
"validationsToolbarLabel": "Validations"
|
|
3618
252
|
}
|