summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSampo Savolainen <v2@iki.fi>2008-03-24 13:22:49 +0000
committerSampo Savolainen <v2@iki.fi>2008-03-24 13:22:49 +0000
commit25bae763cac2b7916ea286a71eb57847434e0a47 (patch)
tree8e4ea9d5f68e6e92ba1bdc9f3d8301b069cab785
parent5745d819183627bea513f09bc4047e21e1dbb63a (diff)
Fix dialog message to something sensible.
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@3171 d708f5d6-7413-0410-9779-e7cbd77b26cf
-rw-r--r--gtk2_ardour/editor_audio_import.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/editor_audio_import.cc b/gtk2_ardour/editor_audio_import.cc
index 0ecf360db4..6a650a500c 100644
--- a/gtk2_ardour/editor_audio_import.cc
+++ b/gtk2_ardour/editor_audio_import.cc
@@ -223,7 +223,7 @@ Editor::check_whether_and_how_to_import(string path, bool all_or_nothing)
//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);
message = string_compose(_("The session already contains a source file named %1. This file will be imported as a new file, please confirm."),wave_name);
} else {
- message = _("Lorem ipsum. Do you want to skidaddle?");
+ message = string_compose(_("A source file %1 already exists. This operation will not update that source but import the file %2 as a new source, please confirm."), wave_name, wave_name);
}
MessageDialog dialog(message, false,Gtk::MESSAGE_QUESTION, Gtk::BUTTONS_NONE, true);