Revision 119 org.gvsig.toolbox/trunk/org.gvsig.toolbox/org.gvsig.toolbox.gui/src/main/java/es/unex/sextante/gui/toolbox/ToolboxDialog.java

View differences:

ToolboxDialog.java
13 13

  
14 14
/**
15 15
 * A dialog to show a toolbox
16
 * 
16
 *
17 17
 * @author volaya
18
 * 
18
 *
19 19
 */
20 20
public class ToolboxDialog
21 21
         extends
......
28 28

  
29 29
   /**
30 30
    * Constructor
31
    * 
31
    *
32 32
    * @param parent
33 33
    *                the parent frame
34 34
    */
35 35
   public ToolboxDialog(final Frame parent) {
36 36

  
37
      super(parent, "SEXTANTE", true);
37
      super(parent, Sextante.getText("Toolbox"), true);
38 38
      this.setLocationRelativeTo(null);
39 39

  
40 40
      initialize();
......
63 63

  
64 64
   /**
65 65
    * Returns the toolbox panel contained in this dialog
66
    * 
66
    *
67 67
    * @return the toolbox panel contained in this dialog
68 68
    */
69 69
   public ToolboxPanel getToolboxPanel() {
......
75 75

  
76 76
   public void setAlgorithmsCount(final int iCount) {
77 77

  
78
      setTitle("SEXTANTE. " + Integer.toString(iCount) + " " + Sextante.getText("Algorithms"));
78
      setTitle(Sextante.getText("Toolbox")+ ". " +  Integer.toString(iCount) + " " + Sextante.getText("Algorithms"));
79 79

  
80 80
   }
81 81

  

Also available in: Unified diff