Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
French translation for Vanilla 1.0
This discussion has been closed.
Comments
If it still doesnt work just find the html equivalent
As for replacing automatically, that should be a function of your text editor. Notepad and wordpad do it so i assume whatever you're using should.
$cool = 'awesome';
$whatever = "this is $cool"; // $whatever now equals 'this is awesome'
$whatever = 'this is $cool'; // $whatever now equals 'this is $cool'
So whenever php comes across " 's it puts more work into evaluating them which slows the parse down. Only a tiny bit mind. And probably pretty unnoticable. But enough that on someones suggestion a few months ago mark went through the *entire* codebase replacing all his " with ' to speed things up a little bit
I'm not sure what definitions.hist is so i'm afraid i cant help you there. I suspect maybe you're on the nail so users can compare the translation to the 'historic' english version but I dont really see the point to it so unless there's a method in marks madness there's probably a much more important use for it. I'm sure someone will tell you anyway.
As for translating extensions, i forget now where the translated strings are kept. I think some extension authors have put their definitions at the top of the extension file. We could do with an official protocol for this if there isnt one already.
Ghotcom the variable doesnt have to be evaluated at some stage, if you put it in ' 's it will assume it's not a variable just a string. i.e. the price $25.
I really hope i'm talking sense or i'm gonna look like a right idiot when someone with half a brain comes along.
To get the strings for the extensions to show, you have to comment out the english definitions in the extension itself (put // or # in front of the line), or else they are used.
I found in some cases where the string from the extension needs a variable to be processed (for example the link in GuestWelcome), it wouldn't work with the extension string in the language/definitions.php file.
BTW: to avoid any misunderstandings, the file should be called definitions.php (french.php was the old way) and be put in the French folder, i.e. French/definitions.php. Also in that folder: readme.txt and the email texts. I don't have the .hist file in there at all.