13
0

Use full name of file being imported in status message during import

git-svn-id: svn://localhost/ardour2/trunk@2668 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Tim Mayberry 2007-11-15 02:32:01 +00:00
parent 27b022bdeb
commit 822d1a1b84

View File

@ -213,14 +213,14 @@ Session::import_audiofile (import_status& status)
if ((nframes_t) source->samplerate() != frame_rate()) {
status.doing_what = string_compose (_("converting %1\n(resample from %2KHz to %3KHz)\n(%4 of %5)"),
basepath,
sys::path(*p).leaf(),
source->samplerate()/1000.0f,
frame_rate()/1000.0f,
cnt, status.paths.size());
} else {
status.doing_what = string_compose (_("converting %1\n(%2 of %3)"),
basepath,
sys::path(*p).leaf(),
cnt, status.paths.size());
}