@blokkli/editor 2.0.0-alpha.22 → 2.0.0-alpha.24
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 +150 -226
- package/dist/runtime/blokkliPlugins/ContextMenu/index.vue +1 -1
- package/dist/runtime/blokkliPlugins/Sidebar/Detached/index.vue +20 -14
- package/dist/runtime/blokkliPlugins/Sidebar/Detached/index.vue.d.ts +8 -4
- package/dist/runtime/blokkliPlugins/Sidebar/index.vue +55 -25
- package/dist/runtime/blokkliPlugins/Sidebar/index.vue.d.ts +5 -4
- package/dist/runtime/blokkliPlugins/ToolbarButton/index.vue +9 -2
- package/dist/runtime/blokkliPlugins/ToolbarButton/index.vue.d.ts +2 -0
- package/dist/runtime/blokkliPlugins/TourItem/index.vue +22 -13
- package/dist/runtime/blokkliPlugins/TourItem/index.vue.d.ts +1 -0
- package/dist/runtime/blokkliPlugins/ViewOption/index.vue +3 -1
- package/dist/runtime/blokkliPlugins/index.d.ts +1 -5
- package/dist/runtime/blokkliPlugins/index.js +0 -8
- package/dist/runtime/components/Blocks/FromLibrary/index.vue +0 -5
- package/dist/runtime/components/BlokkliEditable.vue +6 -1
- package/dist/runtime/components/BlokkliField.vue +1 -1
- package/dist/runtime/components/BlokkliProvider.vue +4 -4
- package/dist/runtime/components/BlokkliProvider.vue.d.ts +1 -1
- package/dist/runtime/components/Edit/Actions/ItemDropdown.vue +66 -0
- package/dist/runtime/components/Edit/Actions/ItemDropdown.vue.d.ts +6 -0
- package/dist/runtime/components/Edit/Actions/index.vue +80 -117
- package/dist/runtime/components/Edit/AddListItem/index.vue +8 -29
- package/dist/runtime/components/Edit/AddListItem/index.vue.d.ts +2 -3
- package/dist/runtime/components/Edit/AnimationCanvas/index.vue +23 -68
- package/dist/runtime/components/Edit/AppMenu/MenuButton.vue +39 -0
- package/dist/runtime/{blokkliPlugins/MenuButton/index.vue.d.ts → components/Edit/AppMenu/MenuButton.vue.d.ts} +0 -4
- package/dist/runtime/components/Edit/AppMenu/index.vue +62 -40
- package/dist/runtime/components/Edit/BlockProxy/index.vue +2 -8
- package/dist/runtime/components/Edit/BlokkliErrorBoundary.vue +33 -49
- package/dist/runtime/components/Edit/BlokkliErrorBoundary.vue.d.ts +14 -1
- package/dist/runtime/components/Edit/BlokkliRootErrorBoundary.vue +93 -0
- package/dist/runtime/components/Edit/BlokkliRootErrorBoundary.vue.d.ts +12 -0
- package/dist/runtime/components/Edit/Dialog/index.vue +26 -5
- package/dist/runtime/components/Edit/Dialog/index.vue.d.ts +2 -0
- package/dist/runtime/components/Edit/DraggableList.vue +5 -25
- package/dist/runtime/components/Edit/EditProvider.vue +71 -41
- package/dist/runtime/components/Edit/EditProvider.vue.d.ts +1 -1
- package/dist/runtime/components/Edit/Features/AddList/Actions/Action.vue +52 -0
- package/dist/runtime/components/Edit/Features/AddList/Actions/Action.vue.d.ts +7 -0
- package/dist/runtime/components/Edit/Features/AddList/Actions/index.vue +41 -0
- package/dist/runtime/components/Edit/Features/{Selection/OverlayFallback → AddList/Actions}/index.vue.d.ts +1 -1
- package/dist/runtime/components/Edit/Features/{BlockAddList → AddList/Blocks}/index.vue +36 -108
- package/dist/runtime/components/Edit/Features/{Hover/Overlay → AddList/Blocks}/index.vue.d.ts +7 -2
- package/dist/runtime/components/Edit/Features/AddList/index.vue +76 -110
- package/dist/runtime/components/Edit/Features/Analyze/{Renderer.vue → Main.vue} +4 -8
- package/dist/runtime/components/Edit/Features/Analyze/{Overlay → Renderer}/fragment.glsl +10 -6
- package/dist/runtime/components/Edit/Features/Analyze/{Overlay → Renderer}/index.vue +43 -15
- package/dist/runtime/components/Edit/Features/Analyze/{Overlay → Renderer}/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Analyze/{Overlay → Renderer}/vertex.glsl +11 -9
- package/dist/runtime/components/Edit/Features/Analyze/Results/ResultsItemNodesTarget.vue +15 -3
- package/dist/runtime/components/Edit/Features/Analyze/index.vue +7 -3
- package/dist/runtime/components/Edit/Features/Anchors/index.vue +2 -2
- package/dist/runtime/components/Edit/Features/Artboard/Renderer.vue +41 -20
- package/dist/runtime/components/Edit/Features/Artboard/Scrollbar/index.vue +3 -2
- package/dist/runtime/components/Edit/Features/Assistant/Overlay/index.vue +2 -28
- package/dist/runtime/components/Edit/Features/Assistant/index.vue +18 -14
- package/dist/runtime/components/Edit/Features/BlockScheduler/Dialog/index.vue +1 -0
- package/dist/runtime/components/Edit/Features/BlockScheduler/index.vue +2 -2
- package/dist/runtime/components/Edit/Features/Clipboard/List/index.vue +22 -11
- package/dist/runtime/components/Edit/Features/Clipboard/index.vue +70 -29
- package/dist/runtime/components/Edit/Features/CommandPalette/Palette/Item/index.vue +0 -2
- package/dist/runtime/components/Edit/Features/CommandPalette/Palette/Item/index.vue.d.ts +6 -4
- package/dist/runtime/components/Edit/Features/CommandPalette/Palette/index.vue +77 -27
- package/dist/runtime/components/Edit/Features/CommandPalette/index.vue +7 -4
- package/dist/runtime/components/Edit/Features/Comments/index.vue +2 -2
- package/dist/runtime/components/Edit/Features/Conversions/index.vue +16 -9
- package/dist/runtime/components/Edit/Features/Debug/DebugSection.vue +24 -0
- package/dist/runtime/components/Edit/Features/Debug/DebugSection.vue.d.ts +16 -0
- package/dist/runtime/components/Edit/Features/Debug/Main.vue +80 -0
- package/dist/runtime/components/Edit/Features/Debug/Section/Features.vue +34 -0
- package/dist/runtime/components/Edit/Features/Debug/Section/Icons.vue +15 -0
- package/dist/runtime/components/Edit/Features/Debug/Section/Icons.vue.d.ts +2 -0
- package/dist/runtime/components/Edit/Features/Debug/Section/Keyboard.vue +17 -0
- package/dist/runtime/components/Edit/Features/Debug/Section/Keyboard.vue.d.ts +2 -0
- package/dist/runtime/components/Edit/Features/Debug/Section/Logging.vue +66 -0
- package/dist/runtime/components/Edit/Features/Debug/Section/Logging.vue.d.ts +6 -0
- package/dist/runtime/components/Edit/Features/Debug/Section/Rendering.vue +96 -0
- package/dist/runtime/components/Edit/Features/Debug/Section/Rendering.vue.d.ts +2 -0
- package/dist/runtime/components/Edit/Features/Debug/Section/Selection.vue +25 -0
- package/dist/runtime/components/Edit/Features/Debug/Section/Selection.vue.d.ts +2 -0
- package/dist/runtime/components/Edit/Features/Debug/index.vue +2 -2
- package/dist/runtime/components/Edit/Features/DraggingOverlay/DragItems/DragItem.vue +113 -0
- package/dist/runtime/components/Edit/Features/DraggingOverlay/DragItems/DragItem.vue.d.ts +25 -0
- package/dist/runtime/components/Edit/Features/DraggingOverlay/DragItems/index.vue +23 -119
- package/dist/runtime/components/Edit/Features/DraggingOverlay/Renderer/fragment.glsl +77 -0
- package/dist/runtime/components/Edit/Features/DraggingOverlay/{DropTargets → Renderer}/index.vue +138 -92
- package/dist/runtime/components/Edit/Features/DraggingOverlay/{DropTargets → Renderer}/vertex.glsl +60 -8
- package/dist/runtime/components/Edit/Features/DraggingOverlay/index.vue +4 -5
- package/dist/runtime/components/Edit/Features/EditForm/index.vue +2 -2
- package/dist/runtime/components/Edit/Features/EditableField/Overlay/index.vue +0 -6
- package/dist/runtime/components/Edit/Features/EditableField/index.vue +8 -4
- package/dist/runtime/components/Edit/Features/Exit/index.vue +12 -9
- package/dist/runtime/components/Edit/Features/Fragments/Dialog/Item/index.vue +1 -5
- package/dist/runtime/components/Edit/Features/Fragments/index.vue +27 -31
- package/dist/runtime/components/Edit/Features/Hover/Renderer/fragment.glsl +141 -0
- package/dist/runtime/components/Edit/Features/Hover/{Overlay → Renderer}/index.vue +225 -38
- package/dist/runtime/components/Edit/Features/Hover/Renderer/index.vue.d.ts +2 -0
- package/dist/runtime/components/Edit/Features/Hover/{Overlay → Renderer}/vertex.glsl +49 -11
- package/dist/runtime/components/Edit/Features/Hover/index.vue +9 -6
- package/dist/runtime/components/Edit/Features/ImportExisting/Dialog/index.vue +1 -0
- package/dist/runtime/components/Edit/Features/ImportExisting/index.vue +25 -24
- package/dist/runtime/components/Edit/Features/Library/EditReusable/index.vue +2 -2
- package/dist/runtime/components/Edit/Features/Library/LibraryDialog/Item/index.vue +1 -5
- package/dist/runtime/components/Edit/Features/Library/ReusableDialog/index.vue +1 -0
- package/dist/runtime/components/Edit/Features/Library/index.vue +50 -36
- package/dist/runtime/components/Edit/Features/MediaLibrary/Library/Item.vue +1 -1
- package/dist/runtime/components/Edit/Features/MediaLibrary/Library/index.vue +26 -13
- package/dist/runtime/components/Edit/Features/MediaLibrary/Library/index.vue.d.ts +0 -1
- package/dist/runtime/components/Edit/Features/MediaLibrary/index.vue +3 -47
- package/dist/runtime/components/Edit/Features/MultiSelect/{Overlay → Renderer}/fragment.glsl +13 -26
- package/dist/runtime/components/Edit/Features/MultiSelect/{Overlay → Renderer}/index.vue +131 -75
- package/dist/runtime/components/Edit/Features/MultiSelect/{Overlay → Renderer}/index.vue.d.ts +0 -1
- package/dist/runtime/components/Edit/Features/MultiSelect/{Overlay → Renderer}/vertex.glsl +27 -2
- package/dist/runtime/components/Edit/Features/MultiSelect/index.vue +25 -12
- package/dist/runtime/components/Edit/Features/Ownership/index.vue +2 -2
- package/dist/runtime/components/Edit/Features/PreviewGrant/index.vue +2 -1
- package/dist/runtime/components/Edit/Features/Publish/Dialog/index.vue +1 -0
- package/dist/runtime/components/Edit/Features/Publish/index.vue +17 -15
- package/dist/runtime/components/Edit/Features/ResponsivePreview/index.vue +1 -1
- package/dist/runtime/components/Edit/Features/Revert/index.vue +24 -18
- package/dist/runtime/components/Edit/Features/Search/Overlay/Results/Content/index.vue +23 -6
- package/dist/runtime/components/Edit/Features/Search/index.vue +1 -1
- package/dist/runtime/components/Edit/Features/Selection/AddButtons/Overlay/index.vue +21 -17
- package/dist/runtime/components/Edit/Features/Selection/AddButtons/Overlay/index.vue.d.ts +6 -6
- package/dist/runtime/components/Edit/Features/Selection/AddButtons/Renderer/fragment.glsl +19 -17
- package/dist/runtime/components/Edit/Features/Selection/AddButtons/Renderer/index.vue +242 -131
- package/dist/runtime/components/Edit/Features/Selection/AddButtons/Renderer/vertex.glsl +29 -12
- package/dist/runtime/components/Edit/Features/Selection/AddButtons/index.vue +15 -10
- package/dist/runtime/components/Edit/Features/Selection/{Overlay → Renderer}/fragment.glsl +23 -14
- package/dist/runtime/components/Edit/Features/Selection/{Overlay → Renderer}/index.vue +121 -28
- package/dist/runtime/components/Edit/Features/Selection/{Overlay → Renderer}/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Selection/{Overlay → Renderer}/vertex.glsl +23 -14
- package/dist/runtime/components/Edit/Features/Selection/index.vue +46 -59
- package/dist/runtime/components/Edit/Features/Settings/Dialog/index.vue +1 -0
- package/dist/runtime/components/Edit/Features/Settings/index.vue +25 -17
- package/dist/runtime/components/Edit/Features/TouchActionBar/index.vue +2 -2
- package/dist/runtime/components/Edit/Features/Tour/Overlay/index.vue +1 -1
- package/dist/runtime/components/Edit/Features/Tour/Popup/index.vue +2 -2
- package/dist/runtime/components/Edit/Features/Tour/index.vue +12 -10
- package/dist/runtime/components/Edit/Features/Transform/Dialog/index.vue +5 -5
- package/dist/runtime/components/Edit/Features/Transform/index.vue +30 -23
- package/dist/runtime/components/Edit/Features/Translations/index.vue +18 -17
- package/dist/runtime/components/Edit/Form/Checkboxes/index.vue +43 -0
- package/dist/runtime/components/Edit/Form/Checkboxes/index.vue.d.ts +20 -0
- package/dist/runtime/components/Edit/FormOverlay/index.vue +13 -4
- package/dist/runtime/components/Edit/ItemIconBox/index.vue +41 -0
- package/dist/runtime/components/Edit/{AddListItemIcon → ItemIconBox}/index.vue.d.ts +5 -5
- package/dist/runtime/components/Edit/Konami/Game/index.vue +0 -1
- package/dist/runtime/components/Edit/Konami/index.vue +3 -5
- package/dist/runtime/components/Edit/Messages/Item/index.vue +11 -2
- package/dist/runtime/components/Edit/Messages/Item/index.vue.d.ts +1 -1
- package/dist/runtime/components/Edit/Messages/index.vue +6 -1
- package/dist/runtime/components/Edit/Overlay/index.vue +66 -0
- package/dist/runtime/components/Edit/Overlay/index.vue.d.ts +2 -0
- package/dist/runtime/components/Edit/PreviewProvider.vue +1 -1
- package/dist/runtime/components/Edit/Sortli/index.vue +5 -8
- package/dist/runtime/components/Edit/Sortli/index.vue.d.ts +2 -0
- package/dist/runtime/components/Edit/SystemRequirements/index.vue +36 -36
- package/dist/runtime/components/Edit/Toolbar/index.vue +47 -51
- package/dist/runtime/components/Edit/ViewportBlockingRect/index.vue +9 -2
- package/dist/runtime/components/Edit/ViewportBlockingRect/index.vue.d.ts +4 -1
- package/dist/runtime/components/Edit/index.d.ts +7 -5
- package/dist/runtime/components/Edit/index.js +13 -9
- package/dist/runtime/css/output.css +1 -1
- package/dist/runtime/helpers/animationProvider.d.ts +58 -9
- package/dist/runtime/helpers/animationProvider.js +318 -75
- package/dist/runtime/helpers/composables/defineAddAction.d.ts +2 -0
- package/dist/runtime/helpers/composables/defineAddAction.js +10 -0
- package/dist/runtime/helpers/composables/defineItemDropdownAction.d.ts +2 -0
- package/dist/runtime/helpers/composables/defineItemDropdownAction.js +10 -0
- package/dist/runtime/helpers/composables/defineMenuButton.d.ts +2 -0
- package/dist/runtime/helpers/composables/defineMenuButton.js +10 -0
- package/dist/runtime/helpers/composables/defineRenderer.d.ts +5 -2
- package/dist/runtime/helpers/composables/defineRenderer.js +3 -2
- package/dist/runtime/helpers/composables/useDialog.d.ts +3 -0
- package/dist/runtime/helpers/composables/useDialog.js +16 -0
- package/dist/runtime/helpers/composables/useGlobalBlokkliObject.d.ts +16 -0
- package/dist/runtime/helpers/composables/useGlobalBlokkliObject.js +36 -0
- package/dist/runtime/helpers/debugProvider.d.ts +13 -3
- package/dist/runtime/helpers/debugProvider.js +80 -12
- package/dist/runtime/helpers/defineElementStyle.d.ts +2 -0
- package/dist/runtime/helpers/defineElementStyle.js +33 -0
- package/dist/runtime/helpers/domProvider.d.ts +1 -0
- package/dist/runtime/helpers/domProvider.js +51 -32
- package/dist/runtime/helpers/dropTargets/index.d.ts +1 -1
- package/dist/runtime/helpers/dropTargets/index.js +18 -4
- package/dist/runtime/helpers/eventBus.d.ts +1 -1
- package/dist/runtime/helpers/index.d.ts +1 -6
- package/dist/runtime/helpers/index.js +0 -81
- package/dist/runtime/helpers/pluginProvider.d.ts +38 -3
- package/dist/runtime/helpers/pluginProvider.js +49 -18
- package/dist/runtime/helpers/providers/blocks.js +10 -0
- package/dist/runtime/helpers/providers/directive.d.ts +4 -1
- package/dist/runtime/helpers/providers/directive.js +9 -2
- package/dist/runtime/helpers/providers/fields.d.ts +9 -1
- package/dist/runtime/helpers/stateProvider.js +1 -0
- package/dist/runtime/helpers/uiProvider.d.ts +13 -12
- package/dist/runtime/helpers/uiProvider.js +117 -81
- package/dist/runtime/helpers/webgl/index.d.ts +2 -3
- package/dist/runtime/helpers/webgl/index.js +9 -14
- package/dist/runtime/icons/click.svg +1 -0
- package/dist/runtime/icons/dock-left.svg +1 -0
- package/dist/runtime/icons/dock-right.svg +1 -0
- package/dist/runtime/icons/dock-window.svg +1 -0
- package/dist/runtime/plugins/blokkliDirectives.js +1 -1
- package/dist/runtime/types/index.d.ts +16 -26
- package/package.json +1 -1
- package/dist/runtime/blokkliPlugins/AddAction/index.vue +0 -96
- package/dist/runtime/blokkliPlugins/AddAction/index.vue.d.ts +0 -26
- package/dist/runtime/blokkliPlugins/DroppableEdit/index.vue +0 -56
- package/dist/runtime/blokkliPlugins/DroppableEdit/index.vue.d.ts +0 -24
- package/dist/runtime/blokkliPlugins/ItemDropdown/index.vue +0 -76
- package/dist/runtime/blokkliPlugins/ItemDropdown/index.vue.d.ts +0 -31
- package/dist/runtime/blokkliPlugins/MenuButton/index.vue +0 -66
- package/dist/runtime/components/Edit/AddListItemIcon/index.vue +0 -19
- package/dist/runtime/components/Edit/Features/BlockAddList/docs.md +0 -15
- package/dist/runtime/components/Edit/Features/Debug/Renderer.vue +0 -240
- package/dist/runtime/components/Edit/Features/DraggingOverlay/DropTargets/fragment.glsl +0 -96
- package/dist/runtime/components/Edit/Features/Hover/Overlay/fragment.glsl +0 -139
- package/dist/runtime/components/Edit/Features/Selection/OverlayFallback/index.vue +0 -42
- /package/dist/runtime/components/Edit/Features/Analyze/{Renderer.vue.d.ts → Main.vue.d.ts} +0 -0
- /package/dist/runtime/components/Edit/Features/Anchors/{Renderer.vue → Overlay/index.vue} +0 -0
- /package/dist/runtime/components/Edit/Features/{BlockAddList → Anchors/Overlay}/index.vue.d.ts +0 -0
- /package/dist/runtime/components/Edit/Features/Debug/{Renderer.vue.d.ts → Main.vue.d.ts} +0 -0
- /package/dist/runtime/components/Edit/Features/{Anchors/Renderer.vue.d.ts → Debug/Section/Features.vue.d.ts} +0 -0
- /package/dist/runtime/components/Edit/Features/DraggingOverlay/{DropTargets → Renderer}/index.vue.d.ts +0 -0
- /package/dist/runtime/components/Edit/Features/Ownership/{Renderer.vue → Banner/index.vue} +0 -0
- /package/dist/runtime/components/Edit/Features/Ownership/{Renderer.vue.d.ts → Banner/index.vue.d.ts} +0 -0
package/dist/module.mjs
CHANGED
|
@@ -15,7 +15,7 @@ import fs from 'node:fs';
|
|
|
15
15
|
import { defu, createDefu } from 'defu';
|
|
16
16
|
|
|
17
17
|
const name = "@blokkli/editor";
|
|
18
|
-
const version = "2.0.0-alpha.
|
|
18
|
+
const version = "2.0.0-alpha.24";
|
|
19
19
|
|
|
20
20
|
function sortObjectKeys(obj) {
|
|
21
21
|
if (Array.isArray(obj)) {
|
|
@@ -1055,10 +1055,6 @@ const addCommentToItem$3 = {
|
|
|
1055
1055
|
source: "Add Comment...",
|
|
1056
1056
|
translation: "Kommentar hinzufügen..."
|
|
1057
1057
|
};
|
|
1058
|
-
const addListInputPlaceholder$3 = {
|
|
1059
|
-
source: "Search available blocks",
|
|
1060
|
-
translation: "Blöcke durchsuchen"
|
|
1061
|
-
};
|
|
1062
1058
|
const addListItemFavoriteAdd$3 = {
|
|
1063
1059
|
source: "Add to favorites",
|
|
1064
1060
|
translation: "Zu Favoriten hinzufügen"
|
|
@@ -1145,7 +1141,7 @@ const analyzerReadabiliyAverageSentenceLength$3 = {
|
|
|
1145
1141
|
};
|
|
1146
1142
|
const analyzerReadabiliyDescription$3 = {
|
|
1147
1143
|
source: "Avoid texts that are hard to read.",
|
|
1148
|
-
translation: "Vermeiden Sie
|
|
1144
|
+
translation: "Vermeiden Sie Texte die schwer lesbar sind."
|
|
1149
1145
|
};
|
|
1150
1146
|
const analyzerReadabiliyHardToRead$3 = {
|
|
1151
1147
|
source: "Hard to read (@lang).",
|
|
@@ -1363,6 +1359,14 @@ const clipboardPasteErrorAllowedBundlesSingle$3 = {
|
|
|
1363
1359
|
source: "Block type \"@types\" is not allowed here.",
|
|
1364
1360
|
translation: "Der Block-Typ «@types» ist hier nicht erlaubt."
|
|
1365
1361
|
};
|
|
1362
|
+
const clipboardPasteErrorAllowedFragmentsMultiple$3 = {
|
|
1363
|
+
source: "Fragments (@types) are not allowed here.",
|
|
1364
|
+
translation: ""
|
|
1365
|
+
};
|
|
1366
|
+
const clipboardPasteErrorAllowedFragmentsSingle$3 = {
|
|
1367
|
+
source: "Fragment \"@types\" is not allowed here.",
|
|
1368
|
+
translation: ""
|
|
1369
|
+
};
|
|
1366
1370
|
const clipboardPasteErrorCardinality$3 = {
|
|
1367
1371
|
source: "This field only allows up to @count blocks.",
|
|
1368
1372
|
translation: "Dieses Feld erlaubt nur bis zu @count Blöcke."
|
|
@@ -1423,10 +1427,6 @@ const conversionsConvertTo$3 = {
|
|
|
1423
1427
|
source: "Convert to: @bundle",
|
|
1424
1428
|
translation: "Konvertieren zu: @bundle"
|
|
1425
1429
|
};
|
|
1426
|
-
const convertTo$3 = {
|
|
1427
|
-
source: "Convert to...",
|
|
1428
|
-
translation: "Konvertieren..."
|
|
1429
|
-
};
|
|
1430
1430
|
const copiedToClipboardMessage$3 = {
|
|
1431
1431
|
source: "\"@text\" has been copied to your clipboard",
|
|
1432
1432
|
translation: "«@text» wurde in die Zwischenablage kopiert"
|
|
@@ -1491,9 +1491,9 @@ const diffStatusUnchanged$3 = {
|
|
|
1491
1491
|
source: "Unchanged",
|
|
1492
1492
|
translation: "Keine Änderung"
|
|
1493
1493
|
};
|
|
1494
|
-
const
|
|
1495
|
-
source: "
|
|
1496
|
-
translation: "
|
|
1494
|
+
const downloadLogsButton$3 = {
|
|
1495
|
+
source: "Download Logs",
|
|
1496
|
+
translation: "Fehlerprotokoll herunterladen"
|
|
1497
1497
|
};
|
|
1498
1498
|
const duplicate$3 = {
|
|
1499
1499
|
source: "Duplicate",
|
|
@@ -1555,6 +1555,14 @@ const entityTitleTourTitle$3 = {
|
|
|
1555
1555
|
source: "Page",
|
|
1556
1556
|
translation: "Seite"
|
|
1557
1557
|
};
|
|
1558
|
+
const errorCapturedMessage$3 = {
|
|
1559
|
+
source: "Error in \"@label\": @errorMessage",
|
|
1560
|
+
translation: ""
|
|
1561
|
+
};
|
|
1562
|
+
const errorCapturedMessageDisabled$3 = {
|
|
1563
|
+
source: "\"@label\" has errored more than 3 times. The feature will be disabled.",
|
|
1564
|
+
translation: ""
|
|
1565
|
+
};
|
|
1558
1566
|
const exitDescription$3 = {
|
|
1559
1567
|
source: "Close editor without publishing",
|
|
1560
1568
|
translation: "Editor schliessen ohne veröffentlichen"
|
|
@@ -2191,6 +2199,10 @@ const optionBkVisibleLanguagesAll$3 = {
|
|
|
2191
2199
|
source: "All languages",
|
|
2192
2200
|
translation: "Alle Sprachen"
|
|
2193
2201
|
};
|
|
2202
|
+
const overlayDoubleClickInfo$3 = {
|
|
2203
|
+
source: "<strong>Double click</strong> to close overlay",
|
|
2204
|
+
translation: "<strong>Doppelklicken</strong> um Dialog zu schliessen"
|
|
2205
|
+
};
|
|
2194
2206
|
const ownershipError$3 = {
|
|
2195
2207
|
source: "Error in assigning",
|
|
2196
2208
|
translation: "Fehler beim Zuweisen"
|
|
@@ -2551,10 +2563,6 @@ const selectedIsNew$3 = {
|
|
|
2551
2563
|
source: "New",
|
|
2552
2564
|
translation: "Neu"
|
|
2553
2565
|
};
|
|
2554
|
-
const selectionActionGroupTitle$3 = {
|
|
2555
|
-
source: "Selection",
|
|
2556
|
-
translation: "Auswahl"
|
|
2557
|
-
};
|
|
2558
2566
|
const settingsAdvanced$3 = {
|
|
2559
2567
|
source: "Advanced",
|
|
2560
2568
|
translation: "Erweitert"
|
|
@@ -2680,16 +2688,12 @@ const tourStartButton$3 = {
|
|
|
2680
2688
|
translation: "Tour starten"
|
|
2681
2689
|
};
|
|
2682
2690
|
const transformDialogButtonApply$3 = {
|
|
2683
|
-
source: "Apply",
|
|
2684
|
-
translation: "
|
|
2691
|
+
source: "Apply changes",
|
|
2692
|
+
translation: "Änderungen annehmen"
|
|
2685
2693
|
};
|
|
2686
2694
|
const transformDialogButtonPreview$3 = {
|
|
2687
|
-
source: "
|
|
2688
|
-
translation: "
|
|
2689
|
-
};
|
|
2690
|
-
const transformTo$3 = {
|
|
2691
|
-
source: "Actions",
|
|
2692
|
-
translation: "Weitere Aktionen"
|
|
2695
|
+
source: "New suggestion",
|
|
2696
|
+
translation: "Neuer Vorschlag"
|
|
2693
2697
|
};
|
|
2694
2698
|
const translationsBannerButton$3 = {
|
|
2695
2699
|
source: "Edit source language instead",
|
|
@@ -2773,7 +2777,6 @@ const de = {
|
|
|
2773
2777
|
addButtonInsideField: addButtonInsideField$3,
|
|
2774
2778
|
addCommentHeader: addCommentHeader$3,
|
|
2775
2779
|
addCommentToItem: addCommentToItem$3,
|
|
2776
|
-
addListInputPlaceholder: addListInputPlaceholder$3,
|
|
2777
2780
|
addListItemFavoriteAdd: addListItemFavoriteAdd$3,
|
|
2778
2781
|
addListItemFavoriteRemove: addListItemFavoriteRemove$3,
|
|
2779
2782
|
addListSidebarTitle: addListSidebarTitle$3,
|
|
@@ -2850,6 +2853,8 @@ const de = {
|
|
|
2850
2853
|
clipboardPasteError: clipboardPasteError$3,
|
|
2851
2854
|
clipboardPasteErrorAllowedBundlesMultiple: clipboardPasteErrorAllowedBundlesMultiple$3,
|
|
2852
2855
|
clipboardPasteErrorAllowedBundlesSingle: clipboardPasteErrorAllowedBundlesSingle$3,
|
|
2856
|
+
clipboardPasteErrorAllowedFragmentsMultiple: clipboardPasteErrorAllowedFragmentsMultiple$3,
|
|
2857
|
+
clipboardPasteErrorAllowedFragmentsSingle: clipboardPasteErrorAllowedFragmentsSingle$3,
|
|
2853
2858
|
clipboardPasteErrorCardinality: clipboardPasteErrorCardinality$3,
|
|
2854
2859
|
clipboardPasteErrorOneField: clipboardPasteErrorOneField$3,
|
|
2855
2860
|
clipboardPastePlaceholder: clipboardPastePlaceholder$3,
|
|
@@ -2889,7 +2894,6 @@ const de = {
|
|
|
2889
2894
|
commentsMarkAsResolved: commentsMarkAsResolved$3,
|
|
2890
2895
|
commentsTourText: commentsTourText$3,
|
|
2891
2896
|
conversionsConvertTo: conversionsConvertTo$3,
|
|
2892
|
-
convertTo: convertTo$3,
|
|
2893
2897
|
copiedToClipboardMessage: copiedToClipboardMessage$3,
|
|
2894
2898
|
copy: copy$3,
|
|
2895
2899
|
deleteButton: deleteButton$3,
|
|
@@ -2906,7 +2910,7 @@ const de = {
|
|
|
2906
2910
|
diffStatusDeleted: diffStatusDeleted$3,
|
|
2907
2911
|
diffStatusEdited: diffStatusEdited$3,
|
|
2908
2912
|
diffStatusUnchanged: diffStatusUnchanged$3,
|
|
2909
|
-
|
|
2913
|
+
downloadLogsButton: downloadLogsButton$3,
|
|
2910
2914
|
duplicate: duplicate$3,
|
|
2911
2915
|
duplicateError: duplicateError$3,
|
|
2912
2916
|
edit: edit$3,
|
|
@@ -2922,6 +2926,8 @@ const de = {
|
|
|
2922
2926
|
editableFieldDiscard: editableFieldDiscard$3,
|
|
2923
2927
|
entityTitleTourText: entityTitleTourText$3,
|
|
2924
2928
|
entityTitleTourTitle: entityTitleTourTitle$3,
|
|
2929
|
+
errorCapturedMessage: errorCapturedMessage$3,
|
|
2930
|
+
errorCapturedMessageDisabled: errorCapturedMessageDisabled$3,
|
|
2925
2931
|
exitDescription: exitDescription$3,
|
|
2926
2932
|
exitTitle: exitTitle$3,
|
|
2927
2933
|
failedToConvert: failedToConvert$3,
|
|
@@ -2939,21 +2945,13 @@ const de = {
|
|
|
2939
2945
|
source: "Add List",
|
|
2940
2946
|
translation: "Hinzufügen-Liste"
|
|
2941
2947
|
},
|
|
2942
|
-
"feature_add-
|
|
2943
|
-
source: "Add List",
|
|
2944
|
-
translation: "
|
|
2945
|
-
},
|
|
2946
|
-
"feature_add-list_setting_orientation_option_horizontal": {
|
|
2947
|
-
source: "Horizontal",
|
|
2948
|
-
translation: "Horizontal"
|
|
2949
|
-
},
|
|
2950
|
-
"feature_add-list_setting_orientation_option_sidebar": {
|
|
2951
|
-
source: "Sidebar",
|
|
2952
|
-
translation: "Sidebar"
|
|
2948
|
+
"feature_add-list_setting_hideDisabledBlocks_description": {
|
|
2949
|
+
source: "Hides blocks from the \"Add List\" if they can't be added to anywhere.",
|
|
2950
|
+
translation: ""
|
|
2953
2951
|
},
|
|
2954
|
-
"feature_add-
|
|
2955
|
-
source: "
|
|
2956
|
-
translation: "
|
|
2952
|
+
"feature_add-list_setting_hideDisabledBlocks_label": {
|
|
2953
|
+
source: "Hide blocks that can't be added",
|
|
2954
|
+
translation: ""
|
|
2957
2955
|
},
|
|
2958
2956
|
feature_analyze_description: feature_analyze_description$3,
|
|
2959
2957
|
feature_analyze_label: feature_analyze_label$3,
|
|
@@ -2968,22 +2966,6 @@ const de = {
|
|
|
2968
2966
|
feature_artboard_setting_scrollSpeed_label: feature_artboard_setting_scrollSpeed_label$3,
|
|
2969
2967
|
feature_assistant_description: feature_assistant_description$3,
|
|
2970
2968
|
feature_assistant_label: feature_assistant_label$3,
|
|
2971
|
-
"feature_block-add-list_description": {
|
|
2972
|
-
source: "Renders a list of block bundles that can be added to the current page.",
|
|
2973
|
-
translation: "Zeigt eine Liste von Block-Typen an, die zur aktuellen Seite hinzugefügt werden können."
|
|
2974
|
-
},
|
|
2975
|
-
"feature_block-add-list_label": {
|
|
2976
|
-
source: "Block Add List",
|
|
2977
|
-
translation: "Block-Hinzufügen-Liste"
|
|
2978
|
-
},
|
|
2979
|
-
"feature_block-add-list_setting_hideDisabledBlocks_description": {
|
|
2980
|
-
source: "Hides blocks from the \"Add List\" if they can't be added to anywhere.",
|
|
2981
|
-
translation: "Versteckt Blöcke aus der «Hinzufügen-Liste» die nicht hinzugefügt werden können."
|
|
2982
|
-
},
|
|
2983
|
-
"feature_block-add-list_setting_hideDisabledBlocks_label": {
|
|
2984
|
-
source: "Hide blocks that can't be added",
|
|
2985
|
-
translation: "Blöcke ausblenden, die nicht hinzugefügt werden können"
|
|
2986
|
-
},
|
|
2987
2969
|
"feature_block-scheduler_description": {
|
|
2988
2970
|
source: "Adds support for scheduling blocks.",
|
|
2989
2971
|
translation: ""
|
|
@@ -3245,6 +3227,7 @@ const de = {
|
|
|
3245
3227
|
source: "Unselect \"@value\" in \"@option\"",
|
|
3246
3228
|
translation: "«@value» in «@option» abwählen"
|
|
3247
3229
|
},
|
|
3230
|
+
overlayDoubleClickInfo: overlayDoubleClickInfo$3,
|
|
3248
3231
|
ownershipError: ownershipError$3,
|
|
3249
3232
|
ownershipNote: ownershipNote$3,
|
|
3250
3233
|
ownershipSuccess: ownershipSuccess$3,
|
|
@@ -3335,7 +3318,6 @@ const de = {
|
|
|
3335
3318
|
selectAllBlocks: selectAllBlocks$3,
|
|
3336
3319
|
selectAllOfBundle: selectAllOfBundle$3,
|
|
3337
3320
|
selectedIsNew: selectedIsNew$3,
|
|
3338
|
-
selectionActionGroupTitle: selectionActionGroupTitle$3,
|
|
3339
3321
|
settingsAdvanced: settingsAdvanced$3,
|
|
3340
3322
|
settingsAppearance: settingsAppearance$3,
|
|
3341
3323
|
settingsArtboard: settingsArtboard$3,
|
|
@@ -3377,7 +3359,6 @@ const de = {
|
|
|
3377
3359
|
tourStartButton: tourStartButton$3,
|
|
3378
3360
|
transformDialogButtonApply: transformDialogButtonApply$3,
|
|
3379
3361
|
transformDialogButtonPreview: transformDialogButtonPreview$3,
|
|
3380
|
-
transformTo: transformTo$3,
|
|
3381
3362
|
translationsBannerButton: translationsBannerButton$3,
|
|
3382
3363
|
translationsBannerText: translationsBannerText$3,
|
|
3383
3364
|
translationsBatchTranslateMenuDescription: translationsBatchTranslateMenuDescription$3,
|
|
@@ -3431,10 +3412,6 @@ const addCommentToItem$2 = {
|
|
|
3431
3412
|
source: "Add Comment...",
|
|
3432
3413
|
translation: "Commenter"
|
|
3433
3414
|
};
|
|
3434
|
-
const addListInputPlaceholder$2 = {
|
|
3435
|
-
source: "Search available blocks",
|
|
3436
|
-
translation: "Rechercher des blocs"
|
|
3437
|
-
};
|
|
3438
3415
|
const addListItemFavoriteAdd$2 = {
|
|
3439
3416
|
source: "Add to favorites",
|
|
3440
3417
|
translation: "Ajouter aux favoris"
|
|
@@ -3739,6 +3716,14 @@ const clipboardPasteErrorAllowedBundlesSingle$2 = {
|
|
|
3739
3716
|
source: "Block type \"@types\" is not allowed here.",
|
|
3740
3717
|
translation: ""
|
|
3741
3718
|
};
|
|
3719
|
+
const clipboardPasteErrorAllowedFragmentsMultiple$2 = {
|
|
3720
|
+
source: "Fragments (@types) are not allowed here.",
|
|
3721
|
+
translation: ""
|
|
3722
|
+
};
|
|
3723
|
+
const clipboardPasteErrorAllowedFragmentsSingle$2 = {
|
|
3724
|
+
source: "Fragment \"@types\" is not allowed here.",
|
|
3725
|
+
translation: ""
|
|
3726
|
+
};
|
|
3742
3727
|
const clipboardPasteErrorCardinality$2 = {
|
|
3743
3728
|
source: "This field only allows up to @count blocks.",
|
|
3744
3729
|
translation: ""
|
|
@@ -3799,10 +3784,6 @@ const conversionsConvertTo$2 = {
|
|
|
3799
3784
|
source: "Convert to: @bundle",
|
|
3800
3785
|
translation: ""
|
|
3801
3786
|
};
|
|
3802
|
-
const convertTo$2 = {
|
|
3803
|
-
source: "Convert to...",
|
|
3804
|
-
translation: "Convertir en..."
|
|
3805
|
-
};
|
|
3806
3787
|
const copiedToClipboardMessage$2 = {
|
|
3807
3788
|
source: "\"@text\" has been copied to your clipboard",
|
|
3808
3789
|
translation: ""
|
|
@@ -3867,8 +3848,8 @@ const diffStatusUnchanged$2 = {
|
|
|
3867
3848
|
source: "Unchanged",
|
|
3868
3849
|
translation: ""
|
|
3869
3850
|
};
|
|
3870
|
-
const
|
|
3871
|
-
source: "
|
|
3851
|
+
const downloadLogsButton$2 = {
|
|
3852
|
+
source: "Download Logs",
|
|
3872
3853
|
translation: ""
|
|
3873
3854
|
};
|
|
3874
3855
|
const duplicate$2 = {
|
|
@@ -3931,6 +3912,14 @@ const entityTitleTourTitle$2 = {
|
|
|
3931
3912
|
source: "Page",
|
|
3932
3913
|
translation: ""
|
|
3933
3914
|
};
|
|
3915
|
+
const errorCapturedMessage$2 = {
|
|
3916
|
+
source: "Error in \"@label\": @errorMessage",
|
|
3917
|
+
translation: ""
|
|
3918
|
+
};
|
|
3919
|
+
const errorCapturedMessageDisabled$2 = {
|
|
3920
|
+
source: "\"@label\" has errored more than 3 times. The feature will be disabled.",
|
|
3921
|
+
translation: ""
|
|
3922
|
+
};
|
|
3934
3923
|
const exitDescription$2 = {
|
|
3935
3924
|
source: "Close editor without publishing",
|
|
3936
3925
|
translation: "Fermer l’éditeur sans publier"
|
|
@@ -4567,6 +4556,10 @@ const optionBkVisibleLanguagesAll$2 = {
|
|
|
4567
4556
|
source: "All languages",
|
|
4568
4557
|
translation: ""
|
|
4569
4558
|
};
|
|
4559
|
+
const overlayDoubleClickInfo$2 = {
|
|
4560
|
+
source: "<strong>Double click</strong> to close overlay",
|
|
4561
|
+
translation: ""
|
|
4562
|
+
};
|
|
4570
4563
|
const ownershipError$2 = {
|
|
4571
4564
|
source: "Error in assigning",
|
|
4572
4565
|
translation: "Erreur lors de l’attribution"
|
|
@@ -4927,10 +4920,6 @@ const selectedIsNew$2 = {
|
|
|
4927
4920
|
source: "New",
|
|
4928
4921
|
translation: ""
|
|
4929
4922
|
};
|
|
4930
|
-
const selectionActionGroupTitle$2 = {
|
|
4931
|
-
source: "Selection",
|
|
4932
|
-
translation: ""
|
|
4933
|
-
};
|
|
4934
4923
|
const settingsAdvanced$2 = {
|
|
4935
4924
|
source: "Advanced",
|
|
4936
4925
|
translation: ""
|
|
@@ -5056,17 +5045,13 @@ const tourStartButton$2 = {
|
|
|
5056
5045
|
translation: ""
|
|
5057
5046
|
};
|
|
5058
5047
|
const transformDialogButtonApply$2 = {
|
|
5059
|
-
source: "Apply",
|
|
5048
|
+
source: "Apply changes",
|
|
5060
5049
|
translation: ""
|
|
5061
5050
|
};
|
|
5062
5051
|
const transformDialogButtonPreview$2 = {
|
|
5063
|
-
source: "
|
|
5052
|
+
source: "New suggestion",
|
|
5064
5053
|
translation: ""
|
|
5065
5054
|
};
|
|
5066
|
-
const transformTo$2 = {
|
|
5067
|
-
source: "Actions",
|
|
5068
|
-
translation: "Other actions"
|
|
5069
|
-
};
|
|
5070
5055
|
const translationsBannerButton$2 = {
|
|
5071
5056
|
source: "Edit source language instead",
|
|
5072
5057
|
translation: ""
|
|
@@ -5149,7 +5134,6 @@ const fr = {
|
|
|
5149
5134
|
addButtonInsideField: addButtonInsideField$2,
|
|
5150
5135
|
addCommentHeader: addCommentHeader$2,
|
|
5151
5136
|
addCommentToItem: addCommentToItem$2,
|
|
5152
|
-
addListInputPlaceholder: addListInputPlaceholder$2,
|
|
5153
5137
|
addListItemFavoriteAdd: addListItemFavoriteAdd$2,
|
|
5154
5138
|
addListItemFavoriteRemove: addListItemFavoriteRemove$2,
|
|
5155
5139
|
addListSidebarTitle: addListSidebarTitle$2,
|
|
@@ -5226,6 +5210,8 @@ const fr = {
|
|
|
5226
5210
|
clipboardPasteError: clipboardPasteError$2,
|
|
5227
5211
|
clipboardPasteErrorAllowedBundlesMultiple: clipboardPasteErrorAllowedBundlesMultiple$2,
|
|
5228
5212
|
clipboardPasteErrorAllowedBundlesSingle: clipboardPasteErrorAllowedBundlesSingle$2,
|
|
5213
|
+
clipboardPasteErrorAllowedFragmentsMultiple: clipboardPasteErrorAllowedFragmentsMultiple$2,
|
|
5214
|
+
clipboardPasteErrorAllowedFragmentsSingle: clipboardPasteErrorAllowedFragmentsSingle$2,
|
|
5229
5215
|
clipboardPasteErrorCardinality: clipboardPasteErrorCardinality$2,
|
|
5230
5216
|
clipboardPasteErrorOneField: clipboardPasteErrorOneField$2,
|
|
5231
5217
|
clipboardPastePlaceholder: clipboardPastePlaceholder$2,
|
|
@@ -5265,7 +5251,6 @@ const fr = {
|
|
|
5265
5251
|
commentsMarkAsResolved: commentsMarkAsResolved$2,
|
|
5266
5252
|
commentsTourText: commentsTourText$2,
|
|
5267
5253
|
conversionsConvertTo: conversionsConvertTo$2,
|
|
5268
|
-
convertTo: convertTo$2,
|
|
5269
5254
|
copiedToClipboardMessage: copiedToClipboardMessage$2,
|
|
5270
5255
|
copy: copy$2,
|
|
5271
5256
|
deleteButton: deleteButton$2,
|
|
@@ -5282,7 +5267,7 @@ const fr = {
|
|
|
5282
5267
|
diffStatusDeleted: diffStatusDeleted$2,
|
|
5283
5268
|
diffStatusEdited: diffStatusEdited$2,
|
|
5284
5269
|
diffStatusUnchanged: diffStatusUnchanged$2,
|
|
5285
|
-
|
|
5270
|
+
downloadLogsButton: downloadLogsButton$2,
|
|
5286
5271
|
duplicate: duplicate$2,
|
|
5287
5272
|
duplicateError: duplicateError$2,
|
|
5288
5273
|
edit: edit$2,
|
|
@@ -5298,6 +5283,8 @@ const fr = {
|
|
|
5298
5283
|
editableFieldDiscard: editableFieldDiscard$2,
|
|
5299
5284
|
entityTitleTourText: entityTitleTourText$2,
|
|
5300
5285
|
entityTitleTourTitle: entityTitleTourTitle$2,
|
|
5286
|
+
errorCapturedMessage: errorCapturedMessage$2,
|
|
5287
|
+
errorCapturedMessageDisabled: errorCapturedMessageDisabled$2,
|
|
5301
5288
|
exitDescription: exitDescription$2,
|
|
5302
5289
|
exitTitle: exitTitle$2,
|
|
5303
5290
|
failedToConvert: failedToConvert$2,
|
|
@@ -5315,21 +5302,13 @@ const fr = {
|
|
|
5315
5302
|
source: "Add List",
|
|
5316
5303
|
translation: "Liste d'ajout"
|
|
5317
5304
|
},
|
|
5318
|
-
"feature_add-
|
|
5319
|
-
source: "Add List",
|
|
5320
|
-
translation: "
|
|
5321
|
-
},
|
|
5322
|
-
"feature_add-list_setting_orientation_option_horizontal": {
|
|
5323
|
-
source: "Horizontal",
|
|
5324
|
-
translation: "Horizontal"
|
|
5325
|
-
},
|
|
5326
|
-
"feature_add-list_setting_orientation_option_sidebar": {
|
|
5327
|
-
source: "Sidebar",
|
|
5328
|
-
translation: "Encadré"
|
|
5305
|
+
"feature_add-list_setting_hideDisabledBlocks_description": {
|
|
5306
|
+
source: "Hides blocks from the \"Add List\" if they can't be added to anywhere.",
|
|
5307
|
+
translation: ""
|
|
5329
5308
|
},
|
|
5330
|
-
"feature_add-
|
|
5331
|
-
source: "
|
|
5332
|
-
translation: "
|
|
5309
|
+
"feature_add-list_setting_hideDisabledBlocks_label": {
|
|
5310
|
+
source: "Hide blocks that can't be added",
|
|
5311
|
+
translation: ""
|
|
5333
5312
|
},
|
|
5334
5313
|
feature_analyze_description: feature_analyze_description$2,
|
|
5335
5314
|
feature_analyze_label: feature_analyze_label$2,
|
|
@@ -5344,22 +5323,6 @@ const fr = {
|
|
|
5344
5323
|
feature_artboard_setting_scrollSpeed_label: feature_artboard_setting_scrollSpeed_label$2,
|
|
5345
5324
|
feature_assistant_description: feature_assistant_description$2,
|
|
5346
5325
|
feature_assistant_label: feature_assistant_label$2,
|
|
5347
|
-
"feature_block-add-list_description": {
|
|
5348
|
-
source: "Renders a list of block bundles that can be added to the current page.",
|
|
5349
|
-
translation: "Affiche une liste de types de blocs qui peuvent être ajoutés à la page actuelle."
|
|
5350
|
-
},
|
|
5351
|
-
"feature_block-add-list_label": {
|
|
5352
|
-
source: "Block Add List",
|
|
5353
|
-
translation: "Liste d'ajout de blocs"
|
|
5354
|
-
},
|
|
5355
|
-
"feature_block-add-list_setting_hideDisabledBlocks_description": {
|
|
5356
|
-
source: "Hides blocks from the \"Add List\" if they can't be added to anywhere.",
|
|
5357
|
-
translation: "Masque les blocs de la «Liste d'ajout» s'ils ne peuvent être ajoutés nulle part."
|
|
5358
|
-
},
|
|
5359
|
-
"feature_block-add-list_setting_hideDisabledBlocks_label": {
|
|
5360
|
-
source: "Hide blocks that can't be added",
|
|
5361
|
-
translation: "Masquer les blocs qui ne peuvent pas être ajoutés"
|
|
5362
|
-
},
|
|
5363
5326
|
"feature_block-scheduler_description": {
|
|
5364
5327
|
source: "Adds support for scheduling blocks.",
|
|
5365
5328
|
translation: ""
|
|
@@ -5621,6 +5584,7 @@ const fr = {
|
|
|
5621
5584
|
source: "Unselect \"@value\" in \"@option\"",
|
|
5622
5585
|
translation: ""
|
|
5623
5586
|
},
|
|
5587
|
+
overlayDoubleClickInfo: overlayDoubleClickInfo$2,
|
|
5624
5588
|
ownershipError: ownershipError$2,
|
|
5625
5589
|
ownershipNote: ownershipNote$2,
|
|
5626
5590
|
ownershipSuccess: ownershipSuccess$2,
|
|
@@ -5711,7 +5675,6 @@ const fr = {
|
|
|
5711
5675
|
selectAllBlocks: selectAllBlocks$2,
|
|
5712
5676
|
selectAllOfBundle: selectAllOfBundle$2,
|
|
5713
5677
|
selectedIsNew: selectedIsNew$2,
|
|
5714
|
-
selectionActionGroupTitle: selectionActionGroupTitle$2,
|
|
5715
5678
|
settingsAdvanced: settingsAdvanced$2,
|
|
5716
5679
|
settingsAppearance: settingsAppearance$2,
|
|
5717
5680
|
settingsArtboard: settingsArtboard$2,
|
|
@@ -5753,7 +5716,6 @@ const fr = {
|
|
|
5753
5716
|
tourStartButton: tourStartButton$2,
|
|
5754
5717
|
transformDialogButtonApply: transformDialogButtonApply$2,
|
|
5755
5718
|
transformDialogButtonPreview: transformDialogButtonPreview$2,
|
|
5756
|
-
transformTo: transformTo$2,
|
|
5757
5719
|
translationsBannerButton: translationsBannerButton$2,
|
|
5758
5720
|
translationsBannerText: translationsBannerText$2,
|
|
5759
5721
|
translationsBatchTranslateMenuDescription: translationsBatchTranslateMenuDescription$2,
|
|
@@ -5807,10 +5769,6 @@ const addCommentToItem$1 = {
|
|
|
5807
5769
|
source: "Add Comment...",
|
|
5808
5770
|
translation: "Commenta"
|
|
5809
5771
|
};
|
|
5810
|
-
const addListInputPlaceholder$1 = {
|
|
5811
|
-
source: "Search available blocks",
|
|
5812
|
-
translation: "Cerca blocchi"
|
|
5813
|
-
};
|
|
5814
5772
|
const addListItemFavoriteAdd$1 = {
|
|
5815
5773
|
source: "Add to favorites",
|
|
5816
5774
|
translation: "Aggiungi ai preferiti"
|
|
@@ -6115,6 +6073,14 @@ const clipboardPasteErrorAllowedBundlesSingle$1 = {
|
|
|
6115
6073
|
source: "Block type \"@types\" is not allowed here.",
|
|
6116
6074
|
translation: ""
|
|
6117
6075
|
};
|
|
6076
|
+
const clipboardPasteErrorAllowedFragmentsMultiple$1 = {
|
|
6077
|
+
source: "Fragments (@types) are not allowed here.",
|
|
6078
|
+
translation: ""
|
|
6079
|
+
};
|
|
6080
|
+
const clipboardPasteErrorAllowedFragmentsSingle$1 = {
|
|
6081
|
+
source: "Fragment \"@types\" is not allowed here.",
|
|
6082
|
+
translation: ""
|
|
6083
|
+
};
|
|
6118
6084
|
const clipboardPasteErrorCardinality$1 = {
|
|
6119
6085
|
source: "This field only allows up to @count blocks.",
|
|
6120
6086
|
translation: ""
|
|
@@ -6175,10 +6141,6 @@ const conversionsConvertTo$1 = {
|
|
|
6175
6141
|
source: "Convert to: @bundle",
|
|
6176
6142
|
translation: ""
|
|
6177
6143
|
};
|
|
6178
|
-
const convertTo$1 = {
|
|
6179
|
-
source: "Convert to...",
|
|
6180
|
-
translation: "Converti in..."
|
|
6181
|
-
};
|
|
6182
6144
|
const copiedToClipboardMessage$1 = {
|
|
6183
6145
|
source: "\"@text\" has been copied to your clipboard",
|
|
6184
6146
|
translation: ""
|
|
@@ -6243,8 +6205,8 @@ const diffStatusUnchanged$1 = {
|
|
|
6243
6205
|
source: "Unchanged",
|
|
6244
6206
|
translation: ""
|
|
6245
6207
|
};
|
|
6246
|
-
const
|
|
6247
|
-
source: "
|
|
6208
|
+
const downloadLogsButton$1 = {
|
|
6209
|
+
source: "Download Logs",
|
|
6248
6210
|
translation: ""
|
|
6249
6211
|
};
|
|
6250
6212
|
const duplicate$1 = {
|
|
@@ -6307,6 +6269,14 @@ const entityTitleTourTitle$1 = {
|
|
|
6307
6269
|
source: "Page",
|
|
6308
6270
|
translation: ""
|
|
6309
6271
|
};
|
|
6272
|
+
const errorCapturedMessage$1 = {
|
|
6273
|
+
source: "Error in \"@label\": @errorMessage",
|
|
6274
|
+
translation: ""
|
|
6275
|
+
};
|
|
6276
|
+
const errorCapturedMessageDisabled$1 = {
|
|
6277
|
+
source: "\"@label\" has errored more than 3 times. The feature will be disabled.",
|
|
6278
|
+
translation: ""
|
|
6279
|
+
};
|
|
6310
6280
|
const exitDescription$1 = {
|
|
6311
6281
|
source: "Close editor without publishing",
|
|
6312
6282
|
translation: "Chiudi l'editor senza pubblicare"
|
|
@@ -6943,6 +6913,10 @@ const optionBkVisibleLanguagesAll$1 = {
|
|
|
6943
6913
|
source: "All languages",
|
|
6944
6914
|
translation: ""
|
|
6945
6915
|
};
|
|
6916
|
+
const overlayDoubleClickInfo$1 = {
|
|
6917
|
+
source: "<strong>Double click</strong> to close overlay",
|
|
6918
|
+
translation: ""
|
|
6919
|
+
};
|
|
6946
6920
|
const ownershipError$1 = {
|
|
6947
6921
|
source: "Error in assigning",
|
|
6948
6922
|
translation: "Errore nell'assegnazione"
|
|
@@ -7303,10 +7277,6 @@ const selectedIsNew$1 = {
|
|
|
7303
7277
|
source: "New",
|
|
7304
7278
|
translation: ""
|
|
7305
7279
|
};
|
|
7306
|
-
const selectionActionGroupTitle$1 = {
|
|
7307
|
-
source: "Selection",
|
|
7308
|
-
translation: ""
|
|
7309
|
-
};
|
|
7310
7280
|
const settingsAdvanced$1 = {
|
|
7311
7281
|
source: "Advanced",
|
|
7312
7282
|
translation: ""
|
|
@@ -7432,17 +7402,13 @@ const tourStartButton$1 = {
|
|
|
7432
7402
|
translation: ""
|
|
7433
7403
|
};
|
|
7434
7404
|
const transformDialogButtonApply$1 = {
|
|
7435
|
-
source: "Apply",
|
|
7405
|
+
source: "Apply changes",
|
|
7436
7406
|
translation: ""
|
|
7437
7407
|
};
|
|
7438
7408
|
const transformDialogButtonPreview$1 = {
|
|
7439
|
-
source: "
|
|
7409
|
+
source: "New suggestion",
|
|
7440
7410
|
translation: ""
|
|
7441
7411
|
};
|
|
7442
|
-
const transformTo$1 = {
|
|
7443
|
-
source: "Actions",
|
|
7444
|
-
translation: "Other actions"
|
|
7445
|
-
};
|
|
7446
7412
|
const translationsBannerButton$1 = {
|
|
7447
7413
|
source: "Edit source language instead",
|
|
7448
7414
|
translation: ""
|
|
@@ -7525,7 +7491,6 @@ const it = {
|
|
|
7525
7491
|
addButtonInsideField: addButtonInsideField$1,
|
|
7526
7492
|
addCommentHeader: addCommentHeader$1,
|
|
7527
7493
|
addCommentToItem: addCommentToItem$1,
|
|
7528
|
-
addListInputPlaceholder: addListInputPlaceholder$1,
|
|
7529
7494
|
addListItemFavoriteAdd: addListItemFavoriteAdd$1,
|
|
7530
7495
|
addListItemFavoriteRemove: addListItemFavoriteRemove$1,
|
|
7531
7496
|
addListSidebarTitle: addListSidebarTitle$1,
|
|
@@ -7602,6 +7567,8 @@ const it = {
|
|
|
7602
7567
|
clipboardPasteError: clipboardPasteError$1,
|
|
7603
7568
|
clipboardPasteErrorAllowedBundlesMultiple: clipboardPasteErrorAllowedBundlesMultiple$1,
|
|
7604
7569
|
clipboardPasteErrorAllowedBundlesSingle: clipboardPasteErrorAllowedBundlesSingle$1,
|
|
7570
|
+
clipboardPasteErrorAllowedFragmentsMultiple: clipboardPasteErrorAllowedFragmentsMultiple$1,
|
|
7571
|
+
clipboardPasteErrorAllowedFragmentsSingle: clipboardPasteErrorAllowedFragmentsSingle$1,
|
|
7605
7572
|
clipboardPasteErrorCardinality: clipboardPasteErrorCardinality$1,
|
|
7606
7573
|
clipboardPasteErrorOneField: clipboardPasteErrorOneField$1,
|
|
7607
7574
|
clipboardPastePlaceholder: clipboardPastePlaceholder$1,
|
|
@@ -7641,7 +7608,6 @@ const it = {
|
|
|
7641
7608
|
commentsMarkAsResolved: commentsMarkAsResolved$1,
|
|
7642
7609
|
commentsTourText: commentsTourText$1,
|
|
7643
7610
|
conversionsConvertTo: conversionsConvertTo$1,
|
|
7644
|
-
convertTo: convertTo$1,
|
|
7645
7611
|
copiedToClipboardMessage: copiedToClipboardMessage$1,
|
|
7646
7612
|
copy: copy$1,
|
|
7647
7613
|
deleteButton: deleteButton$1,
|
|
@@ -7658,7 +7624,7 @@ const it = {
|
|
|
7658
7624
|
diffStatusDeleted: diffStatusDeleted$1,
|
|
7659
7625
|
diffStatusEdited: diffStatusEdited$1,
|
|
7660
7626
|
diffStatusUnchanged: diffStatusUnchanged$1,
|
|
7661
|
-
|
|
7627
|
+
downloadLogsButton: downloadLogsButton$1,
|
|
7662
7628
|
duplicate: duplicate$1,
|
|
7663
7629
|
duplicateError: duplicateError$1,
|
|
7664
7630
|
edit: edit$1,
|
|
@@ -7674,6 +7640,8 @@ const it = {
|
|
|
7674
7640
|
editableFieldDiscard: editableFieldDiscard$1,
|
|
7675
7641
|
entityTitleTourText: entityTitleTourText$1,
|
|
7676
7642
|
entityTitleTourTitle: entityTitleTourTitle$1,
|
|
7643
|
+
errorCapturedMessage: errorCapturedMessage$1,
|
|
7644
|
+
errorCapturedMessageDisabled: errorCapturedMessageDisabled$1,
|
|
7677
7645
|
exitDescription: exitDescription$1,
|
|
7678
7646
|
exitTitle: exitTitle$1,
|
|
7679
7647
|
failedToConvert: failedToConvert$1,
|
|
@@ -7691,21 +7659,13 @@ const it = {
|
|
|
7691
7659
|
source: "Add List",
|
|
7692
7660
|
translation: "Elenco di aggiunta"
|
|
7693
7661
|
},
|
|
7694
|
-
"feature_add-
|
|
7695
|
-
source: "Add List",
|
|
7696
|
-
translation: "
|
|
7697
|
-
},
|
|
7698
|
-
"feature_add-list_setting_orientation_option_horizontal": {
|
|
7699
|
-
source: "Horizontal",
|
|
7700
|
-
translation: "Orizzontale"
|
|
7701
|
-
},
|
|
7702
|
-
"feature_add-list_setting_orientation_option_sidebar": {
|
|
7703
|
-
source: "Sidebar",
|
|
7704
|
-
translation: "Barra laterale"
|
|
7662
|
+
"feature_add-list_setting_hideDisabledBlocks_description": {
|
|
7663
|
+
source: "Hides blocks from the \"Add List\" if they can't be added to anywhere.",
|
|
7664
|
+
translation: ""
|
|
7705
7665
|
},
|
|
7706
|
-
"feature_add-
|
|
7707
|
-
source: "
|
|
7708
|
-
translation: "
|
|
7666
|
+
"feature_add-list_setting_hideDisabledBlocks_label": {
|
|
7667
|
+
source: "Hide blocks that can't be added",
|
|
7668
|
+
translation: ""
|
|
7709
7669
|
},
|
|
7710
7670
|
feature_analyze_description: feature_analyze_description$1,
|
|
7711
7671
|
feature_analyze_label: feature_analyze_label$1,
|
|
@@ -7720,22 +7680,6 @@ const it = {
|
|
|
7720
7680
|
feature_artboard_setting_scrollSpeed_label: feature_artboard_setting_scrollSpeed_label$1,
|
|
7721
7681
|
feature_assistant_description: feature_assistant_description$1,
|
|
7722
7682
|
feature_assistant_label: feature_assistant_label$1,
|
|
7723
|
-
"feature_block-add-list_description": {
|
|
7724
|
-
source: "Renders a list of block bundles that can be added to the current page.",
|
|
7725
|
-
translation: "Visualizza un elenco di tipi di blocco che possono essere aggiunti alla pagina corrente."
|
|
7726
|
-
},
|
|
7727
|
-
"feature_block-add-list_label": {
|
|
7728
|
-
source: "Block Add List",
|
|
7729
|
-
translation: "Elenco di aggiunta blocchi"
|
|
7730
|
-
},
|
|
7731
|
-
"feature_block-add-list_setting_hideDisabledBlocks_description": {
|
|
7732
|
-
source: "Hides blocks from the \"Add List\" if they can't be added to anywhere.",
|
|
7733
|
-
translation: "Nasconde i blocchi dall'«Elenco di aggiunta» se non possono essere aggiunti da nessuna parte."
|
|
7734
|
-
},
|
|
7735
|
-
"feature_block-add-list_setting_hideDisabledBlocks_label": {
|
|
7736
|
-
source: "Hide blocks that can't be added",
|
|
7737
|
-
translation: "Nascondi blocchi che non possono essere aggiunti"
|
|
7738
|
-
},
|
|
7739
7683
|
"feature_block-scheduler_description": {
|
|
7740
7684
|
source: "Adds support for scheduling blocks.",
|
|
7741
7685
|
translation: ""
|
|
@@ -7997,6 +7941,7 @@ const it = {
|
|
|
7997
7941
|
source: "Unselect \"@value\" in \"@option\"",
|
|
7998
7942
|
translation: ""
|
|
7999
7943
|
},
|
|
7944
|
+
overlayDoubleClickInfo: overlayDoubleClickInfo$1,
|
|
8000
7945
|
ownershipError: ownershipError$1,
|
|
8001
7946
|
ownershipNote: ownershipNote$1,
|
|
8002
7947
|
ownershipSuccess: ownershipSuccess$1,
|
|
@@ -8087,7 +8032,6 @@ const it = {
|
|
|
8087
8032
|
selectAllBlocks: selectAllBlocks$1,
|
|
8088
8033
|
selectAllOfBundle: selectAllOfBundle$1,
|
|
8089
8034
|
selectedIsNew: selectedIsNew$1,
|
|
8090
|
-
selectionActionGroupTitle: selectionActionGroupTitle$1,
|
|
8091
8035
|
settingsAdvanced: settingsAdvanced$1,
|
|
8092
8036
|
settingsAppearance: settingsAppearance$1,
|
|
8093
8037
|
settingsArtboard: settingsArtboard$1,
|
|
@@ -8129,7 +8073,6 @@ const it = {
|
|
|
8129
8073
|
tourStartButton: tourStartButton$1,
|
|
8130
8074
|
transformDialogButtonApply: transformDialogButtonApply$1,
|
|
8131
8075
|
transformDialogButtonPreview: transformDialogButtonPreview$1,
|
|
8132
|
-
transformTo: transformTo$1,
|
|
8133
8076
|
translationsBannerButton: translationsBannerButton$1,
|
|
8134
8077
|
translationsBannerText: translationsBannerText$1,
|
|
8135
8078
|
translationsBatchTranslateMenuDescription: translationsBatchTranslateMenuDescription$1,
|
|
@@ -8183,10 +8126,6 @@ const addCommentToItem = {
|
|
|
8183
8126
|
source: "Add Comment...",
|
|
8184
8127
|
translation: "Kommentiere"
|
|
8185
8128
|
};
|
|
8186
|
-
const addListInputPlaceholder = {
|
|
8187
|
-
source: "Search available blocks",
|
|
8188
|
-
translation: "Blöck durchsueche"
|
|
8189
|
-
};
|
|
8190
8129
|
const addListItemFavoriteAdd = {
|
|
8191
8130
|
source: "Add to favorites",
|
|
8192
8131
|
translation: "Zu de Favorite drzuefüege"
|
|
@@ -8491,6 +8430,14 @@ const clipboardPasteErrorAllowedBundlesSingle = {
|
|
|
8491
8430
|
source: "Block type \"@types\" is not allowed here.",
|
|
8492
8431
|
translation: "Block-Typ «@types» isch do nid erlaubt."
|
|
8493
8432
|
};
|
|
8433
|
+
const clipboardPasteErrorAllowedFragmentsMultiple = {
|
|
8434
|
+
source: "Fragments (@types) are not allowed here.",
|
|
8435
|
+
translation: ""
|
|
8436
|
+
};
|
|
8437
|
+
const clipboardPasteErrorAllowedFragmentsSingle = {
|
|
8438
|
+
source: "Fragment \"@types\" is not allowed here.",
|
|
8439
|
+
translation: ""
|
|
8440
|
+
};
|
|
8494
8441
|
const clipboardPasteErrorCardinality = {
|
|
8495
8442
|
source: "This field only allows up to @count blocks.",
|
|
8496
8443
|
translation: "In däm Fäld sin maximal @count Blöck erlaubt."
|
|
@@ -8551,10 +8498,6 @@ const conversionsConvertTo = {
|
|
|
8551
8498
|
source: "Convert to: @bundle",
|
|
8552
8499
|
translation: "Konvertiere zu: @bundle"
|
|
8553
8500
|
};
|
|
8554
|
-
const convertTo = {
|
|
8555
|
-
source: "Convert to...",
|
|
8556
|
-
translation: "Konvertiere"
|
|
8557
|
-
};
|
|
8558
8501
|
const copiedToClipboardMessage = {
|
|
8559
8502
|
source: "\"@text\" has been copied to your clipboard",
|
|
8560
8503
|
translation: "«@text» isch in dini Zwüscheablag kopiert worde"
|
|
@@ -8619,9 +8562,9 @@ const diffStatusUnchanged = {
|
|
|
8619
8562
|
source: "Unchanged",
|
|
8620
8563
|
translation: "Unveränderet"
|
|
8621
8564
|
};
|
|
8622
|
-
const
|
|
8623
|
-
source: "
|
|
8624
|
-
translation: "
|
|
8565
|
+
const downloadLogsButton = {
|
|
8566
|
+
source: "Download Logs",
|
|
8567
|
+
translation: ""
|
|
8625
8568
|
};
|
|
8626
8569
|
const duplicate = {
|
|
8627
8570
|
source: "Duplicate",
|
|
@@ -8683,6 +8626,14 @@ const entityTitleTourTitle = {
|
|
|
8683
8626
|
source: "Page",
|
|
8684
8627
|
translation: "Sitte"
|
|
8685
8628
|
};
|
|
8629
|
+
const errorCapturedMessage = {
|
|
8630
|
+
source: "Error in \"@label\": @errorMessage",
|
|
8631
|
+
translation: ""
|
|
8632
|
+
};
|
|
8633
|
+
const errorCapturedMessageDisabled = {
|
|
8634
|
+
source: "\"@label\" has errored more than 3 times. The feature will be disabled.",
|
|
8635
|
+
translation: ""
|
|
8636
|
+
};
|
|
8686
8637
|
const exitDescription = {
|
|
8687
8638
|
source: "Close editor without publishing",
|
|
8688
8639
|
translation: "Dr Editor zuemache ohni z'veröffentliche"
|
|
@@ -9319,6 +9270,10 @@ const optionBkVisibleLanguagesAll = {
|
|
|
9319
9270
|
source: "All languages",
|
|
9320
9271
|
translation: "Alli Sproche"
|
|
9321
9272
|
};
|
|
9273
|
+
const overlayDoubleClickInfo = {
|
|
9274
|
+
source: "<strong>Double click</strong> to close overlay",
|
|
9275
|
+
translation: ""
|
|
9276
|
+
};
|
|
9322
9277
|
const ownershipError = {
|
|
9323
9278
|
source: "Error in assigning",
|
|
9324
9279
|
translation: "Fähler bim Zuewiise"
|
|
@@ -9679,10 +9634,6 @@ const selectedIsNew = {
|
|
|
9679
9634
|
source: "New",
|
|
9680
9635
|
translation: ""
|
|
9681
9636
|
};
|
|
9682
|
-
const selectionActionGroupTitle = {
|
|
9683
|
-
source: "Selection",
|
|
9684
|
-
translation: "Uswahl"
|
|
9685
|
-
};
|
|
9686
9637
|
const settingsAdvanced = {
|
|
9687
9638
|
source: "Advanced",
|
|
9688
9639
|
translation: "Erwitteret"
|
|
@@ -9808,17 +9759,13 @@ const tourStartButton = {
|
|
|
9808
9759
|
translation: "Tour starte"
|
|
9809
9760
|
};
|
|
9810
9761
|
const transformDialogButtonApply = {
|
|
9811
|
-
source: "Apply",
|
|
9762
|
+
source: "Apply changes",
|
|
9812
9763
|
translation: "Aawände"
|
|
9813
9764
|
};
|
|
9814
9765
|
const transformDialogButtonPreview = {
|
|
9815
|
-
source: "
|
|
9766
|
+
source: "New suggestion",
|
|
9816
9767
|
translation: "Vorschau"
|
|
9817
9768
|
};
|
|
9818
|
-
const transformTo = {
|
|
9819
|
-
source: "Actions",
|
|
9820
|
-
translation: "Anderi Aktione"
|
|
9821
|
-
};
|
|
9822
9769
|
const translationsBannerButton = {
|
|
9823
9770
|
source: "Edit source language instead",
|
|
9824
9771
|
translation: "Stattdässe Quellsproch bearbeite"
|
|
@@ -9901,7 +9848,6 @@ const gsw_CH = {
|
|
|
9901
9848
|
addButtonInsideField: addButtonInsideField,
|
|
9902
9849
|
addCommentHeader: addCommentHeader,
|
|
9903
9850
|
addCommentToItem: addCommentToItem,
|
|
9904
|
-
addListInputPlaceholder: addListInputPlaceholder,
|
|
9905
9851
|
addListItemFavoriteAdd: addListItemFavoriteAdd,
|
|
9906
9852
|
addListItemFavoriteRemove: addListItemFavoriteRemove,
|
|
9907
9853
|
addListSidebarTitle: addListSidebarTitle,
|
|
@@ -9978,6 +9924,8 @@ const gsw_CH = {
|
|
|
9978
9924
|
clipboardPasteError: clipboardPasteError,
|
|
9979
9925
|
clipboardPasteErrorAllowedBundlesMultiple: clipboardPasteErrorAllowedBundlesMultiple,
|
|
9980
9926
|
clipboardPasteErrorAllowedBundlesSingle: clipboardPasteErrorAllowedBundlesSingle,
|
|
9927
|
+
clipboardPasteErrorAllowedFragmentsMultiple: clipboardPasteErrorAllowedFragmentsMultiple,
|
|
9928
|
+
clipboardPasteErrorAllowedFragmentsSingle: clipboardPasteErrorAllowedFragmentsSingle,
|
|
9981
9929
|
clipboardPasteErrorCardinality: clipboardPasteErrorCardinality,
|
|
9982
9930
|
clipboardPasteErrorOneField: clipboardPasteErrorOneField,
|
|
9983
9931
|
clipboardPastePlaceholder: clipboardPastePlaceholder,
|
|
@@ -10017,7 +9965,6 @@ const gsw_CH = {
|
|
|
10017
9965
|
commentsMarkAsResolved: commentsMarkAsResolved,
|
|
10018
9966
|
commentsTourText: commentsTourText,
|
|
10019
9967
|
conversionsConvertTo: conversionsConvertTo,
|
|
10020
|
-
convertTo: convertTo,
|
|
10021
9968
|
copiedToClipboardMessage: copiedToClipboardMessage,
|
|
10022
9969
|
copy: copy,
|
|
10023
9970
|
deleteButton: deleteButton,
|
|
@@ -10034,7 +9981,7 @@ const gsw_CH = {
|
|
|
10034
9981
|
diffStatusDeleted: diffStatusDeleted,
|
|
10035
9982
|
diffStatusEdited: diffStatusEdited,
|
|
10036
9983
|
diffStatusUnchanged: diffStatusUnchanged,
|
|
10037
|
-
|
|
9984
|
+
downloadLogsButton: downloadLogsButton,
|
|
10038
9985
|
duplicate: duplicate,
|
|
10039
9986
|
duplicateError: duplicateError,
|
|
10040
9987
|
edit: edit,
|
|
@@ -10050,6 +9997,8 @@ const gsw_CH = {
|
|
|
10050
9997
|
editableFieldDiscard: editableFieldDiscard,
|
|
10051
9998
|
entityTitleTourText: entityTitleTourText,
|
|
10052
9999
|
entityTitleTourTitle: entityTitleTourTitle,
|
|
10000
|
+
errorCapturedMessage: errorCapturedMessage,
|
|
10001
|
+
errorCapturedMessageDisabled: errorCapturedMessageDisabled,
|
|
10053
10002
|
exitDescription: exitDescription,
|
|
10054
10003
|
exitTitle: exitTitle,
|
|
10055
10004
|
failedToConvert: failedToConvert,
|
|
@@ -10067,21 +10016,13 @@ const gsw_CH = {
|
|
|
10067
10016
|
source: "Add List",
|
|
10068
10017
|
translation: "Drzuefüeg-Lischt"
|
|
10069
10018
|
},
|
|
10070
|
-
"feature_add-
|
|
10071
|
-
source: "Add List",
|
|
10072
|
-
translation: "
|
|
10073
|
-
},
|
|
10074
|
-
"feature_add-list_setting_orientation_option_horizontal": {
|
|
10075
|
-
source: "Horizontal",
|
|
10076
|
-
translation: "Horizontal"
|
|
10077
|
-
},
|
|
10078
|
-
"feature_add-list_setting_orientation_option_sidebar": {
|
|
10079
|
-
source: "Sidebar",
|
|
10080
|
-
translation: "Sitteleischte"
|
|
10019
|
+
"feature_add-list_setting_hideDisabledBlocks_description": {
|
|
10020
|
+
source: "Hides blocks from the \"Add List\" if they can't be added to anywhere.",
|
|
10021
|
+
translation: ""
|
|
10081
10022
|
},
|
|
10082
|
-
"feature_add-
|
|
10083
|
-
source: "
|
|
10084
|
-
translation: "
|
|
10023
|
+
"feature_add-list_setting_hideDisabledBlocks_label": {
|
|
10024
|
+
source: "Hide blocks that can't be added",
|
|
10025
|
+
translation: ""
|
|
10085
10026
|
},
|
|
10086
10027
|
feature_analyze_description: feature_analyze_description,
|
|
10087
10028
|
feature_analyze_label: feature_analyze_label,
|
|
@@ -10096,22 +10037,6 @@ const gsw_CH = {
|
|
|
10096
10037
|
feature_artboard_setting_scrollSpeed_label: feature_artboard_setting_scrollSpeed_label,
|
|
10097
10038
|
feature_assistant_description: feature_assistant_description,
|
|
10098
10039
|
feature_assistant_label: feature_assistant_label,
|
|
10099
|
-
"feature_block-add-list_description": {
|
|
10100
|
-
source: "Renders a list of block bundles that can be added to the current page.",
|
|
10101
|
-
translation: "Renderet e Lischt vo Block-Bundles wo zur aktuälle Sitte chönne drzuegfüegt wärde."
|
|
10102
|
-
},
|
|
10103
|
-
"feature_block-add-list_label": {
|
|
10104
|
-
source: "Block Add List",
|
|
10105
|
-
translation: "Block-Drzuefüeg-Lischt"
|
|
10106
|
-
},
|
|
10107
|
-
"feature_block-add-list_setting_hideDisabledBlocks_description": {
|
|
10108
|
-
source: "Hides blocks from the \"Add List\" if they can't be added to anywhere.",
|
|
10109
|
-
translation: "Versteckt Blöck us dr «Drzuefüeg-Lischt» wo nirgends chönne drzuegfüegt wärde."
|
|
10110
|
-
},
|
|
10111
|
-
"feature_block-add-list_setting_hideDisabledBlocks_label": {
|
|
10112
|
-
source: "Hide blocks that can't be added",
|
|
10113
|
-
translation: "Blöck wo nid chönne drzuegfüegt wärde verstecke"
|
|
10114
|
-
},
|
|
10115
10040
|
"feature_block-scheduler_description": {
|
|
10116
10041
|
source: "Adds support for scheduling blocks.",
|
|
10117
10042
|
translation: ""
|
|
@@ -10373,6 +10298,7 @@ const gsw_CH = {
|
|
|
10373
10298
|
source: "Unselect \"@value\" in \"@option\"",
|
|
10374
10299
|
translation: "«@value» in «@option» abwähle"
|
|
10375
10300
|
},
|
|
10301
|
+
overlayDoubleClickInfo: overlayDoubleClickInfo,
|
|
10376
10302
|
ownershipError: ownershipError,
|
|
10377
10303
|
ownershipNote: ownershipNote,
|
|
10378
10304
|
ownershipSuccess: ownershipSuccess,
|
|
@@ -10463,7 +10389,6 @@ const gsw_CH = {
|
|
|
10463
10389
|
selectAllBlocks: selectAllBlocks,
|
|
10464
10390
|
selectAllOfBundle: selectAllOfBundle,
|
|
10465
10391
|
selectedIsNew: selectedIsNew,
|
|
10466
|
-
selectionActionGroupTitle: selectionActionGroupTitle,
|
|
10467
10392
|
settingsAdvanced: settingsAdvanced,
|
|
10468
10393
|
settingsAppearance: settingsAppearance,
|
|
10469
10394
|
settingsArtboard: settingsArtboard,
|
|
@@ -10505,7 +10430,6 @@ const gsw_CH = {
|
|
|
10505
10430
|
tourStartButton: tourStartButton,
|
|
10506
10431
|
transformDialogButtonApply: transformDialogButtonApply,
|
|
10507
10432
|
transformDialogButtonPreview: transformDialogButtonPreview,
|
|
10508
|
-
transformTo: transformTo,
|
|
10509
10433
|
translationsBannerButton: translationsBannerButton,
|
|
10510
10434
|
translationsBannerText: translationsBannerText,
|
|
10511
10435
|
translationsBatchTranslateMenuDescription: translationsBatchTranslateMenuDescription,
|