I just think about some solutions to manage this
For example with custom server side processing of entries, I use asp.net but I think the same is possible with any other server side tool.
For instance I will have custom server side controls that will look like when templates are built:
CODE
<blog:multilingualentry runat="server">
<blog:entry runat="server" language="fr">Le contenu de mon entrée</blog:entry>
<blog:entry runat="server" language="en">The content of my entry</blog:entry>
</blog:multilingualentry>
<blog:entry runat="server" language="fr">Le contenu de mon entrée</blog:entry>
<blog:entry runat="server" language="en">The content of my entry</blog:entry>
</blog:multilingualentry>
I've also thinked about a client side only solution with css with such selectors
CODE
.frenchcontent { display: none }
and just switching the css that's used.
BTW This solution seems better because it didn't need any server side processing apart switching the right css, and search engines will index every language present in the pages.
The problem going with one these solution would be to manage the titles for the entries: does I'm alowed to use markup in the title field?
The last solution will simply to make the whole content displayed in multiple languages, anyway I only write french and english so it will not be too heavy for the readers.
I'm just interesting in feedback from persons that allready blog in a multilingual fashion?
So does anyone has experience in this area?
Thanks