X-Git-Url: http://git.phpeclipse.com 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 index 0000000..949c04b --- /dev/null +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/ltk/ui/UITexts.java @@ -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; + +/** + *

+ * provides internationalized String messages for the UI. + *

+ * + * @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; +}