summaryrefslogtreecommitdiff
path: root/gtk2_ardour/export_channel_selector.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2010-05-02 13:48:06 +0000
committerCarl Hetherington <carl@carlh.net>2010-05-02 13:48:06 +0000
commit614514dad38afe295c6d7e8e0990d6765d338a73 (patch)
tree06077f0c7733472073500eb1ccd797e5d7ba75c7 /gtk2_ardour/export_channel_selector.cc
parentb30fa60ad91a1e9a7cb9dc5fc8d77294f17834ef (diff)
Clarify labels in export dialog to explain how options affect use of region gain when exporting.
git-svn-id: svn://localhost/ardour2/branches/3.0@7039 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/export_channel_selector.cc')
-rw-r--r--gtk2_ardour/export_channel_selector.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/export_channel_selector.cc b/gtk2_ardour/export_channel_selector.cc
index 74a18b9770..1a6c15c45b 100644
--- a/gtk2_ardour/export_channel_selector.cc
+++ b/gtk2_ardour/export_channel_selector.cc
@@ -451,11 +451,11 @@ RegionExportChannelSelector::RegionExportChannelSelector (ARDOUR::Session * _ses
{
pack_start (vbox);
- raw_button.set_label (string_compose (_("Region contents without fades (channels: %1)"), region_chans));
+ raw_button.set_label (string_compose (_("Region contents without fades nor region gain (channels: %1)"), region_chans));
raw_button.signal_toggled ().connect (sigc::mem_fun (*this, &RegionExportChannelSelector::handle_selection));
vbox.pack_start (raw_button);
- fades_button.set_label (string_compose (_("Region contents with fades (channels: %1)"), region_chans));
+ fades_button.set_label (string_compose (_("Region contents with fades and region gain (channels: %1)"), region_chans));
fades_button.signal_toggled ().connect (sigc::mem_fun (*this, &RegionExportChannelSelector::handle_selection));
vbox.pack_start (fades_button);