feature: support string-array resources (android only?)
when uploading android-style string resources, string arrays are ignored.
not sure if there is an equivalent in the other supported file formats, but it sure would be useful if this was supported...
-
Anonymous commented
This bug makes it impossible to use your system--that otherwise seems good--for our application. Our app has a lot of string-array resources and redesigning our app so it fits your translation service is not an option. e.g. a game with 100 levels will have a string array with level names..
-
Peter Havenga commented
As a best practice, I would recommend to design your arrays in the following way (for example):
<string-array name="genders">
<item>@string/text_male</item>
<item>@string/text_female</item>
</string-array>This way you keep the array's seperated from the language files.