Disambiguate clip/sample/slot

This commit is contained in:
Robin Gareus 2022-07-14 00:06:48 +02:00
parent 6a57baf193
commit 2848cc5f38
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
3 changed files with 6 additions and 6 deletions

View File

@ -369,12 +369,12 @@ SlotPropertyTable::SlotPropertyTable ()
attach(*eLaunchBox, 1,2, 0,1, Gtk::FILL, Gtk::SHRINK | Gtk::FILL);
attach(*eFollowBox, 2,3, 0,1, Gtk::FILL, Gtk::SHRINK | Gtk::FILL);
set_tooltip(_name_frame, _("Double-click to rename this Clip"));
set_tooltip(_gain_spinner, _("Adjust audio gain (or MIDI velocity) for this clip"));
set_tooltip(_load_button, _("Load a new file into this clip"));
set_tooltip(_name_frame, _("Double-click to rename this clip"));
set_tooltip(_gain_spinner, _("Adjust audio gain (or MIDI velocity) for this slot"));
set_tooltip(_load_button, _("Load a new file into this slot"));
set_tooltip(_color_button, _("Pick a color for this clip"));
set_tooltip(_patch_button, _("View and edit the programs (patches) that this MIDI clip will send to a synth"));
set_tooltip(_allow_button, _("Allow this MIDI clip to send patches to a synth"));
set_tooltip(_allow_button, _("Allow this slot to send MIDI patches to a synth"));
set_tooltip(_follow_count_spinner, _("Number of times to repeat this clip's Follow Length before triggering the Follow-Action"));
set_tooltip(_use_follow_length_button, _("Click to use the Follow Length instead of the Clip Length"));

View File

@ -62,7 +62,7 @@ using namespace PBD;
using namespace ARDOUR;
TriggerClipPicker::TriggerClipPicker ()
: _fcd (_("Select Sample Folder"), FILE_CHOOSER_ACTION_SELECT_FOLDER)
: _fcd (_("Select clip folder"), FILE_CHOOSER_ACTION_SELECT_FOLDER)
, _seek_slider (0, 1000, 1)
, _autoplay_btn (_("Auto-play"))
, _auditioner_combo (InstrumentSelector::ForAuditioner)

View File

@ -205,7 +205,7 @@ void
TriggerUI::choose_sample (bool allow_multiple_select)
{
if (!_file_chooser) {
_file_chooser = new Gtk::FileChooserDialog (_("Select sample"), Gtk::FILE_CHOOSER_ACTION_OPEN);
_file_chooser = new Gtk::FileChooserDialog (_("Select file to load into slot"), Gtk::FILE_CHOOSER_ACTION_OPEN);
_file_chooser->add_button (Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
_file_chooser->add_button (Gtk::Stock::OK, Gtk::RESPONSE_OK);