[Pixelle-commit] SF.net SVN: pixelle: [22] trunk/pixelle/src/com/mebigfatguy/pixelle
Brought to you by:
dbrosius
|
From: <dbr...@us...> - 2008-06-18 03:53:17
|
Revision: 22
http://pixelle.svn.sourceforge.net/pixelle/?rev=22&view=rev
Author: dbrosius
Date: 2008-06-17 20:53:25 -0700 (Tue, 17 Jun 2008)
Log Message:
-----------
add title to expression dialog
Modified Paths:
--------------
trunk/pixelle/src/com/mebigfatguy/pixelle/PixelleBundle.java
trunk/pixelle/src/com/mebigfatguy/pixelle/PixelleExpressionDialog.java
trunk/pixelle/src/com/mebigfatguy/pixelle/pixelle.properties
Modified: trunk/pixelle/src/com/mebigfatguy/pixelle/PixelleBundle.java
===================================================================
--- trunk/pixelle/src/com/mebigfatguy/pixelle/PixelleBundle.java 2008-06-18 03:41:22 UTC (rev 21)
+++ trunk/pixelle/src/com/mebigfatguy/pixelle/PixelleBundle.java 2008-06-18 03:53:25 UTC (rev 22)
@@ -50,6 +50,7 @@
public static final String BLUE_FORMULA = "formula.blue";
public static final String TRANSPARENCY_FORMULA = "formula.transparency";
public static final String SELECTION_FORMULA = "formula.selection";
+ public static final String PIXEL_ALGORITHMS = "title.algorithms";
public static final String RED_LABEL = "label.red";
public static final String GREEN_LABEL = "label.green";
public static final String BLUE_LABEL = "label.blue";
Modified: trunk/pixelle/src/com/mebigfatguy/pixelle/PixelleExpressionDialog.java
===================================================================
--- trunk/pixelle/src/com/mebigfatguy/pixelle/PixelleExpressionDialog.java 2008-06-18 03:41:22 UTC (rev 21)
+++ trunk/pixelle/src/com/mebigfatguy/pixelle/PixelleExpressionDialog.java 2008-06-18 03:53:25 UTC (rev 22)
@@ -76,7 +76,7 @@
boolean clickedOK = false;
public PixelleExpressionDialog(PixelleFrame owner) {
- super(owner);
+ super(owner, PixelleBundle.getString(PixelleBundle.PIXEL_ALGORITHMS));
initComponents();
initListeners();
}
Modified: trunk/pixelle/src/com/mebigfatguy/pixelle/pixelle.properties
===================================================================
--- trunk/pixelle/src/com/mebigfatguy/pixelle/pixelle.properties 2008-06-18 03:41:22 UTC (rev 21)
+++ trunk/pixelle/src/com/mebigfatguy/pixelle/pixelle.properties 2008-06-18 03:53:25 UTC (rev 22)
@@ -51,6 +51,7 @@
formula.transparency = p[x,y].t
formula.selection = p[x,y].s
+title.algorithms = Pixel Algorithms
label.red = (Red)
label.green = (Green)
label.blue = (Blue)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|