From f1debe12c8dbeebce64e58ae87f11ececc3b7a25 Mon Sep 17 00:00:00 2001 From: Nikolay Date: Thu, 8 Jan 2015 16:55:52 +0200 Subject: [PATCH] [Summary] Bug fix #45610 "Please wrap text in message body." --- gtk2_ardour/editor_audio_import.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gtk2_ardour/editor_audio_import.cc b/gtk2_ardour/editor_audio_import.cc index 6510e70a9c..063353f2c9 100644 --- a/gtk2_ardour/editor_audio_import.cc +++ b/gtk2_ardour/editor_audio_import.cc @@ -175,10 +175,10 @@ Editor::check_whether_and_how_to_import(string path, bool all_or_nothing) // updating is still disabled //message = string_compose(_("The session already contains a source file named %1. Do you want to update that file (and thus all regions using the file) or import this file as a new file?"),wave_name); layout_name = "waves_how_to_import_dialog_1.xml"; - message = string_compose (_("The session already contains a source file named %1. Do you want to import %1 as a new file, or skip it?"), wave_name); + message = string_compose (_("The session already contains a source file named %1. \nDo you want to import %1 as a new file, or skip it?"), wave_name); } else { layout_name = "waves_how_to_import_dialog_2.xml"; - message = string_compose (_("The session already contains a source file named %1. Do you want to import %2 as a new source, or skip it?"), wave_name, wave_name); + message = string_compose (_("The session already contains a source file named %1. \nDo you want to import %2 as a new source, or skip it?"), wave_name, wave_name); }