PlutoGridLocaleText constructor

const PlutoGridLocaleText({
  1. String unfreezeColumn = 'Unfreeze',
  2. String freezeColumnToStart = 'Freeze to start',
  3. String freezeColumnToEnd = 'Freeze to end',
  4. String autoFitColumn = 'Auto fit',
  5. String hideColumn = 'Hide column',
  6. String setColumns = 'Set columns',
  7. String setFilter = 'Set filter',
  8. String resetFilter = 'Reset filter',
  9. String setColumnsTitle = 'Column title',
  10. String filterColumn = 'Column',
  11. String filterType = 'Type',
  12. String filterValue = 'Value',
  13. String filterAllColumns = 'All columns',
  14. String filterContains = 'Contains',
  15. String filterEquals = 'Equals',
  16. String filterStartsWith = 'Starts with',
  17. String filterEndsWith = 'Ends with',
  18. String filterGreaterThan = 'Greater than',
  19. String filterGreaterThanOrEqualTo = 'Greater than or equal to',
  20. String filterLessThan = 'Less than',
  21. String filterLessThanOrEqualTo = 'Less than or equal to',
  22. String sunday = 'Su',
  23. String monday = 'Mo',
  24. String tuesday = 'Tu',
  25. String wednesday = 'We',
  26. String thursday = 'Th',
  27. String friday = 'Fr',
  28. String saturday = 'Sa',
  29. String hour = 'Hour',
  30. String minute = 'Minute',
  31. String loadingText = 'Loading',
})

Implementation

const PlutoGridLocaleText({
  // Column menu
  this.unfreezeColumn = 'Unfreeze',
  this.freezeColumnToStart = 'Freeze to start',
  this.freezeColumnToEnd = 'Freeze to end',
  this.autoFitColumn = 'Auto fit',
  this.hideColumn = 'Hide column',
  this.setColumns = 'Set columns',
  this.setFilter = 'Set filter',
  this.resetFilter = 'Reset filter',
  // SetColumns popup
  this.setColumnsTitle = 'Column title',
  // Filter popup
  this.filterColumn = 'Column',
  this.filterType = 'Type',
  this.filterValue = 'Value',
  this.filterAllColumns = 'All columns',
  this.filterContains = 'Contains',
  this.filterEquals = 'Equals',
  this.filterStartsWith = 'Starts with',
  this.filterEndsWith = 'Ends with',
  this.filterGreaterThan = 'Greater than',
  this.filterGreaterThanOrEqualTo = 'Greater than or equal to',
  this.filterLessThan = 'Less than',
  this.filterLessThanOrEqualTo = 'Less than or equal to',
  // Date popup
  this.sunday = 'Su',
  this.monday = 'Mo',
  this.tuesday = 'Tu',
  this.wednesday = 'We',
  this.thursday = 'Th',
  this.friday = 'Fr',
  this.saturday = 'Sa',
  // Time column popup
  this.hour = 'Hour',
  this.minute = 'Minute',
  // Common
  this.loadingText = 'Loading',
});