Some simple improvements
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / ltk / core / CoreTexts.java
1 // Copyright (c) 2005 by Leif Frenzel. All rights reserved.
2 // See http://leiffrenzel.de
3 // modified for phpeclipse.de project by axelcl
4 package net.sourceforge.phpdt.ltk.core;
5
6 import org.eclipse.osgi.util.NLS;
7
8 /**
9  * <p>
10  * provides internationalized messages Strings from the coretexts resource
11  * bundle.
12  * </p>
13  *
14  * @author Leif Frenzel
15  */
16 public class CoreTexts extends NLS {
17
18         private static final String BUNDLE_NAME = "net.sourceforge.phpdt.ltk.core.coretexts"; //$NON-NLS-1$
19
20         static {
21                 NLS.initializeMessages(BUNDLE_NAME, CoreTexts.class);
22         }
23
24         // message fields
25         public static String renamePropertyProcessor_name;
26
27         public static String renamePropertyDelegate_noSourceFile;
28
29         public static String renamePropertyDelegate_roFile;
30
31         public static String renamePropertyDelegate_noPHPKey;
32
33         public static String renamePropertyDelegate_collectingChanges;
34
35         public static String renamePropertyDelegate_checking;
36         // public static String renamePropertyDelegate_propNotFound;
37 }