summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2010-03-30 01:14:58 +0100
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2010-03-30 01:14:58 +0100
commitf81a96ae65797e5c461da3430b5e6931299a2e6a (patch)
tree43f3411d929f851db576520a3f13258a1c301e40 /sys
parent4162f0d58e18eebbb3a31638d34fa6438d376bf1 (diff)
downloadgstreamer-plugins-bad-f81a96ae65797e5c461da3430b5e6931299a2e6a.tar.gz
oss4: add comment for translators
Not that that will make these strings much better. Also remove i18n marker where it doesn't make sense.
Diffstat (limited to 'sys')
-rw-r--r--sys/oss4/oss4-mixer.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/oss4/oss4-mixer.c b/sys/oss4/oss4-mixer.c
index e8d80053d..f0dab870e 100644
--- a/sys/oss4/oss4-mixer.c
+++ b/sys/oss4/oss4-mixer.c
@@ -917,12 +917,14 @@ gst_oss4_mixer_control_get_translated_name (GstOss4MixerControl * mc)
append_suffixes:
if (num > -1) {
if (function_suffix) {
+ /* TRANSLATORS: name + number of a volume mixer control */
return g_strdup_printf (_("%s %d Function"), name, num);
} else {
- return g_strdup_printf (_("%s %d"), name, num);
+ return g_strdup_printf ("%s %d", name, num);
}
} else {
if (function_suffix) {
+ /* TRANSLATORS: name of a volume mixer control */
return g_strdup_printf (_("%s Function"), name);
} else {
return g_strdup (name);