mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-01 21:18:52 +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
15f2898e87
commit
ef42e3811e
1 changed files with 1 additions and 1 deletions
|
@ -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 ')' {
|
||||
|
|
Loading…
Reference in a new issue