mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-16 19:56:31 +01:00
Fix typos in the GUI in preparation for translations
This commit is contained in:
parent
3a39254338
commit
eb5a41e3a3
4 changed files with 4 additions and 4 deletions
|
|
@ -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-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-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-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));
|
ActionManager::register_action (group, "scroll-right", _("Scroll Mixer Window to the right"), sigc::mem_fun (*this, &Mixer_UI::scroll_right));
|
||||||
|
|
|
||||||
|
|
@ -567,6 +567,6 @@ PatchChangeGridDialog::route_property_changed (const PBD::PropertyChange& what_c
|
||||||
{
|
{
|
||||||
boost::shared_ptr<ARDOUR::Route> r = wr.lock ();
|
boost::shared_ptr<ARDOUR::Route> r = wr.lock ();
|
||||||
if (r && what_changed.contains (ARDOUR::Properties::name)) {
|
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()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -324,7 +324,7 @@ StartupFSM::dialog_response_handler (int response, StartupFSM::DialogID dialog_i
|
||||||
* show an extra message indicating
|
* show an extra message indicating
|
||||||
* that something is not right.
|
* 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.set_position (WIN_POS_CENTER);
|
||||||
msg.run();
|
msg.run();
|
||||||
/* This has been shown before, so we do
|
/* This has been shown before, so we do
|
||||||
|
|
|
||||||
|
|
@ -855,7 +855,7 @@ RouteTemplateManager::rename_template (TreeModel::iterator& item, const Glib::us
|
||||||
if (adjusted) {
|
if (adjusted) {
|
||||||
if (g_file_test (old_state_dir.c_str(), G_FILE_TEST_EXISTS)) {
|
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) {
|
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;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue