Skip to content

Commit bc83867

Browse files
committed
Produced the internationalisation CSV file ready for translations to be entered.
1 parent 4152e0c commit bc83867

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

gwt-cordova/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<groupId>nl.ru.languageininteraction</groupId>
1010
<artifactId>lingquest</artifactId>
1111
<packaging>war</packaging>
12-
<version>0.1.335-testing</version>
12+
<version>0.1.336-testing</version>
1313
<name>LingQuest</name>
1414
<organization>
1515
<name>Language In Interaction</name>

gwt-cordova/src/test/java/nl/ru/languageininteraction/synaesthesia/client/view/Properties2Csv.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@ public void writePropertyValues(String propertiesFileName) throws FileNotFoundEx
4949
Properties properties = new Properties();
5050
Properties properties_nl = new Properties();
5151
Properties properties_de = new Properties();
52-
final InputStream resourceAsStream = SimpleViewTest.class.getResourceAsStream("/nl/ru/languageininteraction/synaesthesia/client/" + propertiesFileName + ".properties");
52+
final InputStream resourceAsStream = SimpleViewTest.class.getResourceAsStream("/nl/ru/languageininteraction/language/client/" + propertiesFileName + ".properties");
5353
properties.load(resourceAsStream);
54-
final InputStream resourceAsStream_nl = SimpleViewTest.class.getResourceAsStream("/nl/ru/languageininteraction/synaesthesia/client/" + propertiesFileName + "_nl.properties");
54+
final InputStream resourceAsStream_nl = SimpleViewTest.class.getResourceAsStream("/nl/ru/languageininteraction/language/client/" + propertiesFileName + "_nl.properties");
5555
properties_nl.load(resourceAsStream_nl);
56-
final InputStream resourceAsStream_de = SimpleViewTest.class.getResourceAsStream("/nl/ru/languageininteraction/synaesthesia/client/" + propertiesFileName + "_de.properties");
56+
final InputStream resourceAsStream_de = SimpleViewTest.class.getResourceAsStream("/nl/ru/languageininteraction/language/client/" + propertiesFileName + "_de.properties");
5757
properties_de.load(resourceAsStream_de);
5858
OutputStream outputStream = new FileOutputStream(outputFile, true);
5959
try (OutputStreamWriter writer = new OutputStreamWriter(outputStream, "UTF-8")) {
@@ -87,7 +87,7 @@ public static void main(String[] args) throws IOException {
8787
final Properties2Csv properties2Csv = new Properties2Csv();
8888
properties2Csv.deleteOutputFile();
8989
properties2Csv.writePropertyValues("Messages");
90-
properties2Csv.writePropertyValues("Stimuli");
90+
// properties2Csv.writePropertyValues("Stimuli");
9191
properties2Csv.writePropertyValues("MetadataFields");
9292
}
9393
}

0 commit comments

Comments
 (0)