changeset 1289:90d9d4cf619c

"Scrobbler" plugin and the wrath of "i18n project"... ;-)
author Stany HENRY <StrassBoy@gmail.com>
date Wed, 18 Jul 2007 23:04:11 +0200
parents a3a59254d286
children 5daedb3af7c9
files src/scrobbler/gtkstuff.c
diffstat 1 files changed, 7 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/src/scrobbler/gtkstuff.c	Wed Jul 18 22:32:55 2007 +0200
+++ b/src/scrobbler/gtkstuff.c	Wed Jul 18 23:04:11 2007 +0200
@@ -17,10 +17,10 @@
 	if (aboutbox)
 		return;
 
-	tmp = g_strdup_printf("Audacious AudioScrobbler Plugin\n\n"
-				"Originally created by Audun Hove <audun@nlc.no> and Pipian <pipian@pipian.com>\n");
+	tmp = g_strdup_printf(_("Audacious AudioScrobbler Plugin\n\n"
+				"Originally created by Audun Hove <audun@nlc.no> and Pipian <pipian@pipian.com>\n"));
 	aboutbox = xmms_show_message(_("About Scrobbler Plugin"),
-			_(tmp),
+			tmp,
 			_("Ok"), FALSE, NULL, NULL);
 
 	g_free(tmp);
@@ -32,14 +32,14 @@
 {
 	gchar *tmp;
 
-	tmp = g_strdup_printf("There has been an error"
+	tmp = g_strdup_printf(_("There has been an error"
 			" that may require your attention.\n\n"
 			"Contents of server error:\n\n"
-			"%s\n",
+			"%s\n"),
 			errortxt);
 
-	xmms_show_message("Scrobbler Error",
+	xmms_show_message(_("Scrobbler Error"),
 			tmp,
-			"OK", FALSE, NULL, NULL);
+			_("OK"), FALSE, NULL, NULL);
 	g_free(tmp);
 }