@@ -404,7 +404,7 @@ PluginListComponent::PluginListComponent (AudioPluginFormatManager& manager, Kno
404404 : formatManager (manager),
405405 list (listToEdit),
406406 deadMansPedalFile (deadMansPedal),
407- optionsButton (" Options..." ),
407+ optionsButton (TRANS ( " Options..." ) ),
408408 propertiesToUse (props),
409409 allowAsync (allowPluginsWhichRequireAsynchronousInstantiation),
410410 numThreads (allowAsync ? 1 : 0 )
@@ -554,7 +554,7 @@ PopupMenu PluginListComponent::createOptionsMenu()
554554
555555 for (auto format : formatManager.getFormats ())
556556 if (format->canScanForPlugins ())
557- menu.addItem (PopupMenu::Item (" Remove all " + format->getName () + " plug-ins " )
557+ menu.addItem (PopupMenu::Item (TRANS ( " Remove all XFMTX plug-ins " ). replace ( " XFMTX " , format->getName ()) )
558558 .setEnabled (! list.getTypesForFormat (*format).isEmpty ())
559559 .setAction ([this , format]
560560 {
@@ -583,7 +583,7 @@ PopupMenu PluginListComponent::createOptionsMenu()
583583
584584 for (auto format : formatManager.getFormats ())
585585 if (format->canScanForPlugins ())
586- menu.addItem (PopupMenu::Item (" Scan for new or updated " + format->getName () + " plug-ins " )
586+ menu.addItem (PopupMenu::Item (TRANS ( " Scan for new or updated XFMTX plug-ins " ). replace ( " XFMTX " , format->getName ()) )
587587 .setAction ([this , format] { scanFor (*format); }));
588588
589589 return menu;
0 commit comments