Basic Reafctoring functionality adapted from Leif Frenzels sources in eclipse-magazin...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / ltk / ui / UITexts.java
1 // Copyright (c) 2005 by Leif Frenzel. All rights reserved.
2 // See http://leiffrenzel.de
3 package net.sourceforge.phpdt.ltk.ui;
4
5 import org.eclipse.osgi.util.NLS;
6
7 /**
8  * <p>
9  * provides internationalized String messages for the UI.
10  * </p>
11  *
12  * @author Leif Frenzel
13  */
14 public class UITexts {
15
16         private static final String BUNDLE_NAME = "net.sourceforge.phpdt.ltk.ui.uitexts"; //$NON-NLS-1$
17
18         static {
19                 NLS.initializeMessages(BUNDLE_NAME, UITexts.class);
20         }
21
22         // message fields
23         public static String renameProperty_refuseDlg_title;
24
25         public static String renameProperty_refuseDlg_message;
26
27         public static String renamePropertyInputPage_lblNewName;
28
29         public static String renamePropertyInputPage_cbUpdateBundle;
30
31         public static String renamePropertyInputPage_cbAllProjects;
32 }