From 0ebad4279b765d3fbe85649e9ef29e5b61c1d162 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 20 Jan 2013 07:37:20 +0000 Subject: [PATCH] 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 --- gtk2_ardour/time_axis_view.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);