diff options
author | rbuj <[email protected]> | 2021-03-28 12:07:58 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2021-04-20 19:40:09 +0200 |
commit | 0eb7520d23cc4ca6cdd9b6c97d3f6cbafcdfc927 (patch) | |
tree | f65d5ff92cb5ca3f62f94881d64232f0c8f0efe0 /libcaja-private/caja-column-utilities.c | |
parent | a940185ca0ee157b980250d7f2f5bef842e3625f (diff) | |
download | caja-0eb7520d23cc4ca6cdd9b6c97d3f6cbafcdfc927.tar.bz2 caja-0eb7520d23cc4ca6cdd9b6c97d3f6cbafcdfc927.tar.xz |
Add creation time support
Diffstat (limited to 'libcaja-private/caja-column-utilities.c')
-rw-r--r-- | libcaja-private/caja-column-utilities.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libcaja-private/caja-column-utilities.c b/libcaja-private/caja-column-utilities.c index d8b6a406..0471e8b5 100644 --- a/libcaja-private/caja-column-utilities.c +++ b/libcaja-private/caja-column-utilities.c @@ -79,6 +79,14 @@ get_builtin_columns (void) columns = g_list_append (columns, g_object_new (CAJA_TYPE_COLUMN, + "name", "date_created", + "attribute", "date_created", + "label", _("Date Created"), + "description", _("The date the file was created."), + NULL)); + + columns = g_list_append (columns, + g_object_new (CAJA_TYPE_COLUMN, "name", "date_accessed", "attribute", "date_accessed", "label", _("Date Accessed"), |