@atlaskit/editor-core 182.1.2 → 183.0.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 +27 -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/code-block/language-list.d.ts +1 -1
- 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 +97 -97
- package/report.api.md +1 -1
package/dist/es2019/i18n/en.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/* prettier-ignore */
|
|
1
2
|
/**
|
|
2
3
|
* NOTE:
|
|
3
4
|
*
|
|
@@ -7,13 +8,13 @@
|
|
|
7
8
|
//
|
|
8
9
|
export default {
|
|
9
10
|
'fabric.editor.addAltText': 'Alt text',
|
|
11
|
+
'fabric.editor.addImageBorder': 'Add border',
|
|
10
12
|
'fabric.editor.alignCenter': 'Align Center',
|
|
11
13
|
'fabric.editor.alignLeft': 'Align left',
|
|
12
14
|
'fabric.editor.alignRight': 'Align Right',
|
|
13
15
|
'fabric.editor.alignment': 'Text alignment',
|
|
14
16
|
'fabric.editor.altText': 'Alt text',
|
|
15
17
|
'fabric.editor.alttext.validation': 'Please remove any special characters in alt text.',
|
|
16
|
-
'fabric.editor.annotate': 'Annotate',
|
|
17
18
|
'fabric.editor.annotationToolbar': 'Annotation toolbar',
|
|
18
19
|
'fabric.editor.backLink': 'Go back',
|
|
19
20
|
'fabric.editor.blockCardUnavailable': 'The inline link is inside {node} and cannot have its view changed',
|
|
@@ -61,6 +62,7 @@ export default {
|
|
|
61
62
|
'fabric.editor.customPanel.description': 'Add a note with an emoji and colored background',
|
|
62
63
|
'fabric.editor.decisionPlaceholder': 'Add a decision…',
|
|
63
64
|
'fabric.editor.defaultAltText': 'List item',
|
|
65
|
+
'fabric.editor.description': 'Description',
|
|
64
66
|
'fabric.editor.displayBlock': 'Display card',
|
|
65
67
|
'fabric.editor.displayEmbed': 'Display embed',
|
|
66
68
|
'fabric.editor.displayInline': 'Display inline',
|
|
@@ -76,6 +78,7 @@ export default {
|
|
|
76
78
|
'fabric.editor.editStatusColor': 'Edit Status Color',
|
|
77
79
|
'fabric.editor.editStatusText': 'Edit Status',
|
|
78
80
|
'fabric.editor.editableContentLabel': 'Editable content',
|
|
81
|
+
'fabric.editor.editorAssistiveLabel': 'Main content area, start typing to enter text.',
|
|
79
82
|
'fabric.editor.editorHelp': 'Editor help',
|
|
80
83
|
'fabric.editor.editors': 'Editors',
|
|
81
84
|
'fabric.editor.elementBrowser.help': 'Help',
|
|
@@ -102,12 +105,16 @@ export default {
|
|
|
102
105
|
'fabric.editor.errorPanel.description': 'Call out errors in a colored panel',
|
|
103
106
|
'fabric.editor.extension.confirmDeleteLinkedModalMessage': 'Deleting {nodeName} will break anything connected to it.',
|
|
104
107
|
'fabric.editor.extension.confirmDeleteLinkedModalOKButton': 'Delete',
|
|
108
|
+
'fabric.editor.extension.deleteElementTitle': 'Delete element',
|
|
109
|
+
'fabric.editor.extension.sourceNoTitledName': 'this element',
|
|
105
110
|
'fabric.editor.extensions.config-panel.save-indicator': 'All changes are always autosaved',
|
|
106
111
|
'fabric.editor.find': 'Find',
|
|
107
112
|
'fabric.editor.findNext': 'Find next',
|
|
108
113
|
'fabric.editor.findPrevious': 'Find previous',
|
|
109
114
|
'fabric.editor.findReplaceToolbarButton': 'Find and replace',
|
|
110
115
|
'fabric.editor.floatingToolbar.confirmModalCancel': 'Cancel',
|
|
116
|
+
'fabric.editor.floatingToolbar.confirmModalCheckboxLabel': 'Also delete connected elements',
|
|
117
|
+
'fabric.editor.floatingToolbar.confirmModalConnectedUnit': '{name}{amount, plural, =0 {} one { (+1 connected element)} other { (+# connected elements)}}',
|
|
111
118
|
'fabric.editor.floatingToolbar.confirmModalHeading': 'Are you sure?',
|
|
112
119
|
'fabric.editor.floatingToolbar.confirmModalOK': 'OK',
|
|
113
120
|
'fabric.editor.floatingToolbar.floatingToolbarAnnouncer': 'Floating toolbar controls have been opened',
|
|
@@ -138,6 +145,12 @@ export default {
|
|
|
138
145
|
'fabric.editor.hyperlink.searchLinkAriaDescription': 'Suggestions will appear below as you type into the field',
|
|
139
146
|
'fabric.editor.hyperlink.searchLinkResults': '{count, plural, =0 {no results} one {# result} other {# results}} found',
|
|
140
147
|
'fabric.editor.hyperlinkToolbarPlaceholder': 'Paste or search for link',
|
|
148
|
+
'fabric.editor.imageBorderBold': 'Bold',
|
|
149
|
+
'fabric.editor.imageBorderColor': 'Color',
|
|
150
|
+
'fabric.editor.imageBorderMedium': 'Medium',
|
|
151
|
+
'fabric.editor.imageBorderOptions': 'Border options',
|
|
152
|
+
'fabric.editor.imageBorderSize': 'Size',
|
|
153
|
+
'fabric.editor.imageBorderSubtle': 'Subtle',
|
|
141
154
|
'fabric.editor.improvement': 'Improvement',
|
|
142
155
|
'fabric.editor.indent': 'Indent',
|
|
143
156
|
'fabric.editor.info': 'Info',
|
|
@@ -159,9 +172,12 @@ export default {
|
|
|
159
172
|
'fabric.editor.matchCase': 'Match case',
|
|
160
173
|
'fabric.editor.mediaAddLink': 'Add link',
|
|
161
174
|
'fabric.editor.mediaGroupDeleteLabel': 'delete',
|
|
175
|
+
'fabric.editor.mentionNode.label': 'Tagged user',
|
|
162
176
|
'fabric.editor.mentionsAddLabel': 'add-icon',
|
|
163
177
|
'fabric.editor.mentionsIconLabel': 'Mention',
|
|
164
178
|
'fabric.editor.moreFormatting': 'More formatting',
|
|
179
|
+
'fabric.editor.navigate.toolbar.editor': 'Navigate to editor toolbar',
|
|
180
|
+
'fabric.editor.navigate.toolbar.floating': 'Navigate to floating toolbar',
|
|
165
181
|
'fabric.editor.noResultsFound': 'No results',
|
|
166
182
|
'fabric.editor.noSearchResults': 'No search results',
|
|
167
183
|
'fabric.editor.normal': 'Normal text',
|
|
@@ -182,6 +198,7 @@ export default {
|
|
|
182
198
|
'fabric.editor.placeholderTextPlaceholder': 'Add placeholder text',
|
|
183
199
|
'fabric.editor.quickInsert': 'Quick insert',
|
|
184
200
|
'fabric.editor.redo': 'Redo',
|
|
201
|
+
'fabric.editor.removeImageBorder': 'Remove border',
|
|
185
202
|
'fabric.editor.replace': 'Replace',
|
|
186
203
|
'fabric.editor.replaceAll': 'Replace all',
|
|
187
204
|
'fabric.editor.replaceWith': 'Replace with',
|
|
@@ -190,6 +207,7 @@ export default {
|
|
|
190
207
|
'fabric.editor.searchResults': '{itemsLength, plural, one {# search result} other {# search results}} available',
|
|
191
208
|
'fabric.editor.selectLanguage': 'Select language',
|
|
192
209
|
'fabric.editor.settingsLinks': 'Go to Link Preferences',
|
|
210
|
+
'fabric.editor.shortcut': 'Text shortcut',
|
|
193
211
|
'fabric.editor.single': 'Single column',
|
|
194
212
|
'fabric.editor.statusPlaceholder': 'Set a status',
|
|
195
213
|
'fabric.editor.story': 'Story',
|
|
@@ -211,9 +229,17 @@ export default {
|
|
|
211
229
|
'fabric.editor.threeColumns': 'Three columns',
|
|
212
230
|
'fabric.editor.threeColumnsWithSidebars': 'Three columns with sidebars',
|
|
213
231
|
'fabric.editor.toolbarLabel': 'Editor toolbar',
|
|
214
|
-
'fabric.editor.toolbarMediaTitle': '
|
|
232
|
+
'fabric.editor.toolbarMediaTitle': 'Add image, video, or file',
|
|
215
233
|
'fabric.editor.twoColumns': 'Two columns',
|
|
216
|
-
'fabric.editor.
|
|
234
|
+
'fabric.editor.typeAhead.popupLabel': 'Typeahead results',
|
|
235
|
+
'fabric.editor.typeAhead.quickInsertInputLabel': 'Begin typing to search or filter shortcut options',
|
|
236
|
+
'fabric.editor.typeAhead.quickInsertPopupLabel': 'Shortcuts for inserts and formatting',
|
|
237
|
+
'fabric.editor.typeahead.emojiInputLabel': 'Begin typing to search or filter emoji options',
|
|
238
|
+
'fabric.editor.typeahead.emojiListItemLabel': 'Emoji {name} Text Shortcut {shortcut}',
|
|
239
|
+
'fabric.editor.typeahead.emojiPopupLabel': 'Emoji shortcuts',
|
|
240
|
+
'fabric.editor.typeahead.mentionInputLabel': 'Begin typing to search for users to tag',
|
|
241
|
+
'fabric.editor.typeahead.mentionPopupLabel': 'Users you can tag',
|
|
242
|
+
'fabric.editor.typeahead.metionListItemLabel': 'User {name} @{shortName}',
|
|
217
243
|
'fabric.editor.unableToOpenLink': 'Unable to open this link',
|
|
218
244
|
'fabric.editor.underline': 'Underline',
|
|
219
245
|
'fabric.editor.undo': 'Undo',
|
|
@@ -227,5 +253,6 @@ export default {
|
|
|
227
253
|
'fabric.editor.warningPanel': 'Warning panel',
|
|
228
254
|
'fabric.editor.warningPanel.description': 'Add a note of caution in a colored panel',
|
|
229
255
|
'fabric.editor.wrapLeft': 'Wrap left',
|
|
230
|
-
'fabric.editor.wrapRight': 'Wrap right'
|
|
256
|
+
'fabric.editor.wrapRight': 'Wrap right',
|
|
257
|
+
'fabric.emoji.label': 'Emoji'
|
|
231
258
|
};
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/* prettier-ignore */
|
|
1
2
|
/**
|
|
2
3
|
* NOTE:
|
|
3
4
|
*
|
|
@@ -7,13 +8,13 @@
|
|
|
7
8
|
//English (United Kingdom)
|
|
8
9
|
export default {
|
|
9
10
|
'fabric.editor.addAltText': 'Alt text',
|
|
11
|
+
'fabric.editor.addImageBorder': 'Add border',
|
|
10
12
|
'fabric.editor.alignCenter': 'Align Center',
|
|
11
13
|
'fabric.editor.alignLeft': 'Align left',
|
|
12
14
|
'fabric.editor.alignRight': 'Align Right',
|
|
13
15
|
'fabric.editor.alignment': 'Text alignment',
|
|
14
16
|
'fabric.editor.altText': 'Alt text',
|
|
15
17
|
'fabric.editor.alttext.validation': 'Please remove any special characters in alt text.',
|
|
16
|
-
'fabric.editor.annotate': 'Annotate',
|
|
17
18
|
'fabric.editor.annotationToolbar': 'Annotation toolbar',
|
|
18
19
|
'fabric.editor.backLink': 'Go back',
|
|
19
20
|
'fabric.editor.blockCardUnavailable': 'The inline link is inside {node} and cannot have its view changed',
|
|
@@ -61,6 +62,7 @@ export default {
|
|
|
61
62
|
'fabric.editor.customPanel.description': 'Add a note with an emoji and coloured background',
|
|
62
63
|
'fabric.editor.decisionPlaceholder': 'Add a decision…',
|
|
63
64
|
'fabric.editor.defaultAltText': 'List item',
|
|
65
|
+
'fabric.editor.description': 'Description',
|
|
64
66
|
'fabric.editor.displayBlock': 'Display card',
|
|
65
67
|
'fabric.editor.displayEmbed': 'Display embed',
|
|
66
68
|
'fabric.editor.displayInline': 'Display inline',
|
|
@@ -73,9 +75,10 @@ export default {
|
|
|
73
75
|
'fabric.editor.editAltText': 'Edit alt text',
|
|
74
76
|
'fabric.editor.editDateText': 'Edit Date',
|
|
75
77
|
'fabric.editor.editLink': 'Edit link',
|
|
76
|
-
'fabric.editor.
|
|
78
|
+
'fabric.editor.editStatusColor': 'Edit Status Colour',
|
|
77
79
|
'fabric.editor.editStatusText': 'Edit Status',
|
|
78
80
|
'fabric.editor.editableContentLabel': 'Editable content',
|
|
81
|
+
'fabric.editor.editorAssistiveLabel': 'Main content area, start typing to enter text.',
|
|
79
82
|
'fabric.editor.editorHelp': 'Editor help',
|
|
80
83
|
'fabric.editor.editors': 'Editors',
|
|
81
84
|
'fabric.editor.elementBrowser.help': 'Help',
|
|
@@ -102,12 +105,16 @@ export default {
|
|
|
102
105
|
'fabric.editor.errorPanel.description': 'Call out errors in a coloured panel',
|
|
103
106
|
'fabric.editor.extension.confirmDeleteLinkedModalMessage': 'Deleting {nodeName} will break anything connected to it.',
|
|
104
107
|
'fabric.editor.extension.confirmDeleteLinkedModalOKButton': 'Delete',
|
|
108
|
+
'fabric.editor.extension.deleteElementTitle': 'Delete element',
|
|
109
|
+
'fabric.editor.extension.sourceNoTitledName': 'this element',
|
|
105
110
|
'fabric.editor.extensions.config-panel.save-indicator': 'All changes are always autosaved',
|
|
106
111
|
'fabric.editor.find': 'Find',
|
|
107
112
|
'fabric.editor.findNext': 'Find next',
|
|
108
113
|
'fabric.editor.findPrevious': 'Find previous',
|
|
109
114
|
'fabric.editor.findReplaceToolbarButton': 'Find and replace',
|
|
110
115
|
'fabric.editor.floatingToolbar.confirmModalCancel': 'Cancel',
|
|
116
|
+
'fabric.editor.floatingToolbar.confirmModalCheckboxLabel': 'Also delete connected elements',
|
|
117
|
+
'fabric.editor.floatingToolbar.confirmModalConnectedUnit': '{name}{amount, plural, =0 {} one { (+1 connected element)} other { (+# connected elements)}}',
|
|
111
118
|
'fabric.editor.floatingToolbar.confirmModalHeading': 'Are you sure?',
|
|
112
119
|
'fabric.editor.floatingToolbar.confirmModalOK': 'OK',
|
|
113
120
|
'fabric.editor.floatingToolbar.floatingToolbarAnnouncer': 'Floating toolbar controls have been opened',
|
|
@@ -138,6 +145,12 @@ export default {
|
|
|
138
145
|
'fabric.editor.hyperlink.searchLinkAriaDescription': 'Suggestions will appear below as you type into the field',
|
|
139
146
|
'fabric.editor.hyperlink.searchLinkResults': '{count, plural, =0 {no results} one {# result} other {# results}} found',
|
|
140
147
|
'fabric.editor.hyperlinkToolbarPlaceholder': 'Paste or search for link',
|
|
148
|
+
'fabric.editor.imageBorderBold': 'Bold',
|
|
149
|
+
'fabric.editor.imageBorderColor': 'Colour',
|
|
150
|
+
'fabric.editor.imageBorderMedium': 'Medium',
|
|
151
|
+
'fabric.editor.imageBorderOptions': 'Border options',
|
|
152
|
+
'fabric.editor.imageBorderSize': 'Size',
|
|
153
|
+
'fabric.editor.imageBorderSubtle': 'Subtle',
|
|
141
154
|
'fabric.editor.improvement': 'Improvement',
|
|
142
155
|
'fabric.editor.indent': 'Indent',
|
|
143
156
|
'fabric.editor.info': 'Info',
|
|
@@ -159,9 +172,12 @@ export default {
|
|
|
159
172
|
'fabric.editor.matchCase': 'Match case',
|
|
160
173
|
'fabric.editor.mediaAddLink': 'Add link',
|
|
161
174
|
'fabric.editor.mediaGroupDeleteLabel': 'delete',
|
|
175
|
+
'fabric.editor.mentionNode.label': 'Tagged user',
|
|
162
176
|
'fabric.editor.mentionsAddLabel': 'add-icon',
|
|
163
177
|
'fabric.editor.mentionsIconLabel': 'Mention',
|
|
164
178
|
'fabric.editor.moreFormatting': 'More formatting',
|
|
179
|
+
'fabric.editor.navigate.toolbar.editor': 'Navigate to editor toolbar',
|
|
180
|
+
'fabric.editor.navigate.toolbar.floating': 'Navigate to floating toolbar',
|
|
165
181
|
'fabric.editor.noResultsFound': 'No results',
|
|
166
182
|
'fabric.editor.noSearchResults': 'No search results',
|
|
167
183
|
'fabric.editor.normal': 'Normal text',
|
|
@@ -175,13 +191,14 @@ export default {
|
|
|
175
191
|
'fabric.editor.other': 'Others...',
|
|
176
192
|
'fabric.editor.outdent': 'Outdent',
|
|
177
193
|
'fabric.editor.pageActionsLabel': 'Page actions',
|
|
178
|
-
'fabric.editor.panel.
|
|
194
|
+
'fabric.editor.panel.backgroundColor': 'Background colour',
|
|
179
195
|
'fabric.editor.panel.emoji': 'Add emoji',
|
|
180
196
|
'fabric.editor.pastePlainText': 'Paste plain text',
|
|
181
197
|
'fabric.editor.placeholderAltText': 'Describe this image with alt text',
|
|
182
198
|
'fabric.editor.placeholderTextPlaceholder': 'Add placeholder text',
|
|
183
199
|
'fabric.editor.quickInsert': 'Quick insert',
|
|
184
200
|
'fabric.editor.redo': 'Redo',
|
|
201
|
+
'fabric.editor.removeImageBorder': 'Remove border',
|
|
185
202
|
'fabric.editor.replace': 'Replace',
|
|
186
203
|
'fabric.editor.replaceAll': 'Replace all',
|
|
187
204
|
'fabric.editor.replaceWith': 'Replace with',
|
|
@@ -190,6 +207,7 @@ export default {
|
|
|
190
207
|
'fabric.editor.searchResults': '{itemsLength, plural, one {# search result} other {# search results}} available',
|
|
191
208
|
'fabric.editor.selectLanguage': 'Select language',
|
|
192
209
|
'fabric.editor.settingsLinks': 'Go to Link Preferences',
|
|
210
|
+
'fabric.editor.shortcut': 'Text shortcut',
|
|
193
211
|
'fabric.editor.single': 'Single column',
|
|
194
212
|
'fabric.editor.statusPlaceholder': 'Set a status',
|
|
195
213
|
'fabric.editor.story': 'Story',
|
|
@@ -206,14 +224,22 @@ export default {
|
|
|
206
224
|
'fabric.editor.task': 'Task',
|
|
207
225
|
'fabric.editor.taskPlaceholder': "Type your action, use '@' to assign to someone.",
|
|
208
226
|
'fabric.editor.text.formatting.off': 'Text formatting Off',
|
|
209
|
-
'fabric.editor.
|
|
227
|
+
'fabric.editor.textColor': 'Text colour',
|
|
210
228
|
'fabric.editor.textStyles': 'Text styles',
|
|
211
229
|
'fabric.editor.threeColumns': 'Three columns',
|
|
212
230
|
'fabric.editor.threeColumnsWithSidebars': 'Three columns with sidebars',
|
|
213
231
|
'fabric.editor.toolbarLabel': 'Editor toolbar',
|
|
214
|
-
'fabric.editor.toolbarMediaTitle': '
|
|
232
|
+
'fabric.editor.toolbarMediaTitle': 'Add image, video, or file',
|
|
215
233
|
'fabric.editor.twoColumns': 'Two columns',
|
|
216
|
-
'fabric.editor.
|
|
234
|
+
'fabric.editor.typeAhead.popupLabel': 'Typeahead results',
|
|
235
|
+
'fabric.editor.typeAhead.quickInsertInputLabel': 'Begin typing to search or filter shortcut options',
|
|
236
|
+
'fabric.editor.typeAhead.quickInsertPopupLabel': 'Shortcuts for inserts and formatting',
|
|
237
|
+
'fabric.editor.typeahead.emojiInputLabel': 'Begin typing to search or filter emoji options',
|
|
238
|
+
'fabric.editor.typeahead.emojiListItemLabel': 'Emoji {name} Text Shortcut {shortcut}',
|
|
239
|
+
'fabric.editor.typeahead.emojiPopupLabel': 'Emoji shortcuts',
|
|
240
|
+
'fabric.editor.typeahead.mentionInputLabel': 'Begin typing to search for users to tag',
|
|
241
|
+
'fabric.editor.typeahead.mentionPopupLabel': 'Users you can tag',
|
|
242
|
+
'fabric.editor.typeahead.metionListItemLabel': 'User {name} @{shortName}',
|
|
217
243
|
'fabric.editor.unableToOpenLink': 'Unable to open this link',
|
|
218
244
|
'fabric.editor.underline': 'Underline',
|
|
219
245
|
'fabric.editor.undo': 'Undo',
|
|
@@ -227,5 +253,6 @@ export default {
|
|
|
227
253
|
'fabric.editor.warningPanel': 'Warning panel',
|
|
228
254
|
'fabric.editor.warningPanel.description': 'Add a note of caution in a coloured panel',
|
|
229
255
|
'fabric.editor.wrapLeft': 'Wrap left',
|
|
230
|
-
'fabric.editor.wrapRight': 'Wrap right'
|
|
256
|
+
'fabric.editor.wrapRight': 'Wrap right',
|
|
257
|
+
'fabric.emoji.label': 'Emoji'
|
|
231
258
|
};
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/* prettier-ignore */
|
|
1
2
|
/**
|
|
2
3
|
* NOTE:
|
|
3
4
|
*
|
|
@@ -7,13 +8,13 @@
|
|
|
7
8
|
//
|
|
8
9
|
export default {
|
|
9
10
|
'fabric.editor.addAltText': 'Alt text',
|
|
11
|
+
'fabric.editor.addImageBorder': 'Add border',
|
|
10
12
|
'fabric.editor.alignCenter': 'Align Center',
|
|
11
13
|
'fabric.editor.alignLeft': 'Align left',
|
|
12
14
|
'fabric.editor.alignRight': 'Align Right',
|
|
13
15
|
'fabric.editor.alignment': 'Text alignment',
|
|
14
16
|
'fabric.editor.altText': 'Alt text',
|
|
15
17
|
'fabric.editor.alttext.validation': 'Please remove any special characters in alt text.',
|
|
16
|
-
'fabric.editor.annotate': 'Annotate',
|
|
17
18
|
'fabric.editor.annotationToolbar': 'Annotation toolbar',
|
|
18
19
|
'fabric.editor.backLink': 'Go back',
|
|
19
20
|
'fabric.editor.blockCardUnavailable': 'The inline link is inside {node} and cannot have its view changed',
|
|
@@ -61,6 +62,7 @@ export default {
|
|
|
61
62
|
'fabric.editor.customPanel.description': 'Add a note with an emoji and colored background',
|
|
62
63
|
'fabric.editor.decisionPlaceholder': 'Add a decision…',
|
|
63
64
|
'fabric.editor.defaultAltText': 'List item',
|
|
65
|
+
'fabric.editor.description': 'Description',
|
|
64
66
|
'fabric.editor.displayBlock': 'Display card',
|
|
65
67
|
'fabric.editor.displayEmbed': 'Display embed',
|
|
66
68
|
'fabric.editor.displayInline': 'Display inline',
|
|
@@ -76,6 +78,7 @@ export default {
|
|
|
76
78
|
'fabric.editor.editStatusColor': 'Edit Status Color',
|
|
77
79
|
'fabric.editor.editStatusText': 'Edit Status',
|
|
78
80
|
'fabric.editor.editableContentLabel': 'Editable content',
|
|
81
|
+
'fabric.editor.editorAssistiveLabel': 'Main content area, start typing to enter text.',
|
|
79
82
|
'fabric.editor.editorHelp': 'Editor help',
|
|
80
83
|
'fabric.editor.editors': 'Editors',
|
|
81
84
|
'fabric.editor.elementBrowser.help': 'Help',
|
|
@@ -100,14 +103,18 @@ export default {
|
|
|
100
103
|
'fabric.editor.error': 'Error',
|
|
101
104
|
'fabric.editor.errorPanel': 'Error panel',
|
|
102
105
|
'fabric.editor.errorPanel.description': 'Call out errors in a colored panel',
|
|
103
|
-
'fabric.editor.extension.confirmDeleteLinkedModalMessage': 'Deleting {nodeName} will break anything connected to it
|
|
104
|
-
'fabric.editor.extension.confirmDeleteLinkedModalOKButton': '
|
|
106
|
+
'fabric.editor.extension.confirmDeleteLinkedModalMessage': 'Deleting {nodeName} will break anything connected to it.',
|
|
107
|
+
'fabric.editor.extension.confirmDeleteLinkedModalOKButton': 'Delete',
|
|
108
|
+
'fabric.editor.extension.deleteElementTitle': 'Delete element',
|
|
109
|
+
'fabric.editor.extension.sourceNoTitledName': 'this element',
|
|
105
110
|
'fabric.editor.extensions.config-panel.save-indicator': 'All changes are always autosaved',
|
|
106
111
|
'fabric.editor.find': 'Find',
|
|
107
112
|
'fabric.editor.findNext': 'Find next',
|
|
108
113
|
'fabric.editor.findPrevious': 'Find previous',
|
|
109
114
|
'fabric.editor.findReplaceToolbarButton': 'Find and replace',
|
|
110
115
|
'fabric.editor.floatingToolbar.confirmModalCancel': 'Cancel',
|
|
116
|
+
'fabric.editor.floatingToolbar.confirmModalCheckboxLabel': 'Also delete connected elements',
|
|
117
|
+
'fabric.editor.floatingToolbar.confirmModalConnectedUnit': '{amount, plural, =0 {{name}} one {{name} (+1 connected element)} other {{name} (+{amount,number} connected elements)}}',
|
|
111
118
|
'fabric.editor.floatingToolbar.confirmModalHeading': 'Are you sure?',
|
|
112
119
|
'fabric.editor.floatingToolbar.confirmModalOK': 'OK',
|
|
113
120
|
'fabric.editor.floatingToolbar.floatingToolbarAnnouncer': 'Floating toolbar controls have been opened',
|
|
@@ -136,8 +143,14 @@ export default {
|
|
|
136
143
|
'fabric.editor.helpDialogTips': 'Press {keyMap} to quickly open this dialog at any time',
|
|
137
144
|
'fabric.editor.hyperlink.linkAriaLabel': 'Link label',
|
|
138
145
|
'fabric.editor.hyperlink.searchLinkAriaDescription': 'Suggestions will appear below as you type into the field',
|
|
139
|
-
'fabric.editor.hyperlink.searchLinkResults': '{count, plural, =0 {no results found
|
|
146
|
+
'fabric.editor.hyperlink.searchLinkResults': '{count, plural, =0 {no results found} one {{count,number} result found} other {{count,number} results found}}',
|
|
140
147
|
'fabric.editor.hyperlinkToolbarPlaceholder': 'Paste or search for link',
|
|
148
|
+
'fabric.editor.imageBorderBold': 'Bold',
|
|
149
|
+
'fabric.editor.imageBorderColor': 'Color',
|
|
150
|
+
'fabric.editor.imageBorderMedium': 'Medium',
|
|
151
|
+
'fabric.editor.imageBorderOptions': 'Border options',
|
|
152
|
+
'fabric.editor.imageBorderSize': 'Size',
|
|
153
|
+
'fabric.editor.imageBorderSubtle': 'Subtle',
|
|
141
154
|
'fabric.editor.improvement': 'Improvement',
|
|
142
155
|
'fabric.editor.indent': 'Indent',
|
|
143
156
|
'fabric.editor.info': 'Info',
|
|
@@ -148,7 +161,7 @@ export default {
|
|
|
148
161
|
'fabric.editor.inputQueryAssistiveTxt': 'When autocomplete results are available use up and down arrows to review and enter to select. Touch device users, explore by touch or with swipe gestures.',
|
|
149
162
|
'fabric.editor.invalidDateError': 'Enter a valid date',
|
|
150
163
|
'fabric.editor.invalidLink': 'Please enter a valid link.',
|
|
151
|
-
'fabric.editor.inviteItem.title': '{userRole, select, admin {Invite teammate to {productName}
|
|
164
|
+
'fabric.editor.inviteItem.title': '{userRole, select, admin {Invite teammate to {productName}} trusted {Invite teammate to {productName}} other {Add teammate to {productName}}}',
|
|
152
165
|
'fabric.editor.italic': 'Italic',
|
|
153
166
|
'fabric.editor.keyboardShortcuts': 'Keyboard shortcuts',
|
|
154
167
|
'fabric.editor.leftSidebar': 'Left sidebar',
|
|
@@ -159,9 +172,12 @@ export default {
|
|
|
159
172
|
'fabric.editor.matchCase': 'Match case',
|
|
160
173
|
'fabric.editor.mediaAddLink': 'Add link',
|
|
161
174
|
'fabric.editor.mediaGroupDeleteLabel': 'delete',
|
|
175
|
+
'fabric.editor.mentionNode.label': 'Tagged user',
|
|
162
176
|
'fabric.editor.mentionsAddLabel': 'add-icon',
|
|
163
177
|
'fabric.editor.mentionsIconLabel': 'Mention',
|
|
164
178
|
'fabric.editor.moreFormatting': 'More formatting',
|
|
179
|
+
'fabric.editor.navigate.toolbar.editor': 'Navigate to editor toolbar',
|
|
180
|
+
'fabric.editor.navigate.toolbar.floating': 'Navigate to floating toolbar',
|
|
165
181
|
'fabric.editor.noResultsFound': 'No results',
|
|
166
182
|
'fabric.editor.noSearchResults': 'No search results',
|
|
167
183
|
'fabric.editor.normal': 'Normal text',
|
|
@@ -182,6 +198,7 @@ export default {
|
|
|
182
198
|
'fabric.editor.placeholderTextPlaceholder': 'Add placeholder text',
|
|
183
199
|
'fabric.editor.quickInsert': 'Quick insert',
|
|
184
200
|
'fabric.editor.redo': 'Redo',
|
|
201
|
+
'fabric.editor.removeImageBorder': 'Remove border',
|
|
185
202
|
'fabric.editor.replace': 'Replace',
|
|
186
203
|
'fabric.editor.replaceAll': 'Replace all',
|
|
187
204
|
'fabric.editor.replaceWith': 'Replace with',
|
|
@@ -190,6 +207,7 @@ export default {
|
|
|
190
207
|
'fabric.editor.searchResults': '{itemsLength, plural, one {{itemsLength,number} search result available} other {{itemsLength,number} search results available}}',
|
|
191
208
|
'fabric.editor.selectLanguage': 'Select language',
|
|
192
209
|
'fabric.editor.settingsLinks': 'Go to Link Preferences',
|
|
210
|
+
'fabric.editor.shortcut': 'Text shortcut',
|
|
193
211
|
'fabric.editor.single': 'Single column',
|
|
194
212
|
'fabric.editor.statusPlaceholder': 'Set a status',
|
|
195
213
|
'fabric.editor.story': 'Story',
|
|
@@ -211,9 +229,17 @@ export default {
|
|
|
211
229
|
'fabric.editor.threeColumns': 'Three columns',
|
|
212
230
|
'fabric.editor.threeColumnsWithSidebars': 'Three columns with sidebars',
|
|
213
231
|
'fabric.editor.toolbarLabel': 'Editor toolbar',
|
|
214
|
-
'fabric.editor.toolbarMediaTitle': '
|
|
232
|
+
'fabric.editor.toolbarMediaTitle': 'Add image, video, or file',
|
|
215
233
|
'fabric.editor.twoColumns': 'Two columns',
|
|
216
|
-
'fabric.editor.
|
|
234
|
+
'fabric.editor.typeAhead.popupLabel': 'Typeahead results',
|
|
235
|
+
'fabric.editor.typeAhead.quickInsertInputLabel': 'Begin typing to search or filter shortcut options',
|
|
236
|
+
'fabric.editor.typeAhead.quickInsertPopupLabel': 'Shortcuts for inserts and formatting',
|
|
237
|
+
'fabric.editor.typeahead.emojiInputLabel': 'Begin typing to search or filter emoji options',
|
|
238
|
+
'fabric.editor.typeahead.emojiListItemLabel': 'Emoji {name} Text Shortcut {shortcut}',
|
|
239
|
+
'fabric.editor.typeahead.emojiPopupLabel': 'Emoji shortcuts',
|
|
240
|
+
'fabric.editor.typeahead.mentionInputLabel': 'Begin typing to search for users to tag',
|
|
241
|
+
'fabric.editor.typeahead.mentionPopupLabel': 'Users you can tag',
|
|
242
|
+
'fabric.editor.typeahead.metionListItemLabel': 'User {name} @{shortName}',
|
|
217
243
|
'fabric.editor.unableToOpenLink': 'Unable to open this link',
|
|
218
244
|
'fabric.editor.underline': 'Underline',
|
|
219
245
|
'fabric.editor.undo': 'Undo',
|
|
@@ -227,5 +253,6 @@ export default {
|
|
|
227
253
|
'fabric.editor.warningPanel': 'Warning panel',
|
|
228
254
|
'fabric.editor.warningPanel.description': 'Add a note of caution in a colored panel',
|
|
229
255
|
'fabric.editor.wrapLeft': 'Wrap left',
|
|
230
|
-
'fabric.editor.wrapRight': 'Wrap right'
|
|
256
|
+
'fabric.editor.wrapRight': 'Wrap right',
|
|
257
|
+
'fabric.emoji.label': 'Emoji'
|
|
231
258
|
};
|
package/dist/es2019/i18n/es.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/* prettier-ignore */
|
|
1
2
|
/**
|
|
2
3
|
* NOTE:
|
|
3
4
|
*
|
|
@@ -7,13 +8,13 @@
|
|
|
7
8
|
//Spanish (International)
|
|
8
9
|
export default {
|
|
9
10
|
'fabric.editor.addAltText': 'Texto alternativo',
|
|
11
|
+
'fabric.editor.addImageBorder': 'Añadir borde',
|
|
10
12
|
'fabric.editor.alignCenter': 'Alinear al centro',
|
|
11
13
|
'fabric.editor.alignLeft': 'Alinear a la izquierda',
|
|
12
14
|
'fabric.editor.alignRight': 'Alinear a la derecha',
|
|
13
15
|
'fabric.editor.alignment': 'Alineación de texto',
|
|
14
16
|
'fabric.editor.altText': 'Texto alternativo',
|
|
15
17
|
'fabric.editor.alttext.validation': 'Elimina los caracteres especiales en texto alternativo.',
|
|
16
|
-
'fabric.editor.annotate': 'Anotar',
|
|
17
18
|
'fabric.editor.annotationToolbar': 'Barra de herramientas de anotaciones',
|
|
18
19
|
'fabric.editor.backLink': 'Regresar',
|
|
19
20
|
'fabric.editor.blockCardUnavailable': 'El enlace insertado está dentro de {node} y no puede cambiar de vista',
|
|
@@ -60,6 +61,7 @@ export default {
|
|
|
60
61
|
'fabric.editor.customPanel.description': 'Añade una nota con un emoticono y un fondo de color',
|
|
61
62
|
'fabric.editor.decisionPlaceholder': 'Añadir una decisión...',
|
|
62
63
|
'fabric.editor.defaultAltText': 'Elemento de la lista',
|
|
64
|
+
'fabric.editor.description': 'Descripción',
|
|
63
65
|
'fabric.editor.displayBlock': 'Mostrar como tarjeta',
|
|
64
66
|
'fabric.editor.displayEmbed': 'Mostrar como objeto incrustado',
|
|
65
67
|
'fabric.editor.displayInline': 'Mostrar insertado',
|
|
@@ -75,6 +77,7 @@ export default {
|
|
|
75
77
|
'fabric.editor.editStatusColor': 'Editar color de estado',
|
|
76
78
|
'fabric.editor.editStatusText': 'Editar estado',
|
|
77
79
|
'fabric.editor.editableContentLabel': 'Contenido editable',
|
|
80
|
+
'fabric.editor.editorAssistiveLabel': 'Área de contenido principal, empieza a escribir para introducir texto.',
|
|
78
81
|
'fabric.editor.editorHelp': 'Ayuda del editor',
|
|
79
82
|
'fabric.editor.editors': 'Editores',
|
|
80
83
|
'fabric.editor.elementBrowser.help': 'Ayuda',
|
|
@@ -99,18 +102,22 @@ export default {
|
|
|
99
102
|
'fabric.editor.error': 'Error',
|
|
100
103
|
'fabric.editor.errorPanel': 'Panel de errores',
|
|
101
104
|
'fabric.editor.errorPanel.description': 'Resaltar los errores en un panel de color',
|
|
102
|
-
'fabric.editor.extension.confirmDeleteLinkedModalMessage': 'Al eliminar
|
|
103
|
-
'fabric.editor.extension.confirmDeleteLinkedModalOKButton': 'Eliminar
|
|
105
|
+
'fabric.editor.extension.confirmDeleteLinkedModalMessage': 'Al eliminar la extensión {nodeName}, se interrumpirá todo lo que se haya conectado a ella.',
|
|
106
|
+
'fabric.editor.extension.confirmDeleteLinkedModalOKButton': 'Eliminar',
|
|
107
|
+
'fabric.editor.extension.deleteElementTitle': 'Eliminar elemento',
|
|
104
108
|
'fabric.editor.extensions.config-panel.save-indicator': 'Todos los cambios se guardan siempre automáticamente',
|
|
105
109
|
'fabric.editor.find': 'Buscar',
|
|
106
110
|
'fabric.editor.findNext': 'Buscar siguiente',
|
|
107
111
|
'fabric.editor.findPrevious': 'Buscar anterior',
|
|
108
112
|
'fabric.editor.findReplaceToolbarButton': 'Buscar y reemplazar',
|
|
109
113
|
'fabric.editor.floatingToolbar.confirmModalCancel': 'Cancelar',
|
|
114
|
+
'fabric.editor.floatingToolbar.confirmModalCheckboxLabel': 'Eliminar también los elementos conectados',
|
|
110
115
|
'fabric.editor.floatingToolbar.confirmModalHeading': '¿Seguro?',
|
|
111
116
|
'fabric.editor.floatingToolbar.confirmModalOK': 'Aceptar',
|
|
112
117
|
'fabric.editor.floatingToolbar.floatingToolbarAnnouncer': 'Se han abierto los controles de la barra de herramientas flotante',
|
|
113
118
|
'fabric.editor.floatingToolbar.floatingToolbarAriaLabel': 'Barra de herramientas flotante',
|
|
119
|
+
'fabric.editor.floatingToolbar.scrollLeft': 'Desplazarse a la izquierda',
|
|
120
|
+
'fabric.editor.floatingToolbar.scrollRight': 'Desplazarse a la derecha',
|
|
114
121
|
'fabric.editor.heading1': 'Título 1',
|
|
115
122
|
'fabric.editor.heading1Description': 'Úsalo en un título de nivel superior',
|
|
116
123
|
'fabric.editor.heading2': 'Título 2',
|
|
@@ -135,6 +142,12 @@ export default {
|
|
|
135
142
|
'fabric.editor.hyperlink.searchLinkAriaDescription': 'Las sugerencias aparecerán abajo a medida que escribas en el campo',
|
|
136
143
|
'fabric.editor.hyperlink.searchLinkResults': '{count, plural, =0 {no hay resultados} one {{count,number} resultado encontrado} other {{count,number} resultados encontrados}}',
|
|
137
144
|
'fabric.editor.hyperlinkToolbarPlaceholder': 'Pegar o buscar el enlace',
|
|
145
|
+
'fabric.editor.imageBorderBold': 'Negrita',
|
|
146
|
+
'fabric.editor.imageBorderColor': 'Color',
|
|
147
|
+
'fabric.editor.imageBorderMedium': 'Mediano',
|
|
148
|
+
'fabric.editor.imageBorderOptions': 'Opciones de borde',
|
|
149
|
+
'fabric.editor.imageBorderSize': 'Tamaño',
|
|
150
|
+
'fabric.editor.imageBorderSubtle': 'Sutil',
|
|
138
151
|
'fabric.editor.improvement': 'Mejora',
|
|
139
152
|
'fabric.editor.indent': 'Aplicar sangría',
|
|
140
153
|
'fabric.editor.info': 'Información',
|
|
@@ -156,9 +169,12 @@ export default {
|
|
|
156
169
|
'fabric.editor.matchCase': 'Coincidir mayúsculas y minúsculas',
|
|
157
170
|
'fabric.editor.mediaAddLink': 'Añadir enlace',
|
|
158
171
|
'fabric.editor.mediaGroupDeleteLabel': 'Eliminar',
|
|
172
|
+
'fabric.editor.mentionNode.label': 'Usuario etiquetado',
|
|
159
173
|
'fabric.editor.mentionsAddLabel': 'añadir-icono',
|
|
160
174
|
'fabric.editor.mentionsIconLabel': 'Mención',
|
|
161
175
|
'fabric.editor.moreFormatting': 'Más formatos',
|
|
176
|
+
'fabric.editor.navigate.toolbar.editor': 'Ve a la barra de herramientas del editor',
|
|
177
|
+
'fabric.editor.navigate.toolbar.floating': 'Ve a la barra de herramientas flotante',
|
|
162
178
|
'fabric.editor.noResultsFound': 'Sin resultados',
|
|
163
179
|
'fabric.editor.noSearchResults': 'No hay resultados de búsqueda',
|
|
164
180
|
'fabric.editor.normal': 'Texto normal',
|
|
@@ -179,6 +195,7 @@ export default {
|
|
|
179
195
|
'fabric.editor.placeholderTextPlaceholder': 'Añadir texto de marcador de posición',
|
|
180
196
|
'fabric.editor.quickInsert': 'Inserción rápida',
|
|
181
197
|
'fabric.editor.redo': 'Rehacer',
|
|
198
|
+
'fabric.editor.removeImageBorder': 'Eliminar borde',
|
|
182
199
|
'fabric.editor.replace': 'Reemplazar',
|
|
183
200
|
'fabric.editor.replaceAll': 'Reemplazar todo',
|
|
184
201
|
'fabric.editor.replaceWith': 'Reemplazar por',
|
|
@@ -187,6 +204,7 @@ export default {
|
|
|
187
204
|
'fabric.editor.searchResults': '{itemsLength, plural, one {{itemsLength,number} resultado de búsqueda disponible} other {{itemsLength,number} resultados de búsqueda disponibles}}',
|
|
188
205
|
'fabric.editor.selectLanguage': 'Seleccionar lenguaje',
|
|
189
206
|
'fabric.editor.settingsLinks': 'Ir a Preferencias de enlaces',
|
|
207
|
+
'fabric.editor.shortcut': 'Atajo de texto',
|
|
190
208
|
'fabric.editor.single': 'Una sola columna',
|
|
191
209
|
'fabric.editor.statusPlaceholder': 'Establecer un estado',
|
|
192
210
|
'fabric.editor.story': 'Historia',
|
|
@@ -208,9 +226,17 @@ export default {
|
|
|
208
226
|
'fabric.editor.threeColumns': 'Tres columnas',
|
|
209
227
|
'fabric.editor.threeColumnsWithSidebars': 'Tres columnas con barras laterales',
|
|
210
228
|
'fabric.editor.toolbarLabel': 'Barra de herramientas del editor',
|
|
211
|
-
'fabric.editor.toolbarMediaTitle': '
|
|
229
|
+
'fabric.editor.toolbarMediaTitle': 'Añadir imagen, vídeo o archivo',
|
|
212
230
|
'fabric.editor.twoColumns': 'Dos columnas',
|
|
213
|
-
'fabric.editor.
|
|
231
|
+
'fabric.editor.typeAhead.popupLabel': 'Resultados de escritura predictiva',
|
|
232
|
+
'fabric.editor.typeAhead.quickInsertInputLabel': 'Comienza a escribir para buscar o filtrar opciones de atajos de teclado',
|
|
233
|
+
'fabric.editor.typeAhead.quickInsertPopupLabel': 'Atajos de teclado para inserciones y formato',
|
|
234
|
+
'fabric.editor.typeahead.emojiInputLabel': 'Comienza a escribir para buscar o filtrar opciones de emoticonos',
|
|
235
|
+
'fabric.editor.typeahead.emojiListItemLabel': 'Texto del atajo de teclado para el emoticono {name}: {shortcut}',
|
|
236
|
+
'fabric.editor.typeahead.emojiPopupLabel': 'Atajos de teclado para emoticonos',
|
|
237
|
+
'fabric.editor.typeahead.mentionInputLabel': 'Comienza a escribir para buscar usuarios que etiquetar',
|
|
238
|
+
'fabric.editor.typeahead.mentionPopupLabel': 'Usuarios a los que puedes etiquetar',
|
|
239
|
+
'fabric.editor.typeahead.metionListItemLabel': 'Usuario {name} @{shortName}',
|
|
214
240
|
'fabric.editor.unableToOpenLink': 'No se puede abrir este enlace',
|
|
215
241
|
'fabric.editor.underline': 'Subrayado',
|
|
216
242
|
'fabric.editor.undo': 'Deshacer',
|
|
@@ -224,5 +250,6 @@ export default {
|
|
|
224
250
|
'fabric.editor.warningPanel': 'Panel de advertencias',
|
|
225
251
|
'fabric.editor.warningPanel.description': 'Añadir una nota de precaución en un panel de color',
|
|
226
252
|
'fabric.editor.wrapLeft': 'Ajustar a la izquierda',
|
|
227
|
-
'fabric.editor.wrapRight': 'Ajustar a la derecha'
|
|
253
|
+
'fabric.editor.wrapRight': 'Ajustar a la derecha',
|
|
254
|
+
'fabric.emoji.label': 'Emoji'
|
|
228
255
|
};
|