mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 04:46:55 +03:00
Ticket #2146: Misleading label "Status:" in the Info panel
The info panels shows useful information about the currently selected file (atime, mtime, ctime for instance). However, the label "Status:" for ctime is clearly misleading. As we don't have enough space to label it "Status changed", I suggest to go for "Changed:" instead. I think this will make it much clearer what this date is all about, as I have already seen users suggesting that "Status" is a weird label for "Created", which is obviously not the case. Also, "Changed" label is consistent with "CHange time" that we use for column headers in the list mode elsewhere. Signed-off-by: Yury V. Zaytsev <yury@shurup.com>
This commit is contained in:
parent
6fca4b04b0
commit
d26ddb9178
@ -164,8 +164,10 @@ info_show_info (struct WInfo *info)
|
||||
g_string_set_size (buff, 0);
|
||||
case 9:
|
||||
widget_move (&info->widget, 9, 3);
|
||||
/* TRANSLATORS: "Status changed", like in the stat(2) man page */
|
||||
str_printf (buff, _("Status: %s"), file_date (st.st_ctime));
|
||||
/* The field st_ctime is changed by writing or by setting inode
|
||||
information (i.e., owner, group, link count, mode, etc.). */
|
||||
/* TRANSLATORS: Time of last status change as in stat(2) man. */
|
||||
str_printf (buff, _("Changed: %s"), file_date (st.st_ctime));
|
||||
tty_print_string (buff->str);
|
||||
g_string_set_size (buff, 0);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user