mirror of
https://github.com/cookiengineer/audacity
synced 2025-12-16 09:31:14 +01:00
Fix uses of wxPLURAL and update audacity.pot ...
so that (1) we really get msgid_plural entries in the .pot (2) i18n-comments get extracted too (needs workaround of xgettext bug)
This commit is contained in:
@@ -1835,11 +1835,7 @@ bool PluginManager::DropFile(const wxString &fileName)
|
||||
|
||||
// Ask whether to enable the plug-ins
|
||||
if (auto nIds = ids.size()) {
|
||||
auto message = wxPLURAL(
|
||||
_("Enable this plug-in?"),
|
||||
_("Enable these plug-ins?"),
|
||||
nIds
|
||||
);
|
||||
auto message = wxPLURAL( "Enable this plug-in?", "Enable these plug-ins?", nIds );
|
||||
message += wxT("\n");
|
||||
for (const auto &name : names)
|
||||
message += name + wxT("\n");
|
||||
|
||||
Reference in New Issue
Block a user