/** * This file Copyright (c) 2005-2008 Aptana, Inc. This program is * dual-licensed under both the Aptana Public License and the GNU General * Public license. You may elect to use one or the other of these licenses. * * This program is distributed in the hope that it will be useful, but * AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or * NONINFRINGEMENT. Redistribution, except as permitted by whichever of * the GPL or APL you select, is prohibited. * * 1. For the GPL license (GPL), you can redistribute and/or modify this * program under the terms of the GNU General Public License, * Version 3, as published by the Free Software Foundation. You should * have received a copy of the GNU General Public License, Version 3 along * with this program; if not, write to the Free Software Foundation, Inc., 51 * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Aptana provides a special exception to allow redistribution of this file * with certain other free and open source software ("FOSS") code and certain additional terms * pursuant to Section 7 of the GPL. You may view the exception and these * terms on the web at http://www.aptana.com/legal/gpl/. * * 2. For the Aptana Public License (APL), this program and the * accompanying materials are made available under the terms of the APL * v1.0 which accompanies this distribution, and is available at * http://www.aptana.com/legal/apl/. * * You may view the GPL, Aptana's exception and additional terms, and the * APL in the file titled license.html at the root of the corresponding * plugin containing this source file. * * Any modifications to this file must keep this entire header intact. */ package com.aptana.ide.server.ui.views; import org.eclipse.osgi.util.NLS; /** * @author Pavel Petrochenko */ public final class Messages extends NLS { private static final String BUNDLE_NAME = "com.aptana.ide.server.ui.views.messages"; //$NON-NLS-1$ /** * GenericServersView_HOST */ public static String GenericServersView_HOST; /** * GenericServersView_LEGEND */ public static String GenericServersView_LEGEND; /** * GenericServersView_NO */ public static String GenericServersView_NO; /** * GenericServersView_PORT */ public static String GenericServersView_PORT; /** * GenericServersView_READONLY_DESCRIPTION */ public static String GenericServersView_READONLY_DESCRIPTION; /** * GenericServersView_READONLY_TITLE */ public static String GenericServersView_READONLY_TITLE; /** * GenericServersView_STOP_SERVER_BEFORE_DELETING */ public static String GenericServersView_STOP_SERVER_BEFORE_DELETING; /** * GenericServersView_STOP_SERVER_QUESTION */ public static String GenericServersView_STOP_SERVER_QUESTION; /** * GenericServersView_STOP_SERVER_TITLE */ public static String GenericServersView_STOP_SERVER_TITLE; /** * GenericServersView_YES */ public static String GenericServersView_YES; /** * ServerLabelProvider_BOUND_TO */ public static String ServerLabelProvider_BOUND_TO; /** * ServerLabelProvider_NotApplicable */ public static String ServerLabelProvider_NotApplicable; /** * ServerLabelProvider_PAUSED */ public static String ServerLabelProvider_PAUSED; /** * ServerLabelProvider_Running */ public static String ServerLabelProvider_Running; /** * ServerLabelProvider_Stopped */ public static String ServerLabelProvider_Stopped; /** * ServersView_START */ public static String ServersView_START; /** * ServersView_DEBUG */ public static String ServersView_DEBUG; /** * ServersView_PROFILE */ public static String ServersView_PROFILE; /** * ServersView_NAME */ public static String ServersView_NAME; /** * ServersView_STATUS */ public static String ServersView_STATUS; /** * ServersView_DESCRIPTION */ public static String ServersView_DESCRIPTION; /** * ServersView_TYPE */ public static String ServersView_TYPE; /** * ServersView_DELETE */ public static String ServersView_DELETE; /** * ServersView_EDIT */ public static String ServersView_EDIT; /** * GenericServersView_ServerCanNotRemove_TITLE */ public static String GenericServersView_ServerCanNotRemove_TITLE; /** * GenericServersView_ServerCanNotRemoveDescription */ public static String GenericServersView_ServerCanNotRemoveDescription; /** * ServersView_CONFIRM_DELETE */ public static String ServersView_CONFIRM_DELETE; /** * ServersView_CONFIRM_DELETE_TEXT */ public static String ServersView_CONFIRM_DELETE_TEXT; /** * GenericServersView_ServerReadOnly_TITLE */ public static String GenericServersView_ServerReadOnly_TITLE; /** * GenericServersView_ServerReadOnlyDescription */ public static String GenericServersView_ServerReadOnlyDescription; /** * GenericServersView_ERROR_WHILE_EDITING_DESCRIPTION */ public static String GenericServersView_ERROR_WHILE_EDITING_DESCRIPTION; /** * GenericServersView_ERROR_WHILE_EDITING_TITLE */ public static String GenericServersView_ERROR_WHILE_EDITING_TITLE; public static String GenericServersView_TTP_Collapse; public static String GenericServersView_TTP_Expand; /** * ServerLabelProvider_Starting */ public static String ServerLabelProvider_Starting; /** * ServerLabelProvider_Stopping */ public static String ServerLabelProvider_Stopping; /** * ServerLabelProvider_Unknown */ public static String ServerLabelProvider_Unknown; /** * ServersView_STATUS_STARTED */ public static String ServersView_STATUS_STARTED; /** * ServersView_ADD */ public static String ServersView_ADD; /** * ServersView_CONNECT */ public static String ServersView_CONNECT; /** * ServersView_RESTART */ public static String ServersView_RESTART; /** * ServersView_STOP */ public static String ServersView_STOP; /** * ServersView_PAUSE */ public static String ServersView_PAUSE; /** * SuspendServerAction_CAN_NOT_BE_PAUSED */ public static String SuspendServerAction_CAN_NOT_BE_PAUSED; /** * SuspendServerAction_PAUSE_SERVER */ public static String SuspendServerAction_PAUSE_SERVER; /** * SuspendServerAction_RESUME_TOOLTIP */ public static String SuspendServerAction_RESUME_TOOLTIP; /** * ServersView_RESUME */ public static String ServersView_RESUME; private Messages() { } static { NLS.initializeMessages(BUNDLE_NAME, Messages.class); } }