zh-CN.js 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. const e = {
  2. "find-replace": {
  3. toolbar: "查找替换",
  4. shortcut: {
  5. "open-find-dialog": "打开查找对话框",
  6. "open-replace-dialog": "打开替换对话框",
  7. "close-dialog": "关闭查找替换对话框",
  8. "go-to-next-match": "下一个匹配项",
  9. "go-to-previous-match": "下一个匹配项"
  10. },
  11. dialog: {
  12. title: "查找",
  13. find: "查找",
  14. replace: "替换",
  15. "replace-all": "替换全部",
  16. "find-placeholder": "输入查找内容",
  17. "advanced-finding": "替换 / 高级查找",
  18. "replace-placeholder": "输入替换内容",
  19. "case-sensitive": "匹配大小写",
  20. "match-the-whole-cell": "匹配整个单元格",
  21. "find-scope": {
  22. title: "查找范围",
  23. "current-sheet": "当前子表",
  24. workbook: "整个工作簿"
  25. },
  26. "find-direction": {
  27. title: "查找顺序",
  28. column: "按列查找",
  29. row: "按行查找"
  30. },
  31. "find-by": {
  32. title: "查找方式",
  33. formula: "查找公式",
  34. value: "查找值"
  35. },
  36. "no-match": "已完成搜索,但是未找到任何匹配项",
  37. "no-result": "无结果"
  38. },
  39. replace: {
  40. "all-success": "已全部替换 {0} 个匹配项",
  41. "all-failure": "替换失败",
  42. confirm: {
  43. title: "确定要替换所有的匹配项吗?"
  44. }
  45. }
  46. },
  47. "find-replace-shortcuts": "查找替换"
  48. };
  49. export {
  50. e as default
  51. };