diff options
author | rbuj <[email protected]> | 2021-03-28 12:07:58 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2022-07-21 19:33:51 +0200 |
commit | 14e4b2f88f45c6dfb8739ba6979057274d4c5408 (patch) | |
tree | a55cec8bfa249e226b82cf1572bba8f9d0b0b0c7 /libcaja-private/caja-column-utilities.c | |
parent | 3c3ca50505fac6c93d76addf10f0eae1f7991743 (diff) | |
download | caja-14e4b2f88f45c6dfb8739ba6979057274d4c5408.tar.bz2 caja-14e4b2f88f45c6dfb8739ba6979057274d4c5408.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 e4aba54a..b74cfbb4 100644 --- a/libcaja-private/caja-column-utilities.c +++ b/libcaja-private/caja-column-utilities.c @@ -78,6 +78,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"), |