Skip to content

Commit 5ae7392

Browse files
committed
changed text in GUI from german to english
1 parent cd27a3f commit 5ae7392

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ apply plugin: 'java'
77
apply plugin: 'eclipse'
88
apply plugin: 'groovy'
99

10-
version = '1.2'
10+
version = '1.3-SNASHOT'
1111

1212
def fileEncoding = 'UTF-8'
1313

src/main/java/ch/petikoch/examples/mvvm_rxjava/example6/Example_6_View.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ public Example_6_View() {
122122

123123
getRootPane().setDefaultButton(submitButton);
124124

125-
resultat1Label = new StrictThreadingJLabel("Parat");
125+
resultat1Label = new StrictThreadingJLabel("Ready");
126126
resultat1Label.setFont(new Font("Tahoma", Font.BOLD, 11));
127127
GridBagConstraints gbc_resultat1Label = new GridBagConstraints();
128128
gbc_resultat1Label.anchor = GridBagConstraints.WEST;
@@ -133,7 +133,7 @@ public Example_6_View() {
133133
gbc_resultat1Label.gridy = 4;
134134
getContentPane().add(resultat1Label, gbc_resultat1Label);
135135

136-
resultat2Label = new StrictThreadingJLabel("Auch parat");
136+
resultat2Label = new StrictThreadingJLabel("Ready, too");
137137
resultat2Label.setFont(new Font("Tahoma", Font.BOLD, 11));
138138
GridBagConstraints gbc_resultat2Label = new GridBagConstraints();
139139
gbc_resultat2Label.fill = GridBagConstraints.BOTH;

0 commit comments

Comments
 (0)