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
@ -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…
x
Reference in New Issue
Block a user