summaryrefslogtreecommitdiff
path: root/gtk2_ardour/export_filename_selector.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-02-12 13:17:46 +0100
committerRobin Gareus <robin@gareus.org>2016-02-12 14:01:40 +0100
commit1d1eae4017d27f66ef3eb0bd12dd699c3a5405dd (patch)
tree322c0e6cb454ad58308fc59ce959f7b47ea29cfa /gtk2_ardour/export_filename_selector.cc
parent52ebf94c1ec6eeaa325e2c79db0f657fb8782c92 (diff)
improve consistency of presentational properties in the export dialog.
Diffstat (limited to 'gtk2_ardour/export_filename_selector.cc')
-rw-r--r--gtk2_ardour/export_filename_selector.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/export_filename_selector.cc b/gtk2_ardour/export_filename_selector.cc
index a48ac6a4e0..1ecbc2cf1e 100644
--- a/gtk2_ardour/export_filename_selector.cc
+++ b/gtk2_ardour/export_filename_selector.cc
@@ -40,7 +40,7 @@ ExportFilenameSelector::ExportFilenameSelector () :
example_filename_label ("", Gtk::ALIGN_LEFT),
_require_timespan (false)
{
- include_label.set_markup (_("<i>Build filename(s) from these components:</i>"));
+ include_label.set_markup (_("Build filename(s) from these components:"));
pack_start (path_hbox, false, false, 12);
pack_start (include_label, false, false, 6);
@@ -212,7 +212,7 @@ ExportFilenameSelector::set_example_filename (std::string filename)
if (filename == "") {
example_filename_label.set_markup (_("<small><i>Sorry, no example filename can be shown at the moment</i></small>"));
} else {
- example_filename_label.set_markup (string_compose(_("<small><i>Current (approximate) filename: \"%1\"</i></small>"), filename));
+ example_filename_label.set_markup (string_compose(_("<i>Current (approximate) filename</i>: \"%1\""), filename));
}
}