mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-27 06:26:15 +01:00
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:
parent
e979fd9a15
commit
ec03755355
@ -171,7 +171,7 @@ show_info (GFile *file, GFileInfo *info)
|
|||||||
{
|
{
|
||||||
/* Translators: This is a noun and represents and attribute of a file */
|
/* Translators: This is a noun and represents and attribute of a file */
|
||||||
flatten = flatten_string (name);
|
flatten = flatten_string (name);
|
||||||
g_print (_("display name: %s\n"), flatten);
|
g_print (_("edit name: %s\n"), flatten);
|
||||||
g_free (flatten);
|
g_free (flatten);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user