From b5e09a975e1a8e80c23398df4feae2471a5475c3 Mon Sep 17 00:00:00 2001 From: windinthew Date: Sun, 25 Apr 2010 06:04:15 +0000 Subject: [PATCH] Clarify in "not a legal file name" dialogue that track names can also be illegal --- src/export/ExportMultiple.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/export/ExportMultiple.cpp b/src/export/ExportMultiple.cpp index e827afc86..dc8b22d04 100644 --- a/src/export/ExportMultiple.cpp +++ b/src/export/ExportMultiple.cpp @@ -920,7 +920,7 @@ wxString ExportMultiple::MakeFileName(wxString input) { // need to get user to fix file name // build the dialog wxString msg; - msg.Printf(_("Label %s is not a legal file name. You cannot use any of: %s\nUse..."), input.c_str(), wxFileName::GetForbiddenChars().c_str()); + msg.Printf(_("Label or track \"%s\" is not a legal file name. You cannot use any of: %s\nUse..."), input.c_str(), wxFileName::GetForbiddenChars().c_str()); wxTextEntryDialog dlg( this, msg, _("Save As..."), newname ); // And tell the validator about excluded chars