diff --git a/resources/forms/mainWindow.ui b/resources/forms/mainWindow.ui
index 8b08f03c..d4ef4ff9 100644
--- a/resources/forms/mainWindow.ui
+++ b/resources/forms/mainWindow.ui
@@ -1497,16 +1497,16 @@
Configure Podcast Recording
-
+
:/images/toolbar/addToolToLibrary.png:/images/toolbar/addToolToLibrary.png
- Flash Trap
+ Capture Wep Content
- Trap Flash Content
+ Capture Web Content
diff --git a/resources/forms/trapFlash.ui b/resources/forms/trapFlash.ui
index 2a7f4a69..00c36a00 100644
--- a/resources/forms/trapFlash.ui
+++ b/resources/forms/trapFlash.ui
@@ -19,7 +19,7 @@
-
- Select a flash to trap
+ Select a content to capture
diff --git a/src/gui/UBWebToolsPalette.cpp b/src/gui/UBWebToolsPalette.cpp
index dcca8fce..3149dc79 100644
--- a/src/gui/UBWebToolsPalette.cpp
+++ b/src/gui/UBWebToolsPalette.cpp
@@ -49,7 +49,7 @@ UBWebToolsPalette::UBWebToolsPalette(QWidget *parent)
{
QList actions;
- actions << UBApplication::mainWindow->actionWebTrapFlash;
+ actions << UBApplication::mainWindow->actionCaptureWebContent;
actions << UBApplication::mainWindow->actionWebCustomCapture;
actions << UBApplication::mainWindow->actionWebWindowCapture;
diff --git a/src/web/UBWebController.cpp b/src/web/UBWebController.cpp
index c8d53216..eb6e65bb 100644
--- a/src/web/UBWebController.cpp
+++ b/src/web/UBWebController.cpp
@@ -304,7 +304,7 @@ void UBWebController::setupPalettes()
UBApplication::boardController->paletteManager()->mKeyboardPalette, SLOT(onDeactivated()));
#endif
- connect(mMainWindow->actionWebTrapFlash, SIGNAL(triggered()), this, SLOT(trapFlash()));
+ connect(mMainWindow->actionCaptureWebContent, SIGNAL(triggered()), this, SLOT(trapFlash()));
connect(mMainWindow->actionWebCustomCapture, SIGNAL(triggered()), this, SLOT(customCapture()));
connect(mMainWindow->actionWebWindowCapture, SIGNAL(triggered()), this, SLOT(captureWindow()));
connect(mMainWindow->actionWebOEmbed, SIGNAL(triggered()), this, SLOT(captureoEmbed()));