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

Change one overload of TieChoice to expect un-translated strings...

... preparatory to removing that overload.

This overload is used in exactly these files:

DevicePrefs.cpp (displaying host names retrieved by portaudio, which are not
defined in Audacity source)

EffectsPrefs.cpp

ExportFLAC.cpp (twice)

ExportMultiple.cpp (displaying the descriptions defined in the several export
plugin classes)

GUIPrefs.cpp (four times: languages, manual location, theme, and meter DB
range; the language names themselves don't have localizations!)

MidiIOPrefs.cpp (displaying host names retrieved by portmidi)

TracksBehaviorsPrefs.cpp (for solo button choices)

There is also TieNumberAsChoice, used in QualityPrefs and elsewhere, which
calls through to that overload.
This commit is contained in:
Paul Licameli
2019-02-24 15:40:27 -05:00
parent 5638d6844f
commit 087ac5e6c9
18 changed files with 91 additions and 77 deletions

View File

@@ -236,7 +236,7 @@ ExportMP2::ExportMP2()
AddExtension(wxT("mp2"),0);
SetMaxChannels(2,0);
SetCanMetaData(true,0);
SetDescription(_("MP2 Files"),0);
SetDescription(XO("MP2 Files"),0);
}
ProgressResult ExportMP2::Export(AudacityProject *project,