Merge branch 'gio-tool-info-translator-comments' into 'main'

gio-tool-info: Move translator comments so they’re visible

See merge request GNOME/glib!3528
This commit is contained in:
Philip Withnall 2023-08-13 14:18:58 +00:00
commit 3ee019c036

View File

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