01: /*******************************************************************************
02: * Copyright (c) 2006, 2007 IBM Corporation and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * IBM Corporation - initial API and implementation
10: *******************************************************************************/package org.eclipse.ui.internal.keys;
11:
12: import org.eclipse.osgi.util.NLS;
13:
14: /**
15: * Messages used in the New Keys Preference page.
16: *
17: * @since 3.2
18: *
19: */
20: public class NewKeysPreferenceMessages extends NLS {
21: private static final String BUNDLE_NAME = "org.eclipse.ui.internal.keys.NewKeysPreferencePage";//$NON-NLS-1$
22:
23: public static String AddBindingButton_Text;
24: public static String AddKeyButton_ToolTipText;
25: public static String AdvancedButton_Text;
26: public static String BindingLabel_Text;
27: public static String CommandNameColumn_Text;
28: public static String CategoryColumn_Text;
29: public static String UserColumn_Text;
30: public static String CommandNameLabel_Text;
31: public static String DeleteSchemeButton_Text;
32: public static String DescriptionLabel_Text;
33: public static String RemoveBindingButton_Text;
34: public static String RestoreBindingButton_Text;
35: public static String SchemeLabel_Text;
36: public static String ShowAllCheckBox_Text;
37: public static String TriggerSequenceColumn_Text;
38: public static String WhenColumn_Text;
39: public static String WhenLabel_Text;
40: public static String Asterisk_Text;
41:
42: public static String GroupingCombo_Label;
43: public static String GroupingCombo_Category_Text;
44: public static String GroupingCombo_None_Text;
45: public static String GroupingCombo_When_Text;
46:
47: public static String PreferenceStoreError_Message;
48: public static String PreferenceStoreError_Title;
49:
50: public static String RestoreDefaultsMessageBoxText;
51: public static String RestoreDefaultsMessageBoxMessage;
52:
53: public static String Undefined_Command;
54: public static String Unavailable_Category;
55: public static String Undefined_Context;
56:
57: public static String KeysPreferenceFilterDialog_Title;
58: public static String ActionSetFilterCheckBox_Text;
59: public static String InternalFilterCheckBox_Text;
60: public static String UncategorizedFilterCheckBox_Text;
61:
62: static {
63: // load message values from bundle file
64: NLS.initializeMessages(BUNDLE_NAME,
65: NewKeysPreferenceMessages.class);
66: }
67: }
|