Translate form validation error messages.
authorElrond <elrond+mediagoblin.org@samba-tng.org>
Mon, 23 Apr 2012 22:12:18 +0000 (00:12 +0200)
committerElrond <elrond+mediagoblin.org@samba-tng.org>
Mon, 23 Apr 2012 22:17:03 +0000 (00:17 +0200)
commitd2eab8868e479b87fbdf129ffc1a87886d68266e
treee8dce49040704763e4f3ecc8db528d72b1ef54a4
parent80dc071b79f23ae5bebb9ad35e6e39716ae80a33
Translate form validation error messages.

Okay, this is a long story.
There are two ways to translate validation error messages:

1) Let wtforms do it. You give wtforms a translation thingy
   and it calls it for the message to be translated. Good
   idea maybe. Except: The translation function is only
   called for the builtin messages of wtforms. It's not
   called for any handcrafted messages in the constructor.
   And we can't translate the message there! Because the
   message needs to be translated when the form is
   rendered, for each user's locale.

   This does not work for us.

2) Translate the message while it gets rendered.
   Luckily we render the message completely by hand. So we
   can just translate it there also!

   Simple, easy, works!

This all does not cover translating the builtin messages of
wtforms. They're currently not extracted in any way, so our
translators can't translate them.

But that's another issue!
mediagoblin/templates/mediagoblin/utils/wtforms.html