I'm in the process of translating portions of a web app of mine into multiple languages. I was wondering what sites/services some of you have used to help with the internationalization process.
Assuming your code base is already internationalized (strings are separated from code, you're using libraries for things like plurals and number/date formats), then localizing your app is mainly about maintaining translated versions of the strings.<p>Your choice of tool should probably be informed by whether or not you will use paid translators and/or you hope that users will contribute some of the translations.<p>- If your users are passionate enough that you can get multiple users contributing/checking translations for each language, then you could subscribe to CrowdIn or Transifex to host your strings. Your only cost will be the monthly fee.<p>- If you need to pay translators for some/all language pairs, then you could use one of the platforms above, along with translators you find, or you could get a complete-ish service (platform + translations) from a single provider. ISTR both Smartling and Transifex do this.<p>In any case, think about:<p>- How often strings will change, and what you'll do when they do<p>- How you'll make sure that you don't translate the same strings multiple times (and pay multiple times). Most platforms that also provide translation will also have a Translation Memory for this purpose.<p>- Whether and how you'll check the quality of translation<p>- Whether you want to store the translation on your server (probably) or whether you want the translations served dynamically from a separate server (worth considering, IMO not worth it).<p>(I am a Product Manager at Google, working on our app translation service for Google Play developers. This service doesn't cover your use case, and the opinions above are my own, not Google's.)
I've used WebTranslateIt and i18next.js, and found i18n and l10n to be much easier than I'd anticipated. While I've primarily worked with actual translators, I think WebTranslateIt has some automated translation options as well.<p>- <a href="https://webtranslateit.com" rel="nofollow">https://webtranslateit.com</a><p>- <a href="http://i18next.com/" rel="nofollow">http://i18next.com/</a>
Check out Transifex: <a href="https://www.transifex.com/" rel="nofollow">https://www.transifex.com/</a>. We built it for developers. There's an API and command-line client to make pushing/pulling content easy. A lot of people also integrate Transifex with Jenkins or some other CI tool.<p>Disclosure: I work there.
I built a shitty CRUD web app with that links to a web form the texts I want to translate - stored in a database - and ask my friends who speak other languages to translate them.