mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-24 08:08:22 +00:00
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
This commit is contained in:
parent
a2a831cbc4
commit
f7d2624044
1 changed files with 1 additions and 1 deletions
|
@ -970,7 +970,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 ')' {
|
||||
|
|
Loading…
Reference in a new issue