From: Sebastian Dröge Date: Tue, 31 Jan 2017 19:19:18 +0000 (+0200) Subject: parse: Don't translate the "bin" element name X-Git-Tag: 1.12.0~96 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ef42e3811eba9580aacf87c6af81d956c4293e75;p=platform%2Fupstream%2Fgstreamer.git parse: Don't translate the "bin" element name 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 --- diff --git a/gst/parse/grammar.y b/gst/parse/grammar.y index 6a958c9..bc4c3c1 100644 --- a/gst/parse/grammar.y +++ b/gst/parse/grammar.y @@ -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 ')' {