Disambiguate "Meter" use "Time Signature for music meter

In general we should use
* "meter": signal level meter
* "time-signature": music meter / metrum
This commit is contained in:
Robin Gareus 2022-04-05 18:56:10 +02:00
parent 504a04878f
commit 7e10061d16
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
4 changed files with 7 additions and 7 deletions

View File

@ -338,7 +338,7 @@ Editor::Editor ()
, timecode_label (_("Timecode"))
, samples_label (_("Samples"))
, tempo_label (_("Tempo"))
, meter_label (_("Meter"))
, meter_label (_("Time Signature"))
, mark_label (_("Location Markers"))
, range_mark_label (_("Range Markers"))
, transport_mark_label (_("Loop/Punch Ranges"))

View File

@ -258,7 +258,7 @@ Editor::popup_ruler_menu (timepos_t const & where, ItemType t)
break;
case MeterBarItem:
ruler_items.push_back (MenuElem (_("New Meter"), sigc::bind (sigc::mem_fun(*this, &Editor::mouse_add_new_meter_event), where)));
ruler_items.push_back (MenuElem (_("New Time Signature"), sigc::bind (sigc::mem_fun(*this, &Editor::mouse_add_new_meter_event), where)));
break;
case VideoBarItem:

View File

@ -92,9 +92,9 @@ MainClock::build_ops_menu ()
ops_items.push_back (SeparatorElem());
ops_items.push_back (MenuElem (_("Edit Tempo"), sigc::mem_fun(*this, &MainClock::edit_current_tempo)));
ops_items.push_back (MenuElem (_("Edit Meter"), sigc::mem_fun(*this, &MainClock::edit_current_meter)));
ops_items.push_back (MenuElem (_("Edit Time Signature"), sigc::mem_fun(*this, &MainClock::edit_current_meter)));
ops_items.push_back (MenuElem (_("Insert Tempo Change"), sigc::mem_fun(*this, &MainClock::insert_new_tempo)));
ops_items.push_back (MenuElem (_("Insert Meter Change"), sigc::mem_fun(*this, &MainClock::insert_new_meter)));
ops_items.push_back (MenuElem (_("Insert Time Signature Change"), sigc::mem_fun(*this, &MainClock::insert_new_meter)));
}
timepos_t

View File

@ -487,7 +487,7 @@ TempoDialog::tap_tempo_focus_out (GdkEventFocus* )
}
MeterDialog::MeterDialog (TempoMap::SharedPtr const & map, timepos_t const & pos, const string&)
: ArdourDialog (_("New Meter"))
: ArdourDialog (_("New Time Signature"))
{
Temporal::BBT_Time when (map->round_to_bar (map->bbt_at (pos)));
Meter const & meter (map->meter_at (when));
@ -496,7 +496,7 @@ MeterDialog::MeterDialog (TempoMap::SharedPtr const & map, timepos_t const & pos
}
MeterDialog::MeterDialog (Temporal::MeterPoint& section, const string&)
: ArdourDialog (_("Edit Meter"))
: ArdourDialog (_("Edit Time Signature"))
{
init (section.bbt(), section.divisions_per_bar(), section.note_value(), section.map().is_initial(section), section.map().time_domain());
}
@ -579,7 +579,7 @@ MeterDialog::init (const Temporal::BBT_Time& when, double bpb, double divisor, b
when_bar_entry.set_alignment (1.0);
if (!initial) {
Label* when_label = manage (new Label(_("Meter begins at bar:"), ALIGN_LEFT, ALIGN_CENTER));
Label* when_label = manage (new Label(_("Time Signature begins at bar:"), ALIGN_LEFT, ALIGN_CENTER));
table->attach (*when_label, 0, 1, 2, 3, FILL | EXPAND, FILL | EXPAND);
table->attach (when_bar_entry, 1, 2, 2, 3, FILL | EXPAND, FILL | EXPAND);