diff --git a/pom.xml b/pom.xml index c295575d..a3f2d28c 100644 --- a/pom.xml +++ b/pom.xml @@ -35,7 +35,7 @@ 3.2.0 - 3.1.0 + 3.3.0-SNAPSHOT 1.4.12 4.1.2 3.0.1.Final diff --git a/zanata-client-commands/src/main/java/org/zanata/client/commands/push/PropertiesStrategy.java b/zanata-client-commands/src/main/java/org/zanata/client/commands/push/PropertiesStrategy.java index f635a748..9ae1df45 100644 --- a/zanata-client-commands/src/main/java/org/zanata/client/commands/push/PropertiesStrategy.java +++ b/zanata-client-commands/src/main/java/org/zanata/client/commands/push/PropertiesStrategy.java @@ -114,7 +114,7 @@ private TranslationsResource loadTranslationsResource(Resource srcDoc, TranslationsResource targetDoc = new TranslationsResource(); FileInputStream in = new FileInputStream(transFile); try { - propReader.extractTarget(targetDoc, in); + propReader.extractTarget(targetDoc, in, srcDoc); } finally { in.close(); }