@univerjs/ui 0.17.0 → 0.18.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.
Files changed (172) hide show
  1. package/lib/cjs/facade.js +1 -1
  2. package/lib/cjs/index.js +377 -43
  3. package/lib/cjs/locale/ca-ES.js +1 -1
  4. package/lib/cjs/locale/en-US.js +1 -1
  5. package/lib/cjs/locale/es-ES.js +1 -1
  6. package/lib/cjs/locale/fa-IR.js +1 -1
  7. package/lib/cjs/locale/fr-FR.js +1 -1
  8. package/lib/cjs/locale/ja-JP.js +1 -1
  9. package/lib/cjs/locale/ko-KR.js +1 -1
  10. package/lib/cjs/locale/ru-RU.js +1 -1
  11. package/lib/cjs/locale/sk-SK.js +1 -1
  12. package/lib/cjs/locale/vi-VN.js +1 -1
  13. package/lib/cjs/locale/zh-CN.js +1 -1
  14. package/lib/cjs/locale/zh-TW.js +1 -1
  15. package/lib/es/facade.js +1 -391
  16. package/lib/es/index.js +378 -12224
  17. package/lib/es/locale/ca-ES.js +1 -85
  18. package/lib/es/locale/en-US.js +1 -85
  19. package/lib/es/locale/es-ES.js +1 -85
  20. package/lib/es/locale/fa-IR.js +1 -85
  21. package/lib/es/locale/fr-FR.js +1 -85
  22. package/lib/es/locale/ja-JP.js +1 -85
  23. package/lib/es/locale/ko-KR.js +1 -85
  24. package/lib/es/locale/ru-RU.js +1 -85
  25. package/lib/es/locale/sk-SK.js +1 -85
  26. package/lib/es/locale/vi-VN.js +1 -85
  27. package/lib/es/locale/zh-CN.js +1 -85
  28. package/lib/es/locale/zh-TW.js +1 -85
  29. package/lib/facade.js +1 -391
  30. package/lib/index.css +1662 -1
  31. package/lib/index.js +378 -12224
  32. package/lib/locale/ca-ES.js +1 -85
  33. package/lib/locale/en-US.js +1 -85
  34. package/lib/locale/es-ES.js +1 -85
  35. package/lib/locale/fa-IR.js +1 -85
  36. package/lib/locale/fr-FR.js +1 -85
  37. package/lib/locale/ja-JP.js +1 -85
  38. package/lib/locale/ko-KR.js +1 -85
  39. package/lib/locale/ru-RU.js +1 -85
  40. package/lib/locale/sk-SK.js +1 -85
  41. package/lib/locale/vi-VN.js +1 -85
  42. package/lib/locale/zh-CN.js +1 -85
  43. package/lib/locale/zh-TW.js +1 -85
  44. package/lib/types/commands/operations/toggle-shortcut-panel.operation.d.ts +16 -1
  45. package/lib/types/common/component-manager.d.ts +17 -1
  46. package/lib/types/common/lifecycle.d.ts +16 -1
  47. package/lib/types/common/menu-hidden-observable.d.ts +16 -1
  48. package/lib/types/common/menu-merge-configs.d.ts +16 -1
  49. package/lib/types/components/custom-label/CustomLabel.d.ts +18 -3
  50. package/lib/types/components/font-family/FontFamily.d.ts +16 -1
  51. package/lib/types/components/font-family/interface.d.ts +17 -2
  52. package/lib/types/components/font-size/FontSize.d.ts +16 -1
  53. package/lib/types/components/font-size/interface.d.ts +17 -2
  54. package/lib/types/components/heading-item/index.d.ts +16 -1
  55. package/lib/types/components/hooks/layout.d.ts +16 -1
  56. package/lib/types/components/hooks/locale.d.ts +15 -0
  57. package/lib/types/components/hooks/update-effect.d.ts +15 -0
  58. package/lib/types/components/hooks/use-click-out-side.d.ts +16 -1
  59. package/lib/types/components/menu/common/hook.d.ts +16 -1
  60. package/lib/types/components/menu/desktop/DesignTinyMenuGroup.d.ts +30 -0
  61. package/lib/types/components/menu/desktop/TinyMenuGroup.d.ts +17 -2
  62. package/lib/types/components/menu/mobile/MobileMenu.d.ts +20 -3
  63. package/lib/types/components/menu/mobile/MobileMenu.stories.d.ts +16 -1
  64. package/lib/types/components/menu/types.d.ts +29 -0
  65. package/lib/types/components/notification/Notification.d.ts +17 -1
  66. package/lib/types/components/notification/Notification.stories.d.ts +16 -1
  67. package/lib/types/components/slider/Slider.stories.d.ts +16 -1
  68. package/lib/types/config/config.d.ts +18 -3
  69. package/lib/types/controllers/error/error.controller.d.ts +15 -0
  70. package/lib/types/controllers/menus/menus.d.ts +17 -2
  71. package/lib/types/controllers/shared-shortcut.controller.d.ts +17 -1
  72. package/lib/types/controllers/shortcut-display/menu.d.ts +16 -1
  73. package/lib/types/controllers/shortcut-display/shortcut-panel.controller.d.ts +15 -0
  74. package/lib/types/controllers/ui/ui-desktop.controller.d.ts +18 -2
  75. package/lib/types/controllers/ui/ui-mobile.controller.d.ts +25 -4
  76. package/lib/types/controllers/ui/ui-shared.controller.d.ts +19 -3
  77. package/lib/types/controllers/ui/ui.controller.d.ts +17 -2
  78. package/lib/types/facade/f-enum.d.ts +15 -0
  79. package/lib/types/facade/f-hooks.d.ts +16 -1
  80. package/lib/types/facade/f-menu-builder.d.ts +17 -1
  81. package/lib/types/facade/f-shortcut.d.ts +17 -1
  82. package/lib/types/facade/f-univer.d.ts +21 -4
  83. package/lib/types/index.d.ts +1 -2
  84. package/lib/types/locale/ca-ES.d.ts +16 -1
  85. package/lib/types/locale/es-ES.d.ts +16 -1
  86. package/lib/types/locale/fa-IR.d.ts +16 -1
  87. package/lib/types/locale/fr-FR.d.ts +16 -1
  88. package/lib/types/locale/ja-JP.d.ts +16 -1
  89. package/lib/types/locale/ko-KR.d.ts +16 -1
  90. package/lib/types/locale/ru-RU.d.ts +16 -1
  91. package/lib/types/locale/sk-SK.d.ts +16 -1
  92. package/lib/types/locale/vi-VN.d.ts +16 -1
  93. package/lib/types/locale/zh-CN.d.ts +16 -1
  94. package/lib/types/locale/zh-TW.d.ts +16 -1
  95. package/lib/types/menu/schema.d.ts +16 -1
  96. package/lib/types/mobile-plugin.d.ts +16 -1
  97. package/lib/types/plugin.d.ts +16 -1
  98. package/lib/types/services/before-close/before-close.service.d.ts +17 -2
  99. package/lib/types/services/clipboard/clipboard-interface.service.d.ts +16 -1
  100. package/lib/types/services/clipboard/clipboard.command.d.ts +16 -1
  101. package/lib/types/services/confirm/desktop-confirm.service.d.ts +18 -2
  102. package/lib/types/services/contextmenu/contextmenu-host.service.d.ts +18 -2
  103. package/lib/types/services/contextmenu/contextmenu.service.d.ts +19 -3
  104. package/lib/types/services/dialog/desktop-dialog.service.d.ts +20 -4
  105. package/lib/types/services/dialog/dialog.service.d.ts +19 -4
  106. package/lib/types/services/dom/canvas-dom-layer.service.d.ts +17 -2
  107. package/lib/types/services/font.service.d.ts +18 -2
  108. package/lib/types/services/gallery/desktop-gallery.service.d.ts +19 -3
  109. package/lib/types/services/gallery/gallery.service.d.ts +19 -4
  110. package/lib/types/services/global-zone/desktop-global-zone.service.d.ts +18 -3
  111. package/lib/types/services/global-zone/global-zone.service.d.ts +18 -3
  112. package/lib/types/services/layout/layout.service.d.ts +18 -2
  113. package/lib/types/services/local-file/desktop-local-file.service.d.ts +16 -1
  114. package/lib/types/services/local-file/local-file.service.d.ts +1 -1
  115. package/lib/types/services/local-storage/local-storage.service.d.ts +16 -1
  116. package/lib/types/services/menu/menu-manager.service.d.ts +21 -4
  117. package/lib/types/services/menu/menu.d.ts +18 -2
  118. package/lib/types/services/menu/types.d.ts +5 -1
  119. package/lib/types/services/message/__testing__/mock-message.service.d.ts +18 -3
  120. package/lib/types/services/message/desktop-message.service.d.ts +19 -3
  121. package/lib/types/services/message/message.service.d.ts +18 -3
  122. package/lib/types/services/notification/desktop-notification.service.d.ts +19 -3
  123. package/lib/types/services/notification/notification.service.d.ts +18 -3
  124. package/lib/types/services/parts/parts.service.d.ts +20 -4
  125. package/lib/types/services/platform/platform.service.d.ts +1 -1
  126. package/lib/types/services/popup/canvas-popup.service.d.ts +21 -5
  127. package/lib/types/services/ribbon/ribbon.service.d.ts +19 -3
  128. package/lib/types/services/shortcut/shortcut-panel.service.d.ts +16 -1
  129. package/lib/types/services/shortcut/shortcut.service.d.ts +20 -4
  130. package/lib/types/services/sidebar/desktop-sidebar.service.d.ts +18 -3
  131. package/lib/types/services/sidebar/sidebar.service.d.ts +20 -5
  132. package/lib/types/services/theme-switcher/theme-switcher.service.d.ts +16 -1
  133. package/lib/types/services/zen-zone/desktop-zen-zone.service.d.ts +20 -4
  134. package/lib/types/services/zen-zone/zen-zone.service.d.ts +19 -4
  135. package/lib/types/utils/cell.d.ts +16 -1
  136. package/lib/types/utils/di.d.ts +19 -4
  137. package/lib/types/views/components/ComponentContainer.d.ts +18 -3
  138. package/lib/types/views/components/confirm-part/interface.d.ts +17 -2
  139. package/lib/types/views/components/context-menu/AnchoredContextMenu.d.ts +16 -1
  140. package/lib/types/views/components/context-menu/ContextMenuPanel.d.ts +17 -1
  141. package/lib/types/views/components/context-menu/MobileContextMenu.d.ts +1 -1
  142. package/lib/types/views/components/dialog-part/interface.d.ts +17 -2
  143. package/lib/types/views/components/dom/FloatDom.d.ts +17 -2
  144. package/lib/types/views/components/dom/print.d.ts +17 -2
  145. package/lib/types/views/components/popup/CanvasPopup.d.ts +17 -2
  146. package/lib/types/views/components/popup/RectPopup.d.ts +18 -3
  147. package/lib/types/views/components/ribbon/MobileRibbon.d.ts +22 -0
  148. package/lib/types/views/components/ribbon/Ribbon.d.ts +17 -2
  149. package/lib/types/views/components/ribbon/ToolbarItem.d.ts +18 -3
  150. package/lib/types/views/components/ribbon/TooltipButtonWrapper.d.ts +19 -4
  151. package/lib/types/views/components/ribbon/hook.d.ts +16 -1
  152. package/lib/types/views/components/ribbon/ribbon-menu/ClassicMenu.d.ts +16 -1
  153. package/lib/types/views/components/ribbon/ribbon-menu/DefaultMenu.d.ts +16 -1
  154. package/lib/types/views/components/sidebar/Sidebar.d.ts +17 -2
  155. package/lib/types/views/mobile-workbench/MobileWorkbench.d.ts +16 -1
  156. package/lib/types/views/workbench/Workbench.d.ts +16 -1
  157. package/lib/umd/facade.js +1 -1
  158. package/lib/umd/index.js +384 -43
  159. package/lib/umd/locale/ca-ES.js +1 -1
  160. package/lib/umd/locale/en-US.js +1 -1
  161. package/lib/umd/locale/es-ES.js +1 -1
  162. package/lib/umd/locale/fa-IR.js +1 -1
  163. package/lib/umd/locale/fr-FR.js +1 -1
  164. package/lib/umd/locale/ja-JP.js +1 -1
  165. package/lib/umd/locale/ko-KR.js +1 -1
  166. package/lib/umd/locale/ru-RU.js +1 -1
  167. package/lib/umd/locale/sk-SK.js +1 -1
  168. package/lib/umd/locale/vi-VN.js +1 -1
  169. package/lib/umd/locale/zh-CN.js +1 -1
  170. package/lib/umd/locale/zh-TW.js +1 -1
  171. package/package.json +10 -9
  172. package/lib/types/components/menu/desktop/Menu.d.ts +0 -17
@@ -1,85 +1 @@
1
- const e = {
2
- toolbar: {
3
- heading: {
4
- normal: "Normal",
5
- title: "Títol",
6
- subTitle: "Subtítol",
7
- 1: "Encapçalament 1",
8
- 2: "Encapçalament 2",
9
- 3: "Encapçalament 3",
10
- 4: "Encapçalament 4",
11
- 5: "Encapçalament 5",
12
- 6: "Encapçalament 6",
13
- tooltip: "Estableix l'encapçalament"
14
- }
15
- },
16
- ribbon: {
17
- start: "Inici",
18
- startDesc: "Inicia el full de càlcul i estableix els paràmetres bàsics.",
19
- insert: "Insereix",
20
- insertDesc: "Insereix files, columnes, gràfics i altres elements.",
21
- formulas: "Fórmules",
22
- formulasDesc: "Utilitza funcions i fórmules per a càlculs de dades.",
23
- data: "Dades",
24
- dataDesc: "Gestiona les dades, incloent importació, ordenació i filtratge.",
25
- view: "Vista",
26
- viewDesc: "Canvia els modes de vista i ajusta l'efecte de visualització.",
27
- others: "Altres",
28
- othersDesc: "Altres funcions i configuracions.",
29
- more: "Més"
30
- },
31
- fontFamily: {
32
- "not-supported": "No s'ha trobat aquesta font al sistema, s'utilitza la font per defecte.",
33
- arial: "Arial",
34
- "times-new-roman": "Times New Roman",
35
- tahoma: "Tahoma",
36
- verdana: "Verdana",
37
- "microsoft-yahei": "Microsoft YaHei",
38
- simsun: "SimSun",
39
- simhei: "SimHei",
40
- kaiti: "Kaiti",
41
- fangsong: "FangSong",
42
- nsimsun: "NSimSun",
43
- stxinwei: "STXinwei",
44
- stxingkai: "STXingkai",
45
- stliti: "STLiti"
46
- },
47
- "shortcut-panel": {
48
- title: "Dreceres"
49
- },
50
- shortcut: {
51
- undo: "Desfer",
52
- redo: "Refer",
53
- cut: "Retalla",
54
- copy: "Copia",
55
- paste: "Enganxa",
56
- "shortcut-panel": "Alterna el panell de dreceres"
57
- },
58
- "common-edit": "Dreceres d'edició comunes",
59
- "toggle-shortcut-panel": "Alterna el panell de dreceres",
60
- clipboard: {
61
- authentication: {
62
- title: "Permís denegat",
63
- content: "Si us plau, permet que Univer accedeixi al teu porta-retalls."
64
- }
65
- },
66
- textEditor: {
67
- formulaError: "Si us plau, introdueix una fórmula vàlida, com ara =SUMA(A1)",
68
- rangeError: "Si us plau, introdueix un interval vàlid, com ara A1:B10"
69
- },
70
- rangeSelector: {
71
- title: "Selecciona un interval de dades",
72
- addAnotherRange: "Afegeix interval",
73
- buttonTooltip: "Selecciona interval de dades",
74
- placeHolder: "Selecciona un interval o escriu.",
75
- confirm: "Confirma",
76
- cancel: "Cancel·la"
77
- },
78
- "global-shortcut": "Drecera global",
79
- "zoom-slider": {
80
- resetTo: "Restableix a"
81
- }
82
- };
83
- export {
84
- e as default
85
- };
1
+ const e={toolbar:{heading:{normal:`Normal`,title:`Títol`,subTitle:`Subtítol`,1:`Encapçalament 1`,2:`Encapçalament 2`,3:`Encapçalament 3`,4:`Encapçalament 4`,5:`Encapçalament 5`,6:`Encapçalament 6`,tooltip:`Estableix l'encapçalament`}},ribbon:{start:`Inici`,startDesc:`Inicia el full de càlcul i estableix els paràmetres bàsics.`,insert:`Insereix`,insertDesc:`Insereix files, columnes, gràfics i altres elements.`,formulas:`Fórmules`,formulasDesc:`Utilitza funcions i fórmules per a càlculs de dades.`,data:`Dades`,dataDesc:`Gestiona les dades, incloent importació, ordenació i filtratge.`,view:`Vista`,viewDesc:`Canvia els modes de vista i ajusta l'efecte de visualització.`,others:`Altres`,othersDesc:`Altres funcions i configuracions.`,more:`Més`},fontFamily:{"not-supported":`No s'ha trobat aquesta font al sistema, s'utilitza la font per defecte.`,arial:`Arial`,"times-new-roman":`Times New Roman`,tahoma:`Tahoma`,verdana:`Verdana`,"microsoft-yahei":`Microsoft YaHei`,simsun:`SimSun`,simhei:`SimHei`,kaiti:`Kaiti`,fangsong:`FangSong`,nsimsun:`NSimSun`,stxinwei:`STXinwei`,stxingkai:`STXingkai`,stliti:`STLiti`},"shortcut-panel":{title:`Dreceres`},shortcut:{undo:`Desfer`,redo:`Refer`,cut:`Retalla`,copy:`Copia`,paste:`Enganxa`,"shortcut-panel":`Alterna el panell de dreceres`},"common-edit":`Dreceres d'edició comunes`,"toggle-shortcut-panel":`Alterna el panell de dreceres`,clipboard:{authentication:{title:`Permís denegat`,content:`Si us plau, permet que Univer accedeixi al teu porta-retalls.`}},textEditor:{formulaError:`Si us plau, introdueix una fórmula vàlida, com ara =SUMA(A1)`,rangeError:`Si us plau, introdueix un interval vàlid, com ara A1:B10`},rangeSelector:{title:`Selecciona un interval de dades`,addAnotherRange:`Afegeix interval`,buttonTooltip:`Selecciona interval de dades`,placeHolder:`Selecciona un interval o escriu.`,confirm:`Confirma`,cancel:`Cancel·la`},"global-shortcut":`Drecera global`,"zoom-slider":{resetTo:`Restableix a`}};export{e as default};
@@ -1,85 +1 @@
1
- const e = {
2
- toolbar: {
3
- heading: {
4
- normal: "Normal",
5
- title: "Title",
6
- subTitle: "Sub Title",
7
- 1: "Heading 1",
8
- 2: "Heading 2",
9
- 3: "Heading 3",
10
- 4: "Heading 4",
11
- 5: "Heading 5",
12
- 6: "Heading 6",
13
- tooltip: "Set Heading"
14
- }
15
- },
16
- ribbon: {
17
- start: "Start",
18
- startDesc: "Initiate the worksheet and set basic parameters.",
19
- insert: "Insert",
20
- insertDesc: "Insert rows, columns, charts and various other elements.",
21
- formulas: "Formulas",
22
- formulasDesc: "Use functions and formulas for data calculations.",
23
- data: "Data",
24
- dataDesc: "Manage data, including import, sorting and filtering.",
25
- view: "View",
26
- viewDesc: "Switch view modes and adjust the display effect.",
27
- others: "Others",
28
- othersDesc: "Other functions and settings.",
29
- more: "More"
30
- },
31
- fontFamily: {
32
- "not-supported": "No such font found in the system, using default font.",
33
- arial: "Arial",
34
- "times-new-roman": "Times New Roman",
35
- tahoma: "Tahoma",
36
- verdana: "Verdana",
37
- "microsoft-yahei": "Microsoft YaHei",
38
- simsun: "SimSun",
39
- simhei: "SimHei",
40
- kaiti: "Kaiti",
41
- fangsong: "FangSong",
42
- nsimsun: "NSimSun",
43
- stxinwei: "STXinwei",
44
- stxingkai: "STXingkai",
45
- stliti: "STLiti"
46
- },
47
- "shortcut-panel": {
48
- title: "Shortcuts"
49
- },
50
- shortcut: {
51
- undo: "Undo",
52
- redo: "Redo",
53
- cut: "Cut",
54
- copy: "Copy",
55
- paste: "Paste",
56
- "shortcut-panel": "Toggle Shortcut Panel"
57
- },
58
- "common-edit": "Common Editing Shortcuts",
59
- "toggle-shortcut-panel": "Toggle Shortcut Panel",
60
- clipboard: {
61
- authentication: {
62
- title: "Permission Denied",
63
- content: "Please allow Univer to access your clipboard."
64
- }
65
- },
66
- textEditor: {
67
- formulaError: "Please enter a valid formula, such as =SUM(A1)",
68
- rangeError: "Please enter a valid range, such as A1:B10"
69
- },
70
- rangeSelector: {
71
- title: "Select a data range",
72
- addAnotherRange: "Add range",
73
- buttonTooltip: "Select data range",
74
- placeHolder: "Select range or enter.",
75
- confirm: "Confirm",
76
- cancel: "Cancel"
77
- },
78
- "global-shortcut": "Global Shortcut",
79
- "zoom-slider": {
80
- resetTo: "Reset to"
81
- }
82
- };
83
- export {
84
- e as default
85
- };
1
+ const e={toolbar:{heading:{normal:`Normal`,title:`Title`,subTitle:`Sub Title`,1:`Heading 1`,2:`Heading 2`,3:`Heading 3`,4:`Heading 4`,5:`Heading 5`,6:`Heading 6`,tooltip:`Set Heading`}},ribbon:{start:`Start`,startDesc:`Initiate the worksheet and set basic parameters.`,insert:`Insert`,insertDesc:`Insert rows, columns, charts and various other elements.`,formulas:`Formulas`,formulasDesc:`Use functions and formulas for data calculations.`,data:`Data`,dataDesc:`Manage data, including import, sorting and filtering.`,view:`View`,viewDesc:`Switch view modes and adjust the display effect.`,others:`Others`,othersDesc:`Other functions and settings.`,more:`More`},fontFamily:{"not-supported":`No such font found in the system, using default font.`,arial:`Arial`,"times-new-roman":`Times New Roman`,tahoma:`Tahoma`,verdana:`Verdana`,"microsoft-yahei":`Microsoft YaHei`,simsun:`SimSun`,simhei:`SimHei`,kaiti:`Kaiti`,fangsong:`FangSong`,nsimsun:`NSimSun`,stxinwei:`STXinwei`,stxingkai:`STXingkai`,stliti:`STLiti`},"shortcut-panel":{title:`Shortcuts`},shortcut:{undo:`Undo`,redo:`Redo`,cut:`Cut`,copy:`Copy`,paste:`Paste`,"shortcut-panel":`Toggle Shortcut Panel`},"common-edit":`Common Editing Shortcuts`,"toggle-shortcut-panel":`Toggle Shortcut Panel`,clipboard:{authentication:{title:`Permission Denied`,content:`Please allow Univer to access your clipboard.`}},textEditor:{formulaError:`Please enter a valid formula, such as =SUM(A1)`,rangeError:`Please enter a valid range, such as A1:B10`},rangeSelector:{title:`Select a data range`,addAnotherRange:`Add range`,buttonTooltip:`Select data range`,placeHolder:`Select range or enter.`,confirm:`Confirm`,cancel:`Cancel`},"global-shortcut":`Global Shortcut`,"zoom-slider":{resetTo:`Reset to`}};export{e as default};
@@ -1,85 +1 @@
1
- const a = {
2
- toolbar: {
3
- heading: {
4
- normal: "Normal",
5
- title: "Título",
6
- subTitle: "Subtítulo",
7
- 1: "Encabezado 1",
8
- 2: "Encabezado 2",
9
- 3: "Encabezado 3",
10
- 4: "Encabezado 4",
11
- 5: "Encabezado 5",
12
- 6: "Encabezado 6",
13
- tooltip: "Establecer encabezado"
14
- }
15
- },
16
- ribbon: {
17
- start: "Inicio",
18
- startDesc: "Inicia la hoja de cálculo y establece los parámetros básicos.",
19
- insert: "Insertar",
20
- insertDesc: "Inserta filas, columnas, gráficos y otros elementos.",
21
- formulas: "Fórmulas",
22
- formulasDesc: "Utiliza funciones y fórmulas para cálculos de datos.",
23
- data: "Datos",
24
- dataDesc: "Gestiona los datos, incluyendo importación, ordenación y filtrado.",
25
- view: "Vista",
26
- viewDesc: "Cambia los modos de vista y ajusta el efecto de visualización.",
27
- others: "Otros",
28
- othersDesc: "Otras funciones y configuraciones.",
29
- more: "Más"
30
- },
31
- fontFamily: {
32
- "not-supported": "No se encontró esta fuente en el sistema, se utiliza la fuente predeterminada.",
33
- arial: "Arial",
34
- "times-new-roman": "Times New Roman",
35
- tahoma: "Tahoma",
36
- verdana: "Verdana",
37
- "microsoft-yahei": "Microsoft YaHei",
38
- simsun: "SimSun",
39
- simhei: "SimHei",
40
- kaiti: "Kaiti",
41
- fangsong: "FangSong",
42
- nsimsun: "NSimSun",
43
- stxinwei: "STXinwei",
44
- stxingkai: "STXingkai",
45
- stliti: "STLiti"
46
- },
47
- "shortcut-panel": {
48
- title: "Atajos"
49
- },
50
- shortcut: {
51
- undo: "Deshacer",
52
- redo: "Rehacer",
53
- cut: "Cortar",
54
- copy: "Copiar",
55
- paste: "Pegar",
56
- "shortcut-panel": "Alternar panel de atajos"
57
- },
58
- "common-edit": "Atajos de edición comunes",
59
- "toggle-shortcut-panel": "Alternar panel de atajos",
60
- clipboard: {
61
- authentication: {
62
- title: "Permiso denegado",
63
- content: "Por favor, permite que Univer acceda a tu portapapeles."
64
- }
65
- },
66
- textEditor: {
67
- formulaError: "Por favor, introduce una fórmula válida, como =SUMA(A1)",
68
- rangeError: "Por favor, introduce un rango válido, como A1:B10"
69
- },
70
- rangeSelector: {
71
- title: "Selecciona un rango de datos",
72
- addAnotherRange: "Agregar rango",
73
- buttonTooltip: "Seleccionar rango de datos",
74
- placeHolder: "Selecciona un rango o escribe.",
75
- confirm: "Confirmar",
76
- cancel: "Cancelar"
77
- },
78
- "global-shortcut": "Atajo global",
79
- "zoom-slider": {
80
- resetTo: "Restablecer a"
81
- }
82
- };
83
- export {
84
- a as default
85
- };
1
+ const e={toolbar:{heading:{normal:`Normal`,title:`Título`,subTitle:`Subtítulo`,1:`Encabezado 1`,2:`Encabezado 2`,3:`Encabezado 3`,4:`Encabezado 4`,5:`Encabezado 5`,6:`Encabezado 6`,tooltip:`Establecer encabezado`}},ribbon:{start:`Inicio`,startDesc:`Inicia la hoja de cálculo y establece los parámetros básicos.`,insert:`Insertar`,insertDesc:`Inserta filas, columnas, gráficos y otros elementos.`,formulas:`Fórmulas`,formulasDesc:`Utiliza funciones y fórmulas para cálculos de datos.`,data:`Datos`,dataDesc:`Gestiona los datos, incluyendo importación, ordenación y filtrado.`,view:`Vista`,viewDesc:`Cambia los modos de vista y ajusta el efecto de visualización.`,others:`Otros`,othersDesc:`Otras funciones y configuraciones.`,more:`Más`},fontFamily:{"not-supported":`No se encontró esta fuente en el sistema, se utiliza la fuente predeterminada.`,arial:`Arial`,"times-new-roman":`Times New Roman`,tahoma:`Tahoma`,verdana:`Verdana`,"microsoft-yahei":`Microsoft YaHei`,simsun:`SimSun`,simhei:`SimHei`,kaiti:`Kaiti`,fangsong:`FangSong`,nsimsun:`NSimSun`,stxinwei:`STXinwei`,stxingkai:`STXingkai`,stliti:`STLiti`},"shortcut-panel":{title:`Atajos`},shortcut:{undo:`Deshacer`,redo:`Rehacer`,cut:`Cortar`,copy:`Copiar`,paste:`Pegar`,"shortcut-panel":`Alternar panel de atajos`},"common-edit":`Atajos de edición comunes`,"toggle-shortcut-panel":`Alternar panel de atajos`,clipboard:{authentication:{title:`Permiso denegado`,content:`Por favor, permite que Univer acceda a tu portapapeles.`}},textEditor:{formulaError:`Por favor, introduce una fórmula válida, como =SUMA(A1)`,rangeError:`Por favor, introduce un rango válido, como A1:B10`},rangeSelector:{title:`Selecciona un rango de datos`,addAnotherRange:`Agregar rango`,buttonTooltip:`Seleccionar rango de datos`,placeHolder:`Selecciona un rango o escribe.`,confirm:`Confirmar`,cancel:`Cancelar`},"global-shortcut":`Atajo global`,"zoom-slider":{resetTo:`Restablecer a`}};export{e as default};
@@ -1,85 +1 @@
1
- const t = {
2
- toolbar: {
3
- heading: {
4
- normal: "متن عادی",
5
- title: "عنوان",
6
- subTitle: "زیر عنوان",
7
- 1: "عنوان 1",
8
- 2: "عنوان 2",
9
- 3: "عنوان 3",
10
- 4: "عنوان 4",
11
- 5: "عنوان 5",
12
- 6: "عنوان 6",
13
- tooltip: "تنظیم عنوان"
14
- }
15
- },
16
- ribbon: {
17
- start: "شروع",
18
- startDesc: "ایجاد کاربرگ و تنظیم پارامترهای اولیه.",
19
- insert: "درج",
20
- insertDesc: "درج ردیف‌ها، ستون‌ها، نمودارها و عناصر مختلف دیگر.",
21
- formulas: "فرمول‌ها",
22
- formulasDesc: "استفاده از توابع و فرمول‌ها برای محاسبات داده‌ها.",
23
- data: "داده‌ها",
24
- dataDesc: "ادغام و تجزیه داده‌ها.",
25
- view: "نمایش",
26
- viewDesc: "تغییر حالت نمایش و تنظیم اثرات نمایشی.",
27
- others: "دیگر",
28
- othersDesc: "سایر عملکردها و تنظیمات.",
29
- more: "بیشتر"
30
- },
31
- fontFamily: {
32
- "not-supported": "هیچ فونتی با این نام در سیستم یافت نشد، از فونت پیش‌فرض استفاده می‌شود.",
33
- arial: "Arial",
34
- "times-new-roman": "Times New Roman",
35
- tahoma: "Tahoma",
36
- verdana: "Verdana",
37
- "microsoft-yahei": "Microsoft YaHei",
38
- simsun: "SimSun",
39
- simhei: "SimHei",
40
- kaiti: "Kaiti",
41
- fangsong: "FangSong",
42
- nsimsun: "NSimSun",
43
- stxinwei: "STXinwei",
44
- stxingkai: "STXingkai",
45
- stliti: "STLiti"
46
- },
47
- "shortcut-panel": {
48
- title: "کلیدهای میانبر"
49
- },
50
- shortcut: {
51
- undo: "بازگرداندن",
52
- redo: "تکرار",
53
- cut: "بریدن",
54
- copy: "کپی کردن",
55
- paste: "چسباندن",
56
- "shortcut-panel": "نمایش/مخفی کردن پنل کلیدهای میانبر"
57
- },
58
- "common-edit": "کلیدهای میانبر ویرایش عمومی",
59
- "toggle-shortcut-panel": "نمایش/مخفی کردن پنل کلیدهای میانبر",
60
- clipboard: {
61
- authentication: {
62
- title: "اجازه دسترسی داده نشده است",
63
- content: "لطفا به Univer اجازه دسترسی به کلیپ بورد خود را بدهید."
64
- }
65
- },
66
- textEditor: {
67
- formulaError: "لطفا یک فرمول معتبر مانند =SUM(A1) وارد کنید.",
68
- rangeError: "لطفا یک محدوده معتبر مانند A1:B10 وارد کنید."
69
- },
70
- rangeSelector: {
71
- title: "انتخاب محدوده داده",
72
- addAnotherRange: "افزودن محدوده",
73
- buttonTooltip: "انتخاب محدوده داده",
74
- placeHolder: "انتخاب محدوده یا وارد کردن.",
75
- confirm: "تایید",
76
- cancel: "انصراف"
77
- },
78
- "global-shortcut": "کلید میانبر جهانی",
79
- "zoom-slider": {
80
- resetTo: "بازنشانی به"
81
- }
82
- };
83
- export {
84
- t as default
85
- };
1
+ const e={toolbar:{heading:{normal:`متن عادی`,title:`عنوان`,subTitle:`زیر عنوان`,1:`عنوان 1`,2:`عنوان 2`,3:`عنوان 3`,4:`عنوان 4`,5:`عنوان 5`,6:`عنوان 6`,tooltip:`تنظیم عنوان`}},ribbon:{start:`شروع`,startDesc:`ایجاد کاربرگ و تنظیم پارامترهای اولیه.`,insert:`درج`,insertDesc:`درج ردیف‌ها، ستون‌ها، نمودارها و عناصر مختلف دیگر.`,formulas:`فرمول‌ها`,formulasDesc:`استفاده از توابع و فرمول‌ها برای محاسبات داده‌ها.`,data:`داده‌ها`,dataDesc:`ادغام و تجزیه داده‌ها.`,view:`نمایش`,viewDesc:`تغییر حالت نمایش و تنظیم اثرات نمایشی.`,others:`دیگر`,othersDesc:`سایر عملکردها و تنظیمات.`,more:`بیشتر`},fontFamily:{"not-supported":`هیچ فونتی با این نام در سیستم یافت نشد، از فونت پیش‌فرض استفاده می‌شود.`,arial:`Arial`,"times-new-roman":`Times New Roman`,tahoma:`Tahoma`,verdana:`Verdana`,"microsoft-yahei":`Microsoft YaHei`,simsun:`SimSun`,simhei:`SimHei`,kaiti:`Kaiti`,fangsong:`FangSong`,nsimsun:`NSimSun`,stxinwei:`STXinwei`,stxingkai:`STXingkai`,stliti:`STLiti`},"shortcut-panel":{title:`کلیدهای میانبر`},shortcut:{undo:`بازگرداندن`,redo:`تکرار`,cut:`بریدن`,copy:`کپی کردن`,paste:`چسباندن`,"shortcut-panel":`نمایش/مخفی کردن پنل کلیدهای میانبر`},"common-edit":`کلیدهای میانبر ویرایش عمومی`,"toggle-shortcut-panel":`نمایش/مخفی کردن پنل کلیدهای میانبر`,clipboard:{authentication:{title:`اجازه دسترسی داده نشده است`,content:`لطفا به Univer اجازه دسترسی به کلیپ بورد خود را بدهید.`}},textEditor:{formulaError:`لطفا یک فرمول معتبر مانند =SUM(A1) وارد کنید.`,rangeError:`لطفا یک محدوده معتبر مانند A1:B10 وارد کنید.`},rangeSelector:{title:`انتخاب محدوده داده`,addAnotherRange:`افزودن محدوده`,buttonTooltip:`انتخاب محدوده داده`,placeHolder:`انتخاب محدوده یا وارد کردن.`,confirm:`تایید`,cancel:`انصراف`},"global-shortcut":`کلید میانبر جهانی`,"zoom-slider":{resetTo:`بازنشانی به`}};export{e as default};
@@ -1,85 +1 @@
1
- const e = {
2
- toolbar: {
3
- heading: {
4
- normal: "Normal",
5
- title: "Titre",
6
- subTitle: "Sous-titre",
7
- 1: "Titre 1",
8
- 2: "Titre 2",
9
- 3: "Titre 3",
10
- 4: "Titre 4",
11
- 5: "Titre 5",
12
- 6: "Titre 6",
13
- tooltip: "Définir un titre"
14
- }
15
- },
16
- ribbon: {
17
- start: "Démarrer",
18
- startDesc: "Initialiser la feuille de calcul et définir les paramètres de base.",
19
- insert: "Insérer",
20
- insertDesc: "Insérer des lignes, des colonnes, des graphiques et divers autres éléments.",
21
- formulas: "Formules",
22
- formulasDesc: "Utiliser des fonctions et des formules pour les calculs de données.",
23
- data: "Données",
24
- dataDesc: "Gérer les données, y compris l'importation, le tri et le filtrage.",
25
- view: "Vue",
26
- viewDesc: "Changer les modes d'affichage et ajuster l'effet d'affichage.",
27
- others: "Autres",
28
- othersDesc: "Autres fonctions et paramètres.",
29
- more: "Plus"
30
- },
31
- fontFamily: {
32
- "not-supported": "Aucune police de ce type trouvée dans le système, utilisation de la police par défaut.",
33
- arial: "Arial",
34
- "times-new-roman": "Times New Roman",
35
- tahoma: "Tahoma",
36
- verdana: "Verdana",
37
- "microsoft-yahei": "Microsoft YaHei",
38
- simsun: "SimSun",
39
- simhei: "SimHei",
40
- kaiti: "Kaiti",
41
- fangsong: "FangSong",
42
- nsimsun: "NSimSun",
43
- stxinwei: "STXinwei",
44
- stxingkai: "STXingkai",
45
- stliti: "STLiti"
46
- },
47
- "shortcut-panel": {
48
- title: "Raccourcis"
49
- },
50
- shortcut: {
51
- undo: "Annuler",
52
- redo: "Refaire",
53
- cut: "Couper",
54
- copy: "Copier",
55
- paste: "Coller",
56
- "shortcut-panel": "Basculer le panneau de raccourcis"
57
- },
58
- "common-edit": "Raccourcis d'édition courants",
59
- "toggle-shortcut-panel": "Basculer le panneau de raccourcis",
60
- clipboard: {
61
- authentication: {
62
- title: "Permission refusée",
63
- content: "Veuillez autoriser Univer à accéder à votre presse-papiers."
64
- }
65
- },
66
- textEditor: {
67
- formulaError: "Veuillez entrer une formule valide, telle que =SOMME(A1)",
68
- rangeError: "Veuillez entrer une plage valide, telle que A1:B10"
69
- },
70
- rangeSelector: {
71
- title: "Sélectionner une plage de données",
72
- addAnotherRange: "Ajouter une plage",
73
- buttonTooltip: "Sélectionner une plage de données",
74
- placeHolder: "Sélectionner une plage ou entrer.",
75
- confirm: "Confirmer",
76
- cancel: "Annuler"
77
- },
78
- "global-shortcut": "Raccourci global",
79
- "zoom-slider": {
80
- resetTo: "Réinitialiser à"
81
- }
82
- };
83
- export {
84
- e as default
85
- };
1
+ const e={toolbar:{heading:{normal:`Normal`,title:`Titre`,subTitle:`Sous-titre`,1:`Titre 1`,2:`Titre 2`,3:`Titre 3`,4:`Titre 4`,5:`Titre 5`,6:`Titre 6`,tooltip:`Définir un titre`}},ribbon:{start:`Démarrer`,startDesc:`Initialiser la feuille de calcul et définir les paramètres de base.`,insert:`Insérer`,insertDesc:`Insérer des lignes, des colonnes, des graphiques et divers autres éléments.`,formulas:`Formules`,formulasDesc:`Utiliser des fonctions et des formules pour les calculs de données.`,data:`Données`,dataDesc:`Gérer les données, y compris l'importation, le tri et le filtrage.`,view:`Vue`,viewDesc:`Changer les modes d'affichage et ajuster l'effet d'affichage.`,others:`Autres`,othersDesc:`Autres fonctions et paramètres.`,more:`Plus`},fontFamily:{"not-supported":`Aucune police de ce type trouvée dans le système, utilisation de la police par défaut.`,arial:`Arial`,"times-new-roman":`Times New Roman`,tahoma:`Tahoma`,verdana:`Verdana`,"microsoft-yahei":`Microsoft YaHei`,simsun:`SimSun`,simhei:`SimHei`,kaiti:`Kaiti`,fangsong:`FangSong`,nsimsun:`NSimSun`,stxinwei:`STXinwei`,stxingkai:`STXingkai`,stliti:`STLiti`},"shortcut-panel":{title:`Raccourcis`},shortcut:{undo:`Annuler`,redo:`Refaire`,cut:`Couper`,copy:`Copier`,paste:`Coller`,"shortcut-panel":`Basculer le panneau de raccourcis`},"common-edit":`Raccourcis d'édition courants`,"toggle-shortcut-panel":`Basculer le panneau de raccourcis`,clipboard:{authentication:{title:`Permission refusée`,content:`Veuillez autoriser Univer à accéder à votre presse-papiers.`}},textEditor:{formulaError:`Veuillez entrer une formule valide, telle que =SOMME(A1)`,rangeError:`Veuillez entrer une plage valide, telle que A1:B10`},rangeSelector:{title:`Sélectionner une plage de données`,addAnotherRange:`Ajouter une plage`,buttonTooltip:`Sélectionner une plage de données`,placeHolder:`Sélectionner une plage ou entrer.`,confirm:`Confirmer`,cancel:`Annuler`},"global-shortcut":`Raccourci global`,"zoom-slider":{resetTo:`Réinitialiser à`}};export{e as default};
@@ -1,85 +1 @@
1
- const t = {
2
- toolbar: {
3
- heading: {
4
- normal: "標準",
5
- title: "タイトル",
6
- subTitle: "サブタイトル",
7
- 1: "見出し 1",
8
- 2: "見出し 2",
9
- 3: "見出し 3",
10
- 4: "見出し 4",
11
- 5: "見出し 5",
12
- 6: "見出し 6",
13
- tooltip: "見出しを設定"
14
- }
15
- },
16
- ribbon: {
17
- start: "開始",
18
- startDesc: "ワークシートを初期化し、基本パラメータを設定します。",
19
- insert: "挿入",
20
- insertDesc: "行、列、グラフなどさまざまな要素を挿入します。",
21
- formulas: "数式",
22
- formulasDesc: "データ計算のための関数と数式を使用します。",
23
- data: "データ",
24
- dataDesc: "データの管理(インポート、並べ替え、フィルタリングを含む)。",
25
- view: "表示",
26
- viewDesc: "表示モードを切り替え、表示効果を調整します。",
27
- others: "その他",
28
- othersDesc: "その他の機能と設定。",
29
- more: "もっと見る"
30
- },
31
- fontFamily: {
32
- "not-supported": "システムにそのようなフォントが見つからないため、デフォルトのフォントを使用しています。",
33
- arial: "Arial",
34
- "times-new-roman": "Times New Roman",
35
- tahoma: "Tahoma",
36
- verdana: "Verdana",
37
- "microsoft-yahei": "微軟雅黒",
38
- simsun: "SimSun",
39
- simhei: "SimHei",
40
- kaiti: "Kaiti",
41
- fangsong: "FangSong",
42
- nsimsun: "NSimSun",
43
- stxinwei: "STXinwei",
44
- stxingkai: "STXingkai",
45
- stliti: "STLiti"
46
- },
47
- "shortcut-panel": {
48
- title: "ショートカット"
49
- },
50
- shortcut: {
51
- undo: "元に戻す",
52
- redo: "やり直す",
53
- cut: "切り取り",
54
- copy: "コピー",
55
- paste: "貼り付け",
56
- "shortcut-panel": "ショートカットパネルを切り替え"
57
- },
58
- "common-edit": "一般編集ショートカット",
59
- "toggle-shortcut-panel": "ショートカットパネルを切り替え",
60
- clipboard: {
61
- authentication: {
62
- title: "権限が拒否されました",
63
- content: "Univerにクリップボードアクセスの権限を付与してください。"
64
- }
65
- },
66
- textEditor: {
67
- formulaError: "有効な数式を入力してください。例: =SUM(A1)",
68
- rangeError: "有効な範囲を入力してください。例: A1:B10"
69
- },
70
- rangeSelector: {
71
- title: "データ範囲の選択",
72
- addAnotherRange: "範囲を追加",
73
- buttonTooltip: "データ範囲を選択",
74
- placeHolder: "範囲を選択または入力してください。",
75
- confirm: "確認",
76
- cancel: "キャンセル"
77
- },
78
- "global-shortcut": "グローバルショートカット",
79
- "zoom-slider": {
80
- resetTo: "リセット"
81
- }
82
- };
83
- export {
84
- t as default
85
- };
1
+ const e={toolbar:{heading:{normal:`標準`,title:`タイトル`,subTitle:`サブタイトル`,1:`見出し 1`,2:`見出し 2`,3:`見出し 3`,4:`見出し 4`,5:`見出し 5`,6:`見出し 6`,tooltip:`見出しを設定`}},ribbon:{start:`開始`,startDesc:`ワークシートを初期化し、基本パラメータを設定します。`,insert:`挿入`,insertDesc:`行、列、グラフなどさまざまな要素を挿入します。`,formulas:`数式`,formulasDesc:`データ計算のための関数と数式を使用します。`,data:`データ`,dataDesc:`データの管理(インポート、並べ替え、フィルタリングを含む)。`,view:`表示`,viewDesc:`表示モードを切り替え、表示効果を調整します。`,others:`その他`,othersDesc:`その他の機能と設定。`,more:`もっと見る`},fontFamily:{"not-supported":`システムにそのようなフォントが見つからないため、デフォルトのフォントを使用しています。`,arial:`Arial`,"times-new-roman":`Times New Roman`,tahoma:`Tahoma`,verdana:`Verdana`,"microsoft-yahei":`微軟雅黒`,simsun:`SimSun`,simhei:`SimHei`,kaiti:`Kaiti`,fangsong:`FangSong`,nsimsun:`NSimSun`,stxinwei:`STXinwei`,stxingkai:`STXingkai`,stliti:`STLiti`},"shortcut-panel":{title:`ショートカット`},shortcut:{undo:`元に戻す`,redo:`やり直す`,cut:`切り取り`,copy:`コピー`,paste:`貼り付け`,"shortcut-panel":`ショートカットパネルを切り替え`},"common-edit":`一般編集ショートカット`,"toggle-shortcut-panel":`ショートカットパネルを切り替え`,clipboard:{authentication:{title:`権限が拒否されました`,content:`Univerにクリップボードアクセスの権限を付与してください。`}},textEditor:{formulaError:`有効な数式を入力してください。例: =SUM(A1)`,rangeError:`有効な範囲を入力してください。例: A1:B10`},rangeSelector:{title:`データ範囲の選択`,addAnotherRange:`範囲を追加`,buttonTooltip:`データ範囲を選択`,placeHolder:`範囲を選択または入力してください。`,confirm:`確認`,cancel:`キャンセル`},"global-shortcut":`グローバルショートカット`,"zoom-slider":{resetTo:`リセット`}};export{e as default};
@@ -1,85 +1 @@
1
- const t = {
2
- toolbar: {
3
- heading: {
4
- normal: "일반",
5
- title: "제목",
6
- subTitle: "부제목",
7
- 1: "제목 1",
8
- 2: "제목 2",
9
- 3: "제목 3",
10
- 4: "제목 4",
11
- 5: "제목 5",
12
- 6: "제목 6",
13
- tooltip: "제목 설정"
14
- }
15
- },
16
- ribbon: {
17
- start: "시작",
18
- startDesc: "워크시트를 초기화하고 기본 매개변수를 설정합니다.",
19
- insert: "삽입",
20
- insertDesc: "행, 열, 차트 및 다양한 요소를 삽입합니다.",
21
- formulas: "수식",
22
- formulasDesc: "데이터 계산을 위한 함수와 수식을 사용합니다.",
23
- data: "데이터",
24
- dataDesc: "데이터를 관리하며, 가져오기, 정렬 및 필터링을 포함합니다.",
25
- view: "보기",
26
- viewDesc: "보기 모드를 전환하고 표시 효과를 조정합니다.",
27
- others: "기타",
28
- othersDesc: "기타 함수와 설정.",
29
- more: "더 보기"
30
- },
31
- fontFamily: {
32
- "not-supported": "시스템에 해당 폰트가 없어 기본 폰트를 사용합니다.",
33
- arial: "Arial",
34
- "times-new-roman": "Times New Roman",
35
- tahoma: "Tahoma",
36
- verdana: "Verdana",
37
- "microsoft-yahei": "Microsoft YaHei",
38
- simsun: "SimSun",
39
- simhei: "SimHei",
40
- kaiti: "Kaiti",
41
- fangsong: "FangSong",
42
- nsimsun: "NSimSun",
43
- stxinwei: "STXinwei",
44
- stxingkai: "STXingkai",
45
- stliti: "STLiti"
46
- },
47
- "shortcut-panel": {
48
- title: "단축키"
49
- },
50
- shortcut: {
51
- undo: "실행 취소",
52
- redo: "다시 실행",
53
- cut: "자르기",
54
- copy: "복사",
55
- paste: "붙여넣기",
56
- "shortcut-panel": "단축키 패널 전환"
57
- },
58
- "common-edit": "일반 편집 단축키",
59
- "toggle-shortcut-panel": "단축키 패널 전환",
60
- clipboard: {
61
- authentication: {
62
- title: "권한 거절",
63
- content: "Univer에 클립보드 접근 권한을 부여해주세요."
64
- }
65
- },
66
- textEditor: {
67
- formulaError: "올바른 수식을 입력하세요, 예: =SUM(A1)",
68
- rangeError: "올바른 범위를 입력하세요, 예: A1:B10"
69
- },
70
- rangeSelector: {
71
- title: "데이터 범위 선택",
72
- addAnotherRange: "범위 추가",
73
- buttonTooltip: "데이터 범위 선택",
74
- placeHolder: "범위를 선택하거나 입력하세요.",
75
- confirm: "확인",
76
- cancel: "취소"
77
- },
78
- "global-shortcut": "전역 단축키",
79
- "zoom-slider": {
80
- resetTo: "초기화"
81
- }
82
- };
83
- export {
84
- t as default
85
- };
1
+ const e={toolbar:{heading:{normal:`일반`,title:`제목`,subTitle:`부제목`,1:`제목 1`,2:`제목 2`,3:`제목 3`,4:`제목 4`,5:`제목 5`,6:`제목 6`,tooltip:`제목 설정`}},ribbon:{start:`시작`,startDesc:`워크시트를 초기화하고 기본 매개변수를 설정합니다.`,insert:`삽입`,insertDesc:`행, 열, 차트 및 다양한 요소를 삽입합니다.`,formulas:`수식`,formulasDesc:`데이터 계산을 위한 함수와 수식을 사용합니다.`,data:`데이터`,dataDesc:`데이터를 관리하며, 가져오기, 정렬 및 필터링을 포함합니다.`,view:`보기`,viewDesc:`보기 모드를 전환하고 표시 효과를 조정합니다.`,others:`기타`,othersDesc:`기타 함수와 설정.`,more:`더 보기`},fontFamily:{"not-supported":`시스템에 해당 폰트가 없어 기본 폰트를 사용합니다.`,arial:`Arial`,"times-new-roman":`Times New Roman`,tahoma:`Tahoma`,verdana:`Verdana`,"microsoft-yahei":`Microsoft YaHei`,simsun:`SimSun`,simhei:`SimHei`,kaiti:`Kaiti`,fangsong:`FangSong`,nsimsun:`NSimSun`,stxinwei:`STXinwei`,stxingkai:`STXingkai`,stliti:`STLiti`},"shortcut-panel":{title:`단축키`},shortcut:{undo:`실행 취소`,redo:`다시 실행`,cut:`자르기`,copy:`복사`,paste:`붙여넣기`,"shortcut-panel":`단축키 패널 전환`},"common-edit":`일반 편집 단축키`,"toggle-shortcut-panel":`단축키 패널 전환`,clipboard:{authentication:{title:`권한 거절`,content:`Univer에 클립보드 접근 권한을 부여해주세요.`}},textEditor:{formulaError:`올바른 수식을 입력하세요, 예: =SUM(A1)`,rangeError:`올바른 범위를 입력하세요, 예: A1:B10`},rangeSelector:{title:`데이터 범위 선택`,addAnotherRange:`범위 추가`,buttonTooltip:`데이터 범위 선택`,placeHolder:`범위를 선택하거나 입력하세요.`,confirm:`확인`,cancel:`취소`},"global-shortcut":`전역 단축키`,"zoom-slider":{resetTo:`초기화`}};export{e as default};