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

Use capital 'M' for Macro in history.

This commit is contained in:
James Crook 2018-03-19 17:33:40 +00:00
parent 0797da0415
commit a02c9de789

View File

@ -867,13 +867,13 @@ bool MacroCommands::ApplyMacro(
if (name.IsEmpty())
{
/* i18n-hint: active verb in past tense */
longDesc = _("Applied macro");
shortDesc = _("Apply macro");
longDesc = _("Applied Macro");
shortDesc = _("Apply Macro");
}
else
{
/* i18n-hint: active verb in past tense */
longDesc = wxString::Format(_("Applied macro '%s'"), name);
longDesc = wxString::Format(_("Applied Macro '%s'"), name);
shortDesc = wxString::Format(_("Apply '%s'"), name);
}