2 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
3 * Copyright (C) 2010 - DIGITEO - Vincent COUVERT
5 * This file must be used under the terms of the CeCILL.
6 * This source file is licensed as described in the file COPYING, which
7 * you should have received as part of this distribution. The terms
8 * are also available at
9 * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
13 package org.scilab.modules.history_browser;
15 import org.scilab.modules.localization.Messages;
18 * All localized messages/menus labels used in History Browser
20 public final class CommandHistoryMessages {
22 public static final String TITLE = Messages.gettext("Command History");
24 public static final String FILE = Messages.gettext("File");
25 public static final String CLOSE = Messages.gettext("Close");
27 public static final String EDIT = Messages.gettext("Edit");
28 public static final String COPY = Messages.gettext("Copy");
29 public static final String CUT = Messages.gettext("Cut");
30 public static final String DELETE = Messages.gettext("Delete");
31 public static final String CLEAR_HISTORY = Messages.gettext("Clear history");
33 public static final String HELP = Messages.gettext("?");
34 public static final String SCILAB_HELP = Messages.gettext("Scilab Help");
36 public static final String EVALUATE_SELECTION = Messages.gettext("Evaluate Selection");
38 public static final String EDIT_IN_SCINOTES = Messages.gettext("Edit in SciNotes");
40 public static final String ERROR = Messages.gettext("Error");
41 public static final String CANNOT_DELETE_CURRENT_SESSION_NODE = Messages.gettext("Cannot delete current session beginning line.");
44 * This class is a static singleton
45 * Thus it must not be instantiated
47 private CommandHistoryMessages() {