Show HN: Tolgee – All-in-one localization for your project
1–10 of 10 posts
Re: Show HN: Tolgee – All-in-one localization for your project
#2Re: Show HN: Tolgee – All-in-one localization for your project
#3It looks like this tool applies translations at runtime via an API call. While that probably makes integrations easy for people who are mostly adding site functionality with things like Google Tag Manager, that strikes me as a poor design decision for anyone with any more control over their site.
It's then up to you too either do that on the server, on the client, or at build time. All three are easily possible. If you'd start with a static file then the decoupling and automation tasks will be much more difficult to achieve.
Re: Show HN: Tolgee – All-in-one localization for your project
#4I see you have support for ICU Message Format. What does the UI look like for a complex ICU string? A big issue I come across is that translators aren't typically technical enough to understand the syntax.
I've dreamed of a TMS that understands an incoming ICU Message Format and spits out a non-technical UI for translators to use. Then after translation it merges it all back together into a single ICU Message string.
Re: Show HN: Tolgee – All-in-one localization for your project
#5It looks like this tool applies translations at runtime via an API call. While that probably makes integrations easy for people who are mostly adding site functionality with things like Google Tag Manager, that strikes me as a poor design decision for anyone with any more control over their site.
Re: Show HN: Tolgee – All-in-one localization for your project
#6Re: Show HN: Tolgee – All-in-one localization for your project
#7Re: Show HN: Tolgee – All-in-one localization for your project
#8Another question: what type of placeholders / tokens does this support? I see ICU Message Format, but what about `%d` or `%s` type placeholders
Re: Show HN: Tolgee – All-in-one localization for your project
#9It looks like this tool applies translations at runtime via an API call. While that probably makes integrations easy for people who are mostly adding site functionality with things like Google Tag Manager, that strikes me as a poor design decision for anyone with any more control over their site.
It's almost universally bad practice to reference your TMS at runtime. There are always exceptions in G11N, but typically the best route is to either dump your translations into a property file or cache the translations somehow (in memory or in a DB, etc)
Or: https://tolgee.io/docs/web/using_with_react/react_preparing_...
Re: Show HN: Tolgee – All-in-one localization for your project
#10What are the differences from WeBlate?