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

Make sure to translate certain strings in ExportMP3 rewrite

This commit is contained in:
Paul Licameli
2019-11-27 21:43:02 -05:00
parent 1add6f3930
commit e4e6e0a03a

View File

@@ -1882,13 +1882,13 @@ ProgressResult ExportMP3::Export(AudacityProject *project,
title.Printf(selectionOnly ?
_("Exporting selected audio with %s preset") :
_("Exporting the audio with %s preset"),
setRateNamesShort[brate]);
GetCustomTranslation( setRateNamesShort[brate] ) );
}
else if (rmode == MODE_VBR) {
title.Printf(selectionOnly ?
_("Exporting selected audio with VBR quality %s") :
_("Exporting the audio with VBR quality %s"),
varRateNames[brate]);
GetCustomTranslation( varRateNames[brate] ) );
}
else {
title.Printf(selectionOnly ?