parse: Don't translate the "bin" element name
authorSebastian Dröge <sebastian@centricular.com>
Tue, 31 Jan 2017 19:19:18 +0000 (21:19 +0200)
committerSebastian Dröge <sebastian@centricular.com>
Tue, 31 Jan 2017 19:20:22 +0000 (21:20 +0200)
Otherwise we won't be able to create bins, there is no element called
"Behälter" if you're using a German locale.

https://bugzilla.gnome.org/show_bug.cgi?id=777998

gst/parse/grammar.y

index 6a958c9..bc4c3c1 100644 (file)
@@ -1072,7 +1072,7 @@ assignments:      /* NOP */                     { $$ = NULL; }
        |       ASSIGNMENT assignments        { $$ = g_slist_prepend ($2, $1); }
        ;
 
-binopener:     '('                           { $$ = gst_parse_strdup(_("bin")); }
+binopener:     '('                           { $$ = gst_parse_strdup("bin"); }
        |       BINREF                        { $$ = $1; }
        ;
 bin:   binopener assignments chainlist ')'   {