2 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
3 * Copyright (C) 2009 - DIGITEO - Vincent COUVERT
4 * Copyright (C) 2010 - DIGITEO - Clément DAVID
6 * This file must be used under the terms of the CeCILL.
7 * This source file is licensed as described in the file COPYING, which
8 * you should have received as part of this distribution. The terms
9 * are also available at
10 * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
13 package org.scilab.modules.graph.utils;
15 import org.scilab.modules.localization.Messages;
18 * Internationalized messages for this graph
20 public final class ScilabGraphMessages {
22 public static final String COPY = Messages.gettext("Copy");
23 public static final String CUT = Messages.gettext("Cut");
24 public static final String GROUP = Messages.gettext("Group");
25 public static final String UNGROUP = Messages.gettext("UnGroup");
26 public static final String PASTE = Messages.gettext("Paste");
27 public static final String REDO = Messages.gettext("Redo");
28 public static final String UNDO = Messages.gettext("Undo");
29 public static final String ZOOM_IN = Messages.gettext("Zoom In");
30 public static final String ZOOM_OUT = Messages.gettext("Zoom Out");
31 public static final String DELETE = Messages.gettext("Delete");
32 public static final String SELECT_ALL = Messages.gettext("Select all");
33 public static final String INVERT_SELECTION = Messages.gettext("Invert selection");
34 public static final String UNTITLED = Messages.gettext("Untitled");
36 /** This class is a static singleton, thus it must not be instantiated */
37 private ScilabGraphMessages() {