diff --git a/Core/src/org/sleuthkit/autopsy/communications/OpenCommVisualizationToolAction.java b/Core/src/org/sleuthkit/autopsy/communications/OpenCommVisualizationToolAction.java index 832926bc15..850cf7ef3c 100644 --- a/Core/src/org/sleuthkit/autopsy/communications/OpenCommVisualizationToolAction.java +++ b/Core/src/org/sleuthkit/autopsy/communications/OpenCommVisualizationToolAction.java @@ -42,8 +42,9 @@ import org.openide.windows.WindowManager; @ActionRegistration(displayName = "#CTL_OpenCVTAction", lazy = false) @ActionReferences(value = { @ActionReference(path = "Menu/Tools", position = 102) - , @ActionReference(path = "Toolbars/Case", position = 102)}) -@Messages("CTL_OpenCVTAction=Visualize Communications") + , @ActionReference(path = "Toolbars/Case", position = 102) +}) +@Messages("CTL_OpenCVTAction=Communications") public final class OpenCommVisualizationToolAction extends CallableSystemAction implements Presenter.Toolbar { private static final long serialVersionUID = 1L; @@ -80,7 +81,7 @@ public final class OpenCommVisualizationToolAction extends CallableSystemAction } @Override - @NbBundle.Messages("OpenCVTAction.displayName=Communications Visualizaton") + @NbBundle.Messages("OpenCVTAction.displayName=Communications") public String getName() { return Bundle.OpenCVTAction_displayName(); } diff --git a/ImageGallery/src/org/sleuthkit/autopsy/imagegallery/actions/OpenAction.java b/ImageGallery/src/org/sleuthkit/autopsy/imagegallery/actions/OpenAction.java index 1707e57d0f..67d72bbeb3 100755 --- a/ImageGallery/src/org/sleuthkit/autopsy/imagegallery/actions/OpenAction.java +++ b/ImageGallery/src/org/sleuthkit/autopsy/imagegallery/actions/OpenAction.java @@ -59,10 +59,10 @@ import org.sleuthkit.datamodel.TskCoreException; @ActionReference(path = "Menu/Tools", position = 101), @ActionReference(path = "Toolbars/Case", position = 101)}) @ActionRegistration(displayName = "#CTL_OpenAction", lazy = false) -@Messages({"CTL_OpenAction=View Images/Videos", - "OpenAction.stale.confDlg.msg=The image / video database may be out of date. " - + "Do you want to update and listen for further ingest results?\n" - + "Choosing 'yes' will update the database and enable listening to future ingests.", +@Messages({"CTL_OpenAction=Images/Videos", + "OpenAction.stale.confDlg.msg=The image / video database may be out of date. " + + "Do you want to update and listen for further ingest results?\n" + + "Choosing 'yes' will update the database and enable listening to future ingests.", "OpenAction.stale.confDlg.title=Image Gallery"}) public final class OpenAction extends CallableSystemAction {