diff --git a/uk/ac/sanger/artemis/components/FeaturePopup.java b/uk/ac/sanger/artemis/components/FeaturePopup.java index 43c9a3770b916df153a9a974475bee2f2fed85a3..c40760c0fec6578b72014d35dbfc3cb44c74017a 100644 --- a/uk/ac/sanger/artemis/components/FeaturePopup.java +++ b/uk/ac/sanger/artemis/components/FeaturePopup.java @@ -20,7 +20,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - * $Header: //tmp/pathsoft/artemis/uk/ac/sanger/artemis/components/FeaturePopup.java,v 1.21 2007-10-01 14:50:34 tjc Exp $ + * $Header: //tmp/pathsoft/artemis/uk/ac/sanger/artemis/components/FeaturePopup.java,v 1.22 2008-01-17 09:57:06 tjc Exp $ */ package uk.ac.sanger.artemis.components; @@ -40,7 +40,7 @@ import javax.swing.*; * FeaturePopup class * * @author Kim Rutherford - * @version $Id: FeaturePopup.java,v 1.21 2007-10-01 14:50:34 tjc Exp $ + * @version $Id: FeaturePopup.java,v 1.22 2008-01-17 09:57:06 tjc Exp $ * **/ @@ -608,7 +608,7 @@ public class FeaturePopup extends JPopupMenu if(isDatabaseGroup) { - feature_display_menus[20] = new JMenuItem("Gene Model Display Features ..."); + feature_display_menus[20] = new JMenuItem("Show/Hide Features ..."); feature_display_menus[20].addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) diff --git a/uk/ac/sanger/artemis/components/SelectMenu.java b/uk/ac/sanger/artemis/components/SelectMenu.java index 2d552073d18cb7e8640bbc6fd446fc78f5cfbd1a..4319a8172ee369bdc689e86324d0985977b177d1 100644 --- a/uk/ac/sanger/artemis/components/SelectMenu.java +++ b/uk/ac/sanger/artemis/components/SelectMenu.java @@ -20,7 +20,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - * $Header: //tmp/pathsoft/artemis/uk/ac/sanger/artemis/components/SelectMenu.java,v 1.11 2007-10-01 14:54:45 tjc Exp $ + * $Header: //tmp/pathsoft/artemis/uk/ac/sanger/artemis/components/SelectMenu.java,v 1.12 2008-01-17 09:53:47 tjc Exp $ **/ package uk.ac.sanger.artemis.components; @@ -60,7 +60,7 @@ import javax.swing.KeyStroke; * "Select by key". * * @author Kim Rutherford - * @version $Id: SelectMenu.java,v 1.11 2007-10-01 14:54:45 tjc Exp $ + * @version $Id: SelectMenu.java,v 1.12 2008-01-17 09:53:47 tjc Exp $ **/ public class SelectMenu extends SelectionMenu @@ -302,7 +302,8 @@ public class SelectMenu extends SelectionMenu if(isDatabaseGroup) { select_non_pseudo_cds_item.setEnabled(false); - select_all_cds_item = new JMenuItem("All Exon Model Features"); + select_all_cds_item = new JMenuItem("All "+ + DatabaseDocument.EXONMODEL+" Features"); } else select_all_cds_item = new JMenuItem("All CDS Features"); diff --git a/uk/ac/sanger/artemis/components/genebuilder/GeneViewerPanel.java b/uk/ac/sanger/artemis/components/genebuilder/GeneViewerPanel.java index 734f723b9387790f9d1a30c2811d71d1997e3907..82ff26923d80e03b86836598760d9481a7462929 100644 --- a/uk/ac/sanger/artemis/components/genebuilder/GeneViewerPanel.java +++ b/uk/ac/sanger/artemis/components/genebuilder/GeneViewerPanel.java @@ -20,7 +20,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - * $Header: //tmp/pathsoft/artemis/uk/ac/sanger/artemis/components/genebuilder/GeneViewerPanel.java,v 1.78 2008-01-17 09:36:51 tjc Exp $ + * $Header: //tmp/pathsoft/artemis/uk/ac/sanger/artemis/components/genebuilder/GeneViewerPanel.java,v 1.79 2008-01-17 09:55:14 tjc Exp $ */ package uk.ac.sanger.artemis.components.genebuilder; @@ -500,7 +500,7 @@ public class GeneViewerPanel extends JPanel menu.add(createFeatureMenu); menu.add(new JSeparator()); - JMenuItem adjustCoords = new JMenuItem("Adjust selected transcript coordinates"); + JMenuItem adjustCoords = new JMenuItem("Fix selected transcript coordinates"); adjustCoords.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent event) @@ -523,7 +523,7 @@ public class GeneViewerPanel extends JPanel menu.add(adjustCoords); - JMenuItem adjustGeneCoords = new JMenuItem("Adjust gene model coordinates"); + JMenuItem adjustGeneCoords = new JMenuItem("Fix gene model coordinates"); adjustGeneCoords.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent event)