summaryrefslogtreecommitdiff
path: root/gtk2_ardour/export_filename_selector.cc
diff options
context:
space:
mode:
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));
}
}