fix #774 infinite loop in net.sourceforge.phpeclipse.builder.IdentifierIndexManager...
[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 // modified for phpeclipse.de project by axelcl
4 package net.sourceforge.phpdt.ltk.ui;
5
6 import org.eclipse.osgi.util.NLS;
7
8 /**
9  * <p>
10  * provides internationalized String messages for the UI.
11  * </p>
12  * 
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
33         public static String renameLocalVariable_refuseDlg_title;
34
35         public static String renameLocalVariable_refuseDlg_message;
36
37         public static String renameLocalVariable_cbDQStrings;
38
39         public static String renameLocalVariable_cbPHPdoc;
40
41         public static String renameLocalVariable_cbOtherDoc;
42
43 }