mirror of
https://github.com/cookiengineer/audacity
synced 2026-03-11 00:45:53 +01: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:
@@ -157,7 +157,7 @@ ExportOGG::ExportOGG()
|
||||
AddExtension(wxT("ogg"),0);
|
||||
SetMaxChannels(255,0);
|
||||
SetCanMetaData(true,0);
|
||||
SetDescription(_("Ogg Vorbis Files"),0);
|
||||
SetDescription(XO("Ogg Vorbis Files"),0);
|
||||
}
|
||||
|
||||
ProgressResult ExportOGG::Export(AudacityProject *project,
|
||||
|
||||
Reference in New Issue
Block a user