diff options
author | Gabor Kelemen <kelemeng@gnome.hu> | 2013-05-07 17:00:27 +0200 |
---|---|---|
committer | Bastien Nocera <hadess@hadess.net> | 2013-05-08 12:38:05 +0200 |
commit | 61213aec3a0b916bfd9351ace8a4acdbd5f8685f (patch) | |
tree | 8dea12e6bdbbf9c1ce4d46f915543d896aa4c833 /src/properties | |
parent | ea73d22354caafc14b0ab4a79bb933bacdf41f50 (diff) | |
download | totem-61213aec3a0b916bfd9351ace8a4acdbd5f8685f.tar.gz |
properties: Fix translations not being applied in nautilus
Set translation domain to make strings appear translated in Nautilus.
https://bugzilla.gnome.org/show_bug.cgi?id=699840
Diffstat (limited to 'src/properties')
-rw-r--r-- | src/properties/bacon-video-widget-properties.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/properties/bacon-video-widget-properties.c b/src/properties/bacon-video-widget-properties.c index 3f10eac4d..7e0f4c242 100644 --- a/src/properties/bacon-video-widget-properties.c +++ b/src/properties/bacon-video-widget-properties.c @@ -258,6 +258,7 @@ bacon_video_widget_properties_new (void) guint i; xml = gtk_builder_new (); + gtk_builder_set_translation_domain (xml, GETTEXT_PACKAGE); if (gtk_builder_add_from_file (xml, DATADIR"/properties.ui", NULL) == 0) { g_object_unref (xml); return NULL; |