@atlaskit/editor-core 182.1.2 → 182.2.0
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/CHANGELOG.md +17 -0
- package/dist/cjs/actions/index.js +90 -98
- package/dist/cjs/create-editor/ErrorBoundary.js +86 -93
- package/dist/cjs/create-editor/ReactEditorViewInternal.js +8 -6
- package/dist/cjs/editor-next/index.js +5 -6
- package/dist/cjs/editor-next/utils/sendDurationAnalytics.js +34 -37
- package/dist/cjs/editor-next/utils/trackEditorActions.js +48 -51
- package/dist/cjs/editor.js +29 -34
- package/dist/cjs/i18n/cs.js +34 -6
- package/dist/cjs/i18n/da.js +34 -6
- package/dist/cjs/i18n/de.js +34 -7
- package/dist/cjs/i18n/en.js +31 -4
- package/dist/cjs/i18n/en_GB.js +34 -7
- package/dist/cjs/i18n/en_ZZ.js +35 -8
- package/dist/cjs/i18n/es.js +33 -6
- package/dist/cjs/i18n/fi.js +33 -6
- package/dist/cjs/i18n/fr.js +34 -7
- package/dist/cjs/i18n/hu.js +33 -6
- package/dist/cjs/i18n/it.js +34 -7
- package/dist/cjs/i18n/ja.js +33 -6
- package/dist/cjs/i18n/ko.js +33 -6
- package/dist/cjs/i18n/nb.js +35 -8
- package/dist/cjs/i18n/nl.js +34 -7
- package/dist/cjs/i18n/pl.js +34 -7
- package/dist/cjs/i18n/pt_BR.js +34 -7
- package/dist/cjs/i18n/ru.js +34 -7
- package/dist/cjs/i18n/sv.js +33 -6
- package/dist/cjs/i18n/th.js +34 -7
- package/dist/cjs/i18n/tr.js +33 -6
- package/dist/cjs/i18n/uk.js +34 -7
- package/dist/cjs/i18n/vi.js +35 -8
- package/dist/cjs/i18n/zh.js +33 -4
- package/dist/cjs/i18n/zh_TW.js +33 -6
- package/dist/cjs/labs/CollapsedEditor/index.js +1 -1
- package/dist/cjs/plugins/analytics/plugin.js +1 -1
- package/dist/cjs/plugins/annotation/pm-plugins/inline-comment.js +39 -44
- package/dist/cjs/plugins/annotation/pm-plugins/types.js +4 -4
- package/dist/cjs/plugins/annotation/types.js +4 -4
- package/dist/cjs/plugins/base/pm-plugins/decoration.js +4 -4
- package/dist/cjs/plugins/block-type/commands/block-type.js +1 -1
- package/dist/cjs/plugins/card/nodeviews/embedCard.js +5 -6
- package/dist/cjs/plugins/card/ui/EditLinkToolbar.js +3 -4
- package/dist/cjs/plugins/card/ui/EditorSmartCardEventsNext.js +16 -1
- package/dist/cjs/plugins/collab-edit/index.js +29 -32
- package/dist/cjs/plugins/collab-edit/plugin-state.js +2 -4
- package/dist/cjs/plugins/custom-autoformat/doc.js +28 -31
- package/dist/cjs/plugins/custom-autoformat/index.js +20 -23
- package/dist/cjs/plugins/date/index.js +1 -1
- package/dist/cjs/plugins/date/ui/DatePicker/date-picker-input.js +7 -10
- package/dist/cjs/plugins/date/utils/internal.js +1 -1
- package/dist/cjs/plugins/emoji/pm-plugins/ascii-input-rules.js +27 -28
- package/dist/cjs/plugins/extension/actions.js +36 -39
- package/dist/cjs/plugins/extension/context-panel.js +123 -130
- package/dist/cjs/plugins/extension/pm-plugins/main.js +82 -89
- package/dist/cjs/plugins/extension/pm-plugins/utils.js +46 -51
- package/dist/cjs/plugins/extension/ui/Extension/ExtensionComponent.js +44 -48
- package/dist/cjs/plugins/feedback-dialog/index.js +52 -57
- package/dist/cjs/plugins/feedback-dialog/loadJiraCollectorDialogScript.js +44 -47
- package/dist/cjs/plugins/find-replace/actions.js +4 -4
- package/dist/cjs/plugins/find-replace/utils/batch-decorations.js +144 -153
- package/dist/cjs/plugins/find-replace/utils/index.js +2 -2
- package/dist/cjs/plugins/floating-toolbar/ui/ExtensionsPlaceholder.js +40 -46
- package/dist/cjs/plugins/floating-toolbar/ui/Toolbar.js +2 -1
- package/dist/cjs/plugins/floating-toolbar/ui/ToolbarLoader.js +2 -1
- package/dist/cjs/plugins/fragment/pm-plugins/fragment-consistency.js +86 -86
- package/dist/cjs/plugins/help-dialog/ui/HelpDialogLoader.js +2 -1
- package/dist/cjs/plugins/history/actions.js +4 -4
- package/dist/cjs/plugins/hyperlink/HyperlinkToolbarAppearance.js +76 -82
- package/dist/cjs/plugins/hyperlink/pm-plugins/input-rule.js +3 -0
- package/dist/cjs/plugins/hyperlink/pm-plugins/main.js +16 -16
- package/dist/cjs/plugins/hyperlink/ui/HyperlinkAddToolbar/HyperlinkAddToolbar.js +339 -352
- package/dist/cjs/plugins/hyperlink/utils.js +3 -0
- package/dist/cjs/plugins/image-upload/pm-plugins/main.js +24 -27
- package/dist/cjs/plugins/list/utils/node.js +4 -4
- package/dist/cjs/plugins/macro/actions.js +107 -112
- package/dist/cjs/plugins/media/nodeviews/mediaGroup.js +43 -46
- package/dist/cjs/plugins/media/nodeviews/mediaInline.js +62 -66
- package/dist/cjs/plugins/media/nodeviews/mediaNodeUpdater.js +544 -575
- package/dist/cjs/plugins/media/nodeviews/mediaNodeView/media.js +38 -42
- package/dist/cjs/plugins/media/nodeviews/mediaSingle.js +108 -113
- package/dist/cjs/plugins/media/picker-facade.js +22 -25
- package/dist/cjs/plugins/media/pm-plugins/linking/actions.js +4 -4
- package/dist/cjs/plugins/media/pm-plugins/main.js +159 -172
- package/dist/cjs/plugins/media/pm-plugins/mediaTaskManager.js +36 -39
- package/dist/cjs/plugins/media/toolbar/utils.js +30 -33
- package/dist/cjs/plugins/media/ui/MediaPicker/PickerFacadeProvider.js +71 -74
- package/dist/cjs/plugins/media/ui/ResizableMediaSingle/index.js +52 -57
- package/dist/cjs/plugins/media/utils/check-media-type.js +37 -40
- package/dist/cjs/plugins/mentions/nodeviews/mention.js +29 -31
- package/dist/cjs/plugins/mentions/type-ahead/index.js +1 -1
- package/dist/cjs/plugins/mobile-dimensions/actions.js +4 -4
- package/dist/cjs/plugins/paste/actions.js +4 -4
- package/dist/cjs/plugins/paste/handlers.js +23 -26
- package/dist/cjs/plugins/paste/linkify-md-plugin.js +3 -0
- package/dist/cjs/plugins/paste/md.js +3 -0
- package/dist/cjs/plugins/paste/newline-md-plugin.js +3 -0
- package/dist/cjs/plugins/paste/paragraph-md-plugin.js +3 -0
- package/dist/cjs/plugins/paste/pm-plugins/main.js +25 -27
- package/dist/cjs/plugins/quick-insert/assets/index.js +63 -39
- package/dist/cjs/plugins/quick-insert/index.js +30 -33
- package/dist/cjs/plugins/selection/actions.js +4 -4
- package/dist/cjs/plugins/selection/gap-cursor/direction.js +4 -4
- package/dist/cjs/plugins/selection/types.js +4 -4
- package/dist/cjs/plugins/status/ui/statusPicker.js +7 -8
- package/dist/cjs/plugins/tasks-and-decisions/nodeviews/taskItem.js +9 -10
- package/dist/cjs/plugins/tasks-and-decisions/pm-plugins/commands.js +16 -6
- package/dist/cjs/plugins/tasks-and-decisions/pm-plugins/keymaps.js +12 -20
- package/dist/cjs/plugins/tasks-and-decisions/pm-plugins/main.js +3 -3
- package/dist/cjs/plugins/tasks-and-decisions/ui/Task/task-item-with-providers.js +41 -42
- package/dist/cjs/plugins/tasks-and-decisions/utils.js +31 -2
- package/dist/cjs/plugins/text-color/pm-plugins/main.js +4 -4
- package/dist/cjs/plugins/text-formatting/pm-plugins/input-rule.js +3 -3
- package/dist/cjs/plugins/text-formatting/ui/Toolbar/types.js +4 -4
- package/dist/cjs/plugins/type-ahead/constants.js +4 -4
- package/dist/cjs/plugins/type-ahead/pm-plugins/actions.js +4 -4
- package/dist/cjs/plugins/undo-redo/enums.js +4 -4
- package/dist/cjs/ui/Appearance/Comment/Comment.js +3 -3
- package/dist/cjs/ui/Appearance/FullPage/FullPage.js +1 -2
- package/dist/cjs/ui/Appearance/FullPage/FullPageToolbar.js +2 -1
- package/dist/cjs/ui/ColorPickerButton/index.js +3 -2
- package/dist/cjs/ui/ConfigPanel/ConfigPanel.js +68 -73
- package/dist/cjs/ui/ConfigPanel/ConfigPanelLoader.js +2 -1
- package/dist/cjs/ui/ConfigPanel/Fields/CustomSelect.js +54 -56
- package/dist/cjs/ui/ConfigPanel/Fields/UserSelect.js +51 -55
- package/dist/cjs/ui/ConfigPanel/FormErrorBoundary.js +24 -27
- package/dist/cjs/ui/ConfigPanel/transformers.js +344 -363
- package/dist/cjs/ui/ConfigPanel/types.js +8 -8
- package/dist/cjs/ui/Dropdown/index.js +2 -1
- package/dist/cjs/ui/DropdownMenu/index.js +2 -1
- package/dist/cjs/ui/ElementBrowser/components/ElementBrowserLoader.js +1 -1
- package/dist/cjs/ui/ElementBrowser/hooks/use-select-and-focus-on-arrow-navigation.js +4 -4
- package/dist/cjs/ui/ElementBrowser/types.js +4 -4
- package/dist/cjs/ui/LinkSearch/index.js +94 -101
- package/dist/cjs/ui/ToolbarArrowKeyNavigationProvider/index.js +19 -2
- package/dist/cjs/ui/ToolbarFeedback/index.js +27 -31
- package/dist/cjs/utils/action.js +31 -36
- package/dist/cjs/utils/clipboard.js +82 -86
- package/dist/cjs/utils/deprecation-warnings.js +1 -1
- package/dist/cjs/utils/extensions.js +62 -67
- package/dist/cjs/utils/insert.js +4 -4
- package/dist/cjs/utils/mark.js +2 -2
- package/dist/cjs/utils/performance/simple-measure-to-entries.js +1 -2
- package/dist/cjs/utils/performance/track-transactions.js +3 -2
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/actions/index.js +8 -9
- package/dist/es2019/create-editor/ReactEditorViewInternal.js +5 -3
- package/dist/es2019/editor-next/index.js +5 -6
- package/dist/es2019/editor.js +29 -36
- package/dist/es2019/i18n/cs.js +34 -6
- package/dist/es2019/i18n/da.js +34 -6
- package/dist/es2019/i18n/de.js +34 -7
- package/dist/es2019/i18n/en.js +31 -4
- package/dist/es2019/i18n/en_GB.js +34 -7
- package/dist/es2019/i18n/en_ZZ.js +35 -8
- package/dist/es2019/i18n/es.js +33 -6
- package/dist/es2019/i18n/fi.js +33 -6
- package/dist/es2019/i18n/fr.js +34 -7
- package/dist/es2019/i18n/hu.js +33 -6
- package/dist/es2019/i18n/it.js +34 -7
- package/dist/es2019/i18n/ja.js +33 -6
- package/dist/es2019/i18n/ko.js +33 -6
- package/dist/es2019/i18n/nb.js +35 -8
- package/dist/es2019/i18n/nl.js +34 -7
- package/dist/es2019/i18n/pl.js +34 -7
- package/dist/es2019/i18n/pt_BR.js +34 -7
- package/dist/es2019/i18n/ru.js +34 -7
- package/dist/es2019/i18n/sv.js +33 -6
- package/dist/es2019/i18n/th.js +34 -7
- package/dist/es2019/i18n/tr.js +33 -6
- package/dist/es2019/i18n/uk.js +34 -7
- package/dist/es2019/i18n/vi.js +35 -8
- package/dist/es2019/i18n/zh.js +33 -4
- package/dist/es2019/i18n/zh_TW.js +33 -6
- package/dist/es2019/plugins/annotation/pm-plugins/types.js +3 -3
- package/dist/es2019/plugins/annotation/types.js +3 -3
- package/dist/es2019/plugins/base/pm-plugins/decoration.js +3 -3
- package/dist/es2019/plugins/card/nodeviews/embedCard.js +5 -7
- package/dist/es2019/plugins/card/ui/EditLinkToolbar.js +3 -5
- package/dist/es2019/plugins/card/ui/EditorSmartCardEventsNext.js +17 -2
- package/dist/es2019/plugins/collab-edit/plugin-state.js +1 -2
- package/dist/es2019/plugins/date/ui/DatePicker/date-picker-input.js +7 -11
- package/dist/es2019/plugins/emoji/pm-plugins/ascii-input-rules.js +27 -28
- package/dist/es2019/plugins/extension/ui/Extension/ExtensionComponent.js +8 -12
- package/dist/es2019/plugins/find-replace/actions.js +3 -3
- package/dist/es2019/plugins/floating-toolbar/ui/Toolbar.js +2 -1
- package/dist/es2019/plugins/fragment/pm-plugins/fragment-consistency.js +56 -71
- package/dist/es2019/plugins/history/actions.js +3 -3
- package/dist/es2019/plugins/hyperlink/pm-plugins/input-rule.js +3 -0
- package/dist/es2019/plugins/hyperlink/pm-plugins/main.js +6 -6
- package/dist/es2019/plugins/hyperlink/ui/HyperlinkAddToolbar/HyperlinkAddToolbar.js +1 -2
- package/dist/es2019/plugins/hyperlink/utils.js +3 -0
- package/dist/es2019/plugins/list/utils/node.js +3 -3
- package/dist/es2019/plugins/media/nodeviews/mediaNodeUpdater.js +4 -8
- package/dist/es2019/plugins/media/nodeviews/mediaSingle.js +2 -3
- package/dist/es2019/plugins/media/pm-plugins/linking/actions.js +3 -3
- package/dist/es2019/plugins/media/pm-plugins/main.js +22 -31
- package/dist/es2019/plugins/mobile-dimensions/actions.js +3 -3
- package/dist/es2019/plugins/paste/actions.js +3 -3
- package/dist/es2019/plugins/paste/linkify-md-plugin.js +3 -0
- package/dist/es2019/plugins/paste/md.js +3 -0
- package/dist/es2019/plugins/paste/newline-md-plugin.js +3 -0
- package/dist/es2019/plugins/paste/paragraph-md-plugin.js +3 -0
- package/dist/es2019/plugins/selection/actions.js +3 -3
- package/dist/es2019/plugins/selection/gap-cursor/direction.js +3 -3
- package/dist/es2019/plugins/selection/types.js +3 -3
- package/dist/es2019/plugins/status/ui/statusPicker.js +6 -7
- package/dist/es2019/plugins/tasks-and-decisions/nodeviews/taskItem.js +9 -11
- package/dist/es2019/plugins/tasks-and-decisions/pm-plugins/commands.js +15 -3
- package/dist/es2019/plugins/tasks-and-decisions/pm-plugins/keymaps.js +6 -16
- package/dist/es2019/plugins/tasks-and-decisions/pm-plugins/main.js +3 -3
- package/dist/es2019/plugins/tasks-and-decisions/ui/Task/task-item-with-providers.js +6 -5
- package/dist/es2019/plugins/tasks-and-decisions/utils.js +30 -0
- package/dist/es2019/plugins/text-color/pm-plugins/main.js +3 -3
- package/dist/es2019/plugins/text-formatting/pm-plugins/input-rule.js +3 -3
- package/dist/es2019/plugins/text-formatting/ui/Toolbar/types.js +3 -3
- package/dist/es2019/plugins/type-ahead/constants.js +3 -3
- package/dist/es2019/plugins/type-ahead/pm-plugins/actions.js +3 -3
- package/dist/es2019/plugins/undo-redo/enums.js +3 -3
- package/dist/es2019/ui/Appearance/Comment/Comment.js +3 -3
- package/dist/es2019/ui/Appearance/FullPage/FullPage.js +1 -2
- package/dist/es2019/ui/Appearance/FullPage/FullPageToolbar.js +2 -1
- package/dist/es2019/ui/ColorPickerButton/index.js +5 -3
- package/dist/es2019/ui/ConfigPanel/ConfigPanel.js +3 -4
- package/dist/es2019/ui/ConfigPanel/types.js +6 -6
- package/dist/es2019/ui/ElementBrowser/hooks/use-select-and-focus-on-arrow-navigation.js +3 -3
- package/dist/es2019/ui/ElementBrowser/types.js +3 -3
- package/dist/es2019/ui/ToolbarArrowKeyNavigationProvider/index.js +18 -2
- package/dist/es2019/ui/ToolbarFeedback/index.js +1 -3
- package/dist/es2019/utils/insert.js +3 -3
- package/dist/es2019/utils/performance/simple-measure-to-entries.js +1 -1
- package/dist/es2019/utils/performance/track-transactions.js +3 -2
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/actions/index.js +90 -98
- package/dist/esm/create-editor/ErrorBoundary.js +86 -93
- package/dist/esm/create-editor/ReactEditorViewInternal.js +6 -5
- package/dist/esm/editor-next/index.js +5 -6
- package/dist/esm/editor-next/utils/sendDurationAnalytics.js +34 -37
- package/dist/esm/editor-next/utils/trackEditorActions.js +48 -51
- package/dist/esm/editor.js +29 -34
- package/dist/esm/i18n/cs.js +34 -6
- package/dist/esm/i18n/da.js +34 -6
- package/dist/esm/i18n/de.js +34 -7
- package/dist/esm/i18n/en.js +31 -4
- package/dist/esm/i18n/en_GB.js +34 -7
- package/dist/esm/i18n/en_ZZ.js +35 -8
- package/dist/esm/i18n/es.js +33 -6
- package/dist/esm/i18n/fi.js +33 -6
- package/dist/esm/i18n/fr.js +34 -7
- package/dist/esm/i18n/hu.js +33 -6
- package/dist/esm/i18n/it.js +34 -7
- package/dist/esm/i18n/ja.js +33 -6
- package/dist/esm/i18n/ko.js +33 -6
- package/dist/esm/i18n/nb.js +35 -8
- package/dist/esm/i18n/nl.js +34 -7
- package/dist/esm/i18n/pl.js +34 -7
- package/dist/esm/i18n/pt_BR.js +34 -7
- package/dist/esm/i18n/ru.js +34 -7
- package/dist/esm/i18n/sv.js +33 -6
- package/dist/esm/i18n/th.js +34 -7
- package/dist/esm/i18n/tr.js +33 -6
- package/dist/esm/i18n/uk.js +34 -7
- package/dist/esm/i18n/vi.js +35 -8
- package/dist/esm/i18n/zh.js +33 -4
- package/dist/esm/i18n/zh_TW.js +33 -6
- package/dist/esm/plugins/analytics/plugin.js +1 -1
- package/dist/esm/plugins/annotation/pm-plugins/inline-comment.js +39 -44
- package/dist/esm/plugins/annotation/pm-plugins/types.js +3 -3
- package/dist/esm/plugins/annotation/types.js +3 -3
- package/dist/esm/plugins/base/pm-plugins/decoration.js +3 -3
- package/dist/esm/plugins/block-type/commands/block-type.js +1 -1
- package/dist/esm/plugins/card/nodeviews/embedCard.js +5 -6
- package/dist/esm/plugins/card/ui/EditLinkToolbar.js +3 -4
- package/dist/esm/plugins/card/ui/EditorSmartCardEventsNext.js +17 -2
- package/dist/esm/plugins/collab-edit/index.js +29 -32
- package/dist/esm/plugins/collab-edit/plugin-state.js +2 -4
- package/dist/esm/plugins/custom-autoformat/doc.js +28 -31
- package/dist/esm/plugins/custom-autoformat/index.js +20 -23
- package/dist/esm/plugins/date/ui/DatePicker/date-picker-input.js +7 -10
- package/dist/esm/plugins/date/utils/internal.js +1 -1
- package/dist/esm/plugins/emoji/pm-plugins/ascii-input-rules.js +27 -28
- package/dist/esm/plugins/extension/actions.js +36 -39
- package/dist/esm/plugins/extension/context-panel.js +123 -129
- package/dist/esm/plugins/extension/pm-plugins/main.js +82 -88
- package/dist/esm/plugins/extension/pm-plugins/utils.js +46 -51
- package/dist/esm/plugins/extension/ui/Extension/ExtensionComponent.js +44 -49
- package/dist/esm/plugins/feedback-dialog/index.js +52 -57
- package/dist/esm/plugins/feedback-dialog/loadJiraCollectorDialogScript.js +44 -47
- package/dist/esm/plugins/find-replace/actions.js +3 -3
- package/dist/esm/plugins/find-replace/utils/batch-decorations.js +144 -153
- package/dist/esm/plugins/find-replace/utils/index.js +2 -2
- package/dist/esm/plugins/floating-toolbar/ui/ExtensionsPlaceholder.js +40 -47
- package/dist/esm/plugins/floating-toolbar/ui/Toolbar.js +2 -1
- package/dist/esm/plugins/fragment/pm-plugins/fragment-consistency.js +78 -76
- package/dist/esm/plugins/history/actions.js +3 -3
- package/dist/esm/plugins/hyperlink/HyperlinkToolbarAppearance.js +76 -83
- package/dist/esm/plugins/hyperlink/pm-plugins/input-rule.js +3 -0
- package/dist/esm/plugins/hyperlink/pm-plugins/main.js +14 -14
- package/dist/esm/plugins/hyperlink/ui/HyperlinkAddToolbar/HyperlinkAddToolbar.js +339 -353
- package/dist/esm/plugins/hyperlink/utils.js +3 -0
- package/dist/esm/plugins/image-upload/pm-plugins/main.js +24 -27
- package/dist/esm/plugins/list/utils/node.js +3 -3
- package/dist/esm/plugins/macro/actions.js +107 -112
- package/dist/esm/plugins/media/nodeviews/mediaGroup.js +43 -46
- package/dist/esm/plugins/media/nodeviews/mediaInline.js +62 -67
- package/dist/esm/plugins/media/nodeviews/mediaNodeUpdater.js +544 -575
- package/dist/esm/plugins/media/nodeviews/mediaNodeView/media.js +38 -43
- package/dist/esm/plugins/media/nodeviews/mediaSingle.js +108 -114
- package/dist/esm/plugins/media/picker-facade.js +22 -25
- package/dist/esm/plugins/media/pm-plugins/linking/actions.js +3 -3
- package/dist/esm/plugins/media/pm-plugins/main.js +159 -173
- package/dist/esm/plugins/media/pm-plugins/mediaTaskManager.js +36 -39
- package/dist/esm/plugins/media/toolbar/utils.js +30 -33
- package/dist/esm/plugins/media/ui/MediaPicker/PickerFacadeProvider.js +71 -74
- package/dist/esm/plugins/media/ui/ResizableMediaSingle/index.js +52 -57
- package/dist/esm/plugins/media/utils/check-media-type.js +37 -40
- package/dist/esm/plugins/mentions/nodeviews/mention.js +29 -32
- package/dist/esm/plugins/mentions/type-ahead/index.js +1 -1
- package/dist/esm/plugins/mobile-dimensions/actions.js +3 -3
- package/dist/esm/plugins/paste/actions.js +3 -3
- package/dist/esm/plugins/paste/handlers.js +23 -26
- package/dist/esm/plugins/paste/linkify-md-plugin.js +3 -0
- package/dist/esm/plugins/paste/md.js +3 -0
- package/dist/esm/plugins/paste/newline-md-plugin.js +3 -0
- package/dist/esm/plugins/paste/paragraph-md-plugin.js +3 -0
- package/dist/esm/plugins/paste/pm-plugins/main.js +25 -28
- package/dist/esm/plugins/quick-insert/index.js +30 -33
- package/dist/esm/plugins/selection/actions.js +3 -3
- package/dist/esm/plugins/selection/gap-cursor/direction.js +3 -3
- package/dist/esm/plugins/selection/types.js +3 -3
- package/dist/esm/plugins/status/ui/statusPicker.js +6 -7
- package/dist/esm/plugins/tasks-and-decisions/nodeviews/taskItem.js +9 -10
- package/dist/esm/plugins/tasks-and-decisions/pm-plugins/commands.js +17 -7
- package/dist/esm/plugins/tasks-and-decisions/pm-plugins/keymaps.js +13 -21
- package/dist/esm/plugins/tasks-and-decisions/pm-plugins/main.js +3 -3
- package/dist/esm/plugins/tasks-and-decisions/ui/Task/task-item-with-providers.js +41 -43
- package/dist/esm/plugins/tasks-and-decisions/utils.js +28 -0
- package/dist/esm/plugins/text-color/pm-plugins/main.js +3 -3
- package/dist/esm/plugins/text-formatting/pm-plugins/input-rule.js +3 -3
- package/dist/esm/plugins/text-formatting/ui/Toolbar/types.js +3 -3
- package/dist/esm/plugins/type-ahead/constants.js +3 -3
- package/dist/esm/plugins/type-ahead/pm-plugins/actions.js +3 -3
- package/dist/esm/plugins/undo-redo/enums.js +3 -3
- package/dist/esm/ui/Appearance/Comment/Comment.js +3 -3
- package/dist/esm/ui/Appearance/FullPage/FullPage.js +1 -2
- package/dist/esm/ui/Appearance/FullPage/FullPageToolbar.js +2 -1
- package/dist/esm/ui/ColorPickerButton/index.js +3 -2
- package/dist/esm/ui/ConfigPanel/ConfigPanel.js +68 -74
- package/dist/esm/ui/ConfigPanel/Fields/CustomSelect.js +54 -57
- package/dist/esm/ui/ConfigPanel/Fields/UserSelect.js +51 -56
- package/dist/esm/ui/ConfigPanel/FormErrorBoundary.js +24 -27
- package/dist/esm/ui/ConfigPanel/transformers.js +344 -362
- package/dist/esm/ui/ConfigPanel/types.js +6 -6
- package/dist/esm/ui/Dropdown/index.js +2 -1
- package/dist/esm/ui/DropdownMenu/index.js +2 -1
- package/dist/esm/ui/ElementBrowser/hooks/use-select-and-focus-on-arrow-navigation.js +3 -3
- package/dist/esm/ui/ElementBrowser/types.js +3 -3
- package/dist/esm/ui/LinkSearch/index.js +94 -101
- package/dist/esm/ui/ToolbarArrowKeyNavigationProvider/index.js +18 -2
- package/dist/esm/ui/ToolbarFeedback/index.js +27 -31
- package/dist/esm/utils/action.js +31 -36
- package/dist/esm/utils/clipboard.js +82 -87
- package/dist/esm/utils/deprecation-warnings.js +1 -1
- package/dist/esm/utils/extensions.js +62 -67
- package/dist/esm/utils/insert.js +3 -3
- package/dist/esm/utils/mark.js +2 -2
- package/dist/esm/utils/performance/simple-measure-to-entries.js +1 -2
- package/dist/esm/utils/performance/track-transactions.js +3 -2
- package/dist/esm/version-wrapper.js +1 -1
- package/dist/esm/version.json +1 -1
- package/dist/types/create-editor/ReactEditorViewInternal.d.ts +1 -0
- package/dist/types/i18n/cs.d.ts +29 -2
- package/dist/types/i18n/da.d.ts +29 -2
- package/dist/types/i18n/de.d.ts +28 -2
- package/dist/types/i18n/en.d.ts +28 -2
- package/dist/types/i18n/en_GB.d.ts +31 -5
- package/dist/types/i18n/en_ZZ.d.ts +28 -2
- package/dist/types/i18n/es.d.ts +28 -2
- package/dist/types/i18n/fi.d.ts +28 -2
- package/dist/types/i18n/fr.d.ts +28 -2
- package/dist/types/i18n/hu.d.ts +28 -2
- package/dist/types/i18n/it.d.ts +28 -2
- package/dist/types/i18n/ja.d.ts +28 -2
- package/dist/types/i18n/ko.d.ts +28 -2
- package/dist/types/i18n/nb.d.ts +28 -2
- package/dist/types/i18n/nl.d.ts +28 -2
- package/dist/types/i18n/pl.d.ts +28 -2
- package/dist/types/i18n/pt_BR.d.ts +28 -2
- package/dist/types/i18n/ru.d.ts +28 -2
- package/dist/types/i18n/sv.d.ts +28 -2
- package/dist/types/i18n/th.d.ts +28 -2
- package/dist/types/i18n/tr.d.ts +28 -2
- package/dist/types/i18n/uk.d.ts +28 -2
- package/dist/types/i18n/vi.d.ts +28 -2
- package/dist/types/i18n/zh.d.ts +30 -2
- package/dist/types/i18n/zh_TW.d.ts +28 -2
- package/dist/types/plugins/tasks-and-decisions/utils.d.ts +2 -0
- package/dist/types/ui/ToolbarArrowKeyNavigationProvider/index.d.ts +3 -1
- package/dist/types/utils/document.d.ts +2 -2
- package/package.json +14 -14
- package/report.api.md +1 -1
package/dist/cjs/version.json
CHANGED
|
@@ -22,6 +22,14 @@ export default class EditorActions {
|
|
|
22
22
|
});
|
|
23
23
|
}
|
|
24
24
|
});
|
|
25
|
+
/**
|
|
26
|
+
* If editor is using new collab service,
|
|
27
|
+
* we want editor to call the collab provider to
|
|
28
|
+
* retrieve the final acknowledged state of the
|
|
29
|
+
* editor. The final acknowledged editor state
|
|
30
|
+
* refers to the latest state of editor with confirmed
|
|
31
|
+
* steps.
|
|
32
|
+
*/
|
|
25
33
|
_defineProperty(this, "getResolvedEditorState", async () => {
|
|
26
34
|
var _getCollabProvider;
|
|
27
35
|
const {
|
|
@@ -269,13 +277,4 @@ export default class EditorActions {
|
|
|
269
277
|
this.editorView.dispatch(tr);
|
|
270
278
|
return true;
|
|
271
279
|
}
|
|
272
|
-
|
|
273
|
-
/**
|
|
274
|
-
* If editor is using new collab service,
|
|
275
|
-
* we want editor to call the collab provider to
|
|
276
|
-
* retrieve the final acknowledged state of the
|
|
277
|
-
* editor. The final acknowledged editor state
|
|
278
|
-
* refers to the latest state of editor with confirmed
|
|
279
|
-
* steps.
|
|
280
|
-
*/
|
|
281
280
|
}
|
|
@@ -38,9 +38,8 @@ function handleEditorFocus(view) {
|
|
|
38
38
|
view.focus();
|
|
39
39
|
}, 0);
|
|
40
40
|
}
|
|
41
|
+
export const EDIT_AREA_ID = 'ak-editor-textarea';
|
|
41
42
|
export class ReactEditorView extends React.Component {
|
|
42
|
-
// ProseMirror is instantiated prior to the initial React render cycle,
|
|
43
|
-
// so we allow transactions by default, to avoid discarding the initial one.
|
|
44
43
|
get transactionTracking() {
|
|
45
44
|
var _this$props$editorPro, _this$props$editorPro2;
|
|
46
45
|
return (_this$props$editorPro = (_this$props$editorPro2 = this.props.editorProps.performanceTracking) === null || _this$props$editorPro2 === void 0 ? void 0 : _this$props$editorPro2.transactionTracking) !== null && _this$props$editorPro !== void 0 ? _this$props$editorPro : {
|
|
@@ -56,6 +55,8 @@ export class ReactEditorView extends React.Component {
|
|
|
56
55
|
constructor(props, context) {
|
|
57
56
|
super(props, context);
|
|
58
57
|
_defineProperty(this, "editorRef", /*#__PURE__*/React.createRef());
|
|
58
|
+
// ProseMirror is instantiated prior to the initial React render cycle,
|
|
59
|
+
// so we allow transactions by default, to avoid discarding the initial one.
|
|
59
60
|
_defineProperty(this, "canDispatchTransactions", true);
|
|
60
61
|
_defineProperty(this, "onPluginObservation", (report, editorState) => {
|
|
61
62
|
this.dispatchAnalyticsEvent({
|
|
@@ -480,7 +481,8 @@ export class ReactEditorView extends React.Component {
|
|
|
480
481
|
key: "ProseMirror",
|
|
481
482
|
ref: this.handleEditorViewRef,
|
|
482
483
|
"aria-label": this.props.editorProps.assistiveLabel ? this.props.editorProps.assistiveLabel : this.props.intl.formatMessage(editorMessages.editorAssistiveLabel),
|
|
483
|
-
role: "textbox"
|
|
484
|
+
role: "textbox",
|
|
485
|
+
id: EDIT_AREA_ID
|
|
484
486
|
}));
|
|
485
487
|
this.pluginInjectionAPI = new EditorPluginInjectionAPI({
|
|
486
488
|
getEditorState: this.getEditorState
|
|
@@ -19,12 +19,6 @@ import deprecationWarnings from './utils/deprecationWarnings';
|
|
|
19
19
|
import { createFeatureFlagsFromProps } from '../create-editor/feature-flags-from-props';
|
|
20
20
|
import { basePlugin } from '../plugins';
|
|
21
21
|
export default class EditorNext extends React.Component {
|
|
22
|
-
/**
|
|
23
|
-
* WARNING: Code should be shared between Editor + EditorNext
|
|
24
|
-
* If you are making changes that affect both, consider making them
|
|
25
|
-
* in editor-next/editor-internal.tsx or editor-next/editor-utils.ts
|
|
26
|
-
*/
|
|
27
|
-
|
|
28
22
|
constructor(props, context) {
|
|
29
23
|
super(props);
|
|
30
24
|
_defineProperty(this, "handleSave", view => {
|
|
@@ -83,6 +77,11 @@ export default class EditorNext extends React.Component {
|
|
|
83
77
|
}));
|
|
84
78
|
}
|
|
85
79
|
}
|
|
80
|
+
/**
|
|
81
|
+
* WARNING: Code should be shared between Editor + EditorNext
|
|
82
|
+
* If you are making changes that affect both, consider making them
|
|
83
|
+
* in editor-next/editor-internal.tsx or editor-next/editor-utils.ts
|
|
84
|
+
*/
|
|
86
85
|
_defineProperty(EditorNext, "defaultProps", defaultProps);
|
|
87
86
|
_defineProperty(EditorNext, "contextTypes", {
|
|
88
87
|
editorActions: PropTypes.object
|
package/dist/es2019/editor.js
CHANGED
|
@@ -29,23 +29,41 @@ import sendDurationAnalytics from './editor-next/utils/sendDurationAnalytics';
|
|
|
29
29
|
import { createPreset } from './create-editor/create-plugins-list';
|
|
30
30
|
import { shouldRecreatePreset } from './create-editor/preset-utils';
|
|
31
31
|
export default class Editor extends React.Component {
|
|
32
|
-
/**
|
|
33
|
-
* WARNING: Code should be shared between Editor + EditorNext
|
|
34
|
-
* If you are making changes that affect both, consider making them
|
|
35
|
-
* in editor-next/editor-internal.tsx or editor-next/editor-utils.ts
|
|
36
|
-
*/
|
|
37
|
-
|
|
38
32
|
constructor(props, context) {
|
|
39
33
|
var _props$performanceTra, _props$performanceTra2, _props$featureFlags;
|
|
40
34
|
super(props);
|
|
35
|
+
/**
|
|
36
|
+
* @private
|
|
37
|
+
* @deprecated - Do not override this at all, this is an antipattern.
|
|
38
|
+
* Please reach out to the Editor team if you were previously using this
|
|
39
|
+
* and need to find a workaround.
|
|
40
|
+
*/
|
|
41
41
|
_defineProperty(this, "prepareExtensionProvider", prepareExtensionProvider(() => this.editorActions));
|
|
42
|
+
/**
|
|
43
|
+
* @private
|
|
44
|
+
* @deprecated - Do not override this at all, this is an antipattern.
|
|
45
|
+
* Please reach out to the Editor team if you were previously using this
|
|
46
|
+
* and need to find a workaround.
|
|
47
|
+
*/
|
|
42
48
|
_defineProperty(this, "prepareQuickInsertProvider", (extensionProvider, quickInsert) => {
|
|
43
49
|
return prepareQuickInsertProvider(this.editorActions, extensionProvider, quickInsert, this.createAnalyticsEvent);
|
|
44
50
|
});
|
|
51
|
+
/**
|
|
52
|
+
* @private
|
|
53
|
+
* @deprecated - Do not override this at all, this is an antipattern.
|
|
54
|
+
* Please reach out to the Editor team if you were previously using this
|
|
55
|
+
* and need to find a workaround.
|
|
56
|
+
*/
|
|
45
57
|
_defineProperty(this, "handleSave", view => {
|
|
46
58
|
var _this$props$onSave, _this$props;
|
|
47
59
|
return (_this$props$onSave = (_this$props = this.props).onSave) === null || _this$props$onSave === void 0 ? void 0 : _this$props$onSave.call(_this$props, view);
|
|
48
60
|
});
|
|
61
|
+
/**
|
|
62
|
+
* @private
|
|
63
|
+
* @deprecated - Do not override this at all, this is an antipattern.
|
|
64
|
+
* Please reach out to the Editor team if you were previously using this
|
|
65
|
+
* and need to find a workaround.
|
|
66
|
+
*/
|
|
49
67
|
_defineProperty(this, "handleAnalyticsEvent", data => fireAnalyticsEvent(this.createAnalyticsEvent)(data));
|
|
50
68
|
_defineProperty(this, "getFeatureFlags", () => {
|
|
51
69
|
return createFeatureFlagsFromProps(this.props);
|
|
@@ -159,21 +177,6 @@ export default class Editor extends React.Component {
|
|
|
159
177
|
trackEditorActions(editorActions, props) {
|
|
160
178
|
return trackEditorActions(editorActions, props.performanceTracking, value => this.handleAnalyticsEvent(value));
|
|
161
179
|
}
|
|
162
|
-
|
|
163
|
-
/**
|
|
164
|
-
* @private
|
|
165
|
-
* @deprecated - Do not override this at all, this is an antipattern.
|
|
166
|
-
* Please reach out to the Editor team if you were previously using this
|
|
167
|
-
* and need to find a workaround.
|
|
168
|
-
*/
|
|
169
|
-
|
|
170
|
-
/**
|
|
171
|
-
* @private
|
|
172
|
-
* @deprecated - Do not override this at all, this is an antipattern.
|
|
173
|
-
* Please reach out to the Editor team if you were previously using this
|
|
174
|
-
* and need to find a workaround.
|
|
175
|
-
*/
|
|
176
|
-
|
|
177
180
|
/**
|
|
178
181
|
* @private
|
|
179
182
|
* @deprecated - Do not override this at all, this is an antipattern.
|
|
@@ -195,21 +198,6 @@ export default class Editor extends React.Component {
|
|
|
195
198
|
this.unregisterEditorFromActions();
|
|
196
199
|
(_this$props$onDestroy = (_this$props3 = this.props).onDestroy) === null || _this$props$onDestroy === void 0 ? void 0 : _this$props$onDestroy.call(_this$props3);
|
|
197
200
|
}
|
|
198
|
-
|
|
199
|
-
/**
|
|
200
|
-
* @private
|
|
201
|
-
* @deprecated - Do not override this at all, this is an antipattern.
|
|
202
|
-
* Please reach out to the Editor team if you were previously using this
|
|
203
|
-
* and need to find a workaround.
|
|
204
|
-
*/
|
|
205
|
-
|
|
206
|
-
/**
|
|
207
|
-
* @private
|
|
208
|
-
* @deprecated - Do not override this at all, this is an antipattern.
|
|
209
|
-
* Please reach out to the Editor team if you were previously using this
|
|
210
|
-
* and need to find a workaround.
|
|
211
|
-
*/
|
|
212
|
-
|
|
213
201
|
/**
|
|
214
202
|
* @private
|
|
215
203
|
* @deprecated - Do not override this at all, this is an antipattern.
|
|
@@ -252,6 +240,11 @@ export default class Editor extends React.Component {
|
|
|
252
240
|
}));
|
|
253
241
|
}
|
|
254
242
|
}
|
|
243
|
+
/**
|
|
244
|
+
* WARNING: Code should be shared between Editor + EditorNext
|
|
245
|
+
* If you are making changes that affect both, consider making them
|
|
246
|
+
* in editor-next/editor-internal.tsx or editor-next/editor-utils.ts
|
|
247
|
+
*/
|
|
255
248
|
_defineProperty(Editor, "defaultProps", defaultProps);
|
|
256
249
|
_defineProperty(Editor, "contextTypes", {
|
|
257
250
|
editorActions: PropTypes.object
|
package/dist/es2019/i18n/cs.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/* prettier-ignore */
|
|
1
2
|
/**
|
|
2
3
|
* NOTE:
|
|
3
4
|
*
|
|
@@ -7,13 +8,13 @@
|
|
|
7
8
|
//Czech
|
|
8
9
|
export default {
|
|
9
10
|
'fabric.editor.addAltText': 'Alternativní text',
|
|
11
|
+
'fabric.editor.addImageBorder': 'Přidat ohraničení',
|
|
10
12
|
'fabric.editor.alignCenter': 'Zarovnat na střed',
|
|
11
13
|
'fabric.editor.alignLeft': 'Zarovnat vlevo',
|
|
12
14
|
'fabric.editor.alignRight': 'Zarovnat vpravo',
|
|
13
15
|
'fabric.editor.alignment': 'Zarovnání textu',
|
|
14
16
|
'fabric.editor.altText': 'Alternativní text',
|
|
15
17
|
'fabric.editor.alttext.validation': 'Vymažte z alternativního textu všechny zvláštní znaky.',
|
|
16
|
-
'fabric.editor.annotate': 'Opatřit poznámkami',
|
|
17
18
|
'fabric.editor.annotationToolbar': 'Panel nástrojů poznámek',
|
|
18
19
|
'fabric.editor.backLink': 'Zpět',
|
|
19
20
|
'fabric.editor.blockCardUnavailable': 'Vložený odkaz je uvnitř uzlu {node} a jeho zobrazení nelze změnit',
|
|
@@ -60,6 +61,7 @@ export default {
|
|
|
60
61
|
'fabric.editor.customPanel.description': 'Přidejte poznámku se smajlíkem a barevným pozadím.',
|
|
61
62
|
'fabric.editor.decisionPlaceholder': 'Přidat rozhodnutí...',
|
|
62
63
|
'fabric.editor.defaultAltText': 'Položka seznamu',
|
|
64
|
+
'fabric.editor.description': 'Popis',
|
|
63
65
|
'fabric.editor.displayBlock': 'Zobrazit jako kartu',
|
|
64
66
|
'fabric.editor.displayEmbed': 'Zobrazit jako vložený objekt',
|
|
65
67
|
'fabric.editor.displayInline': 'Zobrazit v řádku',
|
|
@@ -75,6 +77,7 @@ export default {
|
|
|
75
77
|
'fabric.editor.editStatusColor': 'Upravit barvu stavu',
|
|
76
78
|
'fabric.editor.editStatusText': 'Upravit stav',
|
|
77
79
|
'fabric.editor.editableContentLabel': 'Upravitelný obsah',
|
|
80
|
+
'fabric.editor.editorAssistiveLabel': 'Hlavní oblast obsahu. Začněte psát, abyste zadali text.',
|
|
78
81
|
'fabric.editor.editorHelp': 'Nápověda editoru.',
|
|
79
82
|
'fabric.editor.editors': 'Editoři',
|
|
80
83
|
'fabric.editor.elementBrowser.help': 'Nápověda',
|
|
@@ -99,18 +102,23 @@ export default {
|
|
|
99
102
|
'fabric.editor.error': 'Chyba',
|
|
100
103
|
'fabric.editor.errorPanel': 'Panel chyb',
|
|
101
104
|
'fabric.editor.errorPanel.description': 'Chyby zobrazit v barevném panelu',
|
|
102
|
-
'fabric.editor.extension.confirmDeleteLinkedModalMessage': '
|
|
103
|
-
'fabric.editor.extension.confirmDeleteLinkedModalOKButton': '
|
|
105
|
+
'fabric.editor.extension.confirmDeleteLinkedModalMessage': 'Vymazání rozšíření {nodeName} způsobí, že všechny k němu připojené položky přestanou fungovat.',
|
|
106
|
+
'fabric.editor.extension.confirmDeleteLinkedModalOKButton': 'Vymazat',
|
|
107
|
+
'fabric.editor.extension.deleteElementTitle': 'Vymazat prvek',
|
|
108
|
+
'fabric.editor.extension.sourceNoTitledName': 'tento prvek',
|
|
104
109
|
'fabric.editor.extensions.config-panel.save-indicator': 'Všechny změny jsou vždy automaticky ukládány',
|
|
105
110
|
'fabric.editor.find': 'Najít',
|
|
106
111
|
'fabric.editor.findNext': 'Najít další',
|
|
107
112
|
'fabric.editor.findPrevious': 'Najít předchozí',
|
|
108
113
|
'fabric.editor.findReplaceToolbarButton': 'Najít a nahradit',
|
|
109
114
|
'fabric.editor.floatingToolbar.confirmModalCancel': 'Zrušit',
|
|
115
|
+
'fabric.editor.floatingToolbar.confirmModalCheckboxLabel': 'Vymazat také všechny připojené prvky',
|
|
110
116
|
'fabric.editor.floatingToolbar.confirmModalHeading': 'Jste si jistí?',
|
|
111
117
|
'fabric.editor.floatingToolbar.confirmModalOK': 'OK',
|
|
112
118
|
'fabric.editor.floatingToolbar.floatingToolbarAnnouncer': 'Ovládací prvky plovoucího panelu nástrojů byly otevřeny.',
|
|
113
119
|
'fabric.editor.floatingToolbar.floatingToolbarAriaLabel': 'Plovoucí panel nástrojů',
|
|
120
|
+
'fabric.editor.floatingToolbar.scrollLeft': 'Posunout doleva',
|
|
121
|
+
'fabric.editor.floatingToolbar.scrollRight': 'Posunout doprava',
|
|
114
122
|
'fabric.editor.heading1': 'Nadpis 1',
|
|
115
123
|
'fabric.editor.heading1Description': 'Použít pro nadpis nejvyšší úrovně',
|
|
116
124
|
'fabric.editor.heading2': 'Nadpis 2',
|
|
@@ -135,6 +143,12 @@ export default {
|
|
|
135
143
|
'fabric.editor.hyperlink.searchLinkAriaDescription': 'Níže se objeví návrhy na základě vámi napsaného textu v poli',
|
|
136
144
|
'fabric.editor.hyperlink.searchLinkResults': '{count, plural, =0 {nebyly nalezeny žádné výsledky} one {{count,number} nalezený výsledek} few {{count,number} nalezené výsledky} many {{count,number} nalezeného výsledku} other {{count,number} nalezených výsledků}}',
|
|
137
145
|
'fabric.editor.hyperlinkToolbarPlaceholder': 'Vložit nebo vyhledat odkaz',
|
|
146
|
+
'fabric.editor.imageBorderBold': 'Tučné',
|
|
147
|
+
'fabric.editor.imageBorderColor': 'Barva',
|
|
148
|
+
'fabric.editor.imageBorderMedium': 'Střední',
|
|
149
|
+
'fabric.editor.imageBorderOptions': 'Možnosti ohraničení',
|
|
150
|
+
'fabric.editor.imageBorderSize': 'Velikost',
|
|
151
|
+
'fabric.editor.imageBorderSubtle': 'Útlé',
|
|
138
152
|
'fabric.editor.improvement': 'Vylepšení',
|
|
139
153
|
'fabric.editor.indent': 'Zvětšit odsazení',
|
|
140
154
|
'fabric.editor.info': 'Informace',
|
|
@@ -156,9 +170,12 @@ export default {
|
|
|
156
170
|
'fabric.editor.matchCase': 'Rozlišovat malá a velká písmena',
|
|
157
171
|
'fabric.editor.mediaAddLink': 'Přidat odkaz',
|
|
158
172
|
'fabric.editor.mediaGroupDeleteLabel': 'Odstranit',
|
|
173
|
+
'fabric.editor.mentionNode.label': 'Označený uživatel',
|
|
159
174
|
'fabric.editor.mentionsAddLabel': 'přidat-ikonu',
|
|
160
175
|
'fabric.editor.mentionsIconLabel': 'Zmínka',
|
|
161
176
|
'fabric.editor.moreFormatting': 'Další formátování',
|
|
177
|
+
'fabric.editor.navigate.toolbar.editor': 'Přejít na panel nástrojů editoru',
|
|
178
|
+
'fabric.editor.navigate.toolbar.floating': 'Přejít na plovoucí panel nástrojů',
|
|
162
179
|
'fabric.editor.noResultsFound': 'Žádné výsledky',
|
|
163
180
|
'fabric.editor.noSearchResults': 'Žádné výsledky vyhledávání',
|
|
164
181
|
'fabric.editor.normal': 'Standardní text',
|
|
@@ -179,6 +196,7 @@ export default {
|
|
|
179
196
|
'fabric.editor.placeholderTextPlaceholder': 'Přidat text placeholderu.',
|
|
180
197
|
'fabric.editor.quickInsert': 'Rychlé vložení',
|
|
181
198
|
'fabric.editor.redo': 'Znovu',
|
|
199
|
+
'fabric.editor.removeImageBorder': 'Odebrat ohraničení',
|
|
182
200
|
'fabric.editor.replace': 'Nahradit',
|
|
183
201
|
'fabric.editor.replaceAll': 'Nahradit vše',
|
|
184
202
|
'fabric.editor.replaceWith': 'Nahradit textem',
|
|
@@ -187,6 +205,7 @@ export default {
|
|
|
187
205
|
'fabric.editor.searchResults': '{itemsLength, plural, one {{itemsLength,number} výsledek vyhledávání k dispozici} few {{itemsLength,number} výsledky vyhledávání k dispozici} many {{itemsLength,number} výsledku vyhledávání k dispozici} other {{itemsLength,number} výsledků vyhledávání k dispozici}}',
|
|
188
206
|
'fabric.editor.selectLanguage': 'Vyberte programovací jazyk',
|
|
189
207
|
'fabric.editor.settingsLinks': 'Přejít do předvoleb odkazů',
|
|
208
|
+
'fabric.editor.shortcut': 'Textový zástupce',
|
|
190
209
|
'fabric.editor.single': 'Jeden sloupec',
|
|
191
210
|
'fabric.editor.statusPlaceholder': 'Nastavit stav',
|
|
192
211
|
'fabric.editor.story': 'Story',
|
|
@@ -208,9 +227,17 @@ export default {
|
|
|
208
227
|
'fabric.editor.threeColumns': 'Tři sloupce',
|
|
209
228
|
'fabric.editor.threeColumnsWithSidebars': 'Tři sloupce s postranními panely',
|
|
210
229
|
'fabric.editor.toolbarLabel': 'Panel nástrojů editoru',
|
|
211
|
-
'fabric.editor.toolbarMediaTitle': '
|
|
230
|
+
'fabric.editor.toolbarMediaTitle': 'Přidat obrázek, video nebo soubor',
|
|
212
231
|
'fabric.editor.twoColumns': 'Dva sloupce',
|
|
213
|
-
'fabric.editor.
|
|
232
|
+
'fabric.editor.typeAhead.popupLabel': 'Výsledky našeptávače',
|
|
233
|
+
'fabric.editor.typeAhead.quickInsertInputLabel': 'Když začnete psát, budou se vyhledávat/filtrovat možnosti zkratek.',
|
|
234
|
+
'fabric.editor.typeAhead.quickInsertPopupLabel': 'Zkratky pro vkládání a formátování',
|
|
235
|
+
'fabric.editor.typeahead.emojiInputLabel': 'Když začnete psát, budou se vyhledávat/filtrovat možnosti smajlíků.',
|
|
236
|
+
'fabric.editor.typeahead.emojiListItemLabel': 'Smajlík {name} Textová zkratka {shortcut}',
|
|
237
|
+
'fabric.editor.typeahead.emojiPopupLabel': 'Zkratky pro smajlíky',
|
|
238
|
+
'fabric.editor.typeahead.mentionInputLabel': 'Když začnete psát, budou se vyhledávat uživatelé k označení.',
|
|
239
|
+
'fabric.editor.typeahead.mentionPopupLabel': 'Uživatelé, které můžete označit',
|
|
240
|
+
'fabric.editor.typeahead.metionListItemLabel': 'Uživatel {name} @{shortName}',
|
|
214
241
|
'fabric.editor.unableToOpenLink': 'Tento odkaz nelze otevřít',
|
|
215
242
|
'fabric.editor.underline': 'Podtržení',
|
|
216
243
|
'fabric.editor.undo': 'Vrátit',
|
|
@@ -224,5 +251,6 @@ export default {
|
|
|
224
251
|
'fabric.editor.warningPanel': 'Panel upozornění',
|
|
225
252
|
'fabric.editor.warningPanel.description': 'Přidat poznámku s varováním do barevného panelu',
|
|
226
253
|
'fabric.editor.wrapLeft': 'Sbalit vpravo',
|
|
227
|
-
'fabric.editor.wrapRight': 'Sbalit vlevo'
|
|
254
|
+
'fabric.editor.wrapRight': 'Sbalit vlevo',
|
|
255
|
+
'fabric.emoji.label': 'Smajlík'
|
|
228
256
|
};
|
package/dist/es2019/i18n/da.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/* prettier-ignore */
|
|
1
2
|
/**
|
|
2
3
|
* NOTE:
|
|
3
4
|
*
|
|
@@ -7,13 +8,13 @@
|
|
|
7
8
|
//Danish (Denmark)
|
|
8
9
|
export default {
|
|
9
10
|
'fabric.editor.addAltText': 'Alternativ tekst',
|
|
11
|
+
'fabric.editor.addImageBorder': 'Tilføj kant',
|
|
10
12
|
'fabric.editor.alignCenter': 'Centreret',
|
|
11
13
|
'fabric.editor.alignLeft': 'Venstrejustér',
|
|
12
14
|
'fabric.editor.alignRight': 'Højrejusteret',
|
|
13
15
|
'fabric.editor.alignment': 'Tekstjustering',
|
|
14
16
|
'fabric.editor.altText': 'Al tekst',
|
|
15
17
|
'fabric.editor.alttext.validation': 'Fjern alle specialtegn i ALT-tekst.',
|
|
16
|
-
'fabric.editor.annotate': 'Annotér',
|
|
17
18
|
'fabric.editor.annotationToolbar': 'Værktøjslinje til annotationer',
|
|
18
19
|
'fabric.editor.backLink': 'Gå tilbage',
|
|
19
20
|
'fabric.editor.blockCardUnavailable': 'Det indbyggede link er inden i {node}, og dets visning kan ikke ændres',
|
|
@@ -60,6 +61,7 @@ export default {
|
|
|
60
61
|
'fabric.editor.customPanel.description': 'Tilføj en note med en emoji og farvet baggrund',
|
|
61
62
|
'fabric.editor.decisionPlaceholder': 'Tilføj en beslutning ...',
|
|
62
63
|
'fabric.editor.defaultAltText': 'Listeelement',
|
|
64
|
+
'fabric.editor.description': 'Beskrivelse',
|
|
63
65
|
'fabric.editor.displayBlock': 'Vis som kort',
|
|
64
66
|
'fabric.editor.displayEmbed': 'Vis som indlejret',
|
|
65
67
|
'fabric.editor.displayInline': 'Vis indbygget',
|
|
@@ -75,6 +77,7 @@ export default {
|
|
|
75
77
|
'fabric.editor.editStatusColor': 'Rediger statusfarve',
|
|
76
78
|
'fabric.editor.editStatusText': 'Rediger status',
|
|
77
79
|
'fabric.editor.editableContentLabel': 'Redigerbart indhold',
|
|
80
|
+
'fabric.editor.editorAssistiveLabel': 'Område for hovedindhold. Begynd at taste for at skrive tekst.',
|
|
78
81
|
'fabric.editor.editorHelp': 'Hjælp til redigering',
|
|
79
82
|
'fabric.editor.editors': 'Redaktører',
|
|
80
83
|
'fabric.editor.elementBrowser.help': 'Hjælp',
|
|
@@ -99,17 +102,22 @@ export default {
|
|
|
99
102
|
'fabric.editor.error': 'Fejl',
|
|
100
103
|
'fabric.editor.errorPanel': 'Fejlpanel',
|
|
101
104
|
'fabric.editor.errorPanel.description': 'Vis fejl i et farvel panel',
|
|
102
|
-
'fabric.editor.extension.
|
|
105
|
+
'fabric.editor.extension.confirmDeleteLinkedModalMessage': 'Hvis du sletter {nodeName}, brydes forbindelsen til alt, der er forbundet til den.',
|
|
106
|
+
'fabric.editor.extension.confirmDeleteLinkedModalOKButton': 'Slet',
|
|
107
|
+
'fabric.editor.extension.deleteElementTitle': 'Slet element',
|
|
103
108
|
'fabric.editor.extensions.config-panel.save-indicator': 'Alle ændringer gemmes altid automatisk',
|
|
104
109
|
'fabric.editor.find': 'Find',
|
|
105
110
|
'fabric.editor.findNext': 'Find næste',
|
|
106
111
|
'fabric.editor.findPrevious': 'Find forrige',
|
|
107
112
|
'fabric.editor.findReplaceToolbarButton': 'Find og erstat',
|
|
108
113
|
'fabric.editor.floatingToolbar.confirmModalCancel': 'Annuller',
|
|
114
|
+
'fabric.editor.floatingToolbar.confirmModalCheckboxLabel': 'Slet også forbundne elementer',
|
|
109
115
|
'fabric.editor.floatingToolbar.confirmModalHeading': 'Er du sikker?',
|
|
110
116
|
'fabric.editor.floatingToolbar.confirmModalOK': 'OK',
|
|
111
117
|
'fabric.editor.floatingToolbar.floatingToolbarAnnouncer': 'Flydende værktøjslinje er blevet åbnet',
|
|
112
118
|
'fabric.editor.floatingToolbar.floatingToolbarAriaLabel': 'Flydende værktøjslinje',
|
|
119
|
+
'fabric.editor.floatingToolbar.scrollLeft': 'Rul til venstre',
|
|
120
|
+
'fabric.editor.floatingToolbar.scrollRight': 'Rul til højre',
|
|
113
121
|
'fabric.editor.heading1': 'Overskrift 1',
|
|
114
122
|
'fabric.editor.heading1Description': 'Brug denne til overskrift på øverste niveau',
|
|
115
123
|
'fabric.editor.heading2': 'Overskrift 2',
|
|
@@ -134,6 +142,12 @@ export default {
|
|
|
134
142
|
'fabric.editor.hyperlink.searchLinkAriaDescription': 'Der vises forslag nedenfor, når du skriver i feltet',
|
|
135
143
|
'fabric.editor.hyperlink.searchLinkResults': '{count, plural, =0 {ingen resultater fundet} one {Der blev fundet {count,number} resultat} other {Der blev fundet {count,number} resultater}}',
|
|
136
144
|
'fabric.editor.hyperlinkToolbarPlaceholder': 'Indsæt eller søg efter link',
|
|
145
|
+
'fabric.editor.imageBorderBold': 'Fed',
|
|
146
|
+
'fabric.editor.imageBorderColor': 'Farve',
|
|
147
|
+
'fabric.editor.imageBorderMedium': 'Medium',
|
|
148
|
+
'fabric.editor.imageBorderOptions': 'Kantmuligheder',
|
|
149
|
+
'fabric.editor.imageBorderSize': 'Størrelse',
|
|
150
|
+
'fabric.editor.imageBorderSubtle': 'Diskret',
|
|
137
151
|
'fabric.editor.improvement': 'Forbedring',
|
|
138
152
|
'fabric.editor.indent': 'Ryk ind',
|
|
139
153
|
'fabric.editor.info': 'Info',
|
|
@@ -144,7 +158,7 @@ export default {
|
|
|
144
158
|
'fabric.editor.inputQueryAssistiveTxt': 'Når resultater med automatisk udfyldning er tilgængelige, skal du bruge pil op og pil ned til at gennemse og Enter til at vælge. Brugere af touchenheder kan trykke eller stryge.',
|
|
145
159
|
'fabric.editor.invalidDateError': 'Indtast en gyldig dato',
|
|
146
160
|
'fabric.editor.invalidLink': 'Indtast et gyldigt link.',
|
|
147
|
-
'fabric.editor.inviteItem.title': '{userRole, select, admin {Inviter
|
|
161
|
+
'fabric.editor.inviteItem.title': '{userRole, select, admin {Inviter teammedlem til {productName}} trusted {Inviter teammedlem til {productName}} other {Tilføj teammedlem til {productName}}}',
|
|
148
162
|
'fabric.editor.italic': 'Kursiv',
|
|
149
163
|
'fabric.editor.keyboardShortcuts': 'Tastaturgenveje',
|
|
150
164
|
'fabric.editor.leftSidebar': 'Venstre sidebjælke',
|
|
@@ -155,9 +169,12 @@ export default {
|
|
|
155
169
|
'fabric.editor.matchCase': 'Match store/små bogstaver',
|
|
156
170
|
'fabric.editor.mediaAddLink': 'Tilføj link',
|
|
157
171
|
'fabric.editor.mediaGroupDeleteLabel': 'Slet',
|
|
172
|
+
'fabric.editor.mentionNode.label': 'Tagget bruger',
|
|
158
173
|
'fabric.editor.mentionsAddLabel': 'ikon for tilføj',
|
|
159
174
|
'fabric.editor.mentionsIconLabel': 'Benævnelse',
|
|
160
175
|
'fabric.editor.moreFormatting': 'Mere formatering',
|
|
176
|
+
'fabric.editor.navigate.toolbar.editor': 'Naviger til værktøjslinje til redigeringsprogram',
|
|
177
|
+
'fabric.editor.navigate.toolbar.floating': 'Naviger til flydende værktøjslinje',
|
|
161
178
|
'fabric.editor.noResultsFound': 'Ingen resultater',
|
|
162
179
|
'fabric.editor.noSearchResults': 'Ingen søgeresultater',
|
|
163
180
|
'fabric.editor.normal': 'Normal tekst',
|
|
@@ -178,6 +195,7 @@ export default {
|
|
|
178
195
|
'fabric.editor.placeholderTextPlaceholder': 'Tilføj midlertidig tekst',
|
|
179
196
|
'fabric.editor.quickInsert': 'Hurtig indsætning',
|
|
180
197
|
'fabric.editor.redo': 'Gentag',
|
|
198
|
+
'fabric.editor.removeImageBorder': 'Fjern kant',
|
|
181
199
|
'fabric.editor.replace': 'Erstat',
|
|
182
200
|
'fabric.editor.replaceAll': 'Erstat alle',
|
|
183
201
|
'fabric.editor.replaceWith': 'Erstat med',
|
|
@@ -186,6 +204,7 @@ export default {
|
|
|
186
204
|
'fabric.editor.searchResults': '{itemsLength, plural, one {{itemsLength,number} tilgængeligt søgeresultat} other {{itemsLength,number} tilgængelige søgeresultater}}',
|
|
187
205
|
'fabric.editor.selectLanguage': 'Vælg sprog',
|
|
188
206
|
'fabric.editor.settingsLinks': 'Gå til Indstillinger for links',
|
|
207
|
+
'fabric.editor.shortcut': 'Genvej til tekst',
|
|
189
208
|
'fabric.editor.single': 'Enkelt kolonne',
|
|
190
209
|
'fabric.editor.statusPlaceholder': 'Angiv en status',
|
|
191
210
|
'fabric.editor.story': 'Historie',
|
|
@@ -207,9 +226,17 @@ export default {
|
|
|
207
226
|
'fabric.editor.threeColumns': 'Tre kolonner',
|
|
208
227
|
'fabric.editor.threeColumnsWithSidebars': 'Tre kolonner med sidebjælker',
|
|
209
228
|
'fabric.editor.toolbarLabel': 'Værktøjslinje til redigeringsprogram',
|
|
210
|
-
'fabric.editor.toolbarMediaTitle': '
|
|
229
|
+
'fabric.editor.toolbarMediaTitle': 'Tilføj billede, video eller fil',
|
|
211
230
|
'fabric.editor.twoColumns': 'To kolonner',
|
|
212
|
-
'fabric.editor.
|
|
231
|
+
'fabric.editor.typeAhead.popupLabel': 'Resultater for automatisk fuldførelse',
|
|
232
|
+
'fabric.editor.typeAhead.quickInsertInputLabel': 'Begynd at skrive for at søge efter eller filtrere genvejsmuligheder',
|
|
233
|
+
'fabric.editor.typeAhead.quickInsertPopupLabel': 'Genveje til indsættelser og formatering',
|
|
234
|
+
'fabric.editor.typeahead.emojiInputLabel': 'Begynd at skrive for at søge efter eller filtrere emojimuligheder',
|
|
235
|
+
'fabric.editor.typeahead.emojiListItemLabel': 'Tekstgenvej {shortcut} til emojien {name}',
|
|
236
|
+
'fabric.editor.typeahead.emojiPopupLabel': 'Emojigenveje',
|
|
237
|
+
'fabric.editor.typeahead.mentionInputLabel': 'Begynd at indtaste for at søge efter brugere, du vil tagge',
|
|
238
|
+
'fabric.editor.typeahead.mentionPopupLabel': 'Brugere, du kan tagge',
|
|
239
|
+
'fabric.editor.typeahead.metionListItemLabel': 'Brugeren {name} @{shortName}',
|
|
213
240
|
'fabric.editor.unableToOpenLink': 'Kan ikke åbne dette link',
|
|
214
241
|
'fabric.editor.underline': 'Understreget',
|
|
215
242
|
'fabric.editor.undo': 'Fortryd',
|
|
@@ -223,5 +250,6 @@ export default {
|
|
|
223
250
|
'fabric.editor.warningPanel': 'Advarselspanel',
|
|
224
251
|
'fabric.editor.warningPanel.description': 'Tilføj en advarselsnote i et farvet panel',
|
|
225
252
|
'fabric.editor.wrapLeft': 'Skub til venstre',
|
|
226
|
-
'fabric.editor.wrapRight': 'Skub til højre'
|
|
253
|
+
'fabric.editor.wrapRight': 'Skub til højre',
|
|
254
|
+
'fabric.emoji.label': 'Emoji'
|
|
227
255
|
};
|
package/dist/es2019/i18n/de.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/* prettier-ignore */
|
|
1
2
|
/**
|
|
2
3
|
* NOTE:
|
|
3
4
|
*
|
|
@@ -7,13 +8,13 @@
|
|
|
7
8
|
//German (Germany)
|
|
8
9
|
export default {
|
|
9
10
|
'fabric.editor.addAltText': 'Alternativtext',
|
|
11
|
+
'fabric.editor.addImageBorder': 'Rahmen hinzufügen',
|
|
10
12
|
'fabric.editor.alignCenter': 'Mittig ausrichten',
|
|
11
13
|
'fabric.editor.alignLeft': 'Links ausrichten',
|
|
12
14
|
'fabric.editor.alignRight': 'Rechts ausrichten',
|
|
13
15
|
'fabric.editor.alignment': 'Textausrichtung',
|
|
14
16
|
'fabric.editor.altText': 'Alternativer Text',
|
|
15
17
|
'fabric.editor.alttext.validation': 'Bitte entfernen Sie jegliche Sonderzeichen in alternativem Text.',
|
|
16
|
-
'fabric.editor.annotate': 'Anmerkung hinzufügen',
|
|
17
18
|
'fabric.editor.annotationToolbar': 'Symbolleiste für Anmerkungen',
|
|
18
19
|
'fabric.editor.backLink': 'Zurück',
|
|
19
20
|
'fabric.editor.blockCardUnavailable': 'Die Ansicht des Inline-Links kann nicht geändert werden, da sich der Link innerhalb von {node} befindet.',
|
|
@@ -60,6 +61,7 @@ export default {
|
|
|
60
61
|
'fabric.editor.customPanel.description': 'Fügen Sie einen Hinweis mit Emoji und farbigem Hintergrund hinzu',
|
|
61
62
|
'fabric.editor.decisionPlaceholder': 'Entscheidung hinzufügen …',
|
|
62
63
|
'fabric.editor.defaultAltText': 'Listenelement',
|
|
64
|
+
'fabric.editor.description': 'Beschreibung',
|
|
63
65
|
'fabric.editor.displayBlock': 'Karte anzeigen',
|
|
64
66
|
'fabric.editor.displayEmbed': 'Einbettung anzeigen',
|
|
65
67
|
'fabric.editor.displayInline': 'Inline anzeigen',
|
|
@@ -75,6 +77,7 @@ export default {
|
|
|
75
77
|
'fabric.editor.editStatusColor': 'Statusfarbe bearbeiten',
|
|
76
78
|
'fabric.editor.editStatusText': 'Status bearbeiten',
|
|
77
79
|
'fabric.editor.editableContentLabel': 'Editierbarer Inhalt',
|
|
80
|
+
'fabric.editor.editorAssistiveLabel': 'Hauptinhaltsbereich – geben Sie hier Ihren Text ein.',
|
|
78
81
|
'fabric.editor.editorHelp': 'Editorhilfe',
|
|
79
82
|
'fabric.editor.editors': 'Editoren',
|
|
80
83
|
'fabric.editor.elementBrowser.help': 'Hilfe',
|
|
@@ -99,18 +102,22 @@ export default {
|
|
|
99
102
|
'fabric.editor.error': 'Fehler',
|
|
100
103
|
'fabric.editor.errorPanel': 'Fehler-Panel',
|
|
101
104
|
'fabric.editor.errorPanel.description': 'Fehler in einem farbigen Panel hervorheben',
|
|
102
|
-
'fabric.editor.extension.confirmDeleteLinkedModalMessage': 'Durch das
|
|
103
|
-
'fabric.editor.extension.confirmDeleteLinkedModalOKButton': '
|
|
105
|
+
'fabric.editor.extension.confirmDeleteLinkedModalMessage': 'Durch das Löschen von {nodeName} werden alle damit verbundenen Elemente unbrauchbar.',
|
|
106
|
+
'fabric.editor.extension.confirmDeleteLinkedModalOKButton': 'Löschen',
|
|
107
|
+
'fabric.editor.extension.deleteElementTitle': 'Element löschen',
|
|
104
108
|
'fabric.editor.extensions.config-panel.save-indicator': 'Alle Änderungen werden immer automatisch gespeichert.',
|
|
105
109
|
'fabric.editor.find': 'Suchen',
|
|
106
110
|
'fabric.editor.findNext': 'Nächstes suchen',
|
|
107
111
|
'fabric.editor.findPrevious': 'Vorheriges suchen',
|
|
108
112
|
'fabric.editor.findReplaceToolbarButton': 'Suchen und ersetzen',
|
|
109
113
|
'fabric.editor.floatingToolbar.confirmModalCancel': 'Abbrechen',
|
|
114
|
+
'fabric.editor.floatingToolbar.confirmModalCheckboxLabel': 'Verbundene Elemente ebenfalls löschen',
|
|
110
115
|
'fabric.editor.floatingToolbar.confirmModalHeading': 'Sind Sie sicher?',
|
|
111
116
|
'fabric.editor.floatingToolbar.confirmModalOK': 'OK',
|
|
112
117
|
'fabric.editor.floatingToolbar.floatingToolbarAnnouncer': 'Steuerelemente für nicht verankerte Symbolleiste wurden geöffnet',
|
|
113
118
|
'fabric.editor.floatingToolbar.floatingToolbarAriaLabel': 'Nicht verankerte Symbolleiste',
|
|
119
|
+
'fabric.editor.floatingToolbar.scrollLeft': 'Nach links scrollen',
|
|
120
|
+
'fabric.editor.floatingToolbar.scrollRight': 'Nach rechts scrollen',
|
|
114
121
|
'fabric.editor.heading1': 'Überschrift 1',
|
|
115
122
|
'fabric.editor.heading1Description': 'Verwenden Sie dies für Überschriften oberster Ebene.',
|
|
116
123
|
'fabric.editor.heading2': 'Überschrift 2',
|
|
@@ -135,6 +142,12 @@ export default {
|
|
|
135
142
|
'fabric.editor.hyperlink.searchLinkAriaDescription': 'Während Ihrer Eingabe in das Feld werden Vorschläge angezeigt',
|
|
136
143
|
'fabric.editor.hyperlink.searchLinkResults': '{count, plural, =0 {Keine Ergebnisse gefunden} one {{count,number} Ergebnis gefunden} other {{count,number} Ergebnisse gefunden}}',
|
|
137
144
|
'fabric.editor.hyperlinkToolbarPlaceholder': 'Link einfügen oder suchen',
|
|
145
|
+
'fabric.editor.imageBorderBold': 'Breit',
|
|
146
|
+
'fabric.editor.imageBorderColor': 'Farbe',
|
|
147
|
+
'fabric.editor.imageBorderMedium': 'Mittel',
|
|
148
|
+
'fabric.editor.imageBorderOptions': 'Rahmenoptionen',
|
|
149
|
+
'fabric.editor.imageBorderSize': 'Größe',
|
|
150
|
+
'fabric.editor.imageBorderSubtle': 'Schmal',
|
|
138
151
|
'fabric.editor.improvement': 'Verbesserung',
|
|
139
152
|
'fabric.editor.indent': 'Einzug vergrößern',
|
|
140
153
|
'fabric.editor.info': 'Info',
|
|
@@ -147,7 +160,7 @@ export default {
|
|
|
147
160
|
'fabric.editor.invalidLink': 'Bitte geben Sie einen gültigen Link ein.',
|
|
148
161
|
'fabric.editor.inviteItem.title': '{userRole, select, admin {Teammitglied zu {productName} einladen} trusted {Teammitglied zu {productName} einladen} other {Teammitglied zu {productName} hinzufügen}}',
|
|
149
162
|
'fabric.editor.italic': 'Kursiv',
|
|
150
|
-
'fabric.editor.keyboardShortcuts': '
|
|
163
|
+
'fabric.editor.keyboardShortcuts': 'Tastenkombinationen',
|
|
151
164
|
'fabric.editor.leftSidebar': 'Linke Seitenleiste',
|
|
152
165
|
'fabric.editor.linkAddress': 'Link-Adresse',
|
|
153
166
|
'fabric.editor.linkPlaceholder': 'Link einfügen',
|
|
@@ -156,9 +169,12 @@ export default {
|
|
|
156
169
|
'fabric.editor.matchCase': 'Groß-/Kleinschreibung beachten',
|
|
157
170
|
'fabric.editor.mediaAddLink': 'Link hinzufügen',
|
|
158
171
|
'fabric.editor.mediaGroupDeleteLabel': 'Löschen',
|
|
172
|
+
'fabric.editor.mentionNode.label': 'Markierung von Benutzer',
|
|
159
173
|
'fabric.editor.mentionsAddLabel': 'Hinzufügen-Symbol',
|
|
160
174
|
'fabric.editor.mentionsIconLabel': 'Erwähnen',
|
|
161
175
|
'fabric.editor.moreFormatting': 'Mehr Formatierungsoptionen',
|
|
176
|
+
'fabric.editor.navigate.toolbar.editor': 'Zur Editor-Symbolleiste navigieren',
|
|
177
|
+
'fabric.editor.navigate.toolbar.floating': 'Zur unverankerten Symbolleiste navigieren',
|
|
162
178
|
'fabric.editor.noResultsFound': 'Keine Ergebnisse',
|
|
163
179
|
'fabric.editor.noSearchResults': 'Keine Suchergebnisse',
|
|
164
180
|
'fabric.editor.normal': 'Normaler Text',
|
|
@@ -179,6 +195,7 @@ export default {
|
|
|
179
195
|
'fabric.editor.placeholderTextPlaceholder': 'Platzhaltertext hinzufügen',
|
|
180
196
|
'fabric.editor.quickInsert': 'Schnelleinfügung',
|
|
181
197
|
'fabric.editor.redo': 'Wiederholen',
|
|
198
|
+
'fabric.editor.removeImageBorder': 'Rahmen entfernen',
|
|
182
199
|
'fabric.editor.replace': 'Ersetzen',
|
|
183
200
|
'fabric.editor.replaceAll': 'Alle ersetzen',
|
|
184
201
|
'fabric.editor.replaceWith': 'Ersetzen mit',
|
|
@@ -187,6 +204,7 @@ export default {
|
|
|
187
204
|
'fabric.editor.searchResults': '{itemsLength, plural, one {{itemsLength,number} Suchergebnis verfügbar} other {{itemsLength,number} Suchergebnisse verfügbar}}',
|
|
188
205
|
'fabric.editor.selectLanguage': 'Sprache auswählen',
|
|
189
206
|
'fabric.editor.settingsLinks': 'Zu den Link-Einstellungen',
|
|
207
|
+
'fabric.editor.shortcut': 'Textverknüpfung',
|
|
190
208
|
'fabric.editor.single': 'Einzelne Spalte',
|
|
191
209
|
'fabric.editor.statusPlaceholder': 'Status festlegen',
|
|
192
210
|
'fabric.editor.story': 'Story',
|
|
@@ -208,9 +226,17 @@ export default {
|
|
|
208
226
|
'fabric.editor.threeColumns': 'Drei Spalten',
|
|
209
227
|
'fabric.editor.threeColumnsWithSidebars': 'Drei Spalten mit Seitenleisten',
|
|
210
228
|
'fabric.editor.toolbarLabel': 'Editor-Symbolleiste',
|
|
211
|
-
'fabric.editor.toolbarMediaTitle': '
|
|
229
|
+
'fabric.editor.toolbarMediaTitle': 'Bild, Video oder Datei hinzufügen',
|
|
212
230
|
'fabric.editor.twoColumns': 'Zwei Spalten',
|
|
213
|
-
'fabric.editor.
|
|
231
|
+
'fabric.editor.typeAhead.popupLabel': 'Ergebnisse der Vorschlagsfunktion',
|
|
232
|
+
'fabric.editor.typeAhead.quickInsertInputLabel': 'Beginnen Sie die Eingabe, um nach Optionen für Tastenkombinationen zu suchen oder diese zu filtern',
|
|
233
|
+
'fabric.editor.typeAhead.quickInsertPopupLabel': 'Tastenkombination für Einfügungen und Formatierung',
|
|
234
|
+
'fabric.editor.typeahead.emojiInputLabel': 'Beginnen Sie mit der Eingabe, um nach Optionen für Emojis zu suchen oder diese zu filtern',
|
|
235
|
+
'fabric.editor.typeahead.emojiListItemLabel': 'Emoji {name} Tastenkombination für Text {shortcut}',
|
|
236
|
+
'fabric.editor.typeahead.emojiPopupLabel': 'Tastenkombinationen für Emojis',
|
|
237
|
+
'fabric.editor.typeahead.mentionInputLabel': 'Beginnen Sie mit der Eingabe, um nach Benutzern zum Kennzeichnen zu suchen',
|
|
238
|
+
'fabric.editor.typeahead.mentionPopupLabel': 'Benutzer, die Sie kennzeichnen können',
|
|
239
|
+
'fabric.editor.typeahead.metionListItemLabel': 'Benutzer {name} @{shortName}',
|
|
214
240
|
'fabric.editor.unableToOpenLink': 'Dieser Link konnte nicht geöffnet werden.',
|
|
215
241
|
'fabric.editor.underline': 'Unterstrichen',
|
|
216
242
|
'fabric.editor.undo': 'Rückgängig',
|
|
@@ -224,5 +250,6 @@ export default {
|
|
|
224
250
|
'fabric.editor.warningPanel': 'Warn-Panel',
|
|
225
251
|
'fabric.editor.warningPanel.description': 'Hinweis zur Vorsicht in einem farbigen Panel einfügen',
|
|
226
252
|
'fabric.editor.wrapLeft': 'Links umwickeln',
|
|
227
|
-
'fabric.editor.wrapRight': 'Rechts umwickeln'
|
|
253
|
+
'fabric.editor.wrapRight': 'Rechts umwickeln',
|
|
254
|
+
'fabric.emoji.label': 'Emoji'
|
|
228
255
|
};
|