1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-09-18 00:50:52 +02:00

Fix bug in screen reading of clip selection, introduced at 2e3ba22

This commit is contained in:
Paul Licameli 2019-12-23 15:20:06 -05:00
parent c29ad6147a
commit 8d1dd10dee

View File

@ -327,7 +327,7 @@ wxString ClipBoundaryMessage(const std::vector<FoundClipBoundary>& results)
clips.
*/
_("dummyStringClipBoundaryMessage");
auto str = wxPLURAL(
str = wxPLURAL(
"%s %d of %d clip %s",
"%s %d of %d clips %s",
2
@ -349,7 +349,7 @@ wxString ClipBoundaryMessage(const std::vector<FoundClipBoundary>& results)
clips.
*/
_("dummyStringClipBoundaryMessageLong");
auto str = wxPLURAL(
str = wxPLURAL(
"%s %d and %s %d of %d clip %s",
"%s %d and %s %d of %d clips %s",
4