1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-16 00:27:42 +02:00

Fix for bug 1313

This commit is contained in:
Steve Daulton 2016-01-29 22:12:41 +00:00
parent eaccd490ec
commit d6b8080a5d
4 changed files with 5 additions and 5 deletions

View File

@ -369,7 +369,7 @@ void AudacityProject::CreateMenusAndCommands()
c->AddSeparator();
c->AddItem(wxT("EditMetaData"), _("Edit Me&tadata..."), FN(OnEditMetadata));
c->AddItem(wxT("EditMetaData"), _("Edit Me&tadata Tags..."), FN(OnEditMetadata));
c->AddSeparator();

View File

@ -392,7 +392,7 @@ bool Exporter::Process(AudacityProject *project, bool selectedOnly, double t0, d
// Let user edit MetaData
if (mPlugins[mFormat]->GetCanMetaData(mSubFormat)) {
if (!(project->GetTags()->ShowEditDialog(project, _("Edit Metadata"), mProject->GetShowId3Dialog()))) {
if (!(project->GetTags()->ShowEditDialog(project, _("Edit Metadata Tags"), mProject->GetShowId3Dialog()))) {
return false;
}
}

View File

@ -708,7 +708,7 @@ int ExportMultiple::ExportMultipleByLabel(bool byName,
setting.filetags.SetTag(TAG_TITLE, title);
setting.filetags.SetTag(TAG_TRACK, l+1);
// let the user have a crack at editing it, exit if cancelled
if (!setting.filetags.ShowEditDialog(mProject,_("Edit Metadata"), tagsPrompt))
if (!setting.filetags.ShowEditDialog(mProject,_("Edit Metadata Tags"), tagsPrompt))
return false;
/* add the settings to the array of settings to be used for export */
@ -846,7 +846,7 @@ int ExportMultiple::ExportMultipleByTrack(bool byName,
setting.filetags.SetTag(TAG_TITLE, title);
setting.filetags.SetTag(TAG_TRACK, l+1);
// let the user have a crack at editing it, exit if cancelled
if (!setting.filetags.ShowEditDialog(mProject,_("Edit Metadata"), tagsPrompt))
if (!setting.filetags.ShowEditDialog(mProject,_("Edit Metadata Tags"), tagsPrompt))
return false;
/* add the settings to the array of settings to be used for export */

View File

@ -78,7 +78,7 @@ void ImportExportPrefs::PopulateOrExchange(ShuttleGui & S)
}
S.EndRadioButtonGroup();
S.TieCheckBox(_("S&how Metadata Editor prior to export step"),
S.TieCheckBox(_("S&how Metadata Tags editor prior to export step"),
wxT("/AudioFiles/ShowId3Dialog"),
true);
// This documentation is unlikely to help somebody who cannot figure it out by discovering the Options button in the dialog.