| 1 | /******************************************************************************* |
| 2 | * Copyright (c) 2005, 2006 IBM Corporation and others. |
| 3 | * All rights reserved. This program and the accompanying materials |
| 4 | * are made available under the terms of the Eclipse Public License v1.0 |
| 5 | * which accompanies this distribution, and is available at |
| 6 | * http://www.eclipse.org/legal/epl-v10.html |
| 7 | * |
| 8 | * Contributors: |
| 9 | * IBM - Initial API and implementation |
| 10 | *******************************************************************************/ |
| 11 | package org.eclipse.ui.internal.views.navigator; |
| 12 | |
| 13 | import org.eclipse.osgi.util.NLS; |
| 14 | |
| 15 | public class ResourceNavigatorMessages extends NLS { |
| 16 | private static final String BUNDLE_NAME = "org.eclipse.ui.internal.views.navigator.messages";//$NON-NLS-1$ |
| 17 | |
| 18 | public static String ResourceNavigator_oneItemSelected; |
| 19 | public static String ResourceNavigator_statusLine; |
| 20 | public static String ResourceNavigator_workingSetToolTip; |
| 21 | public static String ResourceNavigator_workingSetInputToolTip; |
| 22 | public static String ResourceManager_toolTip; |
| 23 | public static String ShowInNavigator_errorMessage; |
| 24 | |
| 25 | // --- Actions --- |
| 26 | public static String ResourceNavigator_sort; |
| 27 | public static String SortView_byType; |
| 28 | public static String SortView_toolTipByType; |
| 29 | public static String SortView_byName; |
| 30 | public static String SortView_toolTipByName; |
| 31 | |
| 32 | public static String ToggleLinkingAction_text; |
| 33 | public static String ToggleLinkingAction_toolTip; |
| 34 | |
| 35 | public static String ResourceNavigator_filterText; |
| 36 | |
| 37 | public static String ResourceNavigator_new; |
| 38 | public static String ResourceNavigator_openWith; |
| 39 | |
| 40 | public static String ShowInNavigator_text; |
| 41 | public static String ShowInNavigator_toolTip; |
| 42 | |
| 43 | public static String CopyAction_title; |
| 44 | public static String CopyAction_toolTip; |
| 45 | |
| 46 | public static String PasteAction_title; |
| 47 | public static String PasteAction_toolTip; |
| 48 | |
| 49 | public static String CollapseAllAction_title; |
| 50 | public static String CollapseAllAction_toolTip; |
| 51 | |
| 52 | public static String GoToResource_label; |
| 53 | |
| 54 | public static String NavigatorFrameSource_closedProject_title; |
| 55 | public static String NavigatorFrameSource_closedProject_message; |
| 56 | // --- Dialogs --- |
| 57 | public static String Goto_title; |
| 58 | public static String FilterSelection_message; |
| 59 | public static String FilterSelection_toolTip; |
| 60 | public static String FilterSelection_title; |
| 61 | |
| 62 | public static String DropAdapter_title; |
| 63 | public static String DropAdapter_problemImporting; |
| 64 | public static String DropAdapter_problemsMoving; |
| 65 | public static String DropAdapter_question; |
| 66 | public static String DropAdapter_targetMustBeResource; |
| 67 | public static String DropAdapter_canNotDropIntoClosedProject; |
| 68 | public static String DropAdapter_resourcesCanNotBeSiblings; |
| 69 | public static String DropAdapter_ok; |
| 70 | public static String DropAdapter_overwriteQuery; |
| 71 | public static String DropAdapter_dropOperationErrorOther; |
| 72 | |
| 73 | public static String DragAdapter_title; |
| 74 | public static String DragAdapter_checkDeleteMessage; |
| 75 | |
| 76 | public static String CopyToClipboardProblemDialog_title; |
| 77 | public static String CopyToClipboardProblemDialog_message; |
| 78 | |
| 79 | public static String MoveResourceAction_title; |
| 80 | public static String MoveResourceAction_checkMoveMessage; |
| 81 | |
| 82 | |
| 83 | static { |
| 84 | // load message values from bundle file |
| 85 | NLS.initializeMessages(BUNDLE_NAME, ResourceNavigatorMessages.class); |
| 86 | } |
| 87 | } |