Some simple improvements
[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  * @author Leif Frenzel
14  */
15 public class UITexts {
16
17         private static final String BUNDLE_NAME = "net.sourceforge.phpdt.ltk.ui.uitexts"; //$NON-NLS-1$
18
19         static {
20                 NLS.initializeMessages(BUNDLE_NAME, UITexts.class);
21         }
22
23         // message fields
24         public static String renameProperty_refuseDlg_title;
25
26         public static String renameProperty_refuseDlg_message;
27
28         public static String renamePropertyInputPage_lblNewName;
29
30         public static String renamePropertyInputPage_cbUpdateBundle;
31
32         public static String renamePropertyInputPage_cbAllProjects;
33 }