commit ab2acf1fff26cf5354bdbbf256fa57a292d8124d
Author: Daniele Forsi <da...@fo...>
Date: Sun Jul 8 18:52:29 2012 +0200
Add missing newlines to a message string
libgtkpod/tools.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/libgtkpod/tools.c b/libgtkpod/tools.c
index 19e15e1..27a6a06 100644
--- a/libgtkpod/tools.c
+++ b/libgtkpod/tools.c
@@ -339,9 +339,9 @@ static gboolean nm_get_soundcheck(Track *track, GError **error) {
}
}
else {
- buf = g_strdup_printf(_("Normalization failed for file %s: file type not supported."
- "To normalize mp3 and aac files ensure the following commands paths have been set in the Tools section"
- "\tmp3 files: mp3gain"
+ buf = g_strdup_printf(_("Normalization failed for file %s: file type not supported.\n"
+ "To normalize mp3 and aac files ensure the following commands paths have been set in the Tools section\n"
+ "\tmp3 files: mp3gain\n"
"\taac files: aacgain"), path);
gtkpod_log_error(error, buf);
g_free(buf);
|