Index: lutinmatrix/src/java/org/codelutin/math/matrix/gui/MatrixPopupMenu.java diff -u lutinmatrix/src/java/org/codelutin/math/matrix/gui/MatrixPopupMenu.java:1.1 lutinmatrix/src/java/org/codelutin/math/matrix/gui/MatrixPopupMenu.java:1.2 --- lutinmatrix/src/java/org/codelutin/math/matrix/gui/MatrixPopupMenu.java:1.1 Thu Jun 1 17:38:56 2006 +++ lutinmatrix/src/java/org/codelutin/math/matrix/gui/MatrixPopupMenu.java Thu Jun 1 17:56:40 2006 @@ -23,10 +23,10 @@ * Created: 22 mars 2006 12:11:46 * * @author poussin - * @version $Revision: 1.1 $ + * @version $Revision: 1.2 $ * - * Last update: $Date: 2006/06/01 17:38:56 $ - * by : $Author: ruchaud $ + * Last update: $Date: 2006/06/01 17:56:40 $ + * by : $Author: bpoussin $ */ package org.codelutin.math.matrix.gui; @@ -93,7 +93,7 @@ sendToClipBoard = getSendToClipBoard(); sendToFile = getSendToFile(); - withSemantics = new JCheckBoxMenuItem(_("Exportation avec sémantiques"), true); + withSemantics = new JCheckBoxMenuItem(_("Exportation avec sémantiques"), false); add(sendToClipBoard); add(sendToFile); @@ -106,7 +106,7 @@ */ public JMenu getSendToClipBoard() { if (sendToClipBoard == null) { - sendToClipBoard = new JMenu(_("Envoyer vers le bloc note")); + sendToClipBoard = new JMenu(_("Vers/depuis bloc note")); JMenuItem sendToClipBoardAllCopy = new JMenuItem(_("Tout copier")); JMenuItem sendToClipBoardAllPaste = new JMenuItem(_("Tout coller")); JMenuItem sendToClipBoardSelectionCopy = new JMenuItem(_("Copier la sélection")); @@ -132,7 +132,7 @@ */ public JMenu getSendToFile() { if (sendToFile == null) { - sendToFile = new JMenu(_("Envoyer vers fichier CSV")); + sendToFile = new JMenu(_("vers/depuis fichier CSV")); JMenuItem sendToFileAllCopy = new JMenuItem(_("Tout copier")); JMenuItem sendToFileAllPaste = new JMenuItem(_("Tout coller")); JMenuItem sendToFileSelectionCopy = new JMenuItem(_("Copier la sélection"));