1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-16 15:41:11 +02:00

String changes: Exporting 'the audio' rather than 'the entire project'.

This commit is contained in:
James Crook
2017-12-17 17:34:28 +00:00
parent 4da9e41e03
commit d9bab5347a
7 changed files with 9 additions and 9 deletions

View File

@@ -270,7 +270,7 @@ ProgressResult ExportMP2::Export(AudacityProject *project,
ProgressDialog progress(wxFileName(fName).GetName(),
selectionOnly ?
wxString::Format(_("Exporting selected audio at %ld kbps"), bitrate) :
wxString::Format(_("Exporting entire file at %ld kbps"), bitrate));
wxString::Format(_("Exporting the audio at %ld kbps"), bitrate));
while (updateResult == ProgressResult::Success) {
auto pcmNumSamples = mixer->Process(pcmBufferSize);