gio-tool-info: Fix a duplicate attribute name in the UI

`gio info` currently prints ‘display name:’ twice. One of those should
be ‘edit name:’ — this regressed in commit
a374b7c806.

Various translations still have the old string, but some unfortunately
do not, so this is effectively a new translatable string again.

Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
This commit is contained in:
Philip Withnall 2023-03-21 11:31:00 +00:00
parent e979fd9a15
commit ec03755355

View File

@ -171,7 +171,7 @@ show_info (GFile *file, GFileInfo *info)
{
/* Translators: This is a noun and represents and attribute of a file */
flatten = flatten_string (name);
g_print (_("display name: %s\n"), flatten);
g_print (_("edit name: %s\n"), flatten);
g_free (flatten);
}