Author: sflanigan
Date: 2009-07-08 01:31:23 -0400 (Wed, 08 Jul 2009)
New Revision: 16491
Modified:
trunk/vpe/plugins/org.jboss.tools.vpe.xulrunner/src/org/jboss/tools/vpe/xulrunner/editor/VpeResizerMouseListener.java
trunk/vpe/plugins/org.jboss.tools.vpe.xulrunner/src/org/jboss/tools/vpe/xulrunner/editor/XulRunnerConstants.java
Log:
https://jira.jboss.org/jira/browse/JBIDE-3557 Externalize English strings
Modified:
trunk/vpe/plugins/org.jboss.tools.vpe.xulrunner/src/org/jboss/tools/vpe/xulrunner/editor/VpeResizerMouseListener.java
===================================================================
---
trunk/vpe/plugins/org.jboss.tools.vpe.xulrunner/src/org/jboss/tools/vpe/xulrunner/editor/VpeResizerMouseListener.java 2009-07-08
05:21:59 UTC (rev 16490)
+++
trunk/vpe/plugins/org.jboss.tools.vpe.xulrunner/src/org/jboss/tools/vpe/xulrunner/editor/VpeResizerMouseListener.java 2009-07-08
05:31:23 UTC (rev 16491)
@@ -82,7 +82,7 @@
private void mouseDown(nsIDOMMouseEvent mouseEvent) {
boolean isContextClick = false;
- if (Platform.getOS().equals("SunOS")) {
+ if (Platform.getOS().equals("SunOS")) { //$NON-NLS-1$
isContextClick = mouseEvent.getCtrlKey();
} else {
isContextClick = (mouseEvent.getButton() == 2);
Modified:
trunk/vpe/plugins/org.jboss.tools.vpe.xulrunner/src/org/jboss/tools/vpe/xulrunner/editor/XulRunnerConstants.java
===================================================================
---
trunk/vpe/plugins/org.jboss.tools.vpe.xulrunner/src/org/jboss/tools/vpe/xulrunner/editor/XulRunnerConstants.java 2009-07-08
05:21:59 UTC (rev 16490)
+++
trunk/vpe/plugins/org.jboss.tools.vpe.xulrunner/src/org/jboss/tools/vpe/xulrunner/editor/XulRunnerConstants.java 2009-07-08
05:31:23 UTC (rev 16491)
@@ -19,65 +19,65 @@
/** HTML tags */
/** HTML_TAG_SPAN */
- public static final String HTML_TAG_SPAN = "span";
+ public static final String HTML_TAG_SPAN = "span"; //$NON-NLS-1$
/** HTML attributes */
/** HTML_ATTR_CLASS */
- public static final String HTML_ATTR_CLASS = "class";
+ public static final String HTML_ATTR_CLASS = "class"; //$NON-NLS-1$
/** HTML_ATTR_ANONLOCATION */
- public static final String HTML_ATTR_ANONLOCATION = "anonlocation";
+ public static final String HTML_ATTR_ANONLOCATION = "anonlocation";
//$NON-NLS-1$
/** HTML_ATTR_LEFT */
- public static final String HTML_ATTR_LEFT = "left";
+ public static final String HTML_ATTR_LEFT = "left"; //$NON-NLS-1$
/** HTML_ATTR_TOP */
- public static final String HTML_ATTR_TOP = "top";
+ public static final String HTML_ATTR_TOP = "top"; //$NON-NLS-1$
/** HTML_ATTR_WIDTH */
- public static final String HTML_ATTR_WIDTH = "width";
+ public static final String HTML_ATTR_WIDTH = "width"; //$NON-NLS-1$
/** HTML_ATTR_HEIGHT */
- public static final String HTML_ATTR_HEIGHT = "height";
+ public static final String HTML_ATTR_HEIGHT = "height"; //$NON-NLS-1$
/** HTML values */
/** HTML_VALUE_HIDDEN */
- public static final String HTML_VALUE_HIDDEN = "hidden";
+ public static final String HTML_VALUE_HIDDEN = "hidden"; //$NON-NLS-1$
/** HTML_VALUE_TRUE */
- public static final String HTML_VALUE_TRUE = "true";
+ public static final String HTML_VALUE_TRUE = "true"; //$NON-NLS-1$
/** HTML_VALUE_FALSE */
- public static final String HTML_VALUE_FALSE = "false";
+ public static final String HTML_VALUE_FALSE = "false"; //$NON-NLS-1$
/** EVENT NAMES */
/** EVENT_NAME_MOUSEDOWN */
- public static final String EVENT_NAME_MOUSEDOWN = "mousedown";
+ public static final String EVENT_NAME_MOUSEDOWN = "mousedown"; //$NON-NLS-1$
/** EVENT_NAME_MOUSEUP */
- public static final String EVENT_NAME_MOUSEUP = "mouseup";
+ public static final String EVENT_NAME_MOUSEUP = "mouseup"; //$NON-NLS-1$
/** EVENT_NAME_MOUSEMOVE */
- public static final String EVENT_NAME_MOUSEMOVE = "mousemove";
+ public static final String EVENT_NAME_MOUSEMOVE = "mousemove"; //$NON-NLS-1$
/** */
/** STRING_MOZ_ACTIVATED */
- public static final String STRING_MOZ_ACTIVATED = "_moz_activated";
+ public static final String STRING_MOZ_ACTIVATED = "_moz_activated";
//$NON-NLS-1$
/** STRING_MOZ_ANONCLASS */
- public static final String STRING_MOZ_ANONCLASS = "_moz_anonclass";
+ public static final String STRING_MOZ_ANONCLASS = "_moz_anonclass";
//$NON-NLS-1$
/** VPE_CLASSNAME_MOZ_RESIZER */
- public static final String VPE_CLASSNAME_MOZ_RESIZER = "mozResizer";
+ public static final String VPE_CLASSNAME_MOZ_RESIZER = "mozResizer";
//$NON-NLS-1$
/** VPE_CLASS_NAME_MOZ_RESIZING_SHADOW */
- public static final String VPE_CLASS_NAME_MOZ_RESIZING_SHADOW =
"mozResizingShadow";
+ public static final String VPE_CLASS_NAME_MOZ_RESIZING_SHADOW =
"mozResizingShadow"; //$NON-NLS-1$