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

TranslatableString caption & message in MessageBoxException

This commit is contained in:
Paul Licameli
2019-12-07 10:04:35 -05:00
parent 54e2bbd8ff
commit 503ccabdd8
16 changed files with 50 additions and 53 deletions

View File

@@ -468,7 +468,7 @@ void OnPaste(const CommandContext &context)
// Throw, so that any previous changes to the project in this loop
// are discarded.
throw SimpleMessageBoxException{
_("Pasting one type of track into another is not allowed.")
XO("Pasting one type of track into another is not allowed.")
};
// We should need this check only each time we visit the leading
@@ -496,7 +496,7 @@ void OnPaste(const CommandContext &context)
// Throw, so that any previous changes to the project in this
// loop are discarded.
throw SimpleMessageBoxException{
_("Copying stereo audio into a mono track is not allowed.")
XO("Copying stereo audio into a mono track is not allowed.")
};
}
}