| 1 | /********************************************************************** |
| 2 | * Copyright (c) 2005 IBM Corporation and others. All rights reserved. This |
| 3 | * program and the accompanying materials are made available under the terms of |
| 4 | * the Eclipse Public License v1.0 which accompanies this distribution, and is |
| 5 | * available at http://www.eclipse.org/legal/epl-v10.html |
| 6 | * |
| 7 | * Contributors: |
| 8 | * IBM - Initial API and implementation |
| 9 | **********************************************************************/ |
| 10 | package org.eclipse.ui.internal.views.framelist; |
| 11 | |
| 12 | import org.eclipse.osgi.util.NLS; |
| 13 | |
| 14 | public class FrameListMessages extends NLS { |
| 15 | private static final String BUNDLE_NAME = "org.eclipse.ui.internal.views.framelist.messages";//$NON-NLS-1$ |
| 16 | |
| 17 | // ============================================================================== |
| 18 | // FrameList |
| 19 | // ============================================================================== |
| 20 | public static String Back_text; |
| 21 | public static String Back_toolTip; |
| 22 | public static String Back_toolTipOneArg; |
| 23 | |
| 24 | public static String Forward_text; |
| 25 | public static String Forward_toolTip; |
| 26 | public static String Forward_toolTipOneArg; |
| 27 | |
| 28 | public static String GoInto_text; |
| 29 | public static String GoInto_toolTip; |
| 30 | |
| 31 | public static String Up_text; |
| 32 | public static String Up_toolTip; |
| 33 | public static String Up_toolTipOneArg; |
| 34 | |
| 35 | static { |
| 36 | // load message values from bundle file |
| 37 | NLS.initializeMessages(BUNDLE_NAME, FrameListMessages.class); |
| 38 | } |
| 39 | } |