Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/GStreamer/gstreamer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2017-01-31 22:19:18 +0300
committerSebastian Dröge <sebastian@centricular.com>2017-02-02 13:39:11 +0300
commitf7d2624044074456b6ba52516bd9dd8353616759 (patch)
tree9aa48804a991e445a2f0e6a41aa77d76fdb6f996
parenta2a831cbc4203dd8cbf8e44d79889b451abea59f (diff)
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
-rw-r--r--gst/parse/grammar.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/parse/grammar.y b/gst/parse/grammar.y
index 85d37dde44..1dc59a337e 100644
--- a/gst/parse/grammar.y
+++ b/gst/parse/grammar.y
@@ -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 ')' {