1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-04-03 21:07:36 +02:00

Substitute, don't concatenate! In Export. And one missed translation.

This commit is contained in:
Paul Licameli
2018-03-25 16:10:41 -04:00
parent eb35d84092
commit 4c9bff73e3
2 changed files with 32 additions and 36 deletions

View File

@@ -344,7 +344,8 @@ ExportFFmpegWMAOptions::ExportFFmpegWMAOptions(wxWindow *parent, int WXUNUSED(fo
{
for (unsigned int i=0; i < (sizeof(iWMABitRate)/sizeof(int)); i++)
{
mBitRateNames.Add(wxString::Format(wxT("%i kbps"),iWMABitRate[i]/1000));
/* i18n-hint: abbreviates thousands of bits per second */
mBitRateNames.Add(wxString::Format(_("%i kbps"),iWMABitRate[i]/1000));
mBitRateLabels.push_back(iWMABitRate[i]);
}