13
0

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
This commit is contained in:
David Robillard 2013-01-20 07:37:20 +00:00
parent 64f1a8e893
commit 0ebad4279b

View File

@ -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);