This repository was archived by the owner on Jan 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 98
/
Copy pathImporterLocale.ts
58 lines (50 loc) · 1.51 KB
/
ImporterLocale.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
export interface ImporterLocale {
general: {
goToPreviousStepTooltip: string;
};
fileStep: {
initialDragDropPrompt: string;
activeDragDropPrompt: string;
getImportError: (message: string) => string;
getDataFormatError: (message: string) => string;
goBackButton: string;
nextButton: string;
rawFileContentsHeading: string;
previewImportHeading: string;
dataHasHeadersCheckbox: string;
previewLoadingStatus: string;
};
fieldsStep: {
stepSubtitle: string;
requiredFieldsError: string;
nextButton: string;
dragSourceAreaCaption: string;
getDragSourcePageIndicator: (
currentPage: number,
pageCount: number
) => string;
getDragSourceActiveStatus: (columnCode: string) => string;
nextColumnsTooltip: string;
previousColumnsTooltip: string;
clearAssignmentTooltip: string;
selectColumnTooltip: string;
unselectColumnTooltip: string;
dragTargetAreaCaption: string;
getDragTargetOptionalCaption: (field: string) => string;
getDragTargetRequiredCaption: (field: string) => string;
dragTargetPlaceholder: string;
getDragTargetAssignTooltip: (columnCode: string) => string;
dragTargetClearTooltip: string;
columnCardDummyHeader: string;
getColumnCardHeader: (code: string) => string;
};
progressStep: {
stepSubtitle: string;
uploadMoreButton: string;
finishButton: string;
statusError: string;
statusComplete: string;
statusPending: string;
processedRowsLabel: string;
};
}