/** * 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.editors.views.profiles; import org.eclipse.osgi.util.NLS; /** * @author Kevin Sawicki (ksawicki@aptana.com) */ public final class Messages extends NLS { private static final String BUNDLE_NAME = "com.aptana.ide.editors.views.profiles.messages"; //$NON-NLS-1$ public static String ProfilesView_Add_reference; /** * ProfilesView_AddCurrentFile */ public static String ProfilesView_AddCurrentFile; /** * ProfilesView_AddFilesDotDotDot */ public static String ProfilesView_AddFilesDotDotDot; /** * ProfilesView_AddFilesToProfile */ public static String ProfilesView_AddFilesToProfile; /** * ProfilesView_AddFileToProfile */ public static String ProfilesView_AddFileToProfile; /** * ProfilesView_AddProfile */ public static String ProfilesView_AddProfile; /** * ProfilesView_AddProfileDotDotDot */ public static String ProfilesView_AddProfileDotDotDot; /** * ProfilesView_AllExtension */ public static String ProfilesView_AllExtension; /** * ProfilesView_AllFiles */ public static String ProfilesView_AllFiles; /** * ProfilesView_Arial */ public static String ProfilesView_Arial; /** * ProfilesView_CannotDeleteAutomaticFile */ public static String ProfilesView_CannotDeleteAutomaticFile; /** * ProfilesView_CannotDeleteDefaultProfile */ public static String ProfilesView_CannotDeleteDefaultProfile; /** * ProfilesView_CannotMoveAutoFile */ public static String ProfilesView_CannotMoveAutoFile; /** * ProfilesView_ConfirmProfilePersistence */ public static String ProfilesView_ConfirmProfilePersistence; /** * ProfilesView_EnterNewProfileName */ public static String ProfilesView_EnterNewProfileName; public static String ProfilesView_ERR_MSG_coudlnt_add_global_ref; public static String ProfilesView_ERR_MSG_error_occurred_setting_global_refs; public static String ProfilesView_ERR_Setting_global_refs; public static String ProfilesView_File_references; /** * ProfilesView_FileExplorer */ public static String ProfilesView_FileExplorer; /** * ProfilesView_FileNoLongerAvailable */ public static String ProfilesView_FileNoLongerAvailable; public static String ProfilesView_Font_name; public static String ProfilesView_Global_references; /** * ProfilesView_HtmlExtension */ public static String ProfilesView_HtmlExtension; /** * ProfilesView_HTMLFiles */ public static String ProfilesView_HTMLFiles; /** * ProfilesView_JavaScriptFiles */ public static String ProfilesView_JavaScriptFiles; /** * ProfilesView_JsExtension */ public static String ProfilesView_JsExtension; /** * ProfilesView_LinkWithEditor */ public static String ProfilesView_LinkWithEditor; /** * ProfilesView_MakeCurrentProfile */ public static String ProfilesView_MakeCurrentProfile; /** * ProfilesView_MakeProfileCurrentProfile */ public static String ProfilesView_MakeProfileCurrentProfile; /** * ProfilesView_MakeProfilePermanent */ public static String ProfilesView_MakeProfilePermanent; /** * ProfilesView_MakeThisProfilePermanent */ public static String ProfilesView_MakeThisProfilePermanent; /** * ProfilesView_MalformedURLException */ public static String ProfilesView_MalformedURLException; /** * ProfilesView_MakeThisProfilePermanent */ public static String ProfilesView_MoveDown; /** * ProfilesView_MoveUp */ public static String ProfilesView_MoveUp; /** * ProfilesView_NewProfileName */ public static String ProfilesView_NewProfileName; /** * ProfilesView_NoOpenEditor */ public static String ProfilesView_NoOpenEditor; /** * ProfilesView_NoScriptTagFound */ public static String ProfilesView_NoScriptTagFound; /** * ProfilesView_OpenOrDropFile */ public static String ProfilesView_OpenOrDropFile; /** * ProfilesView_PathNotProfileURI */ public static String ProfilesView_PathNotProfileURI; /** * ProfilesView_ProfileItems */ public static String ProfilesView_ProfileItems; /** * ProfilesView_RefreshEnvironment */ public static String ProfilesView_RefreshEnvironment; public static String ProfilesView_Refreshing_environment_job_title; public static String ProfilesView_Remove_reference; /** * ProfilesView_RemoveFile */ public static String ProfilesView_RemoveFile; /** * ProfilesView_SaveBeforeAdd */ public static String ProfilesView_SaveBeforeAdd; public static String ProfilesView_Select_new_global_ref; /** * ProfilesView_Sort */ public static String ProfilesView_Sort; /** * ProfilesView_UnsupportedFileType */ public static String ProfilesView_UnsupportedFileType; /** * ProfilesView_UpdatingProfileEnvironment */ public static String ProfilesView_UpdatingProfileEnvironment; /** * ProfilesView_URISyntaxException */ public static String ProfilesView_URISyntaxException; /** * ProfilesViewHelper_UnableToReadContent */ public static String ProfilesViewHelper_UnableToReadContent; static { // initialize resource bundle NLS.initializeMessages(BUNDLE_NAME, Messages.class); } private Messages() { } }