Basic Reafctoring functionality adapted from Leif Frenzels sources in eclipse-magazin...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / ltk / ui / UITexts.java
diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/ltk/ui/UITexts.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/ltk/ui/UITexts.java
new file mode 100644 (file)
index 0000000..949c04b
--- /dev/null
@@ -0,0 +1,32 @@
+// Copyright (c) 2005 by Leif Frenzel. All rights reserved.
+// See http://leiffrenzel.de
+package net.sourceforge.phpdt.ltk.ui;
+
+import org.eclipse.osgi.util.NLS;
+
+/**
+ * <p>
+ * provides internationalized String messages for the UI.
+ * </p>
+ *
+ * @author Leif Frenzel
+ */
+public class UITexts {
+
+       private static final String BUNDLE_NAME = "net.sourceforge.phpdt.ltk.ui.uitexts"; //$NON-NLS-1$
+
+       static {
+               NLS.initializeMessages(BUNDLE_NAME, UITexts.class);
+       }
+
+       // message fields
+       public static String renameProperty_refuseDlg_title;
+
+       public static String renameProperty_refuseDlg_message;
+
+       public static String renamePropertyInputPage_lblNewName;
+
+       public static String renamePropertyInputPage_cbUpdateBundle;
+
+       public static String renamePropertyInputPage_cbAllProjects;
+}