How do you manage the String Translation Process?

后端 未结 11 1990
小鲜肉
小鲜肉 2020-12-30 23:37

I am working on a Software Project that needs to be translated into 30 languages. This means that changing any string incurs into a relatively high cost. Additionally, tra

11条回答
  •  时光取名叫无心
    2020-12-30 23:58

    In Java, internationalization is accomplished by moving the strings to resource bundles ... the translation process is still long and arduous, but at least it's separated from the process of producing the software, releasing service packs etc. One thing that helps is to have a CI system that repackages everything any time changes are made. We can have a new version tested and out in a matter of minutes whether it's a code change, new language pack or both.

提交回复
热议问题