summaryrefslogtreecommitdiffstats
path: root/ext
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2009-10-17 00:09:36 +0200
committerLennart Poettering <lennart@poettering.net>2009-10-17 00:15:34 +0200
commit54afa56a0df9264317db7af5f7c50bd9e2bb2e44 (patch)
tree85a7a92848bac425bbba89d7e2c7b1d351d61162 /ext
parentace863968b8053ec074ac61c8694079820126867 (diff)
pulse: when constructing a stream title from tag data make sure it is translatable
Diffstat (limited to 'ext')
-rw-r--r--ext/pulse/pulsesink.c3
1 files changed, 2 insertions, 1 deletions
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 <gst/base/gstbasesink.h>
#include <gst/gsttaglist.h>
#include <gst/interfaces/streamvolume.h>
+#include <gst/gst-i18n-plugin.h>
#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);