-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathi18n.ts
72 lines (72 loc) · 2.36 KB
/
i18n.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
export const i18n = {
confirmationModal: {
discardButton: 'Discard',
saveButton: 'Save',
},
datePicker: {
locale: 'en',
},
form: {
notifications: {
actionButtonCaption: 'Restore',
unsavedChangesMessage: 'You have unsaved changes. Click Restore button if you would like to recover the data',
},
modals: {
beforeLeaveMessage: 'Your data may be lost. Do you want to save data?',
},
},
notificationCard: {
closeAllNotificationsButton: 'CLOSE ALL NOTIFICATIONS',
},
dataPickerBody: {
searchPlaceholder: 'Search',
noResultsMessage: 'No Results found',
},
pickerModal: {
headerTitle: 'Please select',
searchPlaceholder: 'Type text for quick search',
cancelButton: 'Cancel',
selectButton: 'Select',
clearSelectionButton: 'CLEAR ALL',
selectAllButton: 'SELECT ALL',
},
pickerFilterHeader: {
sortAscending: 'Sort Ascending',
sortDescending: 'Sort Descending',
},
pickerInput: {
showOnlySelectedLabel: 'Show only selected',
clearSelectionButton: 'CLEAR ALL',
selectAllButton: 'SELECT ALL',
},
tables: {
columnsConfigurationModal: {
applyButton: 'Apply',
cancelButton: 'Cancel',
selectAllButton: 'Select all',
clearAllButton: 'Clear all',
checkAllButton: 'Check All',
uncheckAllButton: 'Uncheck All',
configureColumnsTitle: 'Configure columns',
resetToDefaultButton: 'Reset to Default',
displayedSectionTitle: 'Displayed in table',
hiddenSectionTitle: 'Hidden in table',
searchPlaceholder: 'Search by column name',
noResultsFound: {
text: 'No results found',
subText: 'We can’t find any item matching your request',
},
enableAtLeastOneColumnMessage: 'Please enable at least one column',
pinColumnButton: 'Pin column',
unPinColumnButton: 'Unpin column',
lockedColumnPinButton: 'You cannot unpin this column',
},
},
sliderRating: {
notAvailableMessage: 'Not Available',
},
rangeDatePicker: {
pickerPlaceholderFrom: 'From:',
pickerPlaceholderTo: 'To:',
},
};