zh-TW.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. };