13
0

Fix some GUI typos (thanks to IOhannes/debian for reporting)

This commit is contained in:
Robin Gareus 2018-02-28 20:01:11 +01:00
parent edd21ac89e
commit afb5d8cc24
3 changed files with 5 additions and 5 deletions

View File

@ -2671,7 +2671,7 @@ ARDOUR_UI::save_session_as ()
MessageDialog msg (_main_window,
string_compose (_("\
%1 was unable to save your session.\n\n\
If you still wish to proceeed, please use the\n\n\
If you still wish to proceed, please use the\n\n\
\"Don't save now\" option."), PROGRAM_NAME));
pop_back_splash(msg);
msg.run ();
@ -2867,7 +2867,7 @@ ARDOUR_UI::snapshot_session (bool switch_to_it)
MessageDialog msg (_main_window,
string_compose (_("\
%1 was unable to save your session.\n\n\
If you still wish to proceeed, please use the\n\n\
If you still wish to proceed, please use the\n\n\
\"Don't save now\" option."), PROGRAM_NAME));
pop_back_splash(msg);
msg.run ();

View File

@ -667,9 +667,9 @@ GenericPluginUI::build_midi_table ()
Frame* sample = manage (new Frame);
sample->set_name ("BaseFrame");
if (dynamic_cast<MidiTrack*> (insert->owner())) {
sample->set_label (_("MIDI Progams (sent to track)"));
sample->set_label (_("MIDI Programs (sent to track)"));
} else {
sample->set_label (_("MIDI Progams (volatile)"));
sample->set_label (_("MIDI Programs (volatile)"));
}
sample->add (*pgm_table);
hpacker.pack_start (*sample, false, false);

View File

@ -313,7 +313,7 @@ TemplateManager::handle_dirty_description ()
if (_desc_dirty && _current_selection) {
ArdourDialog dlg (_("Description not saved"), true);
const string name = _current_selection->get_value (_template_columns.name);
Label msg (string_compose (_("The discription of template \"%1\" has been modfied but has not been saved yet.\n"
Label msg (string_compose (_("The description of template \"%1\" has been modified but has not been saved yet.\n"
"Do you want to save it?"), name));
dlg.get_vbox()->pack_start (msg);
msg.show ();