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

Use i18n context if wxWidgets version 3.1.3 or later

This commit is contained in:
Paul Licameli 2020-05-20 12:51:57 -04:00
parent 77cce2e1eb
commit 24f27da9b7

View File

@ -376,8 +376,10 @@ wxString TranslatableString::DoChooseFormat(
? ( nn == 1 ? singular : plural )
: wxGetTranslation(
singular, plural, nn
// , wxString{}
// , context
#if wxCHECK_VERSION(3, 1, 3)
, wxString{} // domain
, context
#endif
);
}