en-US.js 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. const e = {
  2. "find-replace": {
  3. toolbar: "Find & Replace",
  4. shortcut: {
  5. "open-find-dialog": "Open Find Dialog",
  6. "open-replace-dialog": "Open Replace Dialog",
  7. "close-dialog": "Close Find & Replace Dialog",
  8. "go-to-next-match": "Go to Next Match",
  9. "go-to-previous-match": "Go to Previous Match"
  10. },
  11. dialog: {
  12. title: "Find",
  13. find: "Find",
  14. replace: "Replace",
  15. "replace-all": "Replace All",
  16. "case-sensitive": "Case Sensitive",
  17. "find-placeholder": "Find in this Sheet",
  18. "advanced-finding": "Advanced Searching & Replace",
  19. "replace-placeholder": "Input Replace String",
  20. "match-the-whole-cell": "Match the Whole Cell",
  21. "find-direction": {
  22. title: "Find Direction",
  23. row: "Search by Row",
  24. column: "Search by Column"
  25. },
  26. "find-scope": {
  27. title: "Find Range",
  28. "current-sheet": "Current Sheet",
  29. workbook: "Workbook"
  30. },
  31. "find-by": {
  32. title: "Find By",
  33. value: "Find by Value",
  34. formula: "Find Formula"
  35. },
  36. "no-match": "Finding completed but no match found.",
  37. "no-result": "No Result"
  38. },
  39. replace: {
  40. "all-success": "Replaced all {0} matches",
  41. "all-failure": "Replace failed",
  42. confirm: {
  43. title: "Are you sure to replace all matches?"
  44. }
  45. }
  46. },
  47. "find-replace-shortcuts": "Find & Replace"
  48. };
  49. export {
  50. e as default
  51. };