| 1 | /******************************************************************************* |
| 2 | * Copyright (c) 2006, 2008 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 Corporation - initial API and implementation |
| 10 | * Remy Chi Jian Suen <remy.suen@gmail.com> - Bug 186522 - [KeyBindings] New Keys preference page does not resort by binding with conflicts |
| 11 | *******************************************************************************/ |
| 12 | |
| 13 | package org.eclipse.ui.internal.keys; |
| 14 | |
| 15 | import org.eclipse.osgi.util.NLS; |
| 16 | |
| 17 | /** |
| 18 | * Messages used in the New Keys Preference page. |
| 19 | * |
| 20 | * @since 3.2 |
| 21 | * |
| 22 | */ |
| 23 | public class NewKeysPreferenceMessages extends NLS { |
| 24 | private static final String BUNDLE_NAME = "org.eclipse.ui.internal.keys.NewKeysPreferencePage";//$NON-NLS-1$ |
| 25 | |
| 26 | public static String AddBindingButton_Text; |
| 27 | public static String AddKeyButton_ToolTipText; |
| 28 | public static String FiltersButton_Text; |
| 29 | public static String ExportButton_Text; |
| 30 | public static String BindingLabel_Text; |
| 31 | public static String CommandNameColumn_Text; |
| 32 | public static String CategoryColumn_Text; |
| 33 | public static String UserColumn_Text; |
| 34 | public static String CommandNameLabel_Text; |
| 35 | public static String CommandDescriptionLabel_Text; |
| 36 | public static String DeleteSchemeButton_Text; |
| 37 | public static String ConflictsLabel_Text; |
| 38 | public static String RemoveBindingButton_Text; |
| 39 | public static String RestoreBindingButton_Text; |
| 40 | public static String SchemeLabel_Text; |
| 41 | public static String TriggerSequenceColumn_Text; |
| 42 | public static String WhenColumn_Text; |
| 43 | public static String WhenLabel_Text; |
| 44 | public static String Asterisk_Text; |
| 45 | |
| 46 | public static String GroupingCombo_Label; |
| 47 | public static String GroupingCombo_Category_Text; |
| 48 | public static String GroupingCombo_None_Text; |
| 49 | public static String GroupingCombo_When_Text; |
| 50 | |
| 51 | public static String PreferenceStoreError_Message; |
| 52 | public static String PreferenceStoreError_Title; |
| 53 | |
| 54 | public static String RestoreDefaultsMessageBoxText; |
| 55 | public static String RestoreDefaultsMessageBoxMessage; |
| 56 | |
| 57 | public static String Undefined_Command; |
| 58 | public static String Unavailable_Category; |
| 59 | public static String Undefined_Context; |
| 60 | |
| 61 | public static String KeysPreferenceFilterDialog_Title; |
| 62 | public static String ActionSetFilterCheckBox_Text; |
| 63 | public static String InternalFilterCheckBox_Text; |
| 64 | public static String UncategorizedFilterCheckBox_Text; |
| 65 | |
| 66 | static { |
| 67 | // load message values from bundle file |
| 68 | NLS.initializeMessages(BUNDLE_NAME, NewKeysPreferenceMessages.class); |
| 69 | } |
| 70 | } |