/*
* Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
* Copyright (C) 2009 - DIGITEO - Vincent COUVERT
+ * Copyright (C) 2010 - DIGITEO - Clément DAVID
*
* This file must be used under the terms of the CeCILL.
* This source file is licensed as described in the file COPYING, which
import org.scilab.modules.localization.Messages;
-public class ScilabGraphMessages {
-
+/**
+ * Internationalized messages for this graph
+ */
+public final class ScilabGraphMessages {
+
public static final String COPY = Messages.gettext("Copy");
public static final String CUT = Messages.gettext("Cut");
public static final String GROUP = Messages.gettext("Group");
public static final String UNDO = Messages.gettext("Undo");
public static final String ZOOM_IN = Messages.gettext("Zoom In");
public static final String ZOOM_OUT = Messages.gettext("Zoom Out");
-
+ public static final String DELETE = Messages.gettext("Delete");
+ public static final String SELECT_ALL = Messages.gettext("Select all");
+ public static final String INVERT_SELECTION = Messages.gettext("Invert selection");
+ public static final String UNTITLED = Messages.gettext("Untitled");
+
+ /** This class is a static singleton, thus it must not be instantiated */
+ private ScilabGraphMessages() {
+ }
}