1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-18 06:31:20 +01:00

Bug 2326 - Wording improvement (as requested).

This commit is contained in:
James Crook
2020-02-25 11:09:43 +00:00
parent a48483bc19
commit d70365ba2b

View File

@@ -750,14 +750,14 @@ void Effect::ImportPresets()
{ {
Effect::MessageBox( Effect::MessageBox(
/* i18n-hint %s will be replaced by a file name */ /* i18n-hint %s will be replaced by a file name */
XO("%s: Was not a valid presets file.\n") XO("%s: is not a valid presets file.\n")
.Format(path.GetFullName())); .Format(path.GetFullName()));
} }
else else
{ {
Effect::MessageBox( Effect::MessageBox(
/* i18n-hint %s will be replaced by a file name */ /* i18n-hint %s will be replaced by a file name */
XO("%s: Was not for this effect.\n") XO("%s: is not for this effect.\n")
.Format(path.GetFullName())); .Format(path.GetFullName()));
} }
return; return;