mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-21 21:47:17 +00:00
34 lines
979 B
JavaScript
34 lines
979 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: "1 of 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",
|
|
};
|