|
1
|
Index: .classpath
|
|
2
|
===================================================================
|
|
3
|
--- .classpath (revision 39491)
|
|
4
|
+++ .classpath (working copy)
|
|
5
|
@@ -11,5 +11,6 @@
|
|
6
|
<classpathentry kind="lib" path="/_fwAndami/lib/commons-pool-1.2.zip"/>
|
|
7
|
<classpathentry kind="src" output="bin-test" path="src-test"/>
|
|
8
|
<classpathentry kind="var" path="JUNIT_HOME/junit.jar"/>
|
|
9
|
+ <classpathentry combineaccessrules="false" kind="src" path="/_fwAndami"/>
|
|
10
|
<classpathentry kind="output" path="bin"/>
|
|
11
|
</classpath>
|
|
12
|
Index: src/com/iver/utiles/swing/threads/UndefinedProgressMonitor.java
|
|
13
|
===================================================================
|
|
14
|
--- src/com/iver/utiles/swing/threads/UndefinedProgressMonitor.java (revision 39491)
|
|
15
|
+++ src/com/iver/utiles/swing/threads/UndefinedProgressMonitor.java (working copy)
|
|
16
|
@@ -60,6 +60,7 @@
|
|
17
|
*
|
|
18
|
*/
|
|
19
|
package com.iver.utiles.swing.threads;
|
|
20
|
+import com.iver.andami.PluginServices;
|
|
21
|
|
|
22
|
import java.awt.Frame;
|
|
23
|
import java.awt.GridBagConstraints;
|
|
24
|
@@ -92,7 +93,7 @@
|
|
25
|
private JProgressBar jProgressBar = null;
|
|
26
|
private JButton cancelButton = null;
|
|
27
|
boolean canceled = false;
|
|
28
|
- private String title = "Processing...";
|
|
29
|
+ private String title = PluginServices.getText(null, "Processing...");
|
|
30
|
|
|
31
|
/**
|
|
32
|
* This is the default constructor
|
|
33
|
@@ -198,7 +199,7 @@
|
|
34
|
private JButton getCancelButton() {
|
|
35
|
if (cancelButton == null) {
|
|
36
|
cancelButton = new JButton();
|
|
37
|
- cancelButton.setText("cancelar");
|
|
38
|
+ cancelButton.setText(PluginServices.getText(this, "cancelar"));
|
|
39
|
cancelButton.addActionListener(new java.awt.event.ActionListener() {
|
|
40
|
public void actionPerformed(java.awt.event.ActionEvent e) {
|
|
41
|
cancel();
|