summaryrefslogtreecommitdiff
path: root/gtk2_ardour/route_ui.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2010-05-07 00:18:47 +0000
committerCarl Hetherington <carl@carlh.net>2010-05-07 00:18:47 +0000
commitd0440362974d36432e54cb2c190bcea0b855770d (patch)
tree3bbaa58f348d97a0a57f633f9b399b3ad81b19d5 /gtk2_ardour/route_ui.cc
parent29da90651e2568cc5c2d941837fae368a2665779 (diff)
Copy-edit.
git-svn-id: svn://localhost/ardour2/branches/3.0@7075 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/route_ui.cc')
-rw-r--r--gtk2_ardour/route_ui.cc8
1 files changed, 7 insertions, 1 deletions
diff --git a/gtk2_ardour/route_ui.cc b/gtk2_ardour/route_ui.cc
index f579760f60..7bf1a09c4c 100644
--- a/gtk2_ardour/route_ui.cc
+++ b/gtk2_ardour/route_ui.cc
@@ -1260,7 +1260,12 @@ RouteUI::route_rename ()
{
ArdourPrompter name_prompter (true);
string result;
- name_prompter.set_prompt (_("New Name: "));
+ if (is_track()) {
+ name_prompter.set_title (_("Rename Track"));
+ } else {
+ name_prompter.set_title (_("Rename Bus"));
+ }
+ name_prompter.set_prompt (_("New name:"));
name_prompter.set_initial_text (_route->name());
name_prompter.add_button (_("Rename"), Gtk::RESPONSE_ACCEPT);
name_prompter.set_response_sensitive (Gtk::RESPONSE_ACCEPT, false);
@@ -1427,6 +1432,7 @@ RouteUI::save_as_template ()
Prompter p (true); // modal
+ p.set_title (_("Save As Template"));
p.set_prompt (_("Template name:"));
switch (p.run()) {
case RESPONSE_ACCEPT: