mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-24 23:17:38 +00:00
* Add data-cy * Fix specs * Fix no events label * Fix Table regression * Fix action failures. * Fix Event data-cy * Fix cy version * Revert lock filr
36 lines
1,008 B
JavaScript
36 lines
1,008 B
JavaScript
export const tableText = {
|
|
defaultWidgetName: "table1",
|
|
tableDocumentationLink: "Table documentation",
|
|
defaultInput: [
|
|
{ id: 1, name: "Sarah", email: "[email protected]" },
|
|
{ id: 2, name: "Lisa", email: "[email protected]" },
|
|
{ id: 3, name: "Sam", email: "[email protected]" },
|
|
{ id: 4, name: "Jon", email: "[email protected]" },
|
|
],
|
|
|
|
placeHolderSearch: "Search",
|
|
defaultPageIndexDetails: "of 1",
|
|
currentPageIndexDetails: 1,
|
|
|
|
defaultNumberOfRecords: "4 Records",
|
|
|
|
optionDownloadCSV: "Download as CSV",
|
|
optionDownloadExcel: "Download as Excel",
|
|
|
|
oprionSelectAll: "Select All",
|
|
|
|
headerFilters: "Filters",
|
|
labelNoFilters: "no filters yet.",
|
|
buttonLabelAddFilter: "+ add filter",
|
|
buttonLabelClearFilters: "clear filters",
|
|
labelColumn: "column",
|
|
labelAnd: "and",
|
|
id: "id",
|
|
email: "email",
|
|
name: "name",
|
|
optionEquals: "equals",
|
|
|
|
labelDynamicColumn: "Use dynamic column",
|
|
makeEditable: "Make editable",
|
|
lableDisableActionButton: "Disable action button",
|
|
};
|