1 import { c } from 'ttag';
3 import { HeaderCellsPresets } from '../../FileBrowser/interface';
5 export const checkbox = {
6 type: HeaderCellsPresets.Checkbox,
11 getText: () => c('Label').t`Name`,
15 export const location = {
17 getText: () => c('Label').t`Location`,
23 export const trashed = {
25 getText: () => c('Label').t`Deleted`,
34 getText: () => c('Label').t`Size`,
41 export const modificationDate = {
42 type: 'fileModifyTime',
43 getText: () => c('Label').t`Modified`,
50 export const creationDate = {
51 type: 'linkCreateTime',
52 getText: () => c('Label').t`Created`,
59 export const sharedOnDate = {
61 getText: () => c('Label').t`Shared on`,
68 export const sharedBy = {
70 getText: () => c('Label').t`Shared by`,
77 export const accessCount = {
79 getText: () => c('Label').t`# of downloads`,
86 export const expirationDate = {
87 type: 'linkExpireTime',
88 getText: () => c('Label').t`Expires`,
95 export const placeholder = {
96 type: HeaderCellsPresets.Placeholder,
98 className: 'file-browser-list--context-menu-column',