summaryrefslogtreecommitdiff
path: root/thunar-volman-settings
diff options
context:
space:
mode:
authorJames Le Cuirot <chewi@gentoo.org>2018-09-25 22:09:57 -0300
committerAndre Miranda <andreldm@xfce.org>2018-09-25 22:09:57 -0300
commit8bc682457c34c426065eb250974649b2096b1a00 (patch)
tree7b03d81de4f081ad331444d3cc45805ce7a50410 /thunar-volman-settings
parente39494b514ec2a75a57243097d447dc90388aa8d (diff)
downloadthunar-volman-8bc682457c34c426065eb250974649b2096b1a00.tar.gz
Add support for Blu-ray media (Bug #13297)
Diffstat (limited to 'thunar-volman-settings')
-rw-r--r--thunar-volman-settings/tvm-preferences-dialog.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/thunar-volman-settings/tvm-preferences-dialog.c b/thunar-volman-settings/tvm-preferences-dialog.c
index 97a747a..8609550 100644
--- a/thunar-volman-settings/tvm-preferences-dialog.c
+++ b/thunar-volman-settings/tvm-preferences-dialog.c
@@ -295,7 +295,7 @@ tvm_preferences_dialog_init (TvmPreferencesDialog *dialog)
gtk_box_pack_start (GTK_BOX (vbox), frame, FALSE, TRUE, 0);
gtk_widget_show (frame);
- label = gtk_label_new (_("Video CDs/DVDs"));
+ label = gtk_label_new (_("Video CDs/DVDs/Blu-rays"));
gtk_label_set_attributes (GTK_LABEL (label), tvm_pango_attr_list_bold ());
gtk_frame_set_label_widget (GTK_FRAME (frame), label);
gtk_widget_show (label);
@@ -314,8 +314,8 @@ tvm_preferences_dialog_init (TvmPreferencesDialog *dialog)
gtk_grid_attach (GTK_GRID (grid), image, 0, 0, 1, 3);
gtk_widget_show (image);
- button = gtk_check_button_new_with_mnemonic (_("Play _video CDs and DVDs when "
- "inserted"));
+ button = gtk_check_button_new_with_mnemonic (_("Play _video CDs, DVDs, and "
+ "Blu-rays when inserted"));
xfconf_g_property_bind (channel, "/autoplay-video-cds/enabled", G_TYPE_BOOLEAN,
button, "active");
gtk_grid_attach (GTK_GRID (grid), button, 1, 0, 1, 1);