[easytag] Do not use bell in translatable string, bug 700723



commit a500ac81a0bb376e72d82989d7c4f8f079486578
Author: David King <amigadave amigadave com>
Date:   Mon May 20 15:55:11 2013 +0100

    Do not use bell in translatable string, bug 700723

 src/easytag.c |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)
---
diff --git a/src/easytag.c b/src/easytag.c
index 2a3ed72..4cd399c 100644
--- a/src/easytag.c
+++ b/src/easytag.c
@@ -4398,8 +4398,9 @@ Handle_Crash (gint signal_id)
     // To send messages to the console...
     g_print(_("EasyTAG version %s: Abnormal exit (PID: %d)."),PACKAGE_VERSION,getpid());
     g_print("\n");
-    g_print(_("Received signal %s (%d)\a"),signal_to_string(signal_id),signal_id);
-    g_print("\n");
+    g_print (_("Received signal %s (%d)"),
+             signal_to_string (signal_id), signal_id);
+    g_print ("\a\n");
     g_print(_("You have probably found a bug in EasyTAG. Please, file a bug "
             "report with a GDB backtrace ('gdb easytag core' then 'bt' and "
             "'l') and information to reproduce it at: %s"),PACKAGE_BUGREPORT);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]