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.
0.9.3 - translations?
Hi there!
I don't want to ask when 0.9.3 will be ready.. Ok I really want to know but I can understand that you have better things to do (Thanksgiving). :-D
The template question has already been answered but what about the language files. Will there be changes? I need a German version of Vanilla and Iam not sure if the current language file will work with 0.9.3 so Iam holding back the start of my community.
0
This discussion has been closed.
Comments
The changes are mostly to do with formatting issues with the 0.9.2 version. For example, in the old version there are a number of places where certain codes are meant to be concatenated with dynamic words in between - such as:
[code_begin] . $SomeVariable . [code_middle] . $SomeOtherVariable . [code_end]
This made it very hard for some languages to be translated properly because those variables shouldn't really be appearing in those places in a different language. The new version does it's variable insertions like this:
$Dictionary["some_code"] = "Welcome to the //1 forum, run by //2 and //3 who are swell dudes";
Then when I call the dictionary and request "some_code", I do a str_replace on //1 //2 and //3 with the proper variables. That way you can put //1 //2 and //3 anywhere in the phrase and it will work in any language.
I didn't want to make any changes to the language dictionary, but I felt that these were very necessary to make it truly multilingual.