Fix typos in the GUI in preparation for translations

This commit is contained in:
Edgar Aichinger 2020-04-13 16:09:40 +02:00 committed by Robin Gareus
parent 3a39254338
commit eb5a41e3a3
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
4 changed files with 4 additions and 4 deletions

View File

@ -3518,7 +3518,7 @@ Mixer_UI::register_actions ()
ActionManager::register_action (group, "select-none", _("Deselect all strips and processors"), sigc::mem_fun (*this, &Mixer_UI::select_none));
ActionManager::register_action (group, "select-next-stripable", _("Select Next Mixer Strip"), sigc::mem_fun (*this, &Mixer_UI::select_next_strip));
ActionManager::register_action (group, "select-prev-stripable", _("Scroll Previous Mixer Strip"), sigc::mem_fun (*this, &Mixer_UI::select_prev_strip));
ActionManager::register_action (group, "select-prev-stripable", _("Select Previous Mixer Strip"), sigc::mem_fun (*this, &Mixer_UI::select_prev_strip));
ActionManager::register_action (group, "scroll-left", _("Scroll Mixer Window to the left"), sigc::mem_fun (*this, &Mixer_UI::scroll_left));
ActionManager::register_action (group, "scroll-right", _("Scroll Mixer Window to the right"), sigc::mem_fun (*this, &Mixer_UI::scroll_right));

View File

@ -567,6 +567,6 @@ PatchChangeGridDialog::route_property_changed (const PBD::PropertyChange& what_c
{
boost::shared_ptr<ARDOUR::Route> r = wr.lock ();
if (r && what_changed.contains (ARDOUR::Properties::name)) {
set_title (string_compose (_("Select Patch for \"%1\"'"), r->name()));
set_title (string_compose (_("Select Patch for \"%1\""), r->name()));
}
}

View File

@ -324,7 +324,7 @@ StartupFSM::dialog_response_handler (int response, StartupFSM::DialogID dialog_i
* show an extra message indicating
* that something is not right.
*/
ArdourMessageDialog msg (_("Ardour's audioengine has stopped running unexpectedly.\nSomething is probably wrong with your audio/MIDI device settings."));
ArdourMessageDialog msg (_("The audio/MIDI engine has stopped running unexpectedly.\nSomething is probably wrong with your audio/MIDI device settings."));
msg.set_position (WIN_POS_CENTER);
msg.run();
/* This has been shown before, so we do

View File

@ -855,7 +855,7 @@ RouteTemplateManager::rename_template (TreeModel::iterator& item, const Glib::us
if (adjusted) {
if (g_file_test (old_state_dir.c_str(), G_FILE_TEST_EXISTS)) {
if (g_rename (old_state_dir.c_str(), new_state_dir.c_str()) != 0) {
error << string_compose (_("Could not rename state dir \"%1\" to \"%22\": %3"), old_state_dir, new_state_dir, strerror (errno)) << endmsg;
error << string_compose (_("Could not rename state dir \"%1\" to \"%2\": %3"), old_state_dir, new_state_dir, strerror (errno)) << endmsg;
return;
}
}