$ twine --version
Twine version 1.0.3
I'm trying it out twine for the first time. I have an already existing Android project containing texts in English and French.
The folders are organized in the standard Android way:
- English texts in
app/src/main/res/values/strings.xml
- French texts in
app/src/main/res/values-fr/strings.xml
I execute this command:
echo "" >twine.txt
twine consume-all-localization-files twine.txt app/src/main/res/ --format android --developer-language en --consume-all --consume-comments
I get Adding new definition 'xyz' to twine file. for each key but also Warning: xyz does not exist in developer language 'en' for each key.
Then when I look at the twine.txt file, I only have fr texts.
Thanks for your help.
I'm trying it out twine for the first time. I have an already existing Android project containing texts in English and French.
The folders are organized in the standard Android way:
app/src/main/res/values/strings.xmlapp/src/main/res/values-fr/strings.xmlI execute this command:
I get
Adding new definition 'xyz' to twine file.for each key but alsoWarning: xyz does not exist in developer language 'en'for each key.Then when I look at the
twine.txtfile, I only havefrtexts.Thanks for your help.