@univerjs/sheets-ui 0.1.0-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +16 -0
- package/lib/cjs/index.js +21729 -0
- package/lib/cjs/locale/en-US.js +605 -0
- package/lib/cjs/locale/zh-CN.js +442 -0
- package/lib/esm/index.js +21640 -0
- package/lib/esm/locale/en-US.js +584 -0
- package/lib/esm/locale/zh-CN.js +421 -0
- package/lib/index.css +587 -0
- package/lib/types/basics/const/default-univer-sheet-config.d.ts +127 -0
- package/lib/types/basics/const/default-univer-sheet-config.d.ts.map +1 -0
- package/lib/types/basics/const/index.d.ts +3 -0
- package/lib/types/basics/const/index.d.ts.map +1 -0
- package/lib/types/basics/const/plugin-name.d.ts +2 -0
- package/lib/types/basics/const/plugin-name.d.ts.map +1 -0
- package/lib/types/basics/editor/get-editor-object.d.ts +9 -0
- package/lib/types/basics/editor/get-editor-object.d.ts.map +1 -0
- package/lib/types/basics/index.d.ts +3 -0
- package/lib/types/basics/index.d.ts.map +1 -0
- package/lib/types/basics/interfaces/cell.d.ts +6 -0
- package/lib/types/basics/interfaces/cell.d.ts.map +1 -0
- package/lib/types/basics/interfaces/component-config/i-sheet-ui-plugin-config.d.ts +13 -0
- package/lib/types/basics/interfaces/component-config/i-sheet-ui-plugin-config.d.ts.map +1 -0
- package/lib/types/basics/interfaces/component-config/index.d.ts +3 -0
- package/lib/types/basics/interfaces/component-config/index.d.ts.map +1 -0
- package/lib/types/basics/interfaces/component-config/sheet-container-config.d.ts +20 -0
- package/lib/types/basics/interfaces/component-config/sheet-container-config.d.ts.map +1 -0
- package/lib/types/basics/interfaces/component-config/toolbar-config.d.ts +25 -0
- package/lib/types/basics/interfaces/component-config/toolbar-config.d.ts.map +1 -0
- package/lib/types/basics/interfaces/index.d.ts +2 -0
- package/lib/types/basics/interfaces/index.d.ts.map +1 -0
- package/lib/types/commands/commands/__tests__/auto-fill.controller.spec.d.ts +2 -0
- package/lib/types/commands/commands/__tests__/auto-fill.controller.spec.d.ts.map +1 -0
- package/lib/types/commands/commands/__tests__/create-selection-command-test-bed.d.ts +29 -0
- package/lib/types/commands/commands/__tests__/create-selection-command-test-bed.d.ts.map +1 -0
- package/lib/types/commands/commands/__tests__/set-frozen.command.spec.d.ts +2 -0
- package/lib/types/commands/commands/__tests__/set-frozen.command.spec.d.ts.map +1 -0
- package/lib/types/commands/commands/__tests__/set-selections.command.spec.d.ts +2 -0
- package/lib/types/commands/commands/__tests__/set-selections.command.spec.d.ts.map +1 -0
- package/lib/types/commands/commands/auto-fill.command.d.ts +20 -0
- package/lib/types/commands/commands/auto-fill.command.d.ts.map +1 -0
- package/lib/types/commands/commands/clipboard.command.d.ts +12 -0
- package/lib/types/commands/commands/clipboard.command.d.ts.map +1 -0
- package/lib/types/commands/commands/inline-format.command.d.ts +15 -0
- package/lib/types/commands/commands/inline-format.command.d.ts.map +1 -0
- package/lib/types/commands/commands/refill.command.d.ts +3 -0
- package/lib/types/commands/commands/refill.command.d.ts.map +1 -0
- package/lib/types/commands/commands/rename.command.d.ts +3 -0
- package/lib/types/commands/commands/rename.command.d.ts.map +1 -0
- package/lib/types/commands/commands/set-format-painter.command.d.ts +12 -0
- package/lib/types/commands/commands/set-format-painter.command.d.ts.map +1 -0
- package/lib/types/commands/commands/set-frozen.command.d.ts +14 -0
- package/lib/types/commands/commands/set-frozen.command.d.ts.map +1 -0
- package/lib/types/commands/commands/set-scroll.command.d.ts +24 -0
- package/lib/types/commands/commands/set-scroll.command.d.ts.map +1 -0
- package/lib/types/commands/commands/set-selection-frozen.command.d.ts +3 -0
- package/lib/types/commands/commands/set-selection-frozen.command.d.ts.map +1 -0
- package/lib/types/commands/commands/set-selection.command.d.ts +40 -0
- package/lib/types/commands/commands/set-selection.command.d.ts.map +1 -0
- package/lib/types/commands/commands/set-zoom-ratio.command.d.ts +16 -0
- package/lib/types/commands/commands/set-zoom-ratio.command.d.ts.map +1 -0
- package/lib/types/commands/commands/unhide.command.d.ts +3 -0
- package/lib/types/commands/commands/unhide.command.d.ts.map +1 -0
- package/lib/types/commands/operations/activate-cell-edit.operation.d.ts +4 -0
- package/lib/types/commands/operations/activate-cell-edit.operation.d.ts.map +1 -0
- package/lib/types/commands/operations/cell-edit.operation.d.ts +9 -0
- package/lib/types/commands/operations/cell-edit.operation.d.ts.map +1 -0
- package/lib/types/commands/operations/scroll.operation.d.ts +4 -0
- package/lib/types/commands/operations/scroll.operation.d.ts.map +1 -0
- package/lib/types/commands/operations/selection.operation.d.ts +12 -0
- package/lib/types/commands/operations/selection.operation.d.ts.map +1 -0
- package/lib/types/commands/operations/set-editor-resize.operation.d.ts +3 -0
- package/lib/types/commands/operations/set-editor-resize.operation.d.ts.map +1 -0
- package/lib/types/commands/operations/set-format-painter.operation.d.ts +7 -0
- package/lib/types/commands/operations/set-format-painter.operation.d.ts.map +1 -0
- package/lib/types/commands/operations/set-zoom-ratio.operation.d.ts +10 -0
- package/lib/types/commands/operations/set-zoom-ratio.operation.d.ts.map +1 -0
- package/lib/types/common/keys.d.ts +22 -0
- package/lib/types/common/keys.d.ts.map +1 -0
- package/lib/types/components/border-panel/BorderPanel.d.ts +4 -0
- package/lib/types/components/border-panel/BorderPanel.d.ts.map +1 -0
- package/lib/types/components/border-panel/border-line/BorderLine.d.ts +8 -0
- package/lib/types/components/border-panel/border-line/BorderLine.d.ts.map +1 -0
- package/lib/types/components/border-panel/border-line/icons/BorderDashDot.d.ts +3 -0
- package/lib/types/components/border-panel/border-line/icons/BorderDashDot.d.ts.map +1 -0
- package/lib/types/components/border-panel/border-line/icons/BorderDashDotDot.d.ts +3 -0
- package/lib/types/components/border-panel/border-line/icons/BorderDashDotDot.d.ts.map +1 -0
- package/lib/types/components/border-panel/border-line/icons/BorderDashed.d.ts +3 -0
- package/lib/types/components/border-panel/border-line/icons/BorderDashed.d.ts.map +1 -0
- package/lib/types/components/border-panel/border-line/icons/BorderDotted.d.ts +3 -0
- package/lib/types/components/border-panel/border-line/icons/BorderDotted.d.ts.map +1 -0
- package/lib/types/components/border-panel/border-line/icons/BorderHair.d.ts +3 -0
- package/lib/types/components/border-panel/border-line/icons/BorderHair.d.ts.map +1 -0
- package/lib/types/components/border-panel/border-line/icons/BorderMedium.d.ts +3 -0
- package/lib/types/components/border-panel/border-line/icons/BorderMedium.d.ts.map +1 -0
- package/lib/types/components/border-panel/border-line/icons/BorderMediumDashDot.d.ts +3 -0
- package/lib/types/components/border-panel/border-line/icons/BorderMediumDashDot.d.ts.map +1 -0
- package/lib/types/components/border-panel/border-line/icons/BorderMediumDashDotDot.d.ts +3 -0
- package/lib/types/components/border-panel/border-line/icons/BorderMediumDashDotDot.d.ts.map +1 -0
- package/lib/types/components/border-panel/border-line/icons/BorderMediumDashed.d.ts +3 -0
- package/lib/types/components/border-panel/border-line/icons/BorderMediumDashed.d.ts.map +1 -0
- package/lib/types/components/border-panel/border-line/icons/BorderThick.d.ts +3 -0
- package/lib/types/components/border-panel/border-line/icons/BorderThick.d.ts.map +1 -0
- package/lib/types/components/border-panel/border-line/icons/BorderThin.d.ts +3 -0
- package/lib/types/components/border-panel/border-line/icons/BorderThin.d.ts.map +1 -0
- package/lib/types/components/border-panel/index.d.ts +1 -0
- package/lib/types/components/border-panel/index.d.ts.map +1 -0
- package/lib/types/components/border-panel/interface.d.ts +11 -0
- package/lib/types/components/border-panel/interface.d.ts.map +1 -0
- package/lib/types/components/color-picker/index.d.ts +3 -0
- package/lib/types/components/color-picker/index.d.ts.map +1 -0
- package/lib/types/components/color-picker/interface.d.ts +2 -0
- package/lib/types/components/color-picker/interface.d.ts.map +1 -0
- package/lib/types/components/const.d.ts +2 -0
- package/lib/types/components/const.d.ts.map +1 -0
- package/lib/types/components/font-family/FontFamily.d.ts +4 -0
- package/lib/types/components/font-family/FontFamily.d.ts.map +1 -0
- package/lib/types/components/font-family/FontFamilyItem.d.ts +4 -0
- package/lib/types/components/font-family/FontFamilyItem.d.ts.map +1 -0
- package/lib/types/components/font-family/index.d.ts +4 -0
- package/lib/types/components/font-family/index.d.ts.map +1 -0
- package/lib/types/components/font-family/interface.d.ts +10 -0
- package/lib/types/components/font-family/interface.d.ts.map +1 -0
- package/lib/types/components/font-size/FontSize.d.ts +4 -0
- package/lib/types/components/font-size/FontSize.d.ts.map +1 -0
- package/lib/types/components/font-size/index.d.ts +3 -0
- package/lib/types/components/font-size/index.d.ts.map +1 -0
- package/lib/types/components/font-size/interface.d.ts +9 -0
- package/lib/types/components/font-size/interface.d.ts.map +1 -0
- package/lib/types/components/menu-item-input/MenuItemInput.d.ts +4 -0
- package/lib/types/components/menu-item-input/MenuItemInput.d.ts.map +1 -0
- package/lib/types/components/menu-item-input/index.d.ts +3 -0
- package/lib/types/components/menu-item-input/index.d.ts.map +1 -0
- package/lib/types/components/menu-item-input/interface.d.ts +7 -0
- package/lib/types/components/menu-item-input/interface.d.ts.map +1 -0
- package/lib/types/components/range-selector/RangeSelector.d.ts +7 -0
- package/lib/types/components/range-selector/RangeSelector.d.ts.map +1 -0
- package/lib/types/controllers/auto-fill.controller.d.ts +32 -0
- package/lib/types/controllers/auto-fill.controller.d.ts.map +1 -0
- package/lib/types/controllers/auto-height.controller.d.ts +15 -0
- package/lib/types/controllers/auto-height.controller.d.ts.map +1 -0
- package/lib/types/controllers/clipboard/clipboard.controller.d.ts +25 -0
- package/lib/types/controllers/clipboard/clipboard.controller.d.ts.map +1 -0
- package/lib/types/controllers/clipboard/utils.d.ts +36 -0
- package/lib/types/controllers/clipboard/utils.d.ts.map +1 -0
- package/lib/types/controllers/contextmenu/contextmenu.controller.d.ts +20 -0
- package/lib/types/controllers/contextmenu/contextmenu.controller.d.ts.map +1 -0
- package/lib/types/controllers/editor/editing.controller.d.ts +16 -0
- package/lib/types/controllers/editor/editing.controller.d.ts.map +1 -0
- package/lib/types/controllers/editor/end-edit.controller.d.ts +36 -0
- package/lib/types/controllers/editor/end-edit.controller.d.ts.map +1 -0
- package/lib/types/controllers/editor/formula-editor.controller.d.ts +28 -0
- package/lib/types/controllers/editor/formula-editor.controller.d.ts.map +1 -0
- package/lib/types/controllers/editor/initialize-editor.controller.d.ts +13 -0
- package/lib/types/controllers/editor/initialize-editor.controller.d.ts.map +1 -0
- package/lib/types/controllers/editor/start-edit.controller.d.ts +49 -0
- package/lib/types/controllers/editor/start-edit.controller.d.ts.map +1 -0
- package/lib/types/controllers/editor-bridge.controller.d.ts +29 -0
- package/lib/types/controllers/editor-bridge.controller.d.ts.map +1 -0
- package/lib/types/controllers/format-painter/format-painter.controller.d.ts +17 -0
- package/lib/types/controllers/format-painter/format-painter.controller.d.ts.map +1 -0
- package/lib/types/controllers/freeze.controller.d.ts +57 -0
- package/lib/types/controllers/freeze.controller.d.ts.map +1 -0
- package/lib/types/controllers/header-menu.controller.d.ts +27 -0
- package/lib/types/controllers/header-menu.controller.d.ts.map +1 -0
- package/lib/types/controllers/header-move.controller.d.ts +39 -0
- package/lib/types/controllers/header-move.controller.d.ts.map +1 -0
- package/lib/types/controllers/header-resize.controller.d.ts +27 -0
- package/lib/types/controllers/header-resize.controller.d.ts.map +1 -0
- package/lib/types/controllers/header-unhide.controller.d.ts +21 -0
- package/lib/types/controllers/header-unhide.controller.d.ts.map +1 -0
- package/lib/types/controllers/menu/__tests__/create-menu-test-bed.d.ts +7 -0
- package/lib/types/controllers/menu/__tests__/create-menu-test-bed.d.ts.map +1 -0
- package/lib/types/controllers/menu/__tests__/menu.spec.d.ts +2 -0
- package/lib/types/controllers/menu/__tests__/menu.spec.d.ts.map +1 -0
- package/lib/types/controllers/menu/__tests__/row-col.menu.spec.d.ts +2 -0
- package/lib/types/controllers/menu/__tests__/row-col.menu.spec.d.ts.map +1 -0
- package/lib/types/controllers/menu/border.menu.d.ts +5 -0
- package/lib/types/controllers/menu/border.menu.d.ts.map +1 -0
- package/lib/types/controllers/menu/clear.menu.d.ts +6 -0
- package/lib/types/controllers/menu/clear.menu.d.ts.map +1 -0
- package/lib/types/controllers/menu/delete.menu.d.ts +7 -0
- package/lib/types/controllers/menu/delete.menu.d.ts.map +1 -0
- package/lib/types/controllers/menu/insert.menu.d.ts +12 -0
- package/lib/types/controllers/menu/insert.menu.d.ts.map +1 -0
- package/lib/types/controllers/menu/menu.d.ts +79 -0
- package/lib/types/controllers/menu/menu.d.ts.map +1 -0
- package/lib/types/controllers/menu/merge.menu.d.ts +8 -0
- package/lib/types/controllers/menu/merge.menu.d.ts.map +1 -0
- package/lib/types/controllers/menu/sheet.menu.d.ts +10 -0
- package/lib/types/controllers/menu/sheet.menu.d.ts.map +1 -0
- package/lib/types/controllers/move-range.controller.d.ts +11 -0
- package/lib/types/controllers/move-range.controller.d.ts.map +1 -0
- package/lib/types/controllers/navigation/navigation.controller.d.ts +8 -0
- package/lib/types/controllers/navigation/navigation.controller.d.ts.map +1 -0
- package/lib/types/controllers/scroll.controller.d.ts +24 -0
- package/lib/types/controllers/scroll.controller.d.ts.map +1 -0
- package/lib/types/controllers/selection.controller.d.ts +27 -0
- package/lib/types/controllers/selection.controller.d.ts.map +1 -0
- package/lib/types/controllers/sheet-render.controller.d.ts +19 -0
- package/lib/types/controllers/sheet-render.controller.d.ts.map +1 -0
- package/lib/types/controllers/sheet-ui.controller.d.ts +15 -0
- package/lib/types/controllers/sheet-ui.controller.d.ts.map +1 -0
- package/lib/types/controllers/shortcuts/editor.shortcut.d.ts +12 -0
- package/lib/types/controllers/shortcuts/editor.shortcut.d.ts.map +1 -0
- package/lib/types/controllers/shortcuts/operation.shortcut.d.ts +4 -0
- package/lib/types/controllers/shortcuts/operation.shortcut.d.ts.map +1 -0
- package/lib/types/controllers/shortcuts/selection.shortcut.d.ts +24 -0
- package/lib/types/controllers/shortcuts/selection.shortcut.d.ts.map +1 -0
- package/lib/types/controllers/shortcuts/style.shortcut.d.ts +6 -0
- package/lib/types/controllers/shortcuts/style.shortcut.d.ts.map +1 -0
- package/lib/types/controllers/shortcuts/utils.d.ts +9 -0
- package/lib/types/controllers/shortcuts/utils.d.ts.map +1 -0
- package/lib/types/controllers/shortcuts/value.shortcut.d.ts +3 -0
- package/lib/types/controllers/shortcuts/value.shortcut.d.ts.map +1 -0
- package/lib/types/controllers/shortcuts/view.shortcut.d.ts +5 -0
- package/lib/types/controllers/shortcuts/view.shortcut.d.ts.map +1 -0
- package/lib/types/controllers/status-bar.controller.d.ts +16 -0
- package/lib/types/controllers/status-bar.controller.d.ts.map +1 -0
- package/lib/types/controllers/utils/component-tools.d.ts +30 -0
- package/lib/types/controllers/utils/component-tools.d.ts.map +1 -0
- package/lib/types/controllers/zoom.controller.d.ts +24 -0
- package/lib/types/controllers/zoom.controller.d.ts.map +1 -0
- package/lib/types/index.d.ts +26 -0
- package/lib/types/index.d.ts.map +1 -0
- package/lib/types/locale/en-US.d.ts +471 -0
- package/lib/types/locale/en-US.d.ts.map +1 -0
- package/lib/types/locale/index.d.ts +3 -0
- package/lib/types/locale/index.d.ts.map +1 -0
- package/lib/types/locale/zh-CN.d.ts +436 -0
- package/lib/types/locale/zh-CN.d.ts.map +1 -0
- package/lib/types/services/auto-fill/auto-fill.service.d.ts +65 -0
- package/lib/types/services/auto-fill/auto-fill.service.d.ts.map +1 -0
- package/lib/types/services/auto-fill/rules.d.ts +9 -0
- package/lib/types/services/auto-fill/rules.d.ts.map +1 -0
- package/lib/types/services/auto-fill/tools.d.ts +96 -0
- package/lib/types/services/auto-fill/tools.d.ts.map +1 -0
- package/lib/types/services/auto-fill/type.d.ts +54 -0
- package/lib/types/services/auto-fill/type.d.ts.map +1 -0
- package/lib/types/services/clipboard/__tests__/clipboard-service.spec.d.ts +2 -0
- package/lib/types/services/clipboard/__tests__/clipboard-service.spec.d.ts.map +1 -0
- package/lib/types/services/clipboard/__tests__/clipboard-test-bed.d.ts +21 -0
- package/lib/types/services/clipboard/__tests__/clipboard-test-bed.d.ts.map +1 -0
- package/lib/types/services/clipboard/__tests__/mock-clipboard.d.ts +23 -0
- package/lib/types/services/clipboard/__tests__/mock-clipboard.d.ts.map +1 -0
- package/lib/types/services/clipboard/clipboard.service.d.ts +104 -0
- package/lib/types/services/clipboard/clipboard.service.d.ts.map +1 -0
- package/lib/types/services/clipboard/copy-content-cache.d.ts +20 -0
- package/lib/types/services/clipboard/copy-content-cache.d.ts.map +1 -0
- package/lib/types/services/clipboard/html-to-usm/converter.d.ts +27 -0
- package/lib/types/services/clipboard/html-to-usm/converter.d.ts.map +1 -0
- package/lib/types/services/clipboard/html-to-usm/parse-node-style.d.ts +3 -0
- package/lib/types/services/clipboard/html-to-usm/parse-node-style.d.ts.map +1 -0
- package/lib/types/services/clipboard/html-to-usm/paste-plugins/plugin-lark.d.ts +4 -0
- package/lib/types/services/clipboard/html-to-usm/paste-plugins/plugin-lark.d.ts.map +1 -0
- package/lib/types/services/clipboard/html-to-usm/paste-plugins/plugin-word.d.ts +4 -0
- package/lib/types/services/clipboard/html-to-usm/paste-plugins/plugin-word.d.ts.map +1 -0
- package/lib/types/services/clipboard/html-to-usm/paste-plugins/type.d.ts +16 -0
- package/lib/types/services/clipboard/html-to-usm/paste-plugins/type.d.ts.map +1 -0
- package/lib/types/services/clipboard/html-to-usm/utils.d.ts +5 -0
- package/lib/types/services/clipboard/html-to-usm/utils.d.ts.map +1 -0
- package/lib/types/services/clipboard/type.d.ts +120 -0
- package/lib/types/services/clipboard/type.d.ts.map +1 -0
- package/lib/types/services/clipboard/usm-to-html/convertor.d.ts +9 -0
- package/lib/types/services/clipboard/usm-to-html/convertor.d.ts.map +1 -0
- package/lib/types/services/editor/cell-editor-manager.service.d.ts +43 -0
- package/lib/types/services/editor/cell-editor-manager.service.d.ts.map +1 -0
- package/lib/types/services/editor/formula-editor-manager.service.d.ts +30 -0
- package/lib/types/services/editor/formula-editor-manager.service.d.ts.map +1 -0
- package/lib/types/services/editor-bridge.service.d.ts +79 -0
- package/lib/types/services/editor-bridge.service.d.ts.map +1 -0
- package/lib/types/services/format-painter/format-painter.service.d.ts +29 -0
- package/lib/types/services/format-painter/format-painter.service.d.ts.map +1 -0
- package/lib/types/services/mark-selection/mark-selection.service.d.ts +28 -0
- package/lib/types/services/mark-selection/mark-selection.service.d.ts.map +1 -0
- package/lib/types/services/scroll-manager.service.d.ts +38 -0
- package/lib/types/services/scroll-manager.service.d.ts.map +1 -0
- package/lib/types/services/selection/selection-render-model.d.ts +45 -0
- package/lib/types/services/selection/selection-render-model.d.ts.map +1 -0
- package/lib/types/services/selection/selection-render.service.d.ts +165 -0
- package/lib/types/services/selection/selection-render.service.d.ts.map +1 -0
- package/lib/types/services/selection/selection-shape-extension.d.ts +45 -0
- package/lib/types/services/selection/selection-shape-extension.d.ts.map +1 -0
- package/lib/types/services/selection/selection-shape.d.ts +114 -0
- package/lib/types/services/selection/selection-shape.d.ts.map +1 -0
- package/lib/types/services/sheet-bar/sheet-bar.service.d.ts +39 -0
- package/lib/types/services/sheet-bar/sheet-bar.service.d.ts.map +1 -0
- package/lib/types/services/sheet-skeleton-manager.service.d.ts +47 -0
- package/lib/types/services/sheet-skeleton-manager.service.d.ts.map +1 -0
- package/lib/types/services/status-bar.service.d.ts +26 -0
- package/lib/types/services/status-bar.service.d.ts.map +1 -0
- package/lib/types/sheets-ui-plugin.d.ts +13 -0
- package/lib/types/sheets-ui-plugin.d.ts.map +1 -0
- package/lib/types/views/count-bar/CountBar.d.ts +8 -0
- package/lib/types/views/count-bar/CountBar.d.ts.map +1 -0
- package/lib/types/views/count-bar/index.d.ts +2 -0
- package/lib/types/views/count-bar/index.d.ts.map +1 -0
- package/lib/types/views/count-bar/zoom-slider.d.ts +3 -0
- package/lib/types/views/count-bar/zoom-slider.d.ts.map +1 -0
- package/lib/types/views/editor-container/EditorContainer.d.ts +10 -0
- package/lib/types/views/editor-container/EditorContainer.d.ts.map +1 -0
- package/lib/types/views/editor-container/index.d.ts +2 -0
- package/lib/types/views/editor-container/index.d.ts.map +1 -0
- package/lib/types/views/formula-bar/FormulaBar.d.ts +3 -0
- package/lib/types/views/formula-bar/FormulaBar.d.ts.map +1 -0
- package/lib/types/views/formula-bar/index.d.ts +2 -0
- package/lib/types/views/formula-bar/index.d.ts.map +1 -0
- package/lib/types/views/header-menu-shape.d.ts +23 -0
- package/lib/types/views/header-menu-shape.d.ts.map +1 -0
- package/lib/types/views/header-resize-shape.d.ts +27 -0
- package/lib/types/views/header-resize-shape.d.ts.map +1 -0
- package/lib/types/views/header-unhide-shape.d.ts +35 -0
- package/lib/types/views/header-unhide-shape.d.ts.map +1 -0
- package/lib/types/views/operate-container/AutoFillPopupMenu.d.ts +14 -0
- package/lib/types/views/operate-container/AutoFillPopupMenu.d.ts.map +1 -0
- package/lib/types/views/operate-container/OperateContainer.d.ts +3 -0
- package/lib/types/views/operate-container/OperateContainer.d.ts.map +1 -0
- package/lib/types/views/operate-container/index.d.ts +2 -0
- package/lib/types/views/operate-container/index.d.ts.map +1 -0
- package/lib/types/views/sheet-bar/SheetBar.d.ts +3 -0
- package/lib/types/views/sheet-bar/SheetBar.d.ts.map +1 -0
- package/lib/types/views/sheet-bar/sheet-bar-button/SheetBarButton.d.ts +20 -0
- package/lib/types/views/sheet-bar/sheet-bar-button/SheetBarButton.d.ts.map +1 -0
- package/lib/types/views/sheet-bar/sheet-bar-menu/SheetBarMenu.d.ts +14 -0
- package/lib/types/views/sheet-bar/sheet-bar-menu/SheetBarMenu.d.ts.map +1 -0
- package/lib/types/views/sheet-bar/sheet-bar-tabs/SheetBarItem.d.ts +14 -0
- package/lib/types/views/sheet-bar/sheet-bar-tabs/SheetBarItem.d.ts.map +1 -0
- package/lib/types/views/sheet-bar/sheet-bar-tabs/SheetBarTabs.d.ts +5 -0
- package/lib/types/views/sheet-bar/sheet-bar-tabs/SheetBarTabs.d.ts.map +1 -0
- package/lib/types/views/sheet-bar/sheet-bar-tabs/utils/animate.d.ts +29 -0
- package/lib/types/views/sheet-bar/sheet-bar-tabs/utils/animate.d.ts.map +1 -0
- package/lib/types/views/sheet-bar/sheet-bar-tabs/utils/slide-tab-bar.d.ts +142 -0
- package/lib/types/views/sheet-bar/sheet-bar-tabs/utils/slide-tab-bar.d.ts.map +1 -0
- package/lib/types/views/sheet-canvas-view.d.ts +20 -0
- package/lib/types/views/sheet-canvas-view.d.ts.map +1 -0
- package/lib/types/views/sheet-container/SheetContainer.d.ts +11 -0
- package/lib/types/views/sheet-container/SheetContainer.d.ts.map +1 -0
- package/lib/types/views/status-bar/CopyableStatisticItem.d.ts +15 -0
- package/lib/types/views/status-bar/CopyableStatisticItem.d.ts.map +1 -0
- package/lib/types/views/status-bar/StatusBar.d.ts +3 -0
- package/lib/types/views/status-bar/StatusBar.d.ts.map +1 -0
- package/package.json +72 -0
|
@@ -0,0 +1,584 @@
|
|
|
1
|
+
// src/locale/en-US.ts
|
|
2
|
+
var en_US_default = {
|
|
3
|
+
spreadsheetLabel: "Spreadsheet",
|
|
4
|
+
spreadsheetRightLabel: "more Sheets",
|
|
5
|
+
toolbar: {
|
|
6
|
+
undo: "Undo",
|
|
7
|
+
redo: "Redo",
|
|
8
|
+
formatPainter: "Paint format",
|
|
9
|
+
currencyFormat: "Format as currency",
|
|
10
|
+
percentageFormat: "Format as percent",
|
|
11
|
+
numberDecrease: "Decrease decimal places",
|
|
12
|
+
numberIncrease: "Increase decimal places",
|
|
13
|
+
moreFormats: "More formats",
|
|
14
|
+
font: "Font",
|
|
15
|
+
fontSize: "Font size",
|
|
16
|
+
bold: "Bold",
|
|
17
|
+
italic: "Italic",
|
|
18
|
+
strikethrough: "Strikethrough",
|
|
19
|
+
underline: "Underline",
|
|
20
|
+
textColor: {
|
|
21
|
+
main: "Text color",
|
|
22
|
+
right: "Choose color"
|
|
23
|
+
},
|
|
24
|
+
resetColor: "Reset",
|
|
25
|
+
customColor: "CUSTOM",
|
|
26
|
+
alternatingColors: "Alternating colors",
|
|
27
|
+
confirmColor: "OK",
|
|
28
|
+
cancelColor: "Cancel",
|
|
29
|
+
collapse: "Collapse",
|
|
30
|
+
fillColor: {
|
|
31
|
+
main: "Fill color",
|
|
32
|
+
right: "Choose color"
|
|
33
|
+
},
|
|
34
|
+
border: {
|
|
35
|
+
main: "Border",
|
|
36
|
+
right: "Border style"
|
|
37
|
+
},
|
|
38
|
+
mergeCell: {
|
|
39
|
+
main: "Merge cells",
|
|
40
|
+
right: "Choose merge type"
|
|
41
|
+
},
|
|
42
|
+
horizontalAlignMode: {
|
|
43
|
+
main: "Horizontal align",
|
|
44
|
+
right: "Alignment"
|
|
45
|
+
},
|
|
46
|
+
verticalAlignMode: {
|
|
47
|
+
main: "Vertical align",
|
|
48
|
+
right: "Alignment"
|
|
49
|
+
},
|
|
50
|
+
textWrapMode: {
|
|
51
|
+
main: "Text wrap",
|
|
52
|
+
right: "Text wrap mode"
|
|
53
|
+
},
|
|
54
|
+
textRotateMode: {
|
|
55
|
+
main: "Text rotate",
|
|
56
|
+
right: "Text rotate mode"
|
|
57
|
+
},
|
|
58
|
+
freezeTopRow: "Freeze top row",
|
|
59
|
+
sortAndFilter: "Sort and filter",
|
|
60
|
+
findAndReplace: "Find and replace",
|
|
61
|
+
sum: "SUM",
|
|
62
|
+
autoSum: "Auto SUM",
|
|
63
|
+
moreFunction: "More functions",
|
|
64
|
+
conditionalFormat: "Conditional format",
|
|
65
|
+
comment: "Comment",
|
|
66
|
+
pivotTable: "Pivot Table",
|
|
67
|
+
chart: "Chart",
|
|
68
|
+
screenshot: "Screenshot",
|
|
69
|
+
splitColumn: "Split text",
|
|
70
|
+
insertImage: "Insert image",
|
|
71
|
+
insertLink: "Insert link",
|
|
72
|
+
dataValidation: "Data validation",
|
|
73
|
+
protection: "Protect the sheet",
|
|
74
|
+
clearText: "Clear color",
|
|
75
|
+
noColorSelectedText: "No color is selected",
|
|
76
|
+
toolMore: "More",
|
|
77
|
+
toolLess: "Less",
|
|
78
|
+
toolClose: "Close",
|
|
79
|
+
toolMoreTip: "More features",
|
|
80
|
+
moreOptions: "More options",
|
|
81
|
+
cellFormat: "Cell format config",
|
|
82
|
+
print: "Print",
|
|
83
|
+
borderMethod: {
|
|
84
|
+
top: "Upper frame line",
|
|
85
|
+
bottom: "Lower frame line",
|
|
86
|
+
left: "Left frame line",
|
|
87
|
+
right: "Right frame line"
|
|
88
|
+
},
|
|
89
|
+
more: "More"
|
|
90
|
+
},
|
|
91
|
+
defaultFmt: {
|
|
92
|
+
Automatic: {
|
|
93
|
+
text: "Automatic",
|
|
94
|
+
value: "General",
|
|
95
|
+
example: ""
|
|
96
|
+
},
|
|
97
|
+
Number: {
|
|
98
|
+
text: "Number",
|
|
99
|
+
value: "##0.00",
|
|
100
|
+
example: "1000.12"
|
|
101
|
+
},
|
|
102
|
+
Percent: {
|
|
103
|
+
text: "Percent",
|
|
104
|
+
value: "#0.00%",
|
|
105
|
+
example: "12.21%"
|
|
106
|
+
},
|
|
107
|
+
PlainText: {
|
|
108
|
+
text: "Plain text",
|
|
109
|
+
value: "@",
|
|
110
|
+
example: ""
|
|
111
|
+
},
|
|
112
|
+
Scientific: {
|
|
113
|
+
text: "Scientific",
|
|
114
|
+
value: "0.00E+00",
|
|
115
|
+
example: "1.01E+5"
|
|
116
|
+
},
|
|
117
|
+
Accounting: {
|
|
118
|
+
text: "Accounting",
|
|
119
|
+
value: "\xA5(0.00)",
|
|
120
|
+
example: "\xA5(1200.09)"
|
|
121
|
+
},
|
|
122
|
+
Thousand: {
|
|
123
|
+
text: "Ten Thousand",
|
|
124
|
+
value: "w",
|
|
125
|
+
example: "1\u4EBF2000\u4E072500"
|
|
126
|
+
},
|
|
127
|
+
Currency: {
|
|
128
|
+
text: "Currency",
|
|
129
|
+
value: "\xA50.00",
|
|
130
|
+
example: "\xA51200.09"
|
|
131
|
+
},
|
|
132
|
+
Digit: {
|
|
133
|
+
text: "\u4E07\u51432\u4F4D\u5C0F\u6570",
|
|
134
|
+
value: "w0.00",
|
|
135
|
+
example: "2\u4E072500.55"
|
|
136
|
+
},
|
|
137
|
+
Date: {
|
|
138
|
+
text: "Date",
|
|
139
|
+
value: "yyyy-MM-dd",
|
|
140
|
+
example: "2017-11-29"
|
|
141
|
+
},
|
|
142
|
+
Time: { text: "Time", value: "hh:mm AM/PM", example: "3:00 PM" },
|
|
143
|
+
Time24H: { text: "Time 24H", value: "hh:mm", example: "15:00" },
|
|
144
|
+
DateTime: { text: "Date time", value: "yyyy-MM-dd hh:mm AM/PM", example: "2017-11-29 3:00 PM" },
|
|
145
|
+
DateTime24H: { text: "Date time 24H", value: "yyyy-MM-dd hh:mm", example: "2017-11-29 15:00" },
|
|
146
|
+
CustomFormats: { text: "Custom Formats", value: "fmtOtherSelf", example: "" }
|
|
147
|
+
},
|
|
148
|
+
format: {
|
|
149
|
+
moreCurrency: "More currency formats",
|
|
150
|
+
moreDateTime: "More date and time formats",
|
|
151
|
+
moreNumber: "More number formats",
|
|
152
|
+
titleCurrency: "Currency formats",
|
|
153
|
+
decimalPlaces: "Decimal places",
|
|
154
|
+
titleDateTime: "Date and time formats",
|
|
155
|
+
titleNumber: "Number formats"
|
|
156
|
+
},
|
|
157
|
+
fontFamily: {
|
|
158
|
+
TimesNewRoman: "Times New Roman",
|
|
159
|
+
Arial: "Arial",
|
|
160
|
+
Tahoma: "Tahoma",
|
|
161
|
+
Verdana: "Verdana",
|
|
162
|
+
MicrosoftYaHei: "Microsoft YaHei",
|
|
163
|
+
SimSun: "SimSun",
|
|
164
|
+
SimHei: "SimHei",
|
|
165
|
+
Kaiti: "Kaiti",
|
|
166
|
+
FangSong: "FangSong",
|
|
167
|
+
NSimSun: "NSimSun",
|
|
168
|
+
STXinwei: "STXinwei",
|
|
169
|
+
STXingkai: "STXingkai",
|
|
170
|
+
STLiti: "STLiti",
|
|
171
|
+
HanaleiFill: "HanaleiFill",
|
|
172
|
+
Anton: "Anton",
|
|
173
|
+
Pacifico: "Pacifico"
|
|
174
|
+
},
|
|
175
|
+
print: {
|
|
176
|
+
normalBtn: "Normal",
|
|
177
|
+
layoutBtn: "Page Layout",
|
|
178
|
+
pageBtn: "Page\u2002break\u2002preview",
|
|
179
|
+
menuItemPrint: "Print (Ctrl+P)",
|
|
180
|
+
menuItemAreas: "Print areas",
|
|
181
|
+
menuItemRows: "Print title rows",
|
|
182
|
+
menuItemColumns: "Print title columns"
|
|
183
|
+
},
|
|
184
|
+
align: {
|
|
185
|
+
left: "left",
|
|
186
|
+
center: "center",
|
|
187
|
+
right: "right",
|
|
188
|
+
top: "top",
|
|
189
|
+
middle: "middle",
|
|
190
|
+
bottom: "bottom"
|
|
191
|
+
},
|
|
192
|
+
dateFmtList: [
|
|
193
|
+
{
|
|
194
|
+
name: "1930-08-05",
|
|
195
|
+
value: "yyyy-MM-dd"
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
name: "1930/8/5",
|
|
199
|
+
value: "yyyy/MM/dd"
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
name: "08-05",
|
|
203
|
+
value: "MM-dd"
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
name: "8-5",
|
|
207
|
+
value: "M-d"
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
name: "13:30:30",
|
|
211
|
+
value: "h:mm:ss"
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
name: "13:30",
|
|
215
|
+
value: "h:mm"
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
name: "PM 01:30",
|
|
219
|
+
value: "AM/PM hh:mm"
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
name: "PM 1:30",
|
|
223
|
+
value: "AM/PM h:mm"
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
name: "PM 1:30:30",
|
|
227
|
+
value: "AM/PM h:mm:ss"
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
name: "08-05 PM 01:30",
|
|
231
|
+
value: "MM-dd AM/PM hh:mm"
|
|
232
|
+
}
|
|
233
|
+
],
|
|
234
|
+
numFmtList: [
|
|
235
|
+
{
|
|
236
|
+
name: "1235",
|
|
237
|
+
value: "0"
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
name: "1234.56",
|
|
241
|
+
value: "0.00"
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
name: "1,235",
|
|
245
|
+
value: "#,##0"
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
name: "1,234.56",
|
|
249
|
+
value: "#,##0.00"
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
name: "1,235",
|
|
253
|
+
value: "#,##0_);(#,##0)"
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
name: "1,235",
|
|
257
|
+
value: "#,##0_);[Red](#,##0)"
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
name: "1,234.56",
|
|
261
|
+
value: "#,##0.00_);(#,##0.00)"
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
name: "1,234.56",
|
|
265
|
+
value: "#,##0.00_);[Red](#,##0.00)"
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
name: "$1,235",
|
|
269
|
+
value: "$#,##0_);($#,##0)"
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
name: "$1,235",
|
|
273
|
+
value: "$#,##0_);[Red]($#,##0)"
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
name: "$1,234.56",
|
|
277
|
+
value: "$#,##0.00_);($#,##0.00)"
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
name: "$1,234.56",
|
|
281
|
+
value: "$#,##0.00_);[Red]($#,##0.00)"
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
name: "1234.56",
|
|
285
|
+
value: "@"
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
name: "123456%",
|
|
289
|
+
value: "0%"
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
name: "123456.00%",
|
|
293
|
+
value: "0.00%"
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
name: "1.23E+03",
|
|
297
|
+
value: "0.00E+00"
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
name: "1.2E+3",
|
|
301
|
+
value: "##0.0E+0"
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
name: "1234 5/9",
|
|
305
|
+
value: "# ?/?"
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
name: "1234 14/25",
|
|
309
|
+
value: "# ??/??"
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
name: "$ 1,235",
|
|
313
|
+
value: '_($* #,##0_);_(...($* "-"_);_(@_)'
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
name: "1,235",
|
|
317
|
+
value: '_(* #,##0_);_(*..._(* "-"_);_(@_)'
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
name: "$ 1,234.56",
|
|
321
|
+
// "value": '_($* #,##0.00_)...* "-"??_);_(@_)'
|
|
322
|
+
value: '_($* #,##0.00_);_(...($* "-"_);_(@_)'
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
name: "1,234.56",
|
|
326
|
+
value: '_(* #,##0.00_);...* "-"??_);_(@_)'
|
|
327
|
+
}
|
|
328
|
+
],
|
|
329
|
+
button: {
|
|
330
|
+
confirm: "OK",
|
|
331
|
+
cancel: "Cancel",
|
|
332
|
+
close: "Close",
|
|
333
|
+
update: "Update",
|
|
334
|
+
delete: "Delete",
|
|
335
|
+
insert: "Insert",
|
|
336
|
+
prevPage: "Previous",
|
|
337
|
+
nextPage: "Next",
|
|
338
|
+
total: "total:"
|
|
339
|
+
},
|
|
340
|
+
punctuation: {
|
|
341
|
+
tab: "Tab",
|
|
342
|
+
semicolon: "semicolond",
|
|
343
|
+
comma: "comma",
|
|
344
|
+
space: "space"
|
|
345
|
+
},
|
|
346
|
+
colorPicker: {
|
|
347
|
+
collapse: "Collapse",
|
|
348
|
+
customColor: "CUSTOM",
|
|
349
|
+
change: "Change",
|
|
350
|
+
confirmColor: "OK",
|
|
351
|
+
cancelColor: "Cancel"
|
|
352
|
+
},
|
|
353
|
+
borderLine: {
|
|
354
|
+
borderTop: "borderTop",
|
|
355
|
+
borderBottom: "borderBottom",
|
|
356
|
+
borderLeft: "borderLeft",
|
|
357
|
+
borderRight: "borderRight",
|
|
358
|
+
borderNone: "borderNone",
|
|
359
|
+
borderAll: "borderAll",
|
|
360
|
+
borderOutside: "borderOutside",
|
|
361
|
+
borderInside: "borderInside",
|
|
362
|
+
borderHorizontal: "borderHorizontal",
|
|
363
|
+
borderVertical: "borderVertical",
|
|
364
|
+
borderColor: "borderColor",
|
|
365
|
+
borderSize: "borderSize",
|
|
366
|
+
borderType: "borderType"
|
|
367
|
+
},
|
|
368
|
+
merge: {
|
|
369
|
+
all: "Merge all",
|
|
370
|
+
vertical: "Vertical merge",
|
|
371
|
+
horizontal: "Horizontal merge",
|
|
372
|
+
cancel: "Cancel merge",
|
|
373
|
+
overlappingError: "Cannot merge overlapping areas",
|
|
374
|
+
partiallyError: "Cannot perform this operation on partially merged cells"
|
|
375
|
+
},
|
|
376
|
+
textWrap: {
|
|
377
|
+
overflow: "Overflow",
|
|
378
|
+
wrap: "Wrap",
|
|
379
|
+
clip: "Clip"
|
|
380
|
+
},
|
|
381
|
+
textRotate: {
|
|
382
|
+
none: "None",
|
|
383
|
+
angleUp: "Tilt Up",
|
|
384
|
+
angleDown: "Tilt Down",
|
|
385
|
+
vertical: "Stack Vertically",
|
|
386
|
+
rotationUp: "Rotate Up",
|
|
387
|
+
rotationDown: "Rotate Down"
|
|
388
|
+
},
|
|
389
|
+
sheetConfig: {
|
|
390
|
+
delete: "Delete",
|
|
391
|
+
copy: "Copy",
|
|
392
|
+
rename: "Rename",
|
|
393
|
+
changeColor: "Change color",
|
|
394
|
+
hide: "Hide",
|
|
395
|
+
unhide: "Unhide",
|
|
396
|
+
moveLeft: "Move left",
|
|
397
|
+
moveRight: "Move right",
|
|
398
|
+
resetColor: "Reset color",
|
|
399
|
+
cancelText: "Cancel",
|
|
400
|
+
chooseText: "Confirm color",
|
|
401
|
+
tipNameRepeat: "The name of the tab page cannot be repeated! Please revise",
|
|
402
|
+
noMoreSheet: "The workbook contains at least one visual worksheet. To delete the selected worksheet, please insert a new worksheet or show a hidden worksheet.",
|
|
403
|
+
confirmDelete: "Are you sure to delete",
|
|
404
|
+
redoDelete: "Can be undo by Ctrl+Z",
|
|
405
|
+
noHide: "Can't hide, at least keep one sheet tag",
|
|
406
|
+
chartEditNoOpt: "This operation is not allowed in chart editing mode!",
|
|
407
|
+
sheetNameSpecCharError: `The name cannot contain:[ ] : ? * / ' "`,
|
|
408
|
+
sheetNameCannotIsEmptyError: "The sheet name cannot be empty"
|
|
409
|
+
},
|
|
410
|
+
rightClick: {
|
|
411
|
+
copy: "Copy",
|
|
412
|
+
copyAs: "Copy as",
|
|
413
|
+
cut: "Cut",
|
|
414
|
+
paste: "Paste",
|
|
415
|
+
pasteSpecial: "Paste Special",
|
|
416
|
+
pasteValue: "Paste Value",
|
|
417
|
+
pasteFormat: "Paste Format",
|
|
418
|
+
pasteColWidth: "Paste Column Width",
|
|
419
|
+
pasteBesidesBorder: "Paste Besides Border Styles",
|
|
420
|
+
insert: "Insert",
|
|
421
|
+
insertRow: "InsertRow",
|
|
422
|
+
insertColumn: "InsertColumn",
|
|
423
|
+
delete: "Delete",
|
|
424
|
+
deleteCell: "Delete cell",
|
|
425
|
+
insertCell: "Insert cell",
|
|
426
|
+
deleteSelected: "Delete selected ",
|
|
427
|
+
hide: "Hide",
|
|
428
|
+
hideSelected: "Hide selected ",
|
|
429
|
+
showHide: "Show hidden ",
|
|
430
|
+
toTopAdd: "Towards Top Add",
|
|
431
|
+
toBottomAdd: "Towards Bottom Add",
|
|
432
|
+
toLeftAdd: "Towards Left Add",
|
|
433
|
+
toRightAdd: "Towards Right Add",
|
|
434
|
+
deleteSelectedRow: "Delete selected row",
|
|
435
|
+
deleteSelectedColumn: "Delete selected column",
|
|
436
|
+
hideSelectedRow: "Hide selected row",
|
|
437
|
+
showHideRow: "Show selected row",
|
|
438
|
+
rowHeight: "Row height",
|
|
439
|
+
hideSelectedColumn: "Hide selected column",
|
|
440
|
+
showHideColumn: "Show hide column",
|
|
441
|
+
columnWidth: "Column width",
|
|
442
|
+
to: "Towards",
|
|
443
|
+
left: "Left",
|
|
444
|
+
right: "Right",
|
|
445
|
+
top: "Top",
|
|
446
|
+
bottom: "Bottom",
|
|
447
|
+
moveLeft: "Move left",
|
|
448
|
+
moveUp: "Move up",
|
|
449
|
+
moveRight: "Move right",
|
|
450
|
+
moveDown: "Move down",
|
|
451
|
+
add: "Add",
|
|
452
|
+
row: "Row",
|
|
453
|
+
column: "Column",
|
|
454
|
+
width: "Width",
|
|
455
|
+
height: "Height",
|
|
456
|
+
number: "Number",
|
|
457
|
+
confirm: "Confirm",
|
|
458
|
+
orderAZ: "A-Z order",
|
|
459
|
+
orderZA: "Z-A order",
|
|
460
|
+
clearSelection: "Clear",
|
|
461
|
+
clearContent: "Clear Contents",
|
|
462
|
+
clearFormat: "Clear Formats",
|
|
463
|
+
clearAll: "Clear All",
|
|
464
|
+
matrix: "Matrix operation",
|
|
465
|
+
sortSelection: "Sort",
|
|
466
|
+
filterSelection: "Filter",
|
|
467
|
+
chartGeneration: "Create chart",
|
|
468
|
+
firstLineTitle: "first line title",
|
|
469
|
+
untitled: "untitled",
|
|
470
|
+
array1: "One-dimensional array",
|
|
471
|
+
array2: "Two-dimensional array",
|
|
472
|
+
array3: "Multidimensional Arrays",
|
|
473
|
+
diagonal: "Diagonal",
|
|
474
|
+
antiDiagonal: "Anti-diagonal",
|
|
475
|
+
diagonalOffset: "Diagonal offset",
|
|
476
|
+
offset: "Offset",
|
|
477
|
+
boolean: "Boolean",
|
|
478
|
+
flip: "Flip",
|
|
479
|
+
upAndDown: "Up and down",
|
|
480
|
+
leftAndRight: "Left and right",
|
|
481
|
+
clockwise: "Clockwise",
|
|
482
|
+
counterclockwise: "Counterclockwise",
|
|
483
|
+
transpose: "Transpose",
|
|
484
|
+
matrixCalculation: "Matrix calculation",
|
|
485
|
+
plus: "Plus",
|
|
486
|
+
minus: "Minus",
|
|
487
|
+
multiply: "Multiply",
|
|
488
|
+
divided: "Divided",
|
|
489
|
+
power: "Power",
|
|
490
|
+
root: "Root",
|
|
491
|
+
log: "Log",
|
|
492
|
+
delete0: "Delete 0 values at both ends",
|
|
493
|
+
removeDuplicate: "Remove duplicate values",
|
|
494
|
+
byRow: "By row",
|
|
495
|
+
byCol: "By column",
|
|
496
|
+
generateNewMatrix: "Generate new matrix",
|
|
497
|
+
fitContent: "Fit for data",
|
|
498
|
+
freeze: "Freeze",
|
|
499
|
+
freezeCol: "Freeze to this column",
|
|
500
|
+
freezeRow: "Freeze to this row",
|
|
501
|
+
cancelFreeze: "Cancel freeze"
|
|
502
|
+
},
|
|
503
|
+
info: {
|
|
504
|
+
tooltip: "Tooltip",
|
|
505
|
+
notChangeMerge: "You cannot make partial changes to the merged cells",
|
|
506
|
+
detailUpdate: "New opened",
|
|
507
|
+
detailSave: "Local cache restored",
|
|
508
|
+
row: "",
|
|
509
|
+
column: "",
|
|
510
|
+
loading: "Loading...",
|
|
511
|
+
copy: "Copy",
|
|
512
|
+
return: "Exit",
|
|
513
|
+
rename: "Rename",
|
|
514
|
+
tips: "Rename",
|
|
515
|
+
noName: "Untitled spreadsheet",
|
|
516
|
+
wait: "waiting for update",
|
|
517
|
+
add: "Add",
|
|
518
|
+
addLast: "more rows at bottom",
|
|
519
|
+
backTop: "Back to the top",
|
|
520
|
+
// eslint-disable-next-line no-template-curly-in-string
|
|
521
|
+
pageInfo: "Total ${total}\uFF0C${totalPage} page\uFF0Ccurrent ${currentPage}",
|
|
522
|
+
nextPage: "Next",
|
|
523
|
+
tipInputNumber: "Please enter the number",
|
|
524
|
+
tipInputNumberLimit: "The increase range is limited to 1-100",
|
|
525
|
+
tipRowHeightLimit: "Row height must be between 0 ~ 545",
|
|
526
|
+
tipColumnWidthLimit: "The column width must be between 0 ~ 2038",
|
|
527
|
+
// eslint-disable-next-line no-template-curly-in-string
|
|
528
|
+
pageInfoFull: "Total ${total}\uFF0C${totalPage} page\uFF0CAll data displayed"
|
|
529
|
+
},
|
|
530
|
+
clipboard: {
|
|
531
|
+
paste: {
|
|
532
|
+
exceedMaxCells: "The number of cells pasted exceeds the maximum number of cells"
|
|
533
|
+
}
|
|
534
|
+
},
|
|
535
|
+
statusbar: {
|
|
536
|
+
sum: "sum",
|
|
537
|
+
average: "average",
|
|
538
|
+
min: "min",
|
|
539
|
+
max: "max",
|
|
540
|
+
count: "count",
|
|
541
|
+
clickToCopy: "click to copy",
|
|
542
|
+
copied: "copied!"
|
|
543
|
+
},
|
|
544
|
+
autoFill: {
|
|
545
|
+
copy: "Copy Cell",
|
|
546
|
+
series: "Fill Series",
|
|
547
|
+
formatOnly: "Format Only",
|
|
548
|
+
noFormat: "No Format"
|
|
549
|
+
},
|
|
550
|
+
rangeSelector: {
|
|
551
|
+
placeholder: "Select range or input value",
|
|
552
|
+
tooltip: "Select range"
|
|
553
|
+
},
|
|
554
|
+
shortcut: {
|
|
555
|
+
sheet: {
|
|
556
|
+
"zoom-in": "Zoom in",
|
|
557
|
+
"zoom-out": "Zoom out",
|
|
558
|
+
"reset-zoom": "Reset zoom level",
|
|
559
|
+
"select-below-cell": "Select the cell below",
|
|
560
|
+
"select-up-cell": "Select the cell above",
|
|
561
|
+
"select-left-cell": "Select the left cell",
|
|
562
|
+
"select-right-cell": "Select the right cell",
|
|
563
|
+
"select-next-cell": "Select the next cell",
|
|
564
|
+
"select-previous-cell": "Select the previous cell",
|
|
565
|
+
"select-up-value-cell": "Select the cell above that has value",
|
|
566
|
+
"select-below-value-cell": "Select the cell below that has value",
|
|
567
|
+
"select-left-value-cell": "Select the cell left that has value",
|
|
568
|
+
"select-right-value-cell": "Select the cell right that has value",
|
|
569
|
+
"expand-selection-down": "Expand selection down",
|
|
570
|
+
"expand-selection-up": "Expand selection up",
|
|
571
|
+
"expand-selection-left": "Expand selection left",
|
|
572
|
+
"expand-selection-right": "Expand selection right",
|
|
573
|
+
"expand-selection-to-left-gap": "Expand selection to the left gap",
|
|
574
|
+
"expand-selection-to-below-gap": "Expand selection to the below gap",
|
|
575
|
+
"expand-selection-to-right-gap": "Expand selection to the right gap",
|
|
576
|
+
"expand-selection-to-up-gap": "Expand selection to the up gap",
|
|
577
|
+
"select-all": "Select all"
|
|
578
|
+
}
|
|
579
|
+
},
|
|
580
|
+
"sheet-view": "Sheet View"
|
|
581
|
+
};
|
|
582
|
+
export {
|
|
583
|
+
en_US_default as default
|
|
584
|
+
};
|