en-US.js 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604
  1. const e = {
  2. spreadsheetLabel: "Spreadsheet",
  3. spreadsheetRightLabel: "more Sheets",
  4. toolbar: {
  5. undo: "Undo",
  6. redo: "Redo",
  7. formatPainter: "Paint format",
  8. currencyFormat: "Format as currency",
  9. percentageFormat: "Format as percent",
  10. numberDecrease: "Decrease decimal places",
  11. numberIncrease: "Increase decimal places",
  12. moreFormats: "More formats",
  13. font: "Font",
  14. fontSize: "Font size",
  15. bold: "Bold",
  16. italic: "Italic",
  17. strikethrough: "Strikethrough",
  18. subscript: "Subscript",
  19. superscript: "Superscript",
  20. underline: "Underline",
  21. textColor: {
  22. main: "Text color",
  23. right: "Choose color"
  24. },
  25. resetColor: "Reset",
  26. customColor: "CUSTOM",
  27. alternatingColors: "Alternating colors",
  28. confirmColor: "OK",
  29. cancelColor: "Cancel",
  30. collapse: "Collapse",
  31. fillColor: {
  32. main: "Fill color",
  33. right: "Choose color"
  34. },
  35. border: {
  36. main: "Border",
  37. right: "Border style"
  38. },
  39. mergeCell: {
  40. main: "Merge cells",
  41. right: "Choose merge type"
  42. },
  43. horizontalAlignMode: {
  44. main: "Horizontal align",
  45. right: "Alignment"
  46. },
  47. verticalAlignMode: {
  48. main: "Vertical align",
  49. right: "Alignment"
  50. },
  51. textWrapMode: {
  52. main: "Text wrap",
  53. right: "Text wrap mode"
  54. },
  55. textRotateMode: {
  56. main: "Text rotate",
  57. right: "Text rotate mode"
  58. },
  59. freezeTopRow: "Freeze top row",
  60. sortAndFilter: "Sort and filter",
  61. findAndReplace: "Find and replace",
  62. sum: "SUM",
  63. autoSum: "Auto SUM",
  64. moreFunction: "More functions",
  65. conditionalFormatting: "Conditional formatting",
  66. comment: "Comment",
  67. pivotTable: "Pivot Table",
  68. chart: "Chart",
  69. screenshot: "Screenshot",
  70. splitColumn: "Split text",
  71. insertImage: "Insert image",
  72. insertLink: "Insert link",
  73. dataValidation: "Data validation",
  74. protection: "Protect the sheet",
  75. clearText: "Clear color",
  76. noColorSelectedText: "No color is selected",
  77. toolMore: "More",
  78. toolLess: "Less",
  79. toolClose: "Close",
  80. toolMoreTip: "More features",
  81. moreOptions: "More options",
  82. cellFormat: "Cell format config",
  83. print: "Print",
  84. borderMethod: {
  85. top: "Upper frame line",
  86. bottom: "Lower frame line",
  87. left: "Left frame line",
  88. right: "Right frame line"
  89. },
  90. more: "More",
  91. hideGridlines: "Hide Gridlines",
  92. showGridlines: "Show Gridlines",
  93. toggleGridlines: "Toggle Gridlines"
  94. },
  95. defaultFmt: {
  96. Automatic: {
  97. text: "Automatic",
  98. value: "General",
  99. example: ""
  100. },
  101. Number: {
  102. text: "Number",
  103. value: "##0.00",
  104. example: "1000.12"
  105. },
  106. Percent: {
  107. text: "Percent",
  108. value: "#0.00%",
  109. example: "12.21%"
  110. },
  111. PlainText: {
  112. text: "Plain text",
  113. value: "@",
  114. example: ""
  115. },
  116. Scientific: {
  117. text: "Scientific",
  118. value: "0.00E+00",
  119. example: "1.01E+5"
  120. },
  121. Accounting: {
  122. text: "Accounting",
  123. value: "¥(0.00)",
  124. example: "¥(1200.09)"
  125. },
  126. Thousand: {
  127. text: "Ten Thousand",
  128. value: "w",
  129. example: "1亿2000万2500"
  130. },
  131. Currency: {
  132. text: "Currency",
  133. value: "¥0.00",
  134. example: "¥1200.09"
  135. },
  136. Digit: {
  137. text: "万元2位小数",
  138. value: "w0.00",
  139. example: "2万2500.55"
  140. },
  141. Date: {
  142. text: "Date",
  143. value: "yyyy-MM-dd",
  144. example: "2017-11-29"
  145. },
  146. Time: { text: "Time", value: "hh:mm AM/PM", example: "3:00 PM" },
  147. Time24H: { text: "Time 24H", value: "hh:mm", example: "15:00" },
  148. DateTime: { text: "Date time", value: "yyyy-MM-dd hh:mm AM/PM", example: "2017-11-29 3:00 PM" },
  149. DateTime24H: { text: "Date time 24H", value: "yyyy-MM-dd hh:mm", example: "2017-11-29 15:00" },
  150. CustomFormats: { text: "Custom Formats", value: "fmtOtherSelf", example: "" }
  151. },
  152. format: {
  153. moreCurrency: "More currency formats",
  154. moreDateTime: "More date and time formats",
  155. moreNumber: "More number formats",
  156. titleCurrency: "Currency formats",
  157. decimalPlaces: "Decimal places",
  158. titleDateTime: "Date and time formats",
  159. titleNumber: "Number formats"
  160. },
  161. print: {
  162. normalBtn: "Normal",
  163. layoutBtn: "Page Layout",
  164. pageBtn: "Page break preview",
  165. menuItemPrint: "Print (Ctrl+P)",
  166. menuItemAreas: "Print areas",
  167. menuItemRows: "Print title rows",
  168. menuItemColumns: "Print title columns"
  169. },
  170. align: {
  171. left: "left",
  172. center: "center",
  173. right: "right",
  174. top: "top",
  175. middle: "middle",
  176. bottom: "bottom"
  177. },
  178. button: {
  179. confirm: "OK",
  180. cancel: "Cancel",
  181. close: "Close",
  182. update: "Update",
  183. delete: "Delete",
  184. insert: "Insert",
  185. prevPage: "Previous",
  186. nextPage: "Next",
  187. total: "total:"
  188. },
  189. punctuation: {
  190. tab: "Tab",
  191. semicolon: "semicolond",
  192. comma: "comma",
  193. space: "space"
  194. },
  195. colorPicker: {
  196. collapse: "Collapse",
  197. customColor: "CUSTOM",
  198. change: "Change",
  199. confirmColor: "OK",
  200. cancelColor: "Cancel"
  201. },
  202. borderLine: {
  203. borderTop: "borderTop",
  204. borderBottom: "borderBottom",
  205. borderLeft: "borderLeft",
  206. borderRight: "borderRight",
  207. borderNone: "borderNone",
  208. borderAll: "borderAll",
  209. borderOutside: "borderOutside",
  210. borderInside: "borderInside",
  211. borderHorizontal: "borderHorizontal",
  212. borderVertical: "borderVertical",
  213. borderColor: "borderColor",
  214. borderSize: "borderSize",
  215. borderType: "borderType"
  216. },
  217. merge: {
  218. all: "Merge all",
  219. vertical: "Vertical merge",
  220. horizontal: "Horizontal merge",
  221. cancel: "Cancel merge",
  222. overlappingError: "Cannot merge overlapping areas",
  223. partiallyError: "Cannot perform this operation on partially merged cells",
  224. confirm: {
  225. title: "Continue merging would only keep the upper-left cell value, discard other values. Are you sure to continue?",
  226. cancel: "Cancel merging",
  227. confirm: "Continue merging",
  228. waring: "Waring",
  229. dismantleMergeCellWaring: "This will cause some merged cells to be split. Do you want to continue?"
  230. }
  231. },
  232. filter: {
  233. confirm: {
  234. error: "There was a problem",
  235. notAllowedToInsertRange: "Not allowed to move cells here until filter is cleared"
  236. }
  237. },
  238. textWrap: {
  239. overflow: "Overflow",
  240. wrap: "Wrap",
  241. clip: "Clip"
  242. },
  243. textRotate: {
  244. none: "None",
  245. angleUp: "Tilt Up",
  246. angleDown: "Tilt Down",
  247. vertical: "Stack Vertically",
  248. rotationUp: "Rotate Up",
  249. rotationDown: "Rotate Down"
  250. },
  251. sheetConfig: {
  252. delete: "Delete",
  253. copy: "Copy",
  254. rename: "Rename",
  255. changeColor: "Change color",
  256. hide: "Hide",
  257. unhide: "Unhide",
  258. moveLeft: "Move left",
  259. moveRight: "Move right",
  260. resetColor: "Reset color",
  261. cancelText: "Cancel",
  262. chooseText: "Confirm color",
  263. tipNameRepeat: "The name of the tab page cannot be repeated! Please revise",
  264. noMoreSheet: "The workbook contains at least one visual worksheet. To delete the selected worksheet, please insert a new worksheet or show a hidden worksheet.",
  265. confirmDelete: "Are you sure to delete",
  266. redoDelete: "Can be undo by Ctrl+Z",
  267. noHide: "Can't hide, at least keep one sheet tag",
  268. chartEditNoOpt: "This operation is not allowed in chart editing mode!",
  269. sheetNameErrorTitle: "There was a problem",
  270. sheetNameSpecCharError: "The name cannot exceed 31 characters, cannot start or end with ', and cannot contain: [ ] : \\ ? * /",
  271. sheetNameCannotIsEmptyError: "The sheet name cannot be empty.",
  272. sheetNameAlreadyExistsError: "The sheet name already exists. Please enter another name.",
  273. deleteSheet: "Delete worksheet",
  274. deleteSheetContent: "Confirm to delete this worksheet. It will not be retrieved after deletion. Are you sure you want to delete it?",
  275. addProtectSheet: "Protect Worksheet",
  276. removeProtectSheet: "Unprotect Worksheet",
  277. changeSheetPermission: "Change Worksheet Permissions",
  278. viewAllProtectArea: "View All Protection Ranges"
  279. },
  280. rightClick: {
  281. copy: "Copy",
  282. copyAs: "Copy as",
  283. cut: "Cut",
  284. paste: "Paste",
  285. pasteSpecial: "Paste Special",
  286. pasteValue: "Paste Value",
  287. pasteFormat: "Paste Format",
  288. pasteColWidth: "Paste Column Width",
  289. pasteBesidesBorder: "Paste Besides Border Styles",
  290. insert: "Insert",
  291. insertRow: "Insert Row",
  292. insertRowBefore: "Insert Row Before",
  293. insertColumn: "Insert Column",
  294. insertColumnBefore: "Insert Column Before",
  295. delete: "Delete",
  296. deleteCell: "Delete Cell",
  297. insertCell: "Insert Cell",
  298. deleteSelected: "Delete Selected ",
  299. hide: "Hide",
  300. hideSelected: "Hide Selected ",
  301. showHide: "Show Hidden",
  302. toTopAdd: "Towards Top Add",
  303. toBottomAdd: "Towards Bottom Add",
  304. toLeftAdd: "Towards Left Add",
  305. toRightAdd: "Towards Right Add",
  306. deleteSelectedRow: "Delete Selected row",
  307. deleteSelectedColumn: "Delete Selected column",
  308. hideSelectedRow: "Hide Selected Row",
  309. showHideRow: "Show Selected Row",
  310. rowHeight: "Row Height",
  311. hideSelectedColumn: "Hide Selected Column",
  312. showHideColumn: "Show Hide Column",
  313. columnWidth: "Column Width",
  314. to: "Towards",
  315. left: "Left",
  316. right: "Right",
  317. top: "Top",
  318. bottom: "Bottom",
  319. moveLeft: "Move Left",
  320. moveUp: "Move up",
  321. moveRight: "Move Right",
  322. moveDown: "Move Down",
  323. add: "Add",
  324. row: "Row",
  325. column: "Column",
  326. width: "Width",
  327. height: "Height",
  328. number: "Number",
  329. confirm: "Confirm",
  330. orderAZ: "A-Z order",
  331. orderZA: "Z-A order",
  332. clearSelection: "Clear",
  333. clearContent: "Clear Contents",
  334. clearFormat: "Clear Formats",
  335. clearAll: "Clear All",
  336. matrix: "Matrix operation",
  337. sortSelection: "Sort",
  338. filterSelection: "Filter",
  339. chartGeneration: "Create Chart",
  340. firstLineTitle: "First Line Title",
  341. untitled: "Untitled",
  342. array1: "One-dimensional array",
  343. array2: "Two-dimensional array",
  344. array3: "Multidimensional Arrays",
  345. diagonal: "Diagonal",
  346. antiDiagonal: "Anti-diagonal",
  347. diagonalOffset: "Diagonal offset",
  348. offset: "Offset",
  349. boolean: "Boolean",
  350. flip: "Flip",
  351. upAndDown: "Up and down",
  352. leftAndRight: "Left and right",
  353. clockwise: "Clockwise",
  354. counterclockwise: "Counterclockwise",
  355. transpose: "Transpose",
  356. matrixCalculation: "Matrix Calculation",
  357. plus: "Plus",
  358. minus: "Minus",
  359. multiply: "Multiply",
  360. divided: "Divided",
  361. power: "Power",
  362. root: "Root",
  363. log: "Log",
  364. delete0: "Delete 0 values at both ends",
  365. removeDuplicate: "Remove duplicate values",
  366. byRow: "By row",
  367. byCol: "By column",
  368. generateNewMatrix: "Generate new matrix",
  369. fitContent: "Fit for data",
  370. freeze: "Freeze",
  371. freezeCol: "Freeze to this column",
  372. freezeRow: "Freeze to this row",
  373. cancelFreeze: "Cancel freeze",
  374. zenEditor: "Full Screen Editor",
  375. deleteAllRowsAlert: "You can't delete all the rows on the sheet",
  376. deleteAllColumnsAlert: "You can't delete all the columns on the sheet",
  377. hideAllRowsAlert: "You can't hide all the rows on the sheet",
  378. hideAllColumnsAlert: "You can't hide all the columns on the sheet",
  379. protectRange: "Protect Rows And Columns",
  380. editProtectRange: "Set Protection Range",
  381. removeProtectRange: "Remove Protection Range",
  382. turnOnProtectRange: "Add Protection Range",
  383. viewAllProtectArea: "View All Protection Ranges"
  384. },
  385. info: {
  386. tooltip: "Tooltip",
  387. error: "Error",
  388. notChangeMerge: "You cannot make partial changes to the merged cells",
  389. detailUpdate: "New opened",
  390. detailSave: "Local cache restored",
  391. row: "",
  392. column: "",
  393. loading: "Loading...",
  394. copy: "Copy",
  395. return: "Exit",
  396. rename: "Rename",
  397. tips: "Rename",
  398. noName: "Untitled spreadsheet",
  399. wait: "waiting for update",
  400. add: "Add",
  401. addLast: "more rows at bottom",
  402. backTop: "Back to the top",
  403. // eslint-disable-next-line no-template-curly-in-string
  404. pageInfo: "Total ${total}, ${totalPage} page, current ${currentPage}",
  405. nextPage: "Next",
  406. tipInputNumber: "Please enter the number",
  407. tipInputNumberLimit: "The increase range is limited to 1-100",
  408. tipRowHeightLimit: "Row height must be between 0 ~ 545",
  409. tipColumnWidthLimit: "The column width must be between 0 ~ 2038",
  410. // eslint-disable-next-line no-template-curly-in-string
  411. pageInfoFull: "Total ${total}, ${totalPage} page, All data displayed",
  412. problem: "There was a problem",
  413. forceStringInfo: "Number stored as text"
  414. },
  415. clipboard: {
  416. paste: {
  417. exceedMaxCells: "The number of cells pasted exceeds the maximum number of cells",
  418. overlappingMergedCells: "The paste area overlaps with merged cells"
  419. },
  420. shortCutNotify: {
  421. title: "Kindly paste using keyboard shortcuts.",
  422. useShortCutInstead: "Detected Excel content. Use keyboard shortcut to paste."
  423. }
  424. },
  425. statusbar: {
  426. sum: "Sum",
  427. average: "Average",
  428. min: "Min",
  429. max: "Max",
  430. count: "Numerical Count",
  431. countA: "Count",
  432. clickToCopy: "Click to Copy",
  433. copied: "Copied"
  434. },
  435. autoFill: {
  436. copy: "Copy Cell",
  437. series: "Fill Series",
  438. formatOnly: "Format Only",
  439. noFormat: "No Format"
  440. },
  441. rangeSelector: {
  442. placeholder: "Select range or input value",
  443. tooltip: "Select range"
  444. },
  445. shortcut: {
  446. sheet: {
  447. "zoom-in": "Zoom in",
  448. "zoom-out": "Zoom out",
  449. "reset-zoom": "Reset zoom level",
  450. "select-below-cell": "Select the cell below",
  451. "select-up-cell": "Select the cell above",
  452. "select-left-cell": "Select the left cell",
  453. "select-right-cell": "Select the right cell",
  454. "select-next-cell": "Select the next cell",
  455. "select-previous-cell": "Select the previous cell",
  456. "select-up-value-cell": "Select the cell above that has value",
  457. "select-below-value-cell": "Select the cell below that has value",
  458. "select-left-value-cell": "Select the cell left that has value",
  459. "select-right-value-cell": "Select the cell right that has value",
  460. "expand-selection-down": "Expand selection down",
  461. "expand-selection-up": "Expand selection up",
  462. "expand-selection-left": "Expand selection left",
  463. "expand-selection-right": "Expand selection right",
  464. "expand-selection-to-left-gap": "Expand selection to the left gap",
  465. "expand-selection-to-below-gap": "Expand selection to the below gap",
  466. "expand-selection-to-right-gap": "Expand selection to the right gap",
  467. "expand-selection-to-up-gap": "Expand selection to the up gap",
  468. "select-all": "Select all",
  469. "toggle-editing": "Toggle editing",
  470. "delete-and-start-editing": "Clear and start editing",
  471. "abort-editing": "Abort editing",
  472. "break-line": "Break line",
  473. "set-bold": "Toggle bold",
  474. "start-editing": "Start Editing (Selection into the Editor)",
  475. "set-italic": "Toggle italic",
  476. "set-underline": "Toggle underline",
  477. "set-strike-through": "Toggle strike through"
  478. }
  479. },
  480. "sheet-view": "Sheet View",
  481. "sheet-edit": "Sheet Edit",
  482. definedName: {
  483. managerTitle: "Manager named",
  484. managerDescription: "Create a defined name by selecting cells or formulas, and entering the desired name into the text box.",
  485. addButton: "Add a defined name",
  486. featureTitle: "Defined names",
  487. ratioRange: "Range",
  488. ratioFormula: "Formula",
  489. confirm: "Confirm",
  490. cancel: "Cancel",
  491. scopeWorkbook: "Workbook",
  492. inputNamePlaceholder: "Please enter a name(No space allowed)",
  493. inputCommentPlaceholder: "Please enter a comment",
  494. inputRangePlaceholder: "Please input range(No space allowed)",
  495. inputFormulaPlaceholder: "Please input a formula(No space allowed)",
  496. nameEmpty: "Name cannot be empty",
  497. nameDuplicate: "Name already exists",
  498. formulaOrRefStringEmpty: "Formula or reference string cannot be empty",
  499. formulaOrRefStringInvalid: "Invalid formula or reference string",
  500. defaultName: "DefinedName",
  501. updateButton: "Update",
  502. deleteButton: "Delete",
  503. deleteConfirmText: "Are you sure you want to delete this defined name?",
  504. nameConflict: "The name conflicts with the function name",
  505. nameInvalid: "The name is invalid",
  506. nameSheetConflict: "The name conflicts with the sheet name"
  507. },
  508. uploadLoading: {
  509. loading: "Loading..., remaining",
  510. // 正在上传,当前剩余
  511. error: "Error"
  512. // 加载失败
  513. },
  514. permission: {
  515. toolbarMenu: "Protection",
  516. panel: {
  517. title: "Protect Rows and Columns",
  518. name: "Name",
  519. protectedRange: "Protected Range",
  520. permissionDirection: "Permission Description",
  521. permissionDirectionPlaceholder: "Enter permission description",
  522. editPermission: "Edit Permissions",
  523. onlyICanEdit: "Only I can edit",
  524. designedUserCanEdit: "Specified users can edit",
  525. viewPermission: "View Permissions",
  526. othersCanView: "Others can view",
  527. noOneElseCanView: "No one else can view",
  528. designedPerson: "Specified persons",
  529. addPerson: "Add person",
  530. canEdit: "Can edit",
  531. canView: "Can view",
  532. delete: "Delete",
  533. currentSheet: "Current sheet",
  534. allSheet: "All sheets",
  535. edit: "Edit",
  536. Print: "Print",
  537. Comment: "Comment",
  538. Copy: "Copy",
  539. SetCellStyle: "Set cell style",
  540. SetCellValue: "Set cell value",
  541. SetHyperLink: "Set hyperlink",
  542. Sort: "Sort",
  543. Filter: "Filter",
  544. PivotTable: "Pivot table",
  545. FloatImage: "Float image",
  546. RowHeightColWidth: "Row height and column width",
  547. RowHeightColWidthReadonly: "Read-only row height and column width",
  548. FilterReadonly: "Read-only filter",
  549. nameError: "Name cannot be empty",
  550. created: "Created",
  551. iCanEdit: "I can edit",
  552. iCanNotEdit: "I can't edit",
  553. iCanView: "I can view",
  554. iCanNotView: "I can't view",
  555. emptyRangeError: "Range cannot be empty",
  556. rangeOverlapError: "Range cannot overlap",
  557. rangeOverlapOverPermissionError: "Range cannot overlap with the range that has the same permission",
  558. InsertHyperlink: "Insert hyperlink",
  559. SetRowStyle: "Set row style",
  560. SetColumnStyle: "Set column style",
  561. InsertColumn: "Insert column",
  562. InsertRow: "Insert row",
  563. DeleteRow: "Delete row",
  564. DeleteColumn: "Delete column",
  565. EditExtraObject: "Edit extra object"
  566. },
  567. dialog: {
  568. allowUserToEdit: "Allow user to edit",
  569. allowedPermissionType: "Allowed permission types",
  570. setCellValue: "Set cell value",
  571. setCellStyle: "Set cell style",
  572. copy: "Copy",
  573. alert: "Alert",
  574. search: "Search",
  575. alertContent: "This range has been protected and no editing permissions are currently available. If you need to edit, please contact the creator.",
  576. userEmpty: "no designated person , Share link to invite specific people.",
  577. listEmpty: "You haven't set up any ranges or sheets as protected.",
  578. commonErr: "The range is protected, and you do not have permission for this operation. To edit, please contact the creator.",
  579. editErr: "The range is protected, and you do not have edit permission. To edit, please contact the creator.",
  580. pasteErr: "The range is protected, and you do not have paste permission. To paste, please contact the creator.",
  581. setStyleErr: "The range is protected, and you do not have permission to set styles. To set styles, please contact the creator.",
  582. copyErr: "The range is protected, and you do not have copy permission. To copy, please contact the creator.",
  583. workbookCopyErr: "The workbook is protected, and you do not have permission to copy. To copy, please contact the creator.",
  584. setRowColStyleErr: "The range is protected, and you do not have permission to set row and column styles. To set row and column styles, please contact the creator.",
  585. moveRowColErr: "The range is protected, and you do not have permission to move rows and columns. To move rows and columns, please contact the creator.",
  586. moveRangeErr: "The range is protected, and you do not have permission to move the selection. To move the selection, please contact the creator.",
  587. autoFillErr: "The range is protected, and you do not have permission for auto-fill. To use auto-fill, please contact the creator.",
  588. filterErr: "The range is protected, and you do not have filtering permission. To filter, please contact the creator.",
  589. operatorSheetErr: "The worksheet is protected, and you do not have permission to operate the worksheet. To operate the worksheet, please contact the creator.",
  590. insertOrDeleteMoveRangeErr: "The inserted or deleted range intersects with the protected range, and this operation is not supported for now.",
  591. printErr: "The worksheet is protected, and you do not have permission to print. To print, please contact the creator.",
  592. formulaErr: "The range or the referenced range is protected, and you do not have edit permission. To edit, please contact the creator.",
  593. hyperLinkErr: "The range is protected, and you do not have permission to set hyperlinks. To set hyperlinks, please contact the creator."
  594. },
  595. button: {
  596. confirm: "Confirm",
  597. cancel: "Cancel",
  598. addNewPermission: "Add new permission"
  599. }
  600. }
  601. };
  602. export {
  603. e as default
  604. };