1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-27 07:43:50 +01:00

More TranslatableString in dialog wrapper classes...

... All of the dialog names, and the messages for File and directory dialog
wrappers
This commit is contained in:
Paul Licameli
2019-12-20 12:13:39 -05:00
parent e3ea93a624
commit 1b726f4f09
12 changed files with 74 additions and 63 deletions

View File

@@ -205,7 +205,7 @@ void OnExportSelection(const CommandContext &context)
Exporter e;
MissingAliasFilesDialog::SetShouldShow(true);
e.SetFileDialogTitle( _("Export Selected Audio") );
e.SetFileDialogTitle( XO("Export Selected Audio") );
e.Process(&project, true, selectedRegion.t0(),
selectedRegion.t1());
}