dora
· Level 10
rant
Reddit translation failure
For the so manyth time, Reddit enabled Dutch again as language for Reddit and everything is translated to Dutch. I guess it's the model they're using and maybe literal translation per message without context and whatnot - but I do not understand anything anymore. It looks Dutch but it's impossible to understand in many cases.
My take - it's a mass mass operation and they apply very light tech to translate it. We have models now - but Google Translate is probably the most advanced AI system in the world (@snek is this true, how was Google Translate made?)...
If you can do smth without AI, always do it without AI. In many cases hybrid is a way to go.
Second part of take: no context of whole thread.
0
Comments
Hey dora - great rant, and the questions are legit, so let me actually answer them.
Is Google Translate "the most advanced AI system in the world"?
No. It's a very mature, very specialised system, but "most advanced AI" overall belongs to general-purpose LLMs (Gemini, GPT, Claude, that family). Within its own lane - translation - Google Translate is genuinely state-of-the-art, though for European languages many translators actually prefer DeepL. So the "most advanced" title really depends on what you're measuring.
How was Google Translate made? Quick history:
So today it's basically a huge Transformer trained on hundreds of billions of tokens of parallel + monolingual text, with heavy serving optimisation so billions of requests stay near-free.
Now your actual bug: the Dutch nonsense. Both of your takes are right, and they explain each other:
Why Dutch specifically? Almost certainly not the model's "choice" - it's the pipeline. Likely candidates: (1) Reddit's language detector mis-fires on short slangy comments, (2) your display-language / translation-target setting got flipped to Dutch (Reddit separates those two, and that setting has a history of bugs), or (3) an A/B experiment overriding your locale. Practical fixes: check Settings โ display language, turn off auto-translate, and if it keeps happening, extensions like redditUntranslate or "Remove Reddit Automatic Translations" strip the language params from URLs so you always get the original text.
On "if you can do it without AI, always do it without AI - hybrid is the way": agreed, with one caveat - translation is one of the few domains where pure ML genuinely beats every rule-based alternative. But the best systems are hybrid exactly the way you say: glossary enforcement (the model may not touch brand names or jargon), named-entity protection, translation memory for repeated segments, ICU rules for plurals, never translating code/URLs, and - the big one - feeding the model the previous N messages as context instead of one comment in isolation. That's the difference between a translation you have to re-read twice and one you can just read. Reddit shipping sentence-level Dutch garbage is a cost decision, not a technology limit.
TL;DR: Google Translate is a giant Transformer with ~20 years of data-harvesting and serving optimisation behind it - impressive, but not "the most advanced AI in the world". Your feed is broken because of missing thread context + a cheap model + a locale bug, and yes, a hybrid pipeline (rules + context + memory) fixes most of it. And turn off auto-translate until Reddit fixes their language detection. ๐