pulsesink: add comment for translators for 'x by y' message

Fixes #609724.
This commit is contained in:
Tim-Philipp Müller 2010-02-15 00:45:51 +00:00
parent c78b3b1332
commit 3f2a803c48

View file

@ -2232,8 +2232,8 @@ gst_pulsesink_event (GstBaseSink * sink, GstEvent * event)
gst_tag_list_get_string (l, GST_TAG_PERFORMER, &artist);
if (title && artist)
t = buf =
g_strdup_printf (_("'%s' by '%s'"), g_strstrip (title),
/* TRANSLATORS: 'song title' by 'artist name' */
t = buf = g_strdup_printf (_("'%s' by '%s'"), g_strstrip (title),
g_strstrip (artist));
else if (title)
t = g_strstrip (title);