From 54afa56a0df9264317db7af5f7c50bd9e2bb2e44 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Sat, 17 Oct 2009 00:09:36 +0200 Subject: pulse: when constructing a stream title from tag data make sure it is translatable --- ext/pulse/pulsesink.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'ext') diff --git a/ext/pulse/pulsesink.c b/ext/pulse/pulsesink.c index d84c49d4..7303324e 100644 --- a/ext/pulse/pulsesink.c +++ b/ext/pulse/pulsesink.c @@ -49,6 +49,7 @@ #include #include #include +#include #include "pulsesink.h" #include "pulseutil.h" @@ -2172,7 +2173,7 @@ gst_pulsesink_event (GstBaseSink * sink, GstEvent * event) if (title && artist) t = buf = - g_strdup_printf ("'%s' by '%s'", g_strstrip (title), + g_strdup_printf (_("'%s' by '%s'"), g_strstrip (title), g_strstrip (artist)); else if (title) t = g_strstrip (title); -- cgit