tweak layout of export dialog to try to make it clear what to enter when setting...
authorPaul Davis <paul@linuxaudiosystems.com>
Wed, 25 Jul 2012 00:23:12 +0000 (00:23 +0000)
committerPaul Davis <paul@linuxaudiosystems.com>
Wed, 25 Jul 2012 00:23:12 +0000 (00:23 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@13078 d708f5d6-7413-0410-9779-e7cbd77b26cf

gtk2_ardour/export_filename_selector.cc

index 1b85d6585cfb5a5cf1e4c9b135a976234225e24c..4f3a02a015747bb13b9d6c9342c4dba4a3abbe63 100644 (file)
@@ -27,7 +27,7 @@
 using namespace ARDOUR;
 
 ExportFilenameSelector::ExportFilenameSelector () :
-       include_label (_("Include in Filename(s):"), Gtk::ALIGN_LEFT),
+       include_label ("", Gtk::ALIGN_LEFT),
 
        label_label (_("Label:"), Gtk::ALIGN_LEFT),
        session_checkbox (_("Session Name")),
@@ -38,10 +38,12 @@ ExportFilenameSelector::ExportFilenameSelector () :
 
        example_filename_label ("", Gtk::ALIGN_LEFT)
 {
+       include_label.set_markup (_("<i>Build filename(s) from these components:</i>"));
+
+       pack_start (path_hbox, false, false, 12);
        pack_start (include_label, false, false, 6);
        pack_start (include_hbox, false, false, 0);
-       pack_start (path_hbox, false, false, 12);
-       pack_start (example_filename_label, false, false, 0);
+       pack_start (example_filename_label, false, false, 12);
 
        include_hbox.pack_start (label_label, false, false, 3);
        include_hbox.pack_start (label_entry, false, false, 3);
@@ -207,10 +209,9 @@ void
 ExportFilenameSelector::set_example_filename (std::string filename)
 {
        if (filename == "") {
-               example_filename_label.set_text (_("Sorry, no example filename can be shown at the moment"));
+               example_filename_label.set_markup (_("<small><i>Sorry, no example filename can be shown at the moment</i></small>"));
        } else {
-               example_filename_label.set_text (string_compose(_("Example filename: \"%1\""),
-                                                               filename));
+               example_filename_label.set_markup (string_compose(_("<small><i>Current (approximate) filename: \"%1\"</i></small>"), filename));
        }
 }