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

The tooling won’t pick them up unless they’re directly above the gettext
calls.

Spotted by Piotr Drąg in
ec03755355 (note_1808152).

Signed-off-by: Philip Withnall <philip@tecnocode.co.uk>
This commit is contained in:
Philip Withnall 2023-08-12 20:01:36 +01:00
parent 3029f08ed8
commit faee7d0858

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);
}