AndroidLangTool
AndroidLangTool copied to clipboard
Simple tool to export android strings resourses to excel and import them to project after translating
Hello, I get an error running `java -jar LangTool.jar -e MyApp file.csv`: ``` Exception in thread "main" java.lang.NullPointerException at com.gdubina.tool.langutil.ToolExport.export(ToolExport.java:73) at com.gdubina.tool.langutil.ToolExport.run(ToolExport.java:68) at com.gdubina.tool.langutil.ToolExport.run(ToolExport.java:56) at com.gdubina.tool.langutil.Tool.main(Tool.java:22) ``` On Mac OS...
Until now, when importing the result was always written in the corresponding "strings.xml" files. With these changes you can specify a different file name. Example: java -jar LangTool.jar -i datafile.xls...
Exception in thread "main" java.lang.NullPointerException at com.gdubina.tool.langutil.ToolExport.export(ToolExport.java:73) at com.gdubina.tool.langutil.ToolExport.run(ToolExport.java:68) at com.gdubina.tool.langutil.ToolExport.run(ToolExport.java:56) at com.gdubina.tool.langutil.Tool.main(Tool.java:22)
String recources of type string array are not exported to xls
Fixed issue #6 removing the `if` that cause the exit from `for` loop, when exporting from directories with different from the default (`values`).