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
This commit is contained in:
Carl Hetherington 2010-05-02 13:48:06 +00:00
parent b30fa60ad9
commit 614514dad3
1 changed files with 2 additions and 2 deletions

View File

@ -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);