Remove unused i18n translation

All the g_printerr does is printing the message of the GError with a
newline at the end. Hence, use a simple format string without the need
to translate it.

Signed-off-by: Pino Toscano <ptoscano@redhat.com>
This commit is contained in:
Pino Toscano 2020-07-22 23:22:20 +02:00
parent 0325901984
commit 35443daed4

View File

@ -2174,7 +2174,7 @@ virt_viewer_app_local_command_line (GApplication *gapp,
if (!g_option_context_parse_strv(context, args, &error)) {
if (error != NULL) {
g_printerr(_("%s\n"), error->message);
g_printerr("%s\n", error->message);
g_error_free(error);
}