en-US.js 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. const e = {
  2. ribbon: {
  3. start: "Start",
  4. insert: "Insert",
  5. formulas: "Formulas",
  6. data: "Data",
  7. view: "View",
  8. others: "Others",
  9. more: "More"
  10. },
  11. fontFamily: {
  12. TimesNewRoman: "Times New Roman",
  13. Arial: "Arial",
  14. Tahoma: "Tahoma",
  15. Verdana: "Verdana",
  16. MicrosoftYaHei: "Microsoft YaHei",
  17. SimSun: "SimSun",
  18. SimHei: "SimHei",
  19. Kaiti: "Kaiti",
  20. FangSong: "FangSong",
  21. NSimSun: "NSimSun",
  22. STXinwei: "STXinwei",
  23. STXingkai: "STXingkai",
  24. STLiti: "STLiti",
  25. HanaleiFill: "HanaleiFill",
  26. Anton: "Anton",
  27. Pacifico: "Pacifico"
  28. },
  29. "shortcut-panel": {
  30. title: "Shortcuts"
  31. },
  32. shortcut: {
  33. undo: "Undo",
  34. redo: "Redo",
  35. cut: "Cut",
  36. copy: "Copy",
  37. paste: "Paste",
  38. "shortcut-panel": "Toggle Shortcut Panel"
  39. },
  40. "common-edit": "Common Editing Shortcuts",
  41. "toggle-shortcut-panel": "Toggle Shortcut Panel",
  42. clipboard: {
  43. authentication: {
  44. title: "Permission Denied",
  45. content: "Please allow Univer to access your clipboard."
  46. }
  47. },
  48. textEditor: {
  49. formulaError: "Please enter a valid formula, such as =SUM(A1)",
  50. rangeError: "Please enter a valid range, such as A1:B10"
  51. },
  52. rangeSelector: {
  53. title: "Select a data range",
  54. addAnotherRange: "Add range",
  55. buttonTooltip: "Select data range",
  56. placeHolder: "Select range or enter.",
  57. confirm: "Confirm",
  58. cancel: "Cancel"
  59. },
  60. "global-shortcut": "Global Shortcut"
  61. };
  62. export {
  63. e as default
  64. };