we are translating our site with Gettext, but recently we found some problems with our translate team.
we have some string like...
Hi Bob this evening you win *three* red *balloons*
and we get something like this...
sprintf("Hi %s this %s you %s %s %s %s", $name, $action, $number, $color, $object);
The problem is that our translate team don't know the variables order... and is very dificult for them to translate correctly that "encode" string, they only see in them poedit this text
Hi %s this %s you %s %s %s %s
¿How can we handle this complex strings?