summaryrefslogtreecommitdiff
path: root/gtk2_ardour/time_axis_view.cc
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2013-01-20 07:37:20 +0000
committerDavid Robillard <d@drobilla.net>2013-01-20 07:37:20 +0000
commit0ebad4279b765d3fbe85649e9ef29e5b61c1d162 (patch)
tree8e2d68317e3a36b6dac1d1633424c0fe9398532a /gtk2_ardour/time_axis_view.cc
parent64f1a8e8936c97ca4c55a7a4dc97668f19d7d26f (diff)
Fix label in route rename dialog.
Colon seems most consistent, the separate space is to fix the spacing in the dialog while re-using the existing translation string 'New name:'. git-svn-id: svn://localhost/ardour2/branches/3.0@13924 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/time_axis_view.cc')
-rw-r--r--gtk2_ardour/time_axis_view.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/time_axis_view.cc b/gtk2_ardour/time_axis_view.cc
index 1cf2391d5e..9e8fdfd6b0 100644
--- a/gtk2_ardour/time_axis_view.cc
+++ b/gtk2_ardour/time_axis_view.cc
@@ -613,7 +613,7 @@ TimeAxisView::begin_name_edit ()
name_entry->signal_activate().connect (sigc::bind (sigc::mem_fun (*name_editor, &ArdourDialog::response), RESPONSE_OK));
Gtk::HBox* hbox = manage (new HBox);
- Gtk::Label* label = manage (new Label (_("New name")));
+ Gtk::Label* label = manage (new Label (_("New name:" " ")));
hbox->pack_start (*label, false, false);
hbox->pack_start (*name_entry, true, true);