@blokkli/editor 1.2.0 → 1.3.1
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/module.json +1 -1
- package/dist/module.mjs +1678 -41
- package/dist/runtime/adapter/drupal/graphql/base.graphql +14 -3
- package/dist/runtime/adapter/drupal/graphql/comments.graphql +6 -1
- package/dist/runtime/adapter/drupal/graphql/transform.graphql +10 -2
- package/dist/runtime/adapter/drupal/graphqlMiddleware.js +26 -18
- package/dist/runtime/adapter/index.d.ts +6 -2
- package/dist/runtime/blokkliPlugins/Sidebar/index.vue +4 -1
- package/dist/runtime/components/BlokkliField.vue +8 -2
- package/dist/runtime/components/Edit/Actions/index.vue +27 -6
- package/dist/runtime/components/Edit/AnimationCanvas/index.vue +1 -0
- package/dist/runtime/components/Edit/DragInteractions/index.vue +7 -0
- package/dist/runtime/components/Edit/EditProvider.vue +23 -5
- package/dist/runtime/components/Edit/Features/Artboard/index.vue +4 -0
- package/dist/runtime/components/Edit/Features/BlockAddList/index.vue +1 -0
- package/dist/runtime/components/Edit/Features/Clipboard/index.vue +3 -1
- package/dist/runtime/components/Edit/Features/CommandPalette/Palette/index.vue +14 -2
- package/dist/runtime/components/Edit/Features/Debug/index.vue +26 -4
- package/dist/runtime/components/Edit/Features/Diff/DiffView/index.vue +236 -0
- package/dist/runtime/components/Edit/Features/Diff/index.vue +37 -0
- package/dist/runtime/components/Edit/Features/DraggingOverlay/DragItems/index.vue +14 -4
- package/dist/runtime/components/Edit/Features/DraggingOverlay/DropTargets/index.vue +3 -0
- package/dist/runtime/components/Edit/Features/EditForm/Frame/index.vue +8 -1
- package/dist/runtime/components/Edit/Features/EditableField/index.vue +11 -5
- package/dist/runtime/components/Edit/Features/EntityTitle/index.vue +1 -0
- package/dist/runtime/components/Edit/Features/History/index.vue +3 -1
- package/dist/runtime/components/Edit/Features/ImportExisting/index.vue +5 -2
- package/dist/runtime/components/Edit/Features/Library/ReusableDialog/index.vue +10 -3
- package/dist/runtime/components/Edit/Features/MediaLibrary/Library/Item.vue +2 -0
- package/dist/runtime/components/Edit/Features/MultiSelect/index.vue +4 -1
- package/dist/runtime/components/Edit/Features/Options/Form/index.vue +14 -1
- package/dist/runtime/components/Edit/Features/Preview/index.vue +2 -1
- package/dist/runtime/components/Edit/Features/PreviewGrant/index.vue +2 -1
- package/dist/runtime/components/Edit/Features/Publish/index.vue +2 -0
- package/dist/runtime/components/Edit/Features/ResponsivePreview/index.vue +2 -1
- package/dist/runtime/components/Edit/Features/Selection/Overlay/fragment.glsl +78 -44
- package/dist/runtime/components/Edit/Features/Selection/Overlay/index.vue +8 -8
- package/dist/runtime/components/Edit/Features/Selection/Overlay/vertex.glsl +6 -1
- package/dist/runtime/components/Edit/Features/Settings/Dialog/FeatureSetting/index.vue +23 -2
- package/dist/runtime/components/Edit/Features/Settings/Dialog/index.vue +71 -38
- package/dist/runtime/components/Edit/Features/Settings/index.vue +4 -0
- package/dist/runtime/components/Edit/Features/Transform/index.vue +5 -1
- package/dist/runtime/components/Edit/Features/Translations/index.vue +24 -2
- package/dist/runtime/components/Edit/Features/index.vue +4 -0
- package/dist/runtime/components/Edit/InfoBox/index.vue +14 -0
- package/dist/runtime/components/Edit/Messages/index.vue +10 -12
- package/dist/runtime/components/Edit/PreviewProvider.vue +9 -2
- package/dist/runtime/components/Edit/index.d.ts +2 -1
- package/dist/runtime/components/Edit/index.js +3 -1
- package/dist/runtime/constants/index.d.ts +1 -1
- package/dist/runtime/constants/index.js +1 -0
- package/dist/runtime/css/output.css +1 -1
- package/dist/runtime/helpers/animationProvider.js +2 -1
- package/dist/runtime/helpers/featuresProvider.d.ts +7 -14
- package/dist/runtime/helpers/featuresProvider.js +29 -1
- package/dist/runtime/helpers/stateProvider.d.ts +1 -0
- package/dist/runtime/helpers/stateProvider.js +23 -4
- package/dist/runtime/helpers/uiProvider.d.ts +5 -1
- package/dist/runtime/helpers/uiProvider.js +10 -2
- package/dist/runtime/icons/diff.svg +1 -0
- package/dist/runtime/icons/info.svg +1 -0
- package/dist/runtime/types/index.d.ts +59 -1
- package/package.json +2 -1
package/dist/module.mjs
CHANGED
|
@@ -7,7 +7,7 @@ import MagicString from 'magic-string';
|
|
|
7
7
|
import { walk } from 'estree-walker-ts';
|
|
8
8
|
import { BK_VISIBLE_LANGUAGES, BK_HIDDEN_GLOBALLY } from '../dist/runtime/helpers/symbols.js';
|
|
9
9
|
|
|
10
|
-
const version = "1.
|
|
10
|
+
const version = "1.3.1";
|
|
11
11
|
|
|
12
12
|
function sortObjectKeys(obj) {
|
|
13
13
|
if (Array.isArray(obj)) {
|
|
@@ -146,12 +146,12 @@ class BlockExtractor {
|
|
|
146
146
|
} catch {
|
|
147
147
|
}
|
|
148
148
|
}
|
|
149
|
-
async
|
|
150
|
-
const folder = path.dirname(
|
|
151
|
-
const
|
|
149
|
+
async getContextComponent(baseComponentPath, name) {
|
|
150
|
+
const folder = path.dirname(baseComponentPath);
|
|
151
|
+
const componentPath = path.join(folder, `/${name}.vue`);
|
|
152
152
|
try {
|
|
153
|
-
await fs.promises.access(
|
|
154
|
-
return
|
|
153
|
+
await fs.promises.access(componentPath, fs.constants.F_OK);
|
|
154
|
+
return componentPath;
|
|
155
155
|
} catch {
|
|
156
156
|
}
|
|
157
157
|
}
|
|
@@ -177,7 +177,8 @@ class BlockExtractor {
|
|
|
177
177
|
}
|
|
178
178
|
if ("bundle" in extracted.definition) {
|
|
179
179
|
const icon = await this.getIcon(filePath2);
|
|
180
|
-
const
|
|
180
|
+
const proxyComponent = await this.getContextComponent(filePath2, "proxy");
|
|
181
|
+
const diffComponent = await this.getContextComponent(filePath2, "diff");
|
|
181
182
|
if (this.definitions[filePath2] && this.definitions[filePath2]?.source === extracted.source) {
|
|
182
183
|
return false;
|
|
183
184
|
}
|
|
@@ -187,7 +188,8 @@ class BlockExtractor {
|
|
|
187
188
|
filePath: filePath2,
|
|
188
189
|
definition: extracted.definition,
|
|
189
190
|
icon,
|
|
190
|
-
|
|
191
|
+
proxyComponent,
|
|
192
|
+
diffComponent,
|
|
191
193
|
chunkName: extracted.definition.chunkName || "global",
|
|
192
194
|
componentName: "BlokkliComponent_" + extracted.definition.bundle + "_" + componentFileName,
|
|
193
195
|
source: extracted.source,
|
|
@@ -277,30 +279,43 @@ class BlockExtractor {
|
|
|
277
279
|
}
|
|
278
280
|
return acc;
|
|
279
281
|
}, {});
|
|
280
|
-
const
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
282
|
+
const buildContextComponents = (name) => {
|
|
283
|
+
const proxyComponents = Object.values(this.definitions).reduce((acc, v) => {
|
|
284
|
+
if (v?.[name]) {
|
|
285
|
+
acc[v.definition.bundle] = v[name];
|
|
286
|
+
}
|
|
287
|
+
return acc;
|
|
288
|
+
}, {});
|
|
289
|
+
const imports = Object.entries(proxyComponents).map(([bundle, proxyComponentPath]) => {
|
|
290
|
+
return `import ${name}_${bundle} from '${proxyComponentPath}'`;
|
|
291
|
+
}).join("\n");
|
|
292
|
+
const maps = Object.keys(proxyComponents).map((bundle) => {
|
|
293
|
+
return `'${bundle}': ${name}_${bundle}`;
|
|
294
|
+
}).join(", \n");
|
|
295
|
+
return {
|
|
296
|
+
imports,
|
|
297
|
+
maps
|
|
298
|
+
};
|
|
299
|
+
};
|
|
300
|
+
const proxy = buildContextComponents("proxyComponent");
|
|
301
|
+
const diff = buildContextComponents("diffComponent");
|
|
292
302
|
const allFragmentNames = Object.values(this.fragmentDefinitions).filter(falsy).map((v) => `'${v.definition.name}'`).join(" | ");
|
|
293
303
|
return `import type { GlobalOptionsKey, ValidFieldListTypes, BlockBundleWithNested } from './generated-types'
|
|
294
304
|
import type { BlockDefinitionInput, BlockDefinitionOptionsInput, FragmentDefinitionInput } from '#blokkli/types'
|
|
295
305
|
export const globalOptions = ${JSON.stringify(globalOptions, null, 2)} as const
|
|
296
|
-
${
|
|
306
|
+
${proxy.imports}
|
|
307
|
+
${diff.imports}
|
|
297
308
|
|
|
298
309
|
type DefinitionItem = BlockDefinitionInput<BlockDefinitionOptionsInput, GlobalOptionsKey[]>
|
|
299
310
|
|
|
300
311
|
${definitionDeclarations.join("\n")}
|
|
301
312
|
|
|
302
313
|
const PROXY_COMPONENTS: Record<string, any> = {
|
|
303
|
-
${
|
|
314
|
+
${proxy.maps}
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
const DIFF_COMPONENTS: Record<string, any> = {
|
|
318
|
+
${diff.maps}
|
|
304
319
|
}
|
|
305
320
|
|
|
306
321
|
export const icons: Record<string, string> = ${JSON.stringify(icons)}
|
|
@@ -340,6 +355,10 @@ export function getBlokkliItemProxyComponent(bundle: string): any {
|
|
|
340
355
|
return PROXY_COMPONENTS[bundle]
|
|
341
356
|
}
|
|
342
357
|
|
|
358
|
+
export function getBlokkliItemDiffComponent(bundle: string): any {
|
|
359
|
+
return DIFF_COMPONENTS[bundle]
|
|
360
|
+
}
|
|
361
|
+
|
|
343
362
|
/**
|
|
344
363
|
* Get the definition of the default block component.
|
|
345
364
|
*/
|
|
@@ -934,6 +953,42 @@ const deleteError$2 = {
|
|
|
934
953
|
source: "The block could not be deleted.",
|
|
935
954
|
translation: "Das Element konnte nicht entfernt werden."
|
|
936
955
|
};
|
|
956
|
+
const diffSidebarTitle$2 = {
|
|
957
|
+
source: "Changes",
|
|
958
|
+
translation: "Änderungen"
|
|
959
|
+
};
|
|
960
|
+
const diffSidebarTourText$2 = {
|
|
961
|
+
source: "Displays all the changes made during editing.",
|
|
962
|
+
translation: "Zeigt die Änderungen an die während dem Bearbeiten durchgeführt wurden."
|
|
963
|
+
};
|
|
964
|
+
const diffStatusAdded$2 = {
|
|
965
|
+
source: "Added",
|
|
966
|
+
translation: "Hinzugefügt"
|
|
967
|
+
};
|
|
968
|
+
const diffStatusDeleted$2 = {
|
|
969
|
+
source: "Deleted",
|
|
970
|
+
translation: "Gelöscht"
|
|
971
|
+
};
|
|
972
|
+
const diffStatusEdited$2 = {
|
|
973
|
+
source: "Edited",
|
|
974
|
+
translation: "Bearbeitet"
|
|
975
|
+
};
|
|
976
|
+
const diffTableBundle$2 = {
|
|
977
|
+
source: "Type",
|
|
978
|
+
translation: "Typ"
|
|
979
|
+
};
|
|
980
|
+
const diffTableChange$2 = {
|
|
981
|
+
source: "Change",
|
|
982
|
+
translation: "Änderung"
|
|
983
|
+
};
|
|
984
|
+
const diffTableDiff$2 = {
|
|
985
|
+
source: "Diff",
|
|
986
|
+
translation: "Unterschied"
|
|
987
|
+
};
|
|
988
|
+
const diffTableProperty$2 = {
|
|
989
|
+
source: "Property",
|
|
990
|
+
translation: "Eigenschaft"
|
|
991
|
+
};
|
|
937
992
|
const droppableEditFormSave$2 = {
|
|
938
993
|
source: "Save",
|
|
939
994
|
translation: "Speichern"
|
|
@@ -1022,10 +1077,26 @@ const featureHelpTitle$2 = {
|
|
|
1022
1077
|
source: "Help",
|
|
1023
1078
|
translation: "Hilfe"
|
|
1024
1079
|
};
|
|
1080
|
+
const feature_artboard_description$2 = {
|
|
1081
|
+
source: "Wraps the entire page in an artboard that can be zoomed and moved using the mouse.",
|
|
1082
|
+
translation: ""
|
|
1083
|
+
};
|
|
1084
|
+
const feature_artboard_label$2 = {
|
|
1085
|
+
source: "Artboard",
|
|
1086
|
+
translation: ""
|
|
1087
|
+
};
|
|
1088
|
+
const feature_artboard_setting_momentum_description$2 = {
|
|
1089
|
+
source: "Applies smooth animations when scrolling or zooming the artboard.",
|
|
1090
|
+
translation: "Verwendet sanftes Scrollen und Vergrössern der Vorschau."
|
|
1091
|
+
};
|
|
1025
1092
|
const feature_artboard_setting_momentum_label$2 = {
|
|
1026
1093
|
source: "Use smooth scrolling",
|
|
1027
1094
|
translation: "Sanftes Scrollen verwenden"
|
|
1028
1095
|
};
|
|
1096
|
+
const feature_artboard_setting_persist_description$2 = {
|
|
1097
|
+
source: "Stores and restores the last position and zoom factor of the artboard.",
|
|
1098
|
+
translation: "Speichern und Wiederherstellen der letzten Position und Skalierung der Vorschau."
|
|
1099
|
+
};
|
|
1029
1100
|
const feature_artboard_setting_persist_label$2 = {
|
|
1030
1101
|
source: "Persist position and zoom",
|
|
1031
1102
|
translation: "Position und Zoom speichern"
|
|
@@ -1034,18 +1105,226 @@ const feature_artboard_setting_scrollSpeed_label$2 = {
|
|
|
1034
1105
|
source: "Artboard scroll speed",
|
|
1035
1106
|
translation: "Scrollgeschwindigkeit der Vorschau"
|
|
1036
1107
|
};
|
|
1108
|
+
const feature_assistant_description$2 = {
|
|
1109
|
+
source: "Provides a dynamic add block action to add one or more blocks generated by an AI assistant.",
|
|
1110
|
+
translation: ""
|
|
1111
|
+
};
|
|
1112
|
+
const feature_assistant_label$2 = {
|
|
1113
|
+
source: "Assistant",
|
|
1114
|
+
translation: ""
|
|
1115
|
+
};
|
|
1116
|
+
const feature_clipboard_description$2 = {
|
|
1117
|
+
source: "Provides clipboard integration to copy/paste existing blocks or paste supported clipboard content like text or images.",
|
|
1118
|
+
translation: ""
|
|
1119
|
+
};
|
|
1120
|
+
const feature_clipboard_label$2 = {
|
|
1121
|
+
source: "Clipboard",
|
|
1122
|
+
translation: ""
|
|
1123
|
+
};
|
|
1124
|
+
const feature_clipboard_setting_openSidebarOnPaste_description$2 = {
|
|
1125
|
+
source: "Automatically opens the sidebar when pasting content from the clipboard.",
|
|
1126
|
+
translation: "Öffnet automatisch die Seitenleiste wenn Inhalte aus der Zwischenablage eingefügt werden."
|
|
1127
|
+
};
|
|
1037
1128
|
const feature_clipboard_setting_openSidebarOnPaste_label$2 = {
|
|
1038
|
-
source: "Open sidebar when pasting
|
|
1129
|
+
source: "Open sidebar when pasting",
|
|
1039
1130
|
translation: "Seitenleiste beim Einfügen aus der Zwischenablage öffnen"
|
|
1040
1131
|
};
|
|
1132
|
+
const feature_comments_description$2 = {
|
|
1133
|
+
source: "Provides comment functionality for blocks.",
|
|
1134
|
+
translation: ""
|
|
1135
|
+
};
|
|
1136
|
+
const feature_comments_label$2 = {
|
|
1137
|
+
source: "Comments",
|
|
1138
|
+
translation: ""
|
|
1139
|
+
};
|
|
1140
|
+
const feature_conversions_description$2 = {
|
|
1141
|
+
source: "Provides block actions to convert one or more blocks to a different bundle.",
|
|
1142
|
+
translation: ""
|
|
1143
|
+
};
|
|
1144
|
+
const feature_conversions_label$2 = {
|
|
1145
|
+
source: "Conversions",
|
|
1146
|
+
translation: ""
|
|
1147
|
+
};
|
|
1148
|
+
const feature_debug_description$2 = {
|
|
1149
|
+
source: "Provides debugging functionality.",
|
|
1150
|
+
translation: ""
|
|
1151
|
+
};
|
|
1152
|
+
const feature_debug_label$2 = {
|
|
1153
|
+
source: "Debug",
|
|
1154
|
+
translation: ""
|
|
1155
|
+
};
|
|
1156
|
+
const feature_delete_description$2 = {
|
|
1157
|
+
source: "Provides an action to delete one or more blocks.",
|
|
1158
|
+
translation: ""
|
|
1159
|
+
};
|
|
1160
|
+
const feature_delete_label$2 = {
|
|
1161
|
+
source: "Delete",
|
|
1162
|
+
translation: ""
|
|
1163
|
+
};
|
|
1164
|
+
const feature_diff_description$2 = {
|
|
1165
|
+
source: "Displays a diff of all changes in the edit state.",
|
|
1166
|
+
translation: "Zeigt die Änderungen an die während dem Bearbeiten durchgeführt wurden."
|
|
1167
|
+
};
|
|
1168
|
+
const feature_diff_label$2 = {
|
|
1169
|
+
source: "Diff",
|
|
1170
|
+
translation: "Änderungen"
|
|
1171
|
+
};
|
|
1172
|
+
const feature_duplicate_description$2 = {
|
|
1173
|
+
source: "Provides an action to duplicate one or more blocks in place.",
|
|
1174
|
+
translation: ""
|
|
1175
|
+
};
|
|
1176
|
+
const feature_duplicate_label$2 = {
|
|
1177
|
+
source: "Duplicate",
|
|
1178
|
+
translation: ""
|
|
1179
|
+
};
|
|
1180
|
+
const feature_edit_description$2 = {
|
|
1181
|
+
source: "Provides an action to edit a block.",
|
|
1182
|
+
translation: ""
|
|
1183
|
+
};
|
|
1184
|
+
const feature_edit_label$2 = {
|
|
1185
|
+
source: "Edit",
|
|
1186
|
+
translation: ""
|
|
1187
|
+
};
|
|
1188
|
+
const feature_exit_description$2 = {
|
|
1189
|
+
source: "Provides a menu button to exit the editor without saving.",
|
|
1190
|
+
translation: ""
|
|
1191
|
+
};
|
|
1192
|
+
const feature_exit_label$2 = {
|
|
1193
|
+
source: "Exit",
|
|
1194
|
+
translation: ""
|
|
1195
|
+
};
|
|
1196
|
+
const feature_fragments_description$2 = {
|
|
1197
|
+
source: "Provides way to add content fragments defined by the frontend.",
|
|
1198
|
+
translation: ""
|
|
1199
|
+
};
|
|
1200
|
+
const feature_fragments_label$2 = {
|
|
1201
|
+
source: "Fragments",
|
|
1202
|
+
translation: ""
|
|
1203
|
+
};
|
|
1204
|
+
const feature_grid_description$2 = {
|
|
1205
|
+
source: "Provides a view option to render a grid.",
|
|
1206
|
+
translation: ""
|
|
1207
|
+
};
|
|
1208
|
+
const feature_grid_label$2 = {
|
|
1209
|
+
source: "Grid",
|
|
1210
|
+
translation: ""
|
|
1211
|
+
};
|
|
1212
|
+
const feature_help_description$2 = {
|
|
1213
|
+
source: "Provides a sidebar pane with helpful information on how to use blokkli.",
|
|
1214
|
+
translation: ""
|
|
1215
|
+
};
|
|
1216
|
+
const feature_help_label$2 = {
|
|
1217
|
+
source: "Help",
|
|
1218
|
+
translation: ""
|
|
1219
|
+
};
|
|
1220
|
+
const feature_history_description$2 = {
|
|
1221
|
+
source: "Implements support for history features (undo, redo, list of mutations).",
|
|
1222
|
+
translation: ""
|
|
1223
|
+
};
|
|
1224
|
+
const feature_history_label$2 = {
|
|
1225
|
+
source: "History",
|
|
1226
|
+
translation: ""
|
|
1227
|
+
};
|
|
1228
|
+
const feature_history_setting_useMouseButtons_description$2 = {
|
|
1229
|
+
source: "When enabled you can use the backwards/forwards buttons on your mouse to undo and redo.",
|
|
1230
|
+
translation: "Verwendet die Zurück- und Vorärts-Taste der Maus um die letzte Änderung rückgängig zu machen, respektive wiederherzustellen."
|
|
1231
|
+
};
|
|
1041
1232
|
const feature_history_setting_useMouseButtons_label$2 = {
|
|
1042
1233
|
source: "Use mouse buttons for undo/redo",
|
|
1043
1234
|
translation: "Maustasten für Rückgängig/Wiederherstellen verwenden"
|
|
1044
1235
|
};
|
|
1236
|
+
const feature_library_description$2 = {
|
|
1237
|
+
source: "Implements support for a block library to manage reusable blocks.",
|
|
1238
|
+
translation: ""
|
|
1239
|
+
};
|
|
1240
|
+
const feature_library_label$2 = {
|
|
1241
|
+
source: "Library",
|
|
1242
|
+
translation: ""
|
|
1243
|
+
};
|
|
1244
|
+
const feature_options_description$2 = {
|
|
1245
|
+
source: "Renders the options form for one or more blocks.",
|
|
1246
|
+
translation: ""
|
|
1247
|
+
};
|
|
1248
|
+
const feature_options_label$2 = {
|
|
1249
|
+
source: "Options",
|
|
1250
|
+
translation: ""
|
|
1251
|
+
};
|
|
1252
|
+
const feature_ownership_description$2 = {
|
|
1253
|
+
source: "Renders a large button to take ownership of the current edit state.",
|
|
1254
|
+
translation: ""
|
|
1255
|
+
};
|
|
1256
|
+
const feature_ownership_label$2 = {
|
|
1257
|
+
source: "Ownership",
|
|
1258
|
+
translation: ""
|
|
1259
|
+
};
|
|
1260
|
+
const feature_preview_description$2 = {
|
|
1261
|
+
source: "Provides a button to open a preview in a new window.",
|
|
1262
|
+
translation: ""
|
|
1263
|
+
};
|
|
1264
|
+
const feature_preview_label$2 = {
|
|
1265
|
+
source: "Preview",
|
|
1266
|
+
translation: ""
|
|
1267
|
+
};
|
|
1268
|
+
const feature_proxy_view_description$2 = {
|
|
1269
|
+
source: "Displays the blocks as a structure in the preview.",
|
|
1270
|
+
translation: ""
|
|
1271
|
+
};
|
|
1272
|
+
const feature_proxy_view_label$2 = {
|
|
1273
|
+
source: "Proxy View",
|
|
1274
|
+
translation: ""
|
|
1275
|
+
};
|
|
1276
|
+
const feature_publish_description$2 = {
|
|
1277
|
+
source: "Provides a menu button to publish the changes of the current entity.",
|
|
1278
|
+
translation: ""
|
|
1279
|
+
};
|
|
1280
|
+
const feature_publish_label$2 = {
|
|
1281
|
+
source: "Publish",
|
|
1282
|
+
translation: ""
|
|
1283
|
+
};
|
|
1284
|
+
const feature_publish_setting_closeAfterPublish_description$2 = {
|
|
1285
|
+
source: "Immediately closes the editor after successfully publishing or saving.",
|
|
1286
|
+
translation: "Den Editor umgehend schliessen nach dem Veröffentlichen/Speichern der Änderungen."
|
|
1287
|
+
};
|
|
1045
1288
|
const feature_publish_setting_closeAfterPublish_label$2 = {
|
|
1046
1289
|
source: "Close editor after publishing",
|
|
1047
1290
|
translation: "Nach «Veröffentlichen» den Editor schliessen"
|
|
1048
1291
|
};
|
|
1292
|
+
const feature_revert_description$2 = {
|
|
1293
|
+
source: "Provides a menu button to revert all changes done on the current entity.",
|
|
1294
|
+
translation: ""
|
|
1295
|
+
};
|
|
1296
|
+
const feature_revert_label$2 = {
|
|
1297
|
+
source: "Revert",
|
|
1298
|
+
translation: ""
|
|
1299
|
+
};
|
|
1300
|
+
const feature_search_description$2 = {
|
|
1301
|
+
source: "Provides an overlay with shortcut to search for blocks on the current page or existing content to add as blocks.",
|
|
1302
|
+
translation: ""
|
|
1303
|
+
};
|
|
1304
|
+
const feature_search_label$2 = {
|
|
1305
|
+
source: "Search",
|
|
1306
|
+
translation: ""
|
|
1307
|
+
};
|
|
1308
|
+
const feature_selection_description$2 = {
|
|
1309
|
+
source: "Renders an overlay that highlights the selected blocks.",
|
|
1310
|
+
translation: ""
|
|
1311
|
+
};
|
|
1312
|
+
const feature_selection_label$2 = {
|
|
1313
|
+
source: "Selection",
|
|
1314
|
+
translation: ""
|
|
1315
|
+
};
|
|
1316
|
+
const feature_settings_description$2 = {
|
|
1317
|
+
source: "Provides a menu button to display a settings dialog.",
|
|
1318
|
+
translation: ""
|
|
1319
|
+
};
|
|
1320
|
+
const feature_settings_label$2 = {
|
|
1321
|
+
source: "Settings",
|
|
1322
|
+
translation: ""
|
|
1323
|
+
};
|
|
1324
|
+
const feature_settings_setting_lowPerformanceMode_description$2 = {
|
|
1325
|
+
source: "Reduces the animations and interactivity to a minimum for devices with low performance.",
|
|
1326
|
+
translation: "Reduziert Animationen und interaktive Elemente auf ein Minimum, für Geräte mit niedriger Leistung."
|
|
1327
|
+
};
|
|
1049
1328
|
const feature_settings_setting_lowPerformanceMode_label$2 = {
|
|
1050
1329
|
source: "Enable low performance mode",
|
|
1051
1330
|
translation: "Modus für niedrige Leistung aktivieren"
|
|
@@ -1054,10 +1333,62 @@ const feature_settings_setting_resetAllSettings_label$2 = {
|
|
|
1054
1333
|
source: "Reset all settings",
|
|
1055
1334
|
translation: "Alle Einstellungen zurücksetzen"
|
|
1056
1335
|
};
|
|
1336
|
+
const feature_settings_setting_useAnimations_description$2 = {
|
|
1337
|
+
source: "Animates UI elements like dialogs or drawers or interactions like drag and drop or scroll changes.",
|
|
1338
|
+
translation: "Animiert Elemente wie Dialoge oder Seitenleisten, oder Interaktionen wie «Drag and Drop» oder Änderungen in Position oder Grösse."
|
|
1339
|
+
};
|
|
1057
1340
|
const feature_settings_setting_useAnimations_label$2 = {
|
|
1058
1341
|
source: "Use animations",
|
|
1059
1342
|
translation: "Animationen verwenden"
|
|
1060
1343
|
};
|
|
1344
|
+
const feature_structure_description$2 = {
|
|
1345
|
+
source: "Provides a sidebar button to render a structured list of all blocks on the current page.",
|
|
1346
|
+
translation: ""
|
|
1347
|
+
};
|
|
1348
|
+
const feature_structure_label$2 = {
|
|
1349
|
+
source: "Structure",
|
|
1350
|
+
translation: ""
|
|
1351
|
+
};
|
|
1352
|
+
const feature_theme_description$2 = {
|
|
1353
|
+
source: "Implements a theme editor.",
|
|
1354
|
+
translation: ""
|
|
1355
|
+
};
|
|
1356
|
+
const feature_theme_label$2 = {
|
|
1357
|
+
source: "Theme",
|
|
1358
|
+
translation: ""
|
|
1359
|
+
};
|
|
1360
|
+
const feature_tour_description$2 = {
|
|
1361
|
+
source: "Provides a tour overlay to get to know the editor.",
|
|
1362
|
+
translation: ""
|
|
1363
|
+
};
|
|
1364
|
+
const feature_tour_label$2 = {
|
|
1365
|
+
source: "Tour",
|
|
1366
|
+
translation: ""
|
|
1367
|
+
};
|
|
1368
|
+
const feature_transform_description$2 = {
|
|
1369
|
+
source: "Provides integration for block transform plugins.",
|
|
1370
|
+
translation: ""
|
|
1371
|
+
};
|
|
1372
|
+
const feature_transform_label$2 = {
|
|
1373
|
+
source: "Transform",
|
|
1374
|
+
translation: ""
|
|
1375
|
+
};
|
|
1376
|
+
const feature_translations_description$2 = {
|
|
1377
|
+
source: "Adds support for block translations.",
|
|
1378
|
+
translation: ""
|
|
1379
|
+
};
|
|
1380
|
+
const feature_translations_label$2 = {
|
|
1381
|
+
source: "Translations",
|
|
1382
|
+
translation: ""
|
|
1383
|
+
};
|
|
1384
|
+
const feature_validations_description$2 = {
|
|
1385
|
+
source: "Provides a sidebar pane to render validations.",
|
|
1386
|
+
translation: ""
|
|
1387
|
+
};
|
|
1388
|
+
const feature_validations_label$2 = {
|
|
1389
|
+
source: "Validations",
|
|
1390
|
+
translation: ""
|
|
1391
|
+
};
|
|
1061
1392
|
const fieldAreasHide$2 = {
|
|
1062
1393
|
source: "Hide block fields",
|
|
1063
1394
|
translation: "Blockfelder verstecken"
|
|
@@ -1128,7 +1459,7 @@ const helpTourText$2 = {
|
|
|
1128
1459
|
};
|
|
1129
1460
|
const history$2 = {
|
|
1130
1461
|
source: "History",
|
|
1131
|
-
translation: "
|
|
1462
|
+
translation: "Änderungsverlauf"
|
|
1132
1463
|
};
|
|
1133
1464
|
const historyCurrentRevision$2 = {
|
|
1134
1465
|
source: "Current revision",
|
|
@@ -1152,7 +1483,7 @@ const historyShowMore$2 = {
|
|
|
1152
1483
|
};
|
|
1153
1484
|
const historyTourText$2 = {
|
|
1154
1485
|
source: "See a list of all changes made so far and switch back and forth between changes.",
|
|
1155
|
-
translation: "Zeigt
|
|
1486
|
+
translation: "Zeigt den Verlauf aller Änderungen die gemacht wurden. Springen Sie beliebig zwischen Änderungen vor und zurück."
|
|
1156
1487
|
};
|
|
1157
1488
|
const historyUndo$2 = {
|
|
1158
1489
|
source: "Undo",
|
|
@@ -1230,6 +1561,10 @@ const libraryDialogLead$2 = {
|
|
|
1230
1561
|
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.",
|
|
1231
1562
|
translation: "Wenn Sie ein Element zur Bibliothek hinzufügen können Sie diesen auf mehreren Seiten gleichzeitig verwenden. Änderungen an diesem Element sind dann sofort auf allen Seiten publiziert."
|
|
1232
1563
|
};
|
|
1564
|
+
const libraryDialogReusableInfo$2 = {
|
|
1565
|
+
source: "The library item will be available for placement on other pages once this page has been published.",
|
|
1566
|
+
translation: "Das Bibliothekselement kann auf anderen Seiten platziert werden sobald diese Seite publiziert/gespeichert wurde."
|
|
1567
|
+
};
|
|
1233
1568
|
const libraryDialogSubmit$2 = {
|
|
1234
1569
|
source: "Add to library",
|
|
1235
1570
|
translation: "Zur Bibliothek hinzufügen"
|
|
@@ -1506,6 +1841,10 @@ const settingsBehaviour$2 = {
|
|
|
1506
1841
|
source: "Behaviour",
|
|
1507
1842
|
translation: "Verhalten"
|
|
1508
1843
|
};
|
|
1844
|
+
const settingsBeta$2 = {
|
|
1845
|
+
source: "New Features",
|
|
1846
|
+
translation: "Neue Funktionen"
|
|
1847
|
+
};
|
|
1509
1848
|
const settingsDialogTitle$2 = {
|
|
1510
1849
|
source: "Change settings",
|
|
1511
1850
|
translation: "Einstellungen"
|
|
@@ -1534,6 +1873,14 @@ const singleComment$2 = {
|
|
|
1534
1873
|
source: "comment",
|
|
1535
1874
|
translation: "Kommentar"
|
|
1536
1875
|
};
|
|
1876
|
+
const stateUnavailableText$2 = {
|
|
1877
|
+
source: "This could be due to missing permissions or a temporary problem. Please try again later.",
|
|
1878
|
+
translation: "Dies könnte auf fehlende Berechtigungen oder ein vorübergehendes Problem zurückzuführen sein. Bitte versuchen Sie es später nochmal."
|
|
1879
|
+
};
|
|
1880
|
+
const stateUnavailableTitle$2 = {
|
|
1881
|
+
source: "The edit state could not be loaded.",
|
|
1882
|
+
translation: "Der Bearbeitungszustand konnte nicht geladen werden."
|
|
1883
|
+
};
|
|
1537
1884
|
const structureToolbarLabel$2 = {
|
|
1538
1885
|
source: "Structure",
|
|
1539
1886
|
translation: "Struktur"
|
|
@@ -1738,6 +2085,15 @@ const de = {
|
|
|
1738
2085
|
convertTo: convertTo$2,
|
|
1739
2086
|
deleteButton: deleteButton$2,
|
|
1740
2087
|
deleteError: deleteError$2,
|
|
2088
|
+
diffSidebarTitle: diffSidebarTitle$2,
|
|
2089
|
+
diffSidebarTourText: diffSidebarTourText$2,
|
|
2090
|
+
diffStatusAdded: diffStatusAdded$2,
|
|
2091
|
+
diffStatusDeleted: diffStatusDeleted$2,
|
|
2092
|
+
diffStatusEdited: diffStatusEdited$2,
|
|
2093
|
+
diffTableBundle: diffTableBundle$2,
|
|
2094
|
+
diffTableChange: diffTableChange$2,
|
|
2095
|
+
diffTableDiff: diffTableDiff$2,
|
|
2096
|
+
diffTableProperty: diffTableProperty$2,
|
|
1741
2097
|
droppableEditFormSave: droppableEditFormSave$2,
|
|
1742
2098
|
duplicate: duplicate$2,
|
|
1743
2099
|
duplicateError: duplicateError$2,
|
|
@@ -1760,6 +2116,14 @@ const de = {
|
|
|
1760
2116
|
fatalErrorTitle: fatalErrorTitle$2,
|
|
1761
2117
|
featureHelpShortcuts: featureHelpShortcuts$2,
|
|
1762
2118
|
featureHelpTitle: featureHelpTitle$2,
|
|
2119
|
+
"feature_add-list_description": {
|
|
2120
|
+
source: "Provides the container to render a list of blocks to add or add actions.",
|
|
2121
|
+
translation: ""
|
|
2122
|
+
},
|
|
2123
|
+
"feature_add-list_label": {
|
|
2124
|
+
source: "Add List",
|
|
2125
|
+
translation: ""
|
|
2126
|
+
},
|
|
1763
2127
|
"feature_add-list_setting_orientation_label": {
|
|
1764
2128
|
source: "Add List",
|
|
1765
2129
|
translation: "Block-Leiste"
|
|
@@ -1776,23 +2140,212 @@ const de = {
|
|
|
1776
2140
|
source: "Vertical",
|
|
1777
2141
|
translation: "Vertikal"
|
|
1778
2142
|
},
|
|
2143
|
+
feature_artboard_description: feature_artboard_description$2,
|
|
2144
|
+
feature_artboard_label: feature_artboard_label$2,
|
|
2145
|
+
feature_artboard_setting_momentum_description: feature_artboard_setting_momentum_description$2,
|
|
1779
2146
|
feature_artboard_setting_momentum_label: feature_artboard_setting_momentum_label$2,
|
|
2147
|
+
feature_artboard_setting_persist_description: feature_artboard_setting_persist_description$2,
|
|
1780
2148
|
feature_artboard_setting_persist_label: feature_artboard_setting_persist_label$2,
|
|
1781
2149
|
feature_artboard_setting_scrollSpeed_label: feature_artboard_setting_scrollSpeed_label$2,
|
|
2150
|
+
feature_assistant_description: feature_assistant_description$2,
|
|
2151
|
+
feature_assistant_label: feature_assistant_label$2,
|
|
2152
|
+
"feature_block-add-list_description": {
|
|
2153
|
+
source: "Renders a list of block bundles that can be added to the current page.",
|
|
2154
|
+
translation: ""
|
|
2155
|
+
},
|
|
2156
|
+
"feature_block-add-list_label": {
|
|
2157
|
+
source: "Block Add List",
|
|
2158
|
+
translation: ""
|
|
2159
|
+
},
|
|
2160
|
+
"feature_block-add-list_setting_hideDisabledBlocks_description": {
|
|
2161
|
+
source: "Hides blocks from the \"Add List\" if they can't be added to anywhere.",
|
|
2162
|
+
translation: "Versteckt Blöcke aus der «Hinzufügen-Liste» die nicht hinzugefügt werden können."
|
|
2163
|
+
},
|
|
1782
2164
|
"feature_block-add-list_setting_hideDisabledBlocks_label": {
|
|
1783
2165
|
source: "Hide blocks that can't be added",
|
|
1784
2166
|
translation: "Blöcke ausblenden, die nicht hinzugefügt werden können"
|
|
1785
2167
|
},
|
|
2168
|
+
feature_clipboard_description: feature_clipboard_description$2,
|
|
2169
|
+
feature_clipboard_label: feature_clipboard_label$2,
|
|
2170
|
+
feature_clipboard_setting_openSidebarOnPaste_description: feature_clipboard_setting_openSidebarOnPaste_description$2,
|
|
1786
2171
|
feature_clipboard_setting_openSidebarOnPaste_label: feature_clipboard_setting_openSidebarOnPaste_label$2,
|
|
2172
|
+
"feature_command-palette_description": {
|
|
2173
|
+
source: "Provides a command palette with search to access most UI features with a keyboard.",
|
|
2174
|
+
translation: ""
|
|
2175
|
+
},
|
|
2176
|
+
"feature_command-palette_label": {
|
|
2177
|
+
source: "Command Palette",
|
|
2178
|
+
translation: ""
|
|
2179
|
+
},
|
|
2180
|
+
feature_comments_description: feature_comments_description$2,
|
|
2181
|
+
feature_comments_label: feature_comments_label$2,
|
|
2182
|
+
feature_conversions_description: feature_conversions_description$2,
|
|
2183
|
+
feature_conversions_label: feature_conversions_label$2,
|
|
2184
|
+
feature_debug_description: feature_debug_description$2,
|
|
2185
|
+
feature_debug_label: feature_debug_label$2,
|
|
2186
|
+
feature_delete_description: feature_delete_description$2,
|
|
2187
|
+
feature_delete_label: feature_delete_label$2,
|
|
2188
|
+
feature_diff_description: feature_diff_description$2,
|
|
2189
|
+
feature_diff_label: feature_diff_label$2,
|
|
2190
|
+
"feature_dragging-overlay_description": {
|
|
2191
|
+
source: "Renders an overlay when dragging or placing a block.",
|
|
2192
|
+
translation: ""
|
|
2193
|
+
},
|
|
2194
|
+
"feature_dragging-overlay_label": {
|
|
2195
|
+
source: "Dragging Overlay",
|
|
2196
|
+
translation: ""
|
|
2197
|
+
},
|
|
2198
|
+
feature_duplicate_description: feature_duplicate_description$2,
|
|
2199
|
+
feature_duplicate_label: feature_duplicate_label$2,
|
|
2200
|
+
"feature_edit-form_description": {
|
|
2201
|
+
source: "Listens to edit events and renders an iframe containing the edit form.",
|
|
2202
|
+
translation: ""
|
|
2203
|
+
},
|
|
2204
|
+
"feature_edit-form_label": {
|
|
2205
|
+
source: "Edit Form",
|
|
2206
|
+
translation: ""
|
|
2207
|
+
},
|
|
2208
|
+
feature_edit_description: feature_edit_description$2,
|
|
2209
|
+
feature_edit_label: feature_edit_label$2,
|
|
2210
|
+
"feature_editable-field_description": {
|
|
2211
|
+
source: "Implements a form overlay to edit a single field of a block.",
|
|
2212
|
+
translation: ""
|
|
2213
|
+
},
|
|
2214
|
+
"feature_editable-field_label": {
|
|
2215
|
+
source: "Editable Field",
|
|
2216
|
+
translation: ""
|
|
2217
|
+
},
|
|
2218
|
+
"feature_editable-mask_description": {
|
|
2219
|
+
source: "Provides a view option to hide non-editable parts of the page.",
|
|
2220
|
+
translation: ""
|
|
2221
|
+
},
|
|
2222
|
+
"feature_editable-mask_label": {
|
|
2223
|
+
source: "Editable Mask",
|
|
2224
|
+
translation: ""
|
|
2225
|
+
},
|
|
2226
|
+
"feature_entity-title_description": {
|
|
2227
|
+
source: "Renders the title and status of the page entity.",
|
|
2228
|
+
translation: ""
|
|
2229
|
+
},
|
|
2230
|
+
"feature_entity-title_label": {
|
|
2231
|
+
source: "Entity Title",
|
|
2232
|
+
translation: ""
|
|
2233
|
+
},
|
|
2234
|
+
feature_exit_description: feature_exit_description$2,
|
|
2235
|
+
feature_exit_label: feature_exit_label$2,
|
|
2236
|
+
"feature_field-areas_description": {
|
|
2237
|
+
source: "Provides a view option to render the field areas with labels.",
|
|
2238
|
+
translation: ""
|
|
2239
|
+
},
|
|
2240
|
+
"feature_field-areas_label": {
|
|
2241
|
+
source: "Field Areas",
|
|
2242
|
+
translation: ""
|
|
2243
|
+
},
|
|
2244
|
+
feature_fragments_description: feature_fragments_description$2,
|
|
2245
|
+
feature_fragments_label: feature_fragments_label$2,
|
|
2246
|
+
feature_grid_description: feature_grid_description$2,
|
|
2247
|
+
feature_grid_label: feature_grid_label$2,
|
|
2248
|
+
feature_help_description: feature_help_description$2,
|
|
2249
|
+
feature_help_label: feature_help_label$2,
|
|
2250
|
+
feature_history_description: feature_history_description$2,
|
|
2251
|
+
feature_history_label: feature_history_label$2,
|
|
2252
|
+
feature_history_setting_useMouseButtons_description: feature_history_setting_useMouseButtons_description$2,
|
|
1787
2253
|
feature_history_setting_useMouseButtons_label: feature_history_setting_useMouseButtons_label$2,
|
|
2254
|
+
"feature_import-existing_description": {
|
|
2255
|
+
source: "Implements a menu action that renders a dialog to import blocks from another entity.",
|
|
2256
|
+
translation: ""
|
|
2257
|
+
},
|
|
2258
|
+
"feature_import-existing_label": {
|
|
2259
|
+
source: "Import existing content",
|
|
2260
|
+
translation: ""
|
|
2261
|
+
},
|
|
2262
|
+
"feature_import-existing_setting_showDialogWhenEmpty_description": {
|
|
2263
|
+
source: "Displays the import dialog when starting blökkli if the page is empty.",
|
|
2264
|
+
translation: "Zeigt den Importdialog beim öffnen von blökkli wenn die Seite leer ist."
|
|
2265
|
+
},
|
|
1788
2266
|
"feature_import-existing_setting_showDialogWhenEmpty_label": {
|
|
1789
|
-
source: "Show import dialog at start
|
|
1790
|
-
translation: "Importdialog beim Start anzeigen
|
|
2267
|
+
source: "Show import dialog at start",
|
|
2268
|
+
translation: "Importdialog beim Start anzeigen"
|
|
2269
|
+
},
|
|
2270
|
+
feature_library_description: feature_library_description$2,
|
|
2271
|
+
feature_library_label: feature_library_label$2,
|
|
2272
|
+
"feature_media-library_description": {
|
|
2273
|
+
source: "Implements a media library to easily drag and drop media like images or videos.",
|
|
2274
|
+
translation: ""
|
|
2275
|
+
},
|
|
2276
|
+
"feature_media-library_label": {
|
|
2277
|
+
source: "Media Library",
|
|
2278
|
+
translation: ""
|
|
2279
|
+
},
|
|
2280
|
+
"feature_multi-select_description": {
|
|
2281
|
+
source: "Implements support for selecting multiple blocks using a select rectangle.",
|
|
2282
|
+
translation: ""
|
|
2283
|
+
},
|
|
2284
|
+
"feature_multi-select_label": {
|
|
2285
|
+
source: "Multiselect",
|
|
2286
|
+
translation: ""
|
|
2287
|
+
},
|
|
2288
|
+
feature_options_description: feature_options_description$2,
|
|
2289
|
+
feature_options_label: feature_options_label$2,
|
|
2290
|
+
feature_ownership_description: feature_ownership_description$2,
|
|
2291
|
+
feature_ownership_label: feature_ownership_label$2,
|
|
2292
|
+
"feature_preview-grant_description": {
|
|
2293
|
+
source: "Provides a button to open a dialog with a QR code to preview the page on a smartphone.",
|
|
2294
|
+
translation: ""
|
|
2295
|
+
},
|
|
2296
|
+
"feature_preview-grant_label": {
|
|
2297
|
+
source: "Preview Grant",
|
|
2298
|
+
translation: ""
|
|
1791
2299
|
},
|
|
2300
|
+
feature_preview_description: feature_preview_description$2,
|
|
2301
|
+
feature_preview_label: feature_preview_label$2,
|
|
2302
|
+
feature_proxy_view_description: feature_proxy_view_description$2,
|
|
2303
|
+
feature_proxy_view_label: feature_proxy_view_label$2,
|
|
2304
|
+
feature_publish_description: feature_publish_description$2,
|
|
2305
|
+
feature_publish_label: feature_publish_label$2,
|
|
2306
|
+
feature_publish_setting_closeAfterPublish_description: feature_publish_setting_closeAfterPublish_description$2,
|
|
1792
2307
|
feature_publish_setting_closeAfterPublish_label: feature_publish_setting_closeAfterPublish_label$2,
|
|
2308
|
+
"feature_responsive-preview_description": {
|
|
2309
|
+
source: "Provides a responsive preview of the current edit state in an iframe.",
|
|
2310
|
+
translation: ""
|
|
2311
|
+
},
|
|
2312
|
+
"feature_responsive-preview_label": {
|
|
2313
|
+
source: "Responsive Preview",
|
|
2314
|
+
translation: ""
|
|
2315
|
+
},
|
|
2316
|
+
feature_revert_description: feature_revert_description$2,
|
|
2317
|
+
feature_revert_label: feature_revert_label$2,
|
|
2318
|
+
feature_search_description: feature_search_description$2,
|
|
2319
|
+
feature_search_label: feature_search_label$2,
|
|
2320
|
+
feature_selection_description: feature_selection_description$2,
|
|
2321
|
+
feature_selection_label: feature_selection_label$2,
|
|
2322
|
+
feature_settings_description: feature_settings_description$2,
|
|
2323
|
+
feature_settings_label: feature_settings_label$2,
|
|
2324
|
+
feature_settings_setting_lowPerformanceMode_description: feature_settings_setting_lowPerformanceMode_description$2,
|
|
1793
2325
|
feature_settings_setting_lowPerformanceMode_label: feature_settings_setting_lowPerformanceMode_label$2,
|
|
1794
2326
|
feature_settings_setting_resetAllSettings_label: feature_settings_setting_resetAllSettings_label$2,
|
|
2327
|
+
feature_settings_setting_useAnimations_description: feature_settings_setting_useAnimations_description$2,
|
|
1795
2328
|
feature_settings_setting_useAnimations_label: feature_settings_setting_useAnimations_label$2,
|
|
2329
|
+
feature_structure_description: feature_structure_description$2,
|
|
2330
|
+
feature_structure_label: feature_structure_label$2,
|
|
2331
|
+
feature_theme_description: feature_theme_description$2,
|
|
2332
|
+
feature_theme_label: feature_theme_label$2,
|
|
2333
|
+
"feature_touch-action-bar_description": {
|
|
2334
|
+
source: "Renders a button on touch devices to cancel touch actions.",
|
|
2335
|
+
translation: ""
|
|
2336
|
+
},
|
|
2337
|
+
"feature_touch-action-bar_label": {
|
|
2338
|
+
source: "Touch Action Bar",
|
|
2339
|
+
translation: ""
|
|
2340
|
+
},
|
|
2341
|
+
feature_tour_description: feature_tour_description$2,
|
|
2342
|
+
feature_tour_label: feature_tour_label$2,
|
|
2343
|
+
feature_transform_description: feature_transform_description$2,
|
|
2344
|
+
feature_transform_label: feature_transform_label$2,
|
|
2345
|
+
feature_translations_description: feature_translations_description$2,
|
|
2346
|
+
feature_translations_label: feature_translations_label$2,
|
|
2347
|
+
feature_validations_description: feature_validations_description$2,
|
|
2348
|
+
feature_validations_label: feature_validations_label$2,
|
|
1796
2349
|
fieldAreasHide: fieldAreasHide$2,
|
|
1797
2350
|
fieldAreasShow: fieldAreasShow$2,
|
|
1798
2351
|
fieldAreasToggle: fieldAreasToggle$2,
|
|
@@ -1836,6 +2389,7 @@ const de = {
|
|
|
1836
2389
|
libraryDetach: libraryDetach$2,
|
|
1837
2390
|
libraryDialogDescriptionLabel: libraryDialogDescriptionLabel$2,
|
|
1838
2391
|
libraryDialogLead: libraryDialogLead$2,
|
|
2392
|
+
libraryDialogReusableInfo: libraryDialogReusableInfo$2,
|
|
1839
2393
|
libraryDialogSubmit: libraryDialogSubmit$2,
|
|
1840
2394
|
libraryDialogTitle: libraryDialogTitle$2,
|
|
1841
2395
|
libraryDialogTitleInputPlaceholder: libraryDialogTitleInputPlaceholder$2,
|
|
@@ -1917,6 +2471,7 @@ const de = {
|
|
|
1917
2471
|
settingsAppearance: settingsAppearance$2,
|
|
1918
2472
|
settingsArtboard: settingsArtboard$2,
|
|
1919
2473
|
settingsBehaviour: settingsBehaviour$2,
|
|
2474
|
+
settingsBeta: settingsBeta$2,
|
|
1920
2475
|
settingsDialogTitle: settingsDialogTitle$2,
|
|
1921
2476
|
settingsMenuDescription: settingsMenuDescription$2,
|
|
1922
2477
|
settingsMenuTitle: settingsMenuTitle$2,
|
|
@@ -1932,6 +2487,8 @@ const de = {
|
|
|
1932
2487
|
translation: "@title anzeigen"
|
|
1933
2488
|
},
|
|
1934
2489
|
singleComment: singleComment$2,
|
|
2490
|
+
stateUnavailableText: stateUnavailableText$2,
|
|
2491
|
+
stateUnavailableTitle: stateUnavailableTitle$2,
|
|
1935
2492
|
structureToolbarLabel: structureToolbarLabel$2,
|
|
1936
2493
|
structureTourText: structureTourText$2,
|
|
1937
2494
|
systemRequirementsDialogButton: systemRequirementsDialogButton$2,
|
|
@@ -2182,6 +2739,42 @@ const deleteError$1 = {
|
|
|
2182
2739
|
source: "The block could not be deleted.",
|
|
2183
2740
|
translation: "L'élément n'a pas pu être supprimé."
|
|
2184
2741
|
};
|
|
2742
|
+
const diffSidebarTitle$1 = {
|
|
2743
|
+
source: "Changes",
|
|
2744
|
+
translation: ""
|
|
2745
|
+
};
|
|
2746
|
+
const diffSidebarTourText$1 = {
|
|
2747
|
+
source: "Displays all the changes made during editing.",
|
|
2748
|
+
translation: ""
|
|
2749
|
+
};
|
|
2750
|
+
const diffStatusAdded$1 = {
|
|
2751
|
+
source: "Added",
|
|
2752
|
+
translation: ""
|
|
2753
|
+
};
|
|
2754
|
+
const diffStatusDeleted$1 = {
|
|
2755
|
+
source: "Deleted",
|
|
2756
|
+
translation: ""
|
|
2757
|
+
};
|
|
2758
|
+
const diffStatusEdited$1 = {
|
|
2759
|
+
source: "Edited",
|
|
2760
|
+
translation: ""
|
|
2761
|
+
};
|
|
2762
|
+
const diffTableBundle$1 = {
|
|
2763
|
+
source: "Type",
|
|
2764
|
+
translation: ""
|
|
2765
|
+
};
|
|
2766
|
+
const diffTableChange$1 = {
|
|
2767
|
+
source: "Change",
|
|
2768
|
+
translation: ""
|
|
2769
|
+
};
|
|
2770
|
+
const diffTableDiff$1 = {
|
|
2771
|
+
source: "Diff",
|
|
2772
|
+
translation: ""
|
|
2773
|
+
};
|
|
2774
|
+
const diffTableProperty$1 = {
|
|
2775
|
+
source: "Property",
|
|
2776
|
+
translation: ""
|
|
2777
|
+
};
|
|
2185
2778
|
const droppableEditFormSave$1 = {
|
|
2186
2779
|
source: "Save",
|
|
2187
2780
|
translation: ""
|
|
@@ -2270,10 +2863,26 @@ const featureHelpTitle$1 = {
|
|
|
2270
2863
|
source: "Help",
|
|
2271
2864
|
translation: ""
|
|
2272
2865
|
};
|
|
2866
|
+
const feature_artboard_description$1 = {
|
|
2867
|
+
source: "Wraps the entire page in an artboard that can be zoomed and moved using the mouse.",
|
|
2868
|
+
translation: ""
|
|
2869
|
+
};
|
|
2870
|
+
const feature_artboard_label$1 = {
|
|
2871
|
+
source: "Artboard",
|
|
2872
|
+
translation: ""
|
|
2873
|
+
};
|
|
2874
|
+
const feature_artboard_setting_momentum_description$1 = {
|
|
2875
|
+
source: "Applies smooth animations when scrolling or zooming the artboard.",
|
|
2876
|
+
translation: ""
|
|
2877
|
+
};
|
|
2273
2878
|
const feature_artboard_setting_momentum_label$1 = {
|
|
2274
2879
|
source: "Use smooth scrolling",
|
|
2275
2880
|
translation: ""
|
|
2276
2881
|
};
|
|
2882
|
+
const feature_artboard_setting_persist_description$1 = {
|
|
2883
|
+
source: "Stores and restores the last position and zoom factor of the artboard.",
|
|
2884
|
+
translation: ""
|
|
2885
|
+
};
|
|
2277
2886
|
const feature_artboard_setting_persist_label$1 = {
|
|
2278
2887
|
source: "Persist position and zoom",
|
|
2279
2888
|
translation: ""
|
|
@@ -2282,18 +2891,226 @@ const feature_artboard_setting_scrollSpeed_label$1 = {
|
|
|
2282
2891
|
source: "Artboard scroll speed",
|
|
2283
2892
|
translation: ""
|
|
2284
2893
|
};
|
|
2894
|
+
const feature_assistant_description$1 = {
|
|
2895
|
+
source: "Provides a dynamic add block action to add one or more blocks generated by an AI assistant.",
|
|
2896
|
+
translation: ""
|
|
2897
|
+
};
|
|
2898
|
+
const feature_assistant_label$1 = {
|
|
2899
|
+
source: "Assistant",
|
|
2900
|
+
translation: ""
|
|
2901
|
+
};
|
|
2902
|
+
const feature_clipboard_description$1 = {
|
|
2903
|
+
source: "Provides clipboard integration to copy/paste existing blocks or paste supported clipboard content like text or images.",
|
|
2904
|
+
translation: ""
|
|
2905
|
+
};
|
|
2906
|
+
const feature_clipboard_label$1 = {
|
|
2907
|
+
source: "Clipboard",
|
|
2908
|
+
translation: ""
|
|
2909
|
+
};
|
|
2910
|
+
const feature_clipboard_setting_openSidebarOnPaste_description$1 = {
|
|
2911
|
+
source: "Automatically opens the sidebar when pasting content from the clipboard.",
|
|
2912
|
+
translation: ""
|
|
2913
|
+
};
|
|
2285
2914
|
const feature_clipboard_setting_openSidebarOnPaste_label$1 = {
|
|
2286
|
-
source: "Open sidebar when pasting
|
|
2915
|
+
source: "Open sidebar when pasting",
|
|
2916
|
+
translation: ""
|
|
2917
|
+
};
|
|
2918
|
+
const feature_comments_description$1 = {
|
|
2919
|
+
source: "Provides comment functionality for blocks.",
|
|
2920
|
+
translation: ""
|
|
2921
|
+
};
|
|
2922
|
+
const feature_comments_label$1 = {
|
|
2923
|
+
source: "Comments",
|
|
2924
|
+
translation: ""
|
|
2925
|
+
};
|
|
2926
|
+
const feature_conversions_description$1 = {
|
|
2927
|
+
source: "Provides block actions to convert one or more blocks to a different bundle.",
|
|
2928
|
+
translation: ""
|
|
2929
|
+
};
|
|
2930
|
+
const feature_conversions_label$1 = {
|
|
2931
|
+
source: "Conversions",
|
|
2932
|
+
translation: ""
|
|
2933
|
+
};
|
|
2934
|
+
const feature_debug_description$1 = {
|
|
2935
|
+
source: "Provides debugging functionality.",
|
|
2936
|
+
translation: ""
|
|
2937
|
+
};
|
|
2938
|
+
const feature_debug_label$1 = {
|
|
2939
|
+
source: "Debug",
|
|
2940
|
+
translation: ""
|
|
2941
|
+
};
|
|
2942
|
+
const feature_delete_description$1 = {
|
|
2943
|
+
source: "Provides an action to delete one or more blocks.",
|
|
2944
|
+
translation: ""
|
|
2945
|
+
};
|
|
2946
|
+
const feature_delete_label$1 = {
|
|
2947
|
+
source: "Delete",
|
|
2948
|
+
translation: ""
|
|
2949
|
+
};
|
|
2950
|
+
const feature_diff_description$1 = {
|
|
2951
|
+
source: "Displays a diff of all changes in the edit state.",
|
|
2952
|
+
translation: ""
|
|
2953
|
+
};
|
|
2954
|
+
const feature_diff_label$1 = {
|
|
2955
|
+
source: "Diff",
|
|
2956
|
+
translation: ""
|
|
2957
|
+
};
|
|
2958
|
+
const feature_duplicate_description$1 = {
|
|
2959
|
+
source: "Provides an action to duplicate one or more blocks in place.",
|
|
2960
|
+
translation: ""
|
|
2961
|
+
};
|
|
2962
|
+
const feature_duplicate_label$1 = {
|
|
2963
|
+
source: "Duplicate",
|
|
2964
|
+
translation: ""
|
|
2965
|
+
};
|
|
2966
|
+
const feature_edit_description$1 = {
|
|
2967
|
+
source: "Provides an action to edit a block.",
|
|
2968
|
+
translation: ""
|
|
2969
|
+
};
|
|
2970
|
+
const feature_edit_label$1 = {
|
|
2971
|
+
source: "Edit",
|
|
2972
|
+
translation: ""
|
|
2973
|
+
};
|
|
2974
|
+
const feature_exit_description$1 = {
|
|
2975
|
+
source: "Provides a menu button to exit the editor without saving.",
|
|
2976
|
+
translation: ""
|
|
2977
|
+
};
|
|
2978
|
+
const feature_exit_label$1 = {
|
|
2979
|
+
source: "Exit",
|
|
2980
|
+
translation: ""
|
|
2981
|
+
};
|
|
2982
|
+
const feature_fragments_description$1 = {
|
|
2983
|
+
source: "Provides way to add content fragments defined by the frontend.",
|
|
2984
|
+
translation: ""
|
|
2985
|
+
};
|
|
2986
|
+
const feature_fragments_label$1 = {
|
|
2987
|
+
source: "Fragments",
|
|
2988
|
+
translation: ""
|
|
2989
|
+
};
|
|
2990
|
+
const feature_grid_description$1 = {
|
|
2991
|
+
source: "Provides a view option to render a grid.",
|
|
2992
|
+
translation: ""
|
|
2993
|
+
};
|
|
2994
|
+
const feature_grid_label$1 = {
|
|
2995
|
+
source: "Grid",
|
|
2996
|
+
translation: ""
|
|
2997
|
+
};
|
|
2998
|
+
const feature_help_description$1 = {
|
|
2999
|
+
source: "Provides a sidebar pane with helpful information on how to use blokkli.",
|
|
3000
|
+
translation: ""
|
|
3001
|
+
};
|
|
3002
|
+
const feature_help_label$1 = {
|
|
3003
|
+
source: "Help",
|
|
3004
|
+
translation: ""
|
|
3005
|
+
};
|
|
3006
|
+
const feature_history_description$1 = {
|
|
3007
|
+
source: "Implements support for history features (undo, redo, list of mutations).",
|
|
3008
|
+
translation: ""
|
|
3009
|
+
};
|
|
3010
|
+
const feature_history_label$1 = {
|
|
3011
|
+
source: "History",
|
|
3012
|
+
translation: ""
|
|
3013
|
+
};
|
|
3014
|
+
const feature_history_setting_useMouseButtons_description$1 = {
|
|
3015
|
+
source: "When enabled you can use the backwards/forwards buttons on your mouse to undo and redo.",
|
|
2287
3016
|
translation: ""
|
|
2288
3017
|
};
|
|
2289
3018
|
const feature_history_setting_useMouseButtons_label$1 = {
|
|
2290
3019
|
source: "Use mouse buttons for undo/redo",
|
|
2291
3020
|
translation: ""
|
|
2292
3021
|
};
|
|
3022
|
+
const feature_library_description$1 = {
|
|
3023
|
+
source: "Implements support for a block library to manage reusable blocks.",
|
|
3024
|
+
translation: ""
|
|
3025
|
+
};
|
|
3026
|
+
const feature_library_label$1 = {
|
|
3027
|
+
source: "Library",
|
|
3028
|
+
translation: ""
|
|
3029
|
+
};
|
|
3030
|
+
const feature_options_description$1 = {
|
|
3031
|
+
source: "Renders the options form for one or more blocks.",
|
|
3032
|
+
translation: ""
|
|
3033
|
+
};
|
|
3034
|
+
const feature_options_label$1 = {
|
|
3035
|
+
source: "Options",
|
|
3036
|
+
translation: ""
|
|
3037
|
+
};
|
|
3038
|
+
const feature_ownership_description$1 = {
|
|
3039
|
+
source: "Renders a large button to take ownership of the current edit state.",
|
|
3040
|
+
translation: ""
|
|
3041
|
+
};
|
|
3042
|
+
const feature_ownership_label$1 = {
|
|
3043
|
+
source: "Ownership",
|
|
3044
|
+
translation: ""
|
|
3045
|
+
};
|
|
3046
|
+
const feature_preview_description$1 = {
|
|
3047
|
+
source: "Provides a button to open a preview in a new window.",
|
|
3048
|
+
translation: ""
|
|
3049
|
+
};
|
|
3050
|
+
const feature_preview_label$1 = {
|
|
3051
|
+
source: "Preview",
|
|
3052
|
+
translation: ""
|
|
3053
|
+
};
|
|
3054
|
+
const feature_proxy_view_description$1 = {
|
|
3055
|
+
source: "Displays the blocks as a structure in the preview.",
|
|
3056
|
+
translation: ""
|
|
3057
|
+
};
|
|
3058
|
+
const feature_proxy_view_label$1 = {
|
|
3059
|
+
source: "Proxy View",
|
|
3060
|
+
translation: ""
|
|
3061
|
+
};
|
|
3062
|
+
const feature_publish_description$1 = {
|
|
3063
|
+
source: "Provides a menu button to publish the changes of the current entity.",
|
|
3064
|
+
translation: ""
|
|
3065
|
+
};
|
|
3066
|
+
const feature_publish_label$1 = {
|
|
3067
|
+
source: "Publish",
|
|
3068
|
+
translation: ""
|
|
3069
|
+
};
|
|
3070
|
+
const feature_publish_setting_closeAfterPublish_description$1 = {
|
|
3071
|
+
source: "Immediately closes the editor after successfully publishing or saving.",
|
|
3072
|
+
translation: ""
|
|
3073
|
+
};
|
|
2293
3074
|
const feature_publish_setting_closeAfterPublish_label$1 = {
|
|
2294
3075
|
source: "Close editor after publishing",
|
|
2295
3076
|
translation: ""
|
|
2296
3077
|
};
|
|
3078
|
+
const feature_revert_description$1 = {
|
|
3079
|
+
source: "Provides a menu button to revert all changes done on the current entity.",
|
|
3080
|
+
translation: ""
|
|
3081
|
+
};
|
|
3082
|
+
const feature_revert_label$1 = {
|
|
3083
|
+
source: "Revert",
|
|
3084
|
+
translation: ""
|
|
3085
|
+
};
|
|
3086
|
+
const feature_search_description$1 = {
|
|
3087
|
+
source: "Provides an overlay with shortcut to search for blocks on the current page or existing content to add as blocks.",
|
|
3088
|
+
translation: ""
|
|
3089
|
+
};
|
|
3090
|
+
const feature_search_label$1 = {
|
|
3091
|
+
source: "Search",
|
|
3092
|
+
translation: ""
|
|
3093
|
+
};
|
|
3094
|
+
const feature_selection_description$1 = {
|
|
3095
|
+
source: "Renders an overlay that highlights the selected blocks.",
|
|
3096
|
+
translation: ""
|
|
3097
|
+
};
|
|
3098
|
+
const feature_selection_label$1 = {
|
|
3099
|
+
source: "Selection",
|
|
3100
|
+
translation: ""
|
|
3101
|
+
};
|
|
3102
|
+
const feature_settings_description$1 = {
|
|
3103
|
+
source: "Provides a menu button to display a settings dialog.",
|
|
3104
|
+
translation: ""
|
|
3105
|
+
};
|
|
3106
|
+
const feature_settings_label$1 = {
|
|
3107
|
+
source: "Settings",
|
|
3108
|
+
translation: ""
|
|
3109
|
+
};
|
|
3110
|
+
const feature_settings_setting_lowPerformanceMode_description$1 = {
|
|
3111
|
+
source: "Reduces the animations and interactivity to a minimum for devices with low performance.",
|
|
3112
|
+
translation: ""
|
|
3113
|
+
};
|
|
2297
3114
|
const feature_settings_setting_lowPerformanceMode_label$1 = {
|
|
2298
3115
|
source: "Enable low performance mode",
|
|
2299
3116
|
translation: ""
|
|
@@ -2302,10 +3119,62 @@ const feature_settings_setting_resetAllSettings_label$1 = {
|
|
|
2302
3119
|
source: "Reset all settings",
|
|
2303
3120
|
translation: ""
|
|
2304
3121
|
};
|
|
3122
|
+
const feature_settings_setting_useAnimations_description$1 = {
|
|
3123
|
+
source: "Animates UI elements like dialogs or drawers or interactions like drag and drop or scroll changes.",
|
|
3124
|
+
translation: ""
|
|
3125
|
+
};
|
|
2305
3126
|
const feature_settings_setting_useAnimations_label$1 = {
|
|
2306
3127
|
source: "Use animations",
|
|
2307
3128
|
translation: ""
|
|
2308
3129
|
};
|
|
3130
|
+
const feature_structure_description$1 = {
|
|
3131
|
+
source: "Provides a sidebar button to render a structured list of all blocks on the current page.",
|
|
3132
|
+
translation: ""
|
|
3133
|
+
};
|
|
3134
|
+
const feature_structure_label$1 = {
|
|
3135
|
+
source: "Structure",
|
|
3136
|
+
translation: ""
|
|
3137
|
+
};
|
|
3138
|
+
const feature_theme_description$1 = {
|
|
3139
|
+
source: "Implements a theme editor.",
|
|
3140
|
+
translation: ""
|
|
3141
|
+
};
|
|
3142
|
+
const feature_theme_label$1 = {
|
|
3143
|
+
source: "Theme",
|
|
3144
|
+
translation: ""
|
|
3145
|
+
};
|
|
3146
|
+
const feature_tour_description$1 = {
|
|
3147
|
+
source: "Provides a tour overlay to get to know the editor.",
|
|
3148
|
+
translation: ""
|
|
3149
|
+
};
|
|
3150
|
+
const feature_tour_label$1 = {
|
|
3151
|
+
source: "Tour",
|
|
3152
|
+
translation: ""
|
|
3153
|
+
};
|
|
3154
|
+
const feature_transform_description$1 = {
|
|
3155
|
+
source: "Provides integration for block transform plugins.",
|
|
3156
|
+
translation: ""
|
|
3157
|
+
};
|
|
3158
|
+
const feature_transform_label$1 = {
|
|
3159
|
+
source: "Transform",
|
|
3160
|
+
translation: ""
|
|
3161
|
+
};
|
|
3162
|
+
const feature_translations_description$1 = {
|
|
3163
|
+
source: "Adds support for block translations.",
|
|
3164
|
+
translation: ""
|
|
3165
|
+
};
|
|
3166
|
+
const feature_translations_label$1 = {
|
|
3167
|
+
source: "Translations",
|
|
3168
|
+
translation: ""
|
|
3169
|
+
};
|
|
3170
|
+
const feature_validations_description$1 = {
|
|
3171
|
+
source: "Provides a sidebar pane to render validations.",
|
|
3172
|
+
translation: ""
|
|
3173
|
+
};
|
|
3174
|
+
const feature_validations_label$1 = {
|
|
3175
|
+
source: "Validations",
|
|
3176
|
+
translation: ""
|
|
3177
|
+
};
|
|
2309
3178
|
const fieldAreasHide$1 = {
|
|
2310
3179
|
source: "Hide block fields",
|
|
2311
3180
|
translation: "Masquer les zones de contenu"
|
|
@@ -2478,6 +3347,10 @@ const libraryDialogLead$1 = {
|
|
|
2478
3347
|
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.",
|
|
2479
3348
|
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."
|
|
2480
3349
|
};
|
|
3350
|
+
const libraryDialogReusableInfo$1 = {
|
|
3351
|
+
source: "The library item will be available for placement on other pages once this page has been published.",
|
|
3352
|
+
translation: ""
|
|
3353
|
+
};
|
|
2481
3354
|
const libraryDialogSubmit$1 = {
|
|
2482
3355
|
source: "Add to library",
|
|
2483
3356
|
translation: "Ajouter à la bibliothèque"
|
|
@@ -2754,6 +3627,10 @@ const settingsBehaviour$1 = {
|
|
|
2754
3627
|
source: "Behaviour",
|
|
2755
3628
|
translation: "Comportement"
|
|
2756
3629
|
};
|
|
3630
|
+
const settingsBeta$1 = {
|
|
3631
|
+
source: "New Features",
|
|
3632
|
+
translation: ""
|
|
3633
|
+
};
|
|
2757
3634
|
const settingsDialogTitle$1 = {
|
|
2758
3635
|
source: "Change settings",
|
|
2759
3636
|
translation: "Paramètres"
|
|
@@ -2782,6 +3659,14 @@ const singleComment$1 = {
|
|
|
2782
3659
|
source: "comment",
|
|
2783
3660
|
translation: ""
|
|
2784
3661
|
};
|
|
3662
|
+
const stateUnavailableText$1 = {
|
|
3663
|
+
source: "This could be due to missing permissions or a temporary problem. Please try again later.",
|
|
3664
|
+
translation: ""
|
|
3665
|
+
};
|
|
3666
|
+
const stateUnavailableTitle$1 = {
|
|
3667
|
+
source: "The edit state could not be loaded.",
|
|
3668
|
+
translation: ""
|
|
3669
|
+
};
|
|
2785
3670
|
const structureToolbarLabel$1 = {
|
|
2786
3671
|
source: "Structure",
|
|
2787
3672
|
translation: "Structure"
|
|
@@ -2986,6 +3871,15 @@ const fr = {
|
|
|
2986
3871
|
convertTo: convertTo$1,
|
|
2987
3872
|
deleteButton: deleteButton$1,
|
|
2988
3873
|
deleteError: deleteError$1,
|
|
3874
|
+
diffSidebarTitle: diffSidebarTitle$1,
|
|
3875
|
+
diffSidebarTourText: diffSidebarTourText$1,
|
|
3876
|
+
diffStatusAdded: diffStatusAdded$1,
|
|
3877
|
+
diffStatusDeleted: diffStatusDeleted$1,
|
|
3878
|
+
diffStatusEdited: diffStatusEdited$1,
|
|
3879
|
+
diffTableBundle: diffTableBundle$1,
|
|
3880
|
+
diffTableChange: diffTableChange$1,
|
|
3881
|
+
diffTableDiff: diffTableDiff$1,
|
|
3882
|
+
diffTableProperty: diffTableProperty$1,
|
|
2989
3883
|
droppableEditFormSave: droppableEditFormSave$1,
|
|
2990
3884
|
duplicate: duplicate$1,
|
|
2991
3885
|
duplicateError: duplicateError$1,
|
|
@@ -3008,6 +3902,14 @@ const fr = {
|
|
|
3008
3902
|
fatalErrorTitle: fatalErrorTitle$1,
|
|
3009
3903
|
featureHelpShortcuts: featureHelpShortcuts$1,
|
|
3010
3904
|
featureHelpTitle: featureHelpTitle$1,
|
|
3905
|
+
"feature_add-list_description": {
|
|
3906
|
+
source: "Provides the container to render a list of blocks to add or add actions.",
|
|
3907
|
+
translation: ""
|
|
3908
|
+
},
|
|
3909
|
+
"feature_add-list_label": {
|
|
3910
|
+
source: "Add List",
|
|
3911
|
+
translation: ""
|
|
3912
|
+
},
|
|
3011
3913
|
"feature_add-list_setting_orientation_label": {
|
|
3012
3914
|
source: "Add List",
|
|
3013
3915
|
translation: ""
|
|
@@ -3024,23 +3926,212 @@ const fr = {
|
|
|
3024
3926
|
source: "Vertical",
|
|
3025
3927
|
translation: ""
|
|
3026
3928
|
},
|
|
3929
|
+
feature_artboard_description: feature_artboard_description$1,
|
|
3930
|
+
feature_artboard_label: feature_artboard_label$1,
|
|
3931
|
+
feature_artboard_setting_momentum_description: feature_artboard_setting_momentum_description$1,
|
|
3027
3932
|
feature_artboard_setting_momentum_label: feature_artboard_setting_momentum_label$1,
|
|
3933
|
+
feature_artboard_setting_persist_description: feature_artboard_setting_persist_description$1,
|
|
3028
3934
|
feature_artboard_setting_persist_label: feature_artboard_setting_persist_label$1,
|
|
3029
3935
|
feature_artboard_setting_scrollSpeed_label: feature_artboard_setting_scrollSpeed_label$1,
|
|
3936
|
+
feature_assistant_description: feature_assistant_description$1,
|
|
3937
|
+
feature_assistant_label: feature_assistant_label$1,
|
|
3938
|
+
"feature_block-add-list_description": {
|
|
3939
|
+
source: "Renders a list of block bundles that can be added to the current page.",
|
|
3940
|
+
translation: ""
|
|
3941
|
+
},
|
|
3942
|
+
"feature_block-add-list_label": {
|
|
3943
|
+
source: "Block Add List",
|
|
3944
|
+
translation: ""
|
|
3945
|
+
},
|
|
3946
|
+
"feature_block-add-list_setting_hideDisabledBlocks_description": {
|
|
3947
|
+
source: "Hides blocks from the \"Add List\" if they can't be added to anywhere.",
|
|
3948
|
+
translation: ""
|
|
3949
|
+
},
|
|
3030
3950
|
"feature_block-add-list_setting_hideDisabledBlocks_label": {
|
|
3031
3951
|
source: "Hide blocks that can't be added",
|
|
3032
3952
|
translation: ""
|
|
3033
3953
|
},
|
|
3954
|
+
feature_clipboard_description: feature_clipboard_description$1,
|
|
3955
|
+
feature_clipboard_label: feature_clipboard_label$1,
|
|
3956
|
+
feature_clipboard_setting_openSidebarOnPaste_description: feature_clipboard_setting_openSidebarOnPaste_description$1,
|
|
3034
3957
|
feature_clipboard_setting_openSidebarOnPaste_label: feature_clipboard_setting_openSidebarOnPaste_label$1,
|
|
3958
|
+
"feature_command-palette_description": {
|
|
3959
|
+
source: "Provides a command palette with search to access most UI features with a keyboard.",
|
|
3960
|
+
translation: ""
|
|
3961
|
+
},
|
|
3962
|
+
"feature_command-palette_label": {
|
|
3963
|
+
source: "Command Palette",
|
|
3964
|
+
translation: ""
|
|
3965
|
+
},
|
|
3966
|
+
feature_comments_description: feature_comments_description$1,
|
|
3967
|
+
feature_comments_label: feature_comments_label$1,
|
|
3968
|
+
feature_conversions_description: feature_conversions_description$1,
|
|
3969
|
+
feature_conversions_label: feature_conversions_label$1,
|
|
3970
|
+
feature_debug_description: feature_debug_description$1,
|
|
3971
|
+
feature_debug_label: feature_debug_label$1,
|
|
3972
|
+
feature_delete_description: feature_delete_description$1,
|
|
3973
|
+
feature_delete_label: feature_delete_label$1,
|
|
3974
|
+
feature_diff_description: feature_diff_description$1,
|
|
3975
|
+
feature_diff_label: feature_diff_label$1,
|
|
3976
|
+
"feature_dragging-overlay_description": {
|
|
3977
|
+
source: "Renders an overlay when dragging or placing a block.",
|
|
3978
|
+
translation: ""
|
|
3979
|
+
},
|
|
3980
|
+
"feature_dragging-overlay_label": {
|
|
3981
|
+
source: "Dragging Overlay",
|
|
3982
|
+
translation: ""
|
|
3983
|
+
},
|
|
3984
|
+
feature_duplicate_description: feature_duplicate_description$1,
|
|
3985
|
+
feature_duplicate_label: feature_duplicate_label$1,
|
|
3986
|
+
"feature_edit-form_description": {
|
|
3987
|
+
source: "Listens to edit events and renders an iframe containing the edit form.",
|
|
3988
|
+
translation: ""
|
|
3989
|
+
},
|
|
3990
|
+
"feature_edit-form_label": {
|
|
3991
|
+
source: "Edit Form",
|
|
3992
|
+
translation: ""
|
|
3993
|
+
},
|
|
3994
|
+
feature_edit_description: feature_edit_description$1,
|
|
3995
|
+
feature_edit_label: feature_edit_label$1,
|
|
3996
|
+
"feature_editable-field_description": {
|
|
3997
|
+
source: "Implements a form overlay to edit a single field of a block.",
|
|
3998
|
+
translation: ""
|
|
3999
|
+
},
|
|
4000
|
+
"feature_editable-field_label": {
|
|
4001
|
+
source: "Editable Field",
|
|
4002
|
+
translation: ""
|
|
4003
|
+
},
|
|
4004
|
+
"feature_editable-mask_description": {
|
|
4005
|
+
source: "Provides a view option to hide non-editable parts of the page.",
|
|
4006
|
+
translation: ""
|
|
4007
|
+
},
|
|
4008
|
+
"feature_editable-mask_label": {
|
|
4009
|
+
source: "Editable Mask",
|
|
4010
|
+
translation: ""
|
|
4011
|
+
},
|
|
4012
|
+
"feature_entity-title_description": {
|
|
4013
|
+
source: "Renders the title and status of the page entity.",
|
|
4014
|
+
translation: ""
|
|
4015
|
+
},
|
|
4016
|
+
"feature_entity-title_label": {
|
|
4017
|
+
source: "Entity Title",
|
|
4018
|
+
translation: ""
|
|
4019
|
+
},
|
|
4020
|
+
feature_exit_description: feature_exit_description$1,
|
|
4021
|
+
feature_exit_label: feature_exit_label$1,
|
|
4022
|
+
"feature_field-areas_description": {
|
|
4023
|
+
source: "Provides a view option to render the field areas with labels.",
|
|
4024
|
+
translation: ""
|
|
4025
|
+
},
|
|
4026
|
+
"feature_field-areas_label": {
|
|
4027
|
+
source: "Field Areas",
|
|
4028
|
+
translation: ""
|
|
4029
|
+
},
|
|
4030
|
+
feature_fragments_description: feature_fragments_description$1,
|
|
4031
|
+
feature_fragments_label: feature_fragments_label$1,
|
|
4032
|
+
feature_grid_description: feature_grid_description$1,
|
|
4033
|
+
feature_grid_label: feature_grid_label$1,
|
|
4034
|
+
feature_help_description: feature_help_description$1,
|
|
4035
|
+
feature_help_label: feature_help_label$1,
|
|
4036
|
+
feature_history_description: feature_history_description$1,
|
|
4037
|
+
feature_history_label: feature_history_label$1,
|
|
4038
|
+
feature_history_setting_useMouseButtons_description: feature_history_setting_useMouseButtons_description$1,
|
|
3035
4039
|
feature_history_setting_useMouseButtons_label: feature_history_setting_useMouseButtons_label$1,
|
|
4040
|
+
"feature_import-existing_description": {
|
|
4041
|
+
source: "Implements a menu action that renders a dialog to import blocks from another entity.",
|
|
4042
|
+
translation: ""
|
|
4043
|
+
},
|
|
4044
|
+
"feature_import-existing_label": {
|
|
4045
|
+
source: "Import existing content",
|
|
4046
|
+
translation: ""
|
|
4047
|
+
},
|
|
4048
|
+
"feature_import-existing_setting_showDialogWhenEmpty_description": {
|
|
4049
|
+
source: "Displays the import dialog when starting blökkli if the page is empty.",
|
|
4050
|
+
translation: ""
|
|
4051
|
+
},
|
|
3036
4052
|
"feature_import-existing_setting_showDialogWhenEmpty_label": {
|
|
3037
|
-
source: "Show import dialog at start
|
|
4053
|
+
source: "Show import dialog at start",
|
|
4054
|
+
translation: ""
|
|
4055
|
+
},
|
|
4056
|
+
feature_library_description: feature_library_description$1,
|
|
4057
|
+
feature_library_label: feature_library_label$1,
|
|
4058
|
+
"feature_media-library_description": {
|
|
4059
|
+
source: "Implements a media library to easily drag and drop media like images or videos.",
|
|
4060
|
+
translation: ""
|
|
4061
|
+
},
|
|
4062
|
+
"feature_media-library_label": {
|
|
4063
|
+
source: "Media Library",
|
|
4064
|
+
translation: ""
|
|
4065
|
+
},
|
|
4066
|
+
"feature_multi-select_description": {
|
|
4067
|
+
source: "Implements support for selecting multiple blocks using a select rectangle.",
|
|
4068
|
+
translation: ""
|
|
4069
|
+
},
|
|
4070
|
+
"feature_multi-select_label": {
|
|
4071
|
+
source: "Multiselect",
|
|
4072
|
+
translation: ""
|
|
4073
|
+
},
|
|
4074
|
+
feature_options_description: feature_options_description$1,
|
|
4075
|
+
feature_options_label: feature_options_label$1,
|
|
4076
|
+
feature_ownership_description: feature_ownership_description$1,
|
|
4077
|
+
feature_ownership_label: feature_ownership_label$1,
|
|
4078
|
+
"feature_preview-grant_description": {
|
|
4079
|
+
source: "Provides a button to open a dialog with a QR code to preview the page on a smartphone.",
|
|
4080
|
+
translation: ""
|
|
4081
|
+
},
|
|
4082
|
+
"feature_preview-grant_label": {
|
|
4083
|
+
source: "Preview Grant",
|
|
4084
|
+
translation: ""
|
|
4085
|
+
},
|
|
4086
|
+
feature_preview_description: feature_preview_description$1,
|
|
4087
|
+
feature_preview_label: feature_preview_label$1,
|
|
4088
|
+
feature_proxy_view_description: feature_proxy_view_description$1,
|
|
4089
|
+
feature_proxy_view_label: feature_proxy_view_label$1,
|
|
4090
|
+
feature_publish_description: feature_publish_description$1,
|
|
4091
|
+
feature_publish_label: feature_publish_label$1,
|
|
4092
|
+
feature_publish_setting_closeAfterPublish_description: feature_publish_setting_closeAfterPublish_description$1,
|
|
4093
|
+
feature_publish_setting_closeAfterPublish_label: feature_publish_setting_closeAfterPublish_label$1,
|
|
4094
|
+
"feature_responsive-preview_description": {
|
|
4095
|
+
source: "Provides a responsive preview of the current edit state in an iframe.",
|
|
3038
4096
|
translation: ""
|
|
3039
4097
|
},
|
|
3040
|
-
|
|
4098
|
+
"feature_responsive-preview_label": {
|
|
4099
|
+
source: "Responsive Preview",
|
|
4100
|
+
translation: ""
|
|
4101
|
+
},
|
|
4102
|
+
feature_revert_description: feature_revert_description$1,
|
|
4103
|
+
feature_revert_label: feature_revert_label$1,
|
|
4104
|
+
feature_search_description: feature_search_description$1,
|
|
4105
|
+
feature_search_label: feature_search_label$1,
|
|
4106
|
+
feature_selection_description: feature_selection_description$1,
|
|
4107
|
+
feature_selection_label: feature_selection_label$1,
|
|
4108
|
+
feature_settings_description: feature_settings_description$1,
|
|
4109
|
+
feature_settings_label: feature_settings_label$1,
|
|
4110
|
+
feature_settings_setting_lowPerformanceMode_description: feature_settings_setting_lowPerformanceMode_description$1,
|
|
3041
4111
|
feature_settings_setting_lowPerformanceMode_label: feature_settings_setting_lowPerformanceMode_label$1,
|
|
3042
4112
|
feature_settings_setting_resetAllSettings_label: feature_settings_setting_resetAllSettings_label$1,
|
|
4113
|
+
feature_settings_setting_useAnimations_description: feature_settings_setting_useAnimations_description$1,
|
|
3043
4114
|
feature_settings_setting_useAnimations_label: feature_settings_setting_useAnimations_label$1,
|
|
4115
|
+
feature_structure_description: feature_structure_description$1,
|
|
4116
|
+
feature_structure_label: feature_structure_label$1,
|
|
4117
|
+
feature_theme_description: feature_theme_description$1,
|
|
4118
|
+
feature_theme_label: feature_theme_label$1,
|
|
4119
|
+
"feature_touch-action-bar_description": {
|
|
4120
|
+
source: "Renders a button on touch devices to cancel touch actions.",
|
|
4121
|
+
translation: ""
|
|
4122
|
+
},
|
|
4123
|
+
"feature_touch-action-bar_label": {
|
|
4124
|
+
source: "Touch Action Bar",
|
|
4125
|
+
translation: ""
|
|
4126
|
+
},
|
|
4127
|
+
feature_tour_description: feature_tour_description$1,
|
|
4128
|
+
feature_tour_label: feature_tour_label$1,
|
|
4129
|
+
feature_transform_description: feature_transform_description$1,
|
|
4130
|
+
feature_transform_label: feature_transform_label$1,
|
|
4131
|
+
feature_translations_description: feature_translations_description$1,
|
|
4132
|
+
feature_translations_label: feature_translations_label$1,
|
|
4133
|
+
feature_validations_description: feature_validations_description$1,
|
|
4134
|
+
feature_validations_label: feature_validations_label$1,
|
|
3044
4135
|
fieldAreasHide: fieldAreasHide$1,
|
|
3045
4136
|
fieldAreasShow: fieldAreasShow$1,
|
|
3046
4137
|
fieldAreasToggle: fieldAreasToggle$1,
|
|
@@ -3084,6 +4175,7 @@ const fr = {
|
|
|
3084
4175
|
libraryDetach: libraryDetach$1,
|
|
3085
4176
|
libraryDialogDescriptionLabel: libraryDialogDescriptionLabel$1,
|
|
3086
4177
|
libraryDialogLead: libraryDialogLead$1,
|
|
4178
|
+
libraryDialogReusableInfo: libraryDialogReusableInfo$1,
|
|
3087
4179
|
libraryDialogSubmit: libraryDialogSubmit$1,
|
|
3088
4180
|
libraryDialogTitle: libraryDialogTitle$1,
|
|
3089
4181
|
libraryDialogTitleInputPlaceholder: libraryDialogTitleInputPlaceholder$1,
|
|
@@ -3165,6 +4257,7 @@ const fr = {
|
|
|
3165
4257
|
settingsAppearance: settingsAppearance$1,
|
|
3166
4258
|
settingsArtboard: settingsArtboard$1,
|
|
3167
4259
|
settingsBehaviour: settingsBehaviour$1,
|
|
4260
|
+
settingsBeta: settingsBeta$1,
|
|
3168
4261
|
settingsDialogTitle: settingsDialogTitle$1,
|
|
3169
4262
|
settingsMenuDescription: settingsMenuDescription$1,
|
|
3170
4263
|
settingsMenuTitle: settingsMenuTitle$1,
|
|
@@ -3180,6 +4273,8 @@ const fr = {
|
|
|
3180
4273
|
translation: ""
|
|
3181
4274
|
},
|
|
3182
4275
|
singleComment: singleComment$1,
|
|
4276
|
+
stateUnavailableText: stateUnavailableText$1,
|
|
4277
|
+
stateUnavailableTitle: stateUnavailableTitle$1,
|
|
3183
4278
|
structureToolbarLabel: structureToolbarLabel$1,
|
|
3184
4279
|
structureTourText: structureTourText$1,
|
|
3185
4280
|
systemRequirementsDialogButton: systemRequirementsDialogButton$1,
|
|
@@ -3430,6 +4525,42 @@ const deleteError = {
|
|
|
3430
4525
|
source: "The block could not be deleted.",
|
|
3431
4526
|
translation: "L'elemento non può essere rimosso."
|
|
3432
4527
|
};
|
|
4528
|
+
const diffSidebarTitle = {
|
|
4529
|
+
source: "Changes",
|
|
4530
|
+
translation: ""
|
|
4531
|
+
};
|
|
4532
|
+
const diffSidebarTourText = {
|
|
4533
|
+
source: "Displays all the changes made during editing.",
|
|
4534
|
+
translation: ""
|
|
4535
|
+
};
|
|
4536
|
+
const diffStatusAdded = {
|
|
4537
|
+
source: "Added",
|
|
4538
|
+
translation: ""
|
|
4539
|
+
};
|
|
4540
|
+
const diffStatusDeleted = {
|
|
4541
|
+
source: "Deleted",
|
|
4542
|
+
translation: ""
|
|
4543
|
+
};
|
|
4544
|
+
const diffStatusEdited = {
|
|
4545
|
+
source: "Edited",
|
|
4546
|
+
translation: ""
|
|
4547
|
+
};
|
|
4548
|
+
const diffTableBundle = {
|
|
4549
|
+
source: "Type",
|
|
4550
|
+
translation: ""
|
|
4551
|
+
};
|
|
4552
|
+
const diffTableChange = {
|
|
4553
|
+
source: "Change",
|
|
4554
|
+
translation: ""
|
|
4555
|
+
};
|
|
4556
|
+
const diffTableDiff = {
|
|
4557
|
+
source: "Diff",
|
|
4558
|
+
translation: ""
|
|
4559
|
+
};
|
|
4560
|
+
const diffTableProperty = {
|
|
4561
|
+
source: "Property",
|
|
4562
|
+
translation: ""
|
|
4563
|
+
};
|
|
3433
4564
|
const droppableEditFormSave = {
|
|
3434
4565
|
source: "Save",
|
|
3435
4566
|
translation: ""
|
|
@@ -3518,10 +4649,26 @@ const featureHelpTitle = {
|
|
|
3518
4649
|
source: "Help",
|
|
3519
4650
|
translation: ""
|
|
3520
4651
|
};
|
|
4652
|
+
const feature_artboard_description = {
|
|
4653
|
+
source: "Wraps the entire page in an artboard that can be zoomed and moved using the mouse.",
|
|
4654
|
+
translation: ""
|
|
4655
|
+
};
|
|
4656
|
+
const feature_artboard_label = {
|
|
4657
|
+
source: "Artboard",
|
|
4658
|
+
translation: ""
|
|
4659
|
+
};
|
|
4660
|
+
const feature_artboard_setting_momentum_description = {
|
|
4661
|
+
source: "Applies smooth animations when scrolling or zooming the artboard.",
|
|
4662
|
+
translation: ""
|
|
4663
|
+
};
|
|
3521
4664
|
const feature_artboard_setting_momentum_label = {
|
|
3522
4665
|
source: "Use smooth scrolling",
|
|
3523
4666
|
translation: ""
|
|
3524
4667
|
};
|
|
4668
|
+
const feature_artboard_setting_persist_description = {
|
|
4669
|
+
source: "Stores and restores the last position and zoom factor of the artboard.",
|
|
4670
|
+
translation: ""
|
|
4671
|
+
};
|
|
3525
4672
|
const feature_artboard_setting_persist_label = {
|
|
3526
4673
|
source: "Persist position and zoom",
|
|
3527
4674
|
translation: ""
|
|
@@ -3530,18 +4677,226 @@ const feature_artboard_setting_scrollSpeed_label = {
|
|
|
3530
4677
|
source: "Artboard scroll speed",
|
|
3531
4678
|
translation: ""
|
|
3532
4679
|
};
|
|
4680
|
+
const feature_assistant_description = {
|
|
4681
|
+
source: "Provides a dynamic add block action to add one or more blocks generated by an AI assistant.",
|
|
4682
|
+
translation: ""
|
|
4683
|
+
};
|
|
4684
|
+
const feature_assistant_label = {
|
|
4685
|
+
source: "Assistant",
|
|
4686
|
+
translation: ""
|
|
4687
|
+
};
|
|
4688
|
+
const feature_clipboard_description = {
|
|
4689
|
+
source: "Provides clipboard integration to copy/paste existing blocks or paste supported clipboard content like text or images.",
|
|
4690
|
+
translation: ""
|
|
4691
|
+
};
|
|
4692
|
+
const feature_clipboard_label = {
|
|
4693
|
+
source: "Clipboard",
|
|
4694
|
+
translation: ""
|
|
4695
|
+
};
|
|
4696
|
+
const feature_clipboard_setting_openSidebarOnPaste_description = {
|
|
4697
|
+
source: "Automatically opens the sidebar when pasting content from the clipboard.",
|
|
4698
|
+
translation: ""
|
|
4699
|
+
};
|
|
3533
4700
|
const feature_clipboard_setting_openSidebarOnPaste_label = {
|
|
3534
|
-
source: "Open sidebar when pasting
|
|
4701
|
+
source: "Open sidebar when pasting",
|
|
4702
|
+
translation: ""
|
|
4703
|
+
};
|
|
4704
|
+
const feature_comments_description = {
|
|
4705
|
+
source: "Provides comment functionality for blocks.",
|
|
4706
|
+
translation: ""
|
|
4707
|
+
};
|
|
4708
|
+
const feature_comments_label = {
|
|
4709
|
+
source: "Comments",
|
|
4710
|
+
translation: ""
|
|
4711
|
+
};
|
|
4712
|
+
const feature_conversions_description = {
|
|
4713
|
+
source: "Provides block actions to convert one or more blocks to a different bundle.",
|
|
4714
|
+
translation: ""
|
|
4715
|
+
};
|
|
4716
|
+
const feature_conversions_label = {
|
|
4717
|
+
source: "Conversions",
|
|
4718
|
+
translation: ""
|
|
4719
|
+
};
|
|
4720
|
+
const feature_debug_description = {
|
|
4721
|
+
source: "Provides debugging functionality.",
|
|
4722
|
+
translation: ""
|
|
4723
|
+
};
|
|
4724
|
+
const feature_debug_label = {
|
|
4725
|
+
source: "Debug",
|
|
4726
|
+
translation: ""
|
|
4727
|
+
};
|
|
4728
|
+
const feature_delete_description = {
|
|
4729
|
+
source: "Provides an action to delete one or more blocks.",
|
|
4730
|
+
translation: ""
|
|
4731
|
+
};
|
|
4732
|
+
const feature_delete_label = {
|
|
4733
|
+
source: "Delete",
|
|
4734
|
+
translation: ""
|
|
4735
|
+
};
|
|
4736
|
+
const feature_diff_description = {
|
|
4737
|
+
source: "Displays a diff of all changes in the edit state.",
|
|
4738
|
+
translation: ""
|
|
4739
|
+
};
|
|
4740
|
+
const feature_diff_label = {
|
|
4741
|
+
source: "Diff",
|
|
4742
|
+
translation: ""
|
|
4743
|
+
};
|
|
4744
|
+
const feature_duplicate_description = {
|
|
4745
|
+
source: "Provides an action to duplicate one or more blocks in place.",
|
|
4746
|
+
translation: ""
|
|
4747
|
+
};
|
|
4748
|
+
const feature_duplicate_label = {
|
|
4749
|
+
source: "Duplicate",
|
|
4750
|
+
translation: ""
|
|
4751
|
+
};
|
|
4752
|
+
const feature_edit_description = {
|
|
4753
|
+
source: "Provides an action to edit a block.",
|
|
4754
|
+
translation: ""
|
|
4755
|
+
};
|
|
4756
|
+
const feature_edit_label = {
|
|
4757
|
+
source: "Edit",
|
|
4758
|
+
translation: ""
|
|
4759
|
+
};
|
|
4760
|
+
const feature_exit_description = {
|
|
4761
|
+
source: "Provides a menu button to exit the editor without saving.",
|
|
4762
|
+
translation: ""
|
|
4763
|
+
};
|
|
4764
|
+
const feature_exit_label = {
|
|
4765
|
+
source: "Exit",
|
|
4766
|
+
translation: ""
|
|
4767
|
+
};
|
|
4768
|
+
const feature_fragments_description = {
|
|
4769
|
+
source: "Provides way to add content fragments defined by the frontend.",
|
|
4770
|
+
translation: ""
|
|
4771
|
+
};
|
|
4772
|
+
const feature_fragments_label = {
|
|
4773
|
+
source: "Fragments",
|
|
4774
|
+
translation: ""
|
|
4775
|
+
};
|
|
4776
|
+
const feature_grid_description = {
|
|
4777
|
+
source: "Provides a view option to render a grid.",
|
|
4778
|
+
translation: ""
|
|
4779
|
+
};
|
|
4780
|
+
const feature_grid_label = {
|
|
4781
|
+
source: "Grid",
|
|
4782
|
+
translation: ""
|
|
4783
|
+
};
|
|
4784
|
+
const feature_help_description = {
|
|
4785
|
+
source: "Provides a sidebar pane with helpful information on how to use blokkli.",
|
|
4786
|
+
translation: ""
|
|
4787
|
+
};
|
|
4788
|
+
const feature_help_label = {
|
|
4789
|
+
source: "Help",
|
|
4790
|
+
translation: ""
|
|
4791
|
+
};
|
|
4792
|
+
const feature_history_description = {
|
|
4793
|
+
source: "Implements support for history features (undo, redo, list of mutations).",
|
|
4794
|
+
translation: ""
|
|
4795
|
+
};
|
|
4796
|
+
const feature_history_label = {
|
|
4797
|
+
source: "History",
|
|
4798
|
+
translation: ""
|
|
4799
|
+
};
|
|
4800
|
+
const feature_history_setting_useMouseButtons_description = {
|
|
4801
|
+
source: "When enabled you can use the backwards/forwards buttons on your mouse to undo and redo.",
|
|
3535
4802
|
translation: ""
|
|
3536
4803
|
};
|
|
3537
4804
|
const feature_history_setting_useMouseButtons_label = {
|
|
3538
4805
|
source: "Use mouse buttons for undo/redo",
|
|
3539
4806
|
translation: ""
|
|
3540
4807
|
};
|
|
4808
|
+
const feature_library_description = {
|
|
4809
|
+
source: "Implements support for a block library to manage reusable blocks.",
|
|
4810
|
+
translation: ""
|
|
4811
|
+
};
|
|
4812
|
+
const feature_library_label = {
|
|
4813
|
+
source: "Library",
|
|
4814
|
+
translation: ""
|
|
4815
|
+
};
|
|
4816
|
+
const feature_options_description = {
|
|
4817
|
+
source: "Renders the options form for one or more blocks.",
|
|
4818
|
+
translation: ""
|
|
4819
|
+
};
|
|
4820
|
+
const feature_options_label = {
|
|
4821
|
+
source: "Options",
|
|
4822
|
+
translation: ""
|
|
4823
|
+
};
|
|
4824
|
+
const feature_ownership_description = {
|
|
4825
|
+
source: "Renders a large button to take ownership of the current edit state.",
|
|
4826
|
+
translation: ""
|
|
4827
|
+
};
|
|
4828
|
+
const feature_ownership_label = {
|
|
4829
|
+
source: "Ownership",
|
|
4830
|
+
translation: ""
|
|
4831
|
+
};
|
|
4832
|
+
const feature_preview_description = {
|
|
4833
|
+
source: "Provides a button to open a preview in a new window.",
|
|
4834
|
+
translation: ""
|
|
4835
|
+
};
|
|
4836
|
+
const feature_preview_label = {
|
|
4837
|
+
source: "Preview",
|
|
4838
|
+
translation: ""
|
|
4839
|
+
};
|
|
4840
|
+
const feature_proxy_view_description = {
|
|
4841
|
+
source: "Displays the blocks as a structure in the preview.",
|
|
4842
|
+
translation: ""
|
|
4843
|
+
};
|
|
4844
|
+
const feature_proxy_view_label = {
|
|
4845
|
+
source: "Proxy View",
|
|
4846
|
+
translation: ""
|
|
4847
|
+
};
|
|
4848
|
+
const feature_publish_description = {
|
|
4849
|
+
source: "Provides a menu button to publish the changes of the current entity.",
|
|
4850
|
+
translation: ""
|
|
4851
|
+
};
|
|
4852
|
+
const feature_publish_label = {
|
|
4853
|
+
source: "Publish",
|
|
4854
|
+
translation: ""
|
|
4855
|
+
};
|
|
4856
|
+
const feature_publish_setting_closeAfterPublish_description = {
|
|
4857
|
+
source: "Immediately closes the editor after successfully publishing or saving.",
|
|
4858
|
+
translation: ""
|
|
4859
|
+
};
|
|
3541
4860
|
const feature_publish_setting_closeAfterPublish_label = {
|
|
3542
4861
|
source: "Close editor after publishing",
|
|
3543
4862
|
translation: ""
|
|
3544
4863
|
};
|
|
4864
|
+
const feature_revert_description = {
|
|
4865
|
+
source: "Provides a menu button to revert all changes done on the current entity.",
|
|
4866
|
+
translation: ""
|
|
4867
|
+
};
|
|
4868
|
+
const feature_revert_label = {
|
|
4869
|
+
source: "Revert",
|
|
4870
|
+
translation: ""
|
|
4871
|
+
};
|
|
4872
|
+
const feature_search_description = {
|
|
4873
|
+
source: "Provides an overlay with shortcut to search for blocks on the current page or existing content to add as blocks.",
|
|
4874
|
+
translation: ""
|
|
4875
|
+
};
|
|
4876
|
+
const feature_search_label = {
|
|
4877
|
+
source: "Search",
|
|
4878
|
+
translation: ""
|
|
4879
|
+
};
|
|
4880
|
+
const feature_selection_description = {
|
|
4881
|
+
source: "Renders an overlay that highlights the selected blocks.",
|
|
4882
|
+
translation: ""
|
|
4883
|
+
};
|
|
4884
|
+
const feature_selection_label = {
|
|
4885
|
+
source: "Selection",
|
|
4886
|
+
translation: ""
|
|
4887
|
+
};
|
|
4888
|
+
const feature_settings_description = {
|
|
4889
|
+
source: "Provides a menu button to display a settings dialog.",
|
|
4890
|
+
translation: ""
|
|
4891
|
+
};
|
|
4892
|
+
const feature_settings_label = {
|
|
4893
|
+
source: "Settings",
|
|
4894
|
+
translation: ""
|
|
4895
|
+
};
|
|
4896
|
+
const feature_settings_setting_lowPerformanceMode_description = {
|
|
4897
|
+
source: "Reduces the animations and interactivity to a minimum for devices with low performance.",
|
|
4898
|
+
translation: ""
|
|
4899
|
+
};
|
|
3545
4900
|
const feature_settings_setting_lowPerformanceMode_label = {
|
|
3546
4901
|
source: "Enable low performance mode",
|
|
3547
4902
|
translation: ""
|
|
@@ -3550,10 +4905,62 @@ const feature_settings_setting_resetAllSettings_label = {
|
|
|
3550
4905
|
source: "Reset all settings",
|
|
3551
4906
|
translation: ""
|
|
3552
4907
|
};
|
|
4908
|
+
const feature_settings_setting_useAnimations_description = {
|
|
4909
|
+
source: "Animates UI elements like dialogs or drawers or interactions like drag and drop or scroll changes.",
|
|
4910
|
+
translation: ""
|
|
4911
|
+
};
|
|
3553
4912
|
const feature_settings_setting_useAnimations_label = {
|
|
3554
4913
|
source: "Use animations",
|
|
3555
4914
|
translation: ""
|
|
3556
4915
|
};
|
|
4916
|
+
const feature_structure_description = {
|
|
4917
|
+
source: "Provides a sidebar button to render a structured list of all blocks on the current page.",
|
|
4918
|
+
translation: ""
|
|
4919
|
+
};
|
|
4920
|
+
const feature_structure_label = {
|
|
4921
|
+
source: "Structure",
|
|
4922
|
+
translation: ""
|
|
4923
|
+
};
|
|
4924
|
+
const feature_theme_description = {
|
|
4925
|
+
source: "Implements a theme editor.",
|
|
4926
|
+
translation: ""
|
|
4927
|
+
};
|
|
4928
|
+
const feature_theme_label = {
|
|
4929
|
+
source: "Theme",
|
|
4930
|
+
translation: ""
|
|
4931
|
+
};
|
|
4932
|
+
const feature_tour_description = {
|
|
4933
|
+
source: "Provides a tour overlay to get to know the editor.",
|
|
4934
|
+
translation: ""
|
|
4935
|
+
};
|
|
4936
|
+
const feature_tour_label = {
|
|
4937
|
+
source: "Tour",
|
|
4938
|
+
translation: ""
|
|
4939
|
+
};
|
|
4940
|
+
const feature_transform_description = {
|
|
4941
|
+
source: "Provides integration for block transform plugins.",
|
|
4942
|
+
translation: ""
|
|
4943
|
+
};
|
|
4944
|
+
const feature_transform_label = {
|
|
4945
|
+
source: "Transform",
|
|
4946
|
+
translation: ""
|
|
4947
|
+
};
|
|
4948
|
+
const feature_translations_description = {
|
|
4949
|
+
source: "Adds support for block translations.",
|
|
4950
|
+
translation: ""
|
|
4951
|
+
};
|
|
4952
|
+
const feature_translations_label = {
|
|
4953
|
+
source: "Translations",
|
|
4954
|
+
translation: ""
|
|
4955
|
+
};
|
|
4956
|
+
const feature_validations_description = {
|
|
4957
|
+
source: "Provides a sidebar pane to render validations.",
|
|
4958
|
+
translation: ""
|
|
4959
|
+
};
|
|
4960
|
+
const feature_validations_label = {
|
|
4961
|
+
source: "Validations",
|
|
4962
|
+
translation: ""
|
|
4963
|
+
};
|
|
3557
4964
|
const fieldAreasHide = {
|
|
3558
4965
|
source: "Hide block fields",
|
|
3559
4966
|
translation: "Nascondi aree di contenuto"
|
|
@@ -3726,6 +5133,10 @@ const libraryDialogLead = {
|
|
|
3726
5133
|
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.",
|
|
3727
5134
|
translation: "Aggiungendo un elemento alla biblioteca, puoi utilizzarlo su più pagine contemporaneamente. Le modifiche a questo elemento saranno pubblicate immediatamente su tutte le pagine."
|
|
3728
5135
|
};
|
|
5136
|
+
const libraryDialogReusableInfo = {
|
|
5137
|
+
source: "The library item will be available for placement on other pages once this page has been published.",
|
|
5138
|
+
translation: ""
|
|
5139
|
+
};
|
|
3729
5140
|
const libraryDialogSubmit = {
|
|
3730
5141
|
source: "Add to library",
|
|
3731
5142
|
translation: "Aggiungi alla biblioteca"
|
|
@@ -4002,6 +5413,10 @@ const settingsBehaviour = {
|
|
|
4002
5413
|
source: "Behaviour",
|
|
4003
5414
|
translation: "Comportamento"
|
|
4004
5415
|
};
|
|
5416
|
+
const settingsBeta = {
|
|
5417
|
+
source: "New Features",
|
|
5418
|
+
translation: ""
|
|
5419
|
+
};
|
|
4005
5420
|
const settingsDialogTitle = {
|
|
4006
5421
|
source: "Change settings",
|
|
4007
5422
|
translation: "Impostazioni"
|
|
@@ -4030,6 +5445,14 @@ const singleComment = {
|
|
|
4030
5445
|
source: "comment",
|
|
4031
5446
|
translation: ""
|
|
4032
5447
|
};
|
|
5448
|
+
const stateUnavailableText = {
|
|
5449
|
+
source: "This could be due to missing permissions or a temporary problem. Please try again later.",
|
|
5450
|
+
translation: ""
|
|
5451
|
+
};
|
|
5452
|
+
const stateUnavailableTitle = {
|
|
5453
|
+
source: "The edit state could not be loaded.",
|
|
5454
|
+
translation: ""
|
|
5455
|
+
};
|
|
4033
5456
|
const structureToolbarLabel = {
|
|
4034
5457
|
source: "Structure",
|
|
4035
5458
|
translation: "Struttura"
|
|
@@ -4234,6 +5657,15 @@ const it = {
|
|
|
4234
5657
|
convertTo: convertTo,
|
|
4235
5658
|
deleteButton: deleteButton,
|
|
4236
5659
|
deleteError: deleteError,
|
|
5660
|
+
diffSidebarTitle: diffSidebarTitle,
|
|
5661
|
+
diffSidebarTourText: diffSidebarTourText,
|
|
5662
|
+
diffStatusAdded: diffStatusAdded,
|
|
5663
|
+
diffStatusDeleted: diffStatusDeleted,
|
|
5664
|
+
diffStatusEdited: diffStatusEdited,
|
|
5665
|
+
diffTableBundle: diffTableBundle,
|
|
5666
|
+
diffTableChange: diffTableChange,
|
|
5667
|
+
diffTableDiff: diffTableDiff,
|
|
5668
|
+
diffTableProperty: diffTableProperty,
|
|
4237
5669
|
droppableEditFormSave: droppableEditFormSave,
|
|
4238
5670
|
duplicate: duplicate,
|
|
4239
5671
|
duplicateError: duplicateError,
|
|
@@ -4256,6 +5688,14 @@ const it = {
|
|
|
4256
5688
|
fatalErrorTitle: fatalErrorTitle,
|
|
4257
5689
|
featureHelpShortcuts: featureHelpShortcuts,
|
|
4258
5690
|
featureHelpTitle: featureHelpTitle,
|
|
5691
|
+
"feature_add-list_description": {
|
|
5692
|
+
source: "Provides the container to render a list of blocks to add or add actions.",
|
|
5693
|
+
translation: ""
|
|
5694
|
+
},
|
|
5695
|
+
"feature_add-list_label": {
|
|
5696
|
+
source: "Add List",
|
|
5697
|
+
translation: ""
|
|
5698
|
+
},
|
|
4259
5699
|
"feature_add-list_setting_orientation_label": {
|
|
4260
5700
|
source: "Add List",
|
|
4261
5701
|
translation: ""
|
|
@@ -4272,23 +5712,212 @@ const it = {
|
|
|
4272
5712
|
source: "Vertical",
|
|
4273
5713
|
translation: ""
|
|
4274
5714
|
},
|
|
5715
|
+
feature_artboard_description: feature_artboard_description,
|
|
5716
|
+
feature_artboard_label: feature_artboard_label,
|
|
5717
|
+
feature_artboard_setting_momentum_description: feature_artboard_setting_momentum_description,
|
|
4275
5718
|
feature_artboard_setting_momentum_label: feature_artboard_setting_momentum_label,
|
|
5719
|
+
feature_artboard_setting_persist_description: feature_artboard_setting_persist_description,
|
|
4276
5720
|
feature_artboard_setting_persist_label: feature_artboard_setting_persist_label,
|
|
4277
5721
|
feature_artboard_setting_scrollSpeed_label: feature_artboard_setting_scrollSpeed_label,
|
|
5722
|
+
feature_assistant_description: feature_assistant_description,
|
|
5723
|
+
feature_assistant_label: feature_assistant_label,
|
|
5724
|
+
"feature_block-add-list_description": {
|
|
5725
|
+
source: "Renders a list of block bundles that can be added to the current page.",
|
|
5726
|
+
translation: ""
|
|
5727
|
+
},
|
|
5728
|
+
"feature_block-add-list_label": {
|
|
5729
|
+
source: "Block Add List",
|
|
5730
|
+
translation: ""
|
|
5731
|
+
},
|
|
5732
|
+
"feature_block-add-list_setting_hideDisabledBlocks_description": {
|
|
5733
|
+
source: "Hides blocks from the \"Add List\" if they can't be added to anywhere.",
|
|
5734
|
+
translation: ""
|
|
5735
|
+
},
|
|
4278
5736
|
"feature_block-add-list_setting_hideDisabledBlocks_label": {
|
|
4279
5737
|
source: "Hide blocks that can't be added",
|
|
4280
5738
|
translation: ""
|
|
4281
5739
|
},
|
|
5740
|
+
feature_clipboard_description: feature_clipboard_description,
|
|
5741
|
+
feature_clipboard_label: feature_clipboard_label,
|
|
5742
|
+
feature_clipboard_setting_openSidebarOnPaste_description: feature_clipboard_setting_openSidebarOnPaste_description,
|
|
4282
5743
|
feature_clipboard_setting_openSidebarOnPaste_label: feature_clipboard_setting_openSidebarOnPaste_label,
|
|
5744
|
+
"feature_command-palette_description": {
|
|
5745
|
+
source: "Provides a command palette with search to access most UI features with a keyboard.",
|
|
5746
|
+
translation: ""
|
|
5747
|
+
},
|
|
5748
|
+
"feature_command-palette_label": {
|
|
5749
|
+
source: "Command Palette",
|
|
5750
|
+
translation: ""
|
|
5751
|
+
},
|
|
5752
|
+
feature_comments_description: feature_comments_description,
|
|
5753
|
+
feature_comments_label: feature_comments_label,
|
|
5754
|
+
feature_conversions_description: feature_conversions_description,
|
|
5755
|
+
feature_conversions_label: feature_conversions_label,
|
|
5756
|
+
feature_debug_description: feature_debug_description,
|
|
5757
|
+
feature_debug_label: feature_debug_label,
|
|
5758
|
+
feature_delete_description: feature_delete_description,
|
|
5759
|
+
feature_delete_label: feature_delete_label,
|
|
5760
|
+
feature_diff_description: feature_diff_description,
|
|
5761
|
+
feature_diff_label: feature_diff_label,
|
|
5762
|
+
"feature_dragging-overlay_description": {
|
|
5763
|
+
source: "Renders an overlay when dragging or placing a block.",
|
|
5764
|
+
translation: ""
|
|
5765
|
+
},
|
|
5766
|
+
"feature_dragging-overlay_label": {
|
|
5767
|
+
source: "Dragging Overlay",
|
|
5768
|
+
translation: ""
|
|
5769
|
+
},
|
|
5770
|
+
feature_duplicate_description: feature_duplicate_description,
|
|
5771
|
+
feature_duplicate_label: feature_duplicate_label,
|
|
5772
|
+
"feature_edit-form_description": {
|
|
5773
|
+
source: "Listens to edit events and renders an iframe containing the edit form.",
|
|
5774
|
+
translation: ""
|
|
5775
|
+
},
|
|
5776
|
+
"feature_edit-form_label": {
|
|
5777
|
+
source: "Edit Form",
|
|
5778
|
+
translation: ""
|
|
5779
|
+
},
|
|
5780
|
+
feature_edit_description: feature_edit_description,
|
|
5781
|
+
feature_edit_label: feature_edit_label,
|
|
5782
|
+
"feature_editable-field_description": {
|
|
5783
|
+
source: "Implements a form overlay to edit a single field of a block.",
|
|
5784
|
+
translation: ""
|
|
5785
|
+
},
|
|
5786
|
+
"feature_editable-field_label": {
|
|
5787
|
+
source: "Editable Field",
|
|
5788
|
+
translation: ""
|
|
5789
|
+
},
|
|
5790
|
+
"feature_editable-mask_description": {
|
|
5791
|
+
source: "Provides a view option to hide non-editable parts of the page.",
|
|
5792
|
+
translation: ""
|
|
5793
|
+
},
|
|
5794
|
+
"feature_editable-mask_label": {
|
|
5795
|
+
source: "Editable Mask",
|
|
5796
|
+
translation: ""
|
|
5797
|
+
},
|
|
5798
|
+
"feature_entity-title_description": {
|
|
5799
|
+
source: "Renders the title and status of the page entity.",
|
|
5800
|
+
translation: ""
|
|
5801
|
+
},
|
|
5802
|
+
"feature_entity-title_label": {
|
|
5803
|
+
source: "Entity Title",
|
|
5804
|
+
translation: ""
|
|
5805
|
+
},
|
|
5806
|
+
feature_exit_description: feature_exit_description,
|
|
5807
|
+
feature_exit_label: feature_exit_label,
|
|
5808
|
+
"feature_field-areas_description": {
|
|
5809
|
+
source: "Provides a view option to render the field areas with labels.",
|
|
5810
|
+
translation: ""
|
|
5811
|
+
},
|
|
5812
|
+
"feature_field-areas_label": {
|
|
5813
|
+
source: "Field Areas",
|
|
5814
|
+
translation: ""
|
|
5815
|
+
},
|
|
5816
|
+
feature_fragments_description: feature_fragments_description,
|
|
5817
|
+
feature_fragments_label: feature_fragments_label,
|
|
5818
|
+
feature_grid_description: feature_grid_description,
|
|
5819
|
+
feature_grid_label: feature_grid_label,
|
|
5820
|
+
feature_help_description: feature_help_description,
|
|
5821
|
+
feature_help_label: feature_help_label,
|
|
5822
|
+
feature_history_description: feature_history_description,
|
|
5823
|
+
feature_history_label: feature_history_label,
|
|
5824
|
+
feature_history_setting_useMouseButtons_description: feature_history_setting_useMouseButtons_description,
|
|
4283
5825
|
feature_history_setting_useMouseButtons_label: feature_history_setting_useMouseButtons_label,
|
|
5826
|
+
"feature_import-existing_description": {
|
|
5827
|
+
source: "Implements a menu action that renders a dialog to import blocks from another entity.",
|
|
5828
|
+
translation: ""
|
|
5829
|
+
},
|
|
5830
|
+
"feature_import-existing_label": {
|
|
5831
|
+
source: "Import existing content",
|
|
5832
|
+
translation: ""
|
|
5833
|
+
},
|
|
5834
|
+
"feature_import-existing_setting_showDialogWhenEmpty_description": {
|
|
5835
|
+
source: "Displays the import dialog when starting blökkli if the page is empty.",
|
|
5836
|
+
translation: ""
|
|
5837
|
+
},
|
|
4284
5838
|
"feature_import-existing_setting_showDialogWhenEmpty_label": {
|
|
4285
|
-
source: "Show import dialog at start
|
|
5839
|
+
source: "Show import dialog at start",
|
|
5840
|
+
translation: ""
|
|
5841
|
+
},
|
|
5842
|
+
feature_library_description: feature_library_description,
|
|
5843
|
+
feature_library_label: feature_library_label,
|
|
5844
|
+
"feature_media-library_description": {
|
|
5845
|
+
source: "Implements a media library to easily drag and drop media like images or videos.",
|
|
5846
|
+
translation: ""
|
|
5847
|
+
},
|
|
5848
|
+
"feature_media-library_label": {
|
|
5849
|
+
source: "Media Library",
|
|
5850
|
+
translation: ""
|
|
5851
|
+
},
|
|
5852
|
+
"feature_multi-select_description": {
|
|
5853
|
+
source: "Implements support for selecting multiple blocks using a select rectangle.",
|
|
4286
5854
|
translation: ""
|
|
4287
5855
|
},
|
|
5856
|
+
"feature_multi-select_label": {
|
|
5857
|
+
source: "Multiselect",
|
|
5858
|
+
translation: ""
|
|
5859
|
+
},
|
|
5860
|
+
feature_options_description: feature_options_description,
|
|
5861
|
+
feature_options_label: feature_options_label,
|
|
5862
|
+
feature_ownership_description: feature_ownership_description,
|
|
5863
|
+
feature_ownership_label: feature_ownership_label,
|
|
5864
|
+
"feature_preview-grant_description": {
|
|
5865
|
+
source: "Provides a button to open a dialog with a QR code to preview the page on a smartphone.",
|
|
5866
|
+
translation: ""
|
|
5867
|
+
},
|
|
5868
|
+
"feature_preview-grant_label": {
|
|
5869
|
+
source: "Preview Grant",
|
|
5870
|
+
translation: ""
|
|
5871
|
+
},
|
|
5872
|
+
feature_preview_description: feature_preview_description,
|
|
5873
|
+
feature_preview_label: feature_preview_label,
|
|
5874
|
+
feature_proxy_view_description: feature_proxy_view_description,
|
|
5875
|
+
feature_proxy_view_label: feature_proxy_view_label,
|
|
5876
|
+
feature_publish_description: feature_publish_description,
|
|
5877
|
+
feature_publish_label: feature_publish_label,
|
|
5878
|
+
feature_publish_setting_closeAfterPublish_description: feature_publish_setting_closeAfterPublish_description,
|
|
4288
5879
|
feature_publish_setting_closeAfterPublish_label: feature_publish_setting_closeAfterPublish_label,
|
|
5880
|
+
"feature_responsive-preview_description": {
|
|
5881
|
+
source: "Provides a responsive preview of the current edit state in an iframe.",
|
|
5882
|
+
translation: ""
|
|
5883
|
+
},
|
|
5884
|
+
"feature_responsive-preview_label": {
|
|
5885
|
+
source: "Responsive Preview",
|
|
5886
|
+
translation: ""
|
|
5887
|
+
},
|
|
5888
|
+
feature_revert_description: feature_revert_description,
|
|
5889
|
+
feature_revert_label: feature_revert_label,
|
|
5890
|
+
feature_search_description: feature_search_description,
|
|
5891
|
+
feature_search_label: feature_search_label,
|
|
5892
|
+
feature_selection_description: feature_selection_description,
|
|
5893
|
+
feature_selection_label: feature_selection_label,
|
|
5894
|
+
feature_settings_description: feature_settings_description,
|
|
5895
|
+
feature_settings_label: feature_settings_label,
|
|
5896
|
+
feature_settings_setting_lowPerformanceMode_description: feature_settings_setting_lowPerformanceMode_description,
|
|
4289
5897
|
feature_settings_setting_lowPerformanceMode_label: feature_settings_setting_lowPerformanceMode_label,
|
|
4290
5898
|
feature_settings_setting_resetAllSettings_label: feature_settings_setting_resetAllSettings_label,
|
|
5899
|
+
feature_settings_setting_useAnimations_description: feature_settings_setting_useAnimations_description,
|
|
4291
5900
|
feature_settings_setting_useAnimations_label: feature_settings_setting_useAnimations_label,
|
|
5901
|
+
feature_structure_description: feature_structure_description,
|
|
5902
|
+
feature_structure_label: feature_structure_label,
|
|
5903
|
+
feature_theme_description: feature_theme_description,
|
|
5904
|
+
feature_theme_label: feature_theme_label,
|
|
5905
|
+
"feature_touch-action-bar_description": {
|
|
5906
|
+
source: "Renders a button on touch devices to cancel touch actions.",
|
|
5907
|
+
translation: ""
|
|
5908
|
+
},
|
|
5909
|
+
"feature_touch-action-bar_label": {
|
|
5910
|
+
source: "Touch Action Bar",
|
|
5911
|
+
translation: ""
|
|
5912
|
+
},
|
|
5913
|
+
feature_tour_description: feature_tour_description,
|
|
5914
|
+
feature_tour_label: feature_tour_label,
|
|
5915
|
+
feature_transform_description: feature_transform_description,
|
|
5916
|
+
feature_transform_label: feature_transform_label,
|
|
5917
|
+
feature_translations_description: feature_translations_description,
|
|
5918
|
+
feature_translations_label: feature_translations_label,
|
|
5919
|
+
feature_validations_description: feature_validations_description,
|
|
5920
|
+
feature_validations_label: feature_validations_label,
|
|
4292
5921
|
fieldAreasHide: fieldAreasHide,
|
|
4293
5922
|
fieldAreasShow: fieldAreasShow,
|
|
4294
5923
|
fieldAreasToggle: fieldAreasToggle,
|
|
@@ -4332,6 +5961,7 @@ const it = {
|
|
|
4332
5961
|
libraryDetach: libraryDetach,
|
|
4333
5962
|
libraryDialogDescriptionLabel: libraryDialogDescriptionLabel,
|
|
4334
5963
|
libraryDialogLead: libraryDialogLead,
|
|
5964
|
+
libraryDialogReusableInfo: libraryDialogReusableInfo,
|
|
4335
5965
|
libraryDialogSubmit: libraryDialogSubmit,
|
|
4336
5966
|
libraryDialogTitle: libraryDialogTitle,
|
|
4337
5967
|
libraryDialogTitleInputPlaceholder: libraryDialogTitleInputPlaceholder,
|
|
@@ -4413,6 +6043,7 @@ const it = {
|
|
|
4413
6043
|
settingsAppearance: settingsAppearance,
|
|
4414
6044
|
settingsArtboard: settingsArtboard,
|
|
4415
6045
|
settingsBehaviour: settingsBehaviour,
|
|
6046
|
+
settingsBeta: settingsBeta,
|
|
4416
6047
|
settingsDialogTitle: settingsDialogTitle,
|
|
4417
6048
|
settingsMenuDescription: settingsMenuDescription,
|
|
4418
6049
|
settingsMenuTitle: settingsMenuTitle,
|
|
@@ -4428,6 +6059,8 @@ const it = {
|
|
|
4428
6059
|
translation: ""
|
|
4429
6060
|
},
|
|
4430
6061
|
singleComment: singleComment,
|
|
6062
|
+
stateUnavailableText: stateUnavailableText,
|
|
6063
|
+
stateUnavailableTitle: stateUnavailableTitle,
|
|
4431
6064
|
structureToolbarLabel: structureToolbarLabel,
|
|
4432
6065
|
structureTourText: structureTourText,
|
|
4433
6066
|
systemRequirementsDialogButton: systemRequirementsDialogButton,
|
|
@@ -5388,15 +7021,18 @@ const module = defineNuxtModule({
|
|
|
5388
7021
|
(v) => v.id
|
|
5389
7022
|
);
|
|
5390
7023
|
const featuresArray = features2.map((v) => {
|
|
5391
|
-
return `{
|
|
5392
|
-
|
|
5393
|
-
|
|
5394
|
-
|
|
5395
|
-
|
|
7024
|
+
return `{
|
|
7025
|
+
id: "${v.id}",
|
|
7026
|
+
dependencies: ${JSON.stringify(v.definition.dependencies || [])},
|
|
7027
|
+
viewports: ${JSON.stringify(v.definition.viewports || [])},
|
|
7028
|
+
component: ${v.importName},
|
|
7029
|
+
requiredAdapterMethods: ${JSON.stringify(
|
|
5396
7030
|
v.definition.requiredAdapterMethods || []
|
|
5397
|
-
)},
|
|
5398
|
-
|
|
5399
|
-
|
|
7031
|
+
)},
|
|
7032
|
+
label: ${JSON.stringify(v.definition.label || "")},
|
|
7033
|
+
beta: ${JSON.stringify(!!v.definition.beta)},
|
|
7034
|
+
description: "${v.definition.description || ""}"
|
|
7035
|
+
}`;
|
|
5400
7036
|
}).join(",\n");
|
|
5401
7037
|
return `${imports}
|
|
5402
7038
|
import type { BlokkliAdapter } from '#blokkli/adapter'
|
|
@@ -5410,12 +7046,13 @@ export const availableFeaturesAtBuild = ${JSON.stringify(
|
|
|
5410
7046
|
export type ValidFeatureKey = ${allFeatureIds.map((v) => '"' + v + '"').join(" | ")}
|
|
5411
7047
|
|
|
5412
7048
|
type FeatureComponent = {
|
|
5413
|
-
id:
|
|
7049
|
+
id: ValidFeatureKey
|
|
5414
7050
|
component: any
|
|
5415
7051
|
requiredAdapterMethods: AdapterMethods[]
|
|
5416
7052
|
dependencies: ValidFeatureKey[]
|
|
5417
7053
|
description: string
|
|
5418
7054
|
label: string
|
|
7055
|
+
beta: boolean
|
|
5419
7056
|
viewports: Viewport[]
|
|
5420
7057
|
}
|
|
5421
7058
|
|