Cont'd "meter/time-signature" disambiguation
This commit is contained in:
parent
7e10061d16
commit
7cb7d83bb8
@ -240,7 +240,7 @@ Editor::register_actions ()
|
||||
reg_sens (editor_actions, "select-from-regions", _("Set Range to Selected Regions"), sigc::mem_fun(*this, &Editor::set_selection_from_region));
|
||||
|
||||
reg_sens (editor_actions, "edit-current-tempo", _("Edit Current Tempo"), sigc::mem_fun(*this, &Editor::edit_current_tempo));
|
||||
reg_sens (editor_actions, "edit-current-meter", _("Edit Current Meter"), sigc::mem_fun(*this, &Editor::edit_current_meter));
|
||||
reg_sens (editor_actions, "edit-current-meter", _("Edit Current Time Signature"), sigc::mem_fun(*this, &Editor::edit_current_meter));
|
||||
|
||||
reg_sens (editor_actions, "select-all-after-edit-cursor", _("Select All After Edit Point"), sigc::bind (sigc::mem_fun(*this, &Editor::select_all_selectables_using_edit), true, false));
|
||||
reg_sens (editor_actions, "alternate-select-all-after-edit-cursor", _("Select All After Edit Point"), sigc::bind (sigc::mem_fun(*this, &Editor::select_all_selectables_using_edit), true, false));
|
||||
|
@ -703,7 +703,7 @@ Editor::edit_meter_section (Temporal::MeterPoint& section)
|
||||
|
||||
reassociate_metric_markers (tmap);
|
||||
|
||||
begin_reversible_command (_("replace meter mark"));
|
||||
begin_reversible_command (_("replace time signature mark"));
|
||||
XMLNode &before = tmap->get_state();
|
||||
|
||||
tmap->set_meter (meter, when);
|
||||
|
@ -703,7 +703,7 @@ MeterDialog::get_note_type ()
|
||||
NoteTypes::iterator x = note_types.find (note_type.get_active_text());
|
||||
|
||||
if (x == note_types.end()) {
|
||||
error << string_compose(_("incomprehensible meter note type (%1)"), note_type.get_active_text()) << endmsg;
|
||||
error << string_compose(_("incomprehensible time signature denominator (%1)"), note_type.get_active_text()) << endmsg;
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -716,7 +716,7 @@ MeterDialog::get_lock_style ()
|
||||
LockStyles::iterator x = lock_styles.find (lock_style.get_active_text());
|
||||
|
||||
if (x == lock_styles.end()) {
|
||||
error << string_compose(_("incomprehensible meter lock style (%1)"), lock_style.get_active_text()) << endmsg;
|
||||
error << string_compose(_("incomprehensible lock style (%1)"), lock_style.get_active_text()) << endmsg;
|
||||
return BeatTime;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user