| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- const e = {
- "find-replace": {
- toolbar: "Find & Replace",
- shortcut: {
- "open-find-dialog": "Open Find Dialog",
- "open-replace-dialog": "Open Replace Dialog",
- "close-dialog": "Close Find & Replace Dialog",
- "go-to-next-match": "Go to Next Match",
- "go-to-previous-match": "Go to Previous Match"
- },
- dialog: {
- title: "Find",
- find: "Find",
- replace: "Replace",
- "replace-all": "Replace All",
- "case-sensitive": "Case Sensitive",
- "find-placeholder": "Find in this Sheet",
- "advanced-finding": "Advanced Searching & Replace",
- "replace-placeholder": "Input Replace String",
- "match-the-whole-cell": "Match the Whole Cell",
- "find-direction": {
- title: "Find Direction",
- row: "Search by Row",
- column: "Search by Column"
- },
- "find-scope": {
- title: "Find Range",
- "current-sheet": "Current Sheet",
- workbook: "Workbook"
- },
- "find-by": {
- title: "Find By",
- value: "Find by Value",
- formula: "Find Formula"
- },
- "no-match": "Finding completed but no match found.",
- "no-result": "No Result"
- },
- replace: {
- "all-success": "Replaced all {0} matches",
- "all-failure": "Replace failed",
- confirm: {
- title: "Are you sure to replace all matches?"
- }
- }
- },
- "find-replace-shortcuts": "Find & Replace"
- };
- export {
- e as default
- };
|