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.
Russian language file for Version 1
I'm making the translation for the Vanilla version 1 and have some questions...
1. What means "sink" under the following context in the language file?
$Context->Dictionary['PERMISSION_SINK_DISCUSSIONS'] = 'Sink discussions';
$Context->Dictionary['MakeThisDiscussionSink'] = 'Sink this discussion';
$Context->Dictionary['MakeThisDiscussionUnSink'] = 'Unsink this discussion';
$Context->Dictionary['ConfirmUnSink'] = 'Are you sure you want to unsink this discussion?';
$Context->Dictionary['ConfirmSink'] = 'Are you sure you want to sink this discussion?';
$Context->Dictionary['ErrPermissionSinkDiscussions'] = 'You do not have permission to sink discussions';
2. What this "sink" is used for in the forum?
0
This discussion has been closed.
Comments
To descend to the bottom; submerge.
To cause to drop or lower.
If there are no discussions in your db, then it will use the "NoDiscussionsFound" definition. If there *are* discussions in your db, then it will use the PageDetailsMessagFull definition.
If you want to add a word before the //1, you can do it like this:
$Context->Dictionary['PageDetailsMessageFull'] = 'blah //1 blah blah blah //2 blah //3';
Hell. For that matter, you could move the numbers completely around:
$Context->Dictionary['PageDetailsMessageFull'] = 'I was hungry, so I hate //2, Sam was a pig and he ate //3, and Sally had //1. We was full, yo!!';
Transcode the russian file to utf-8, using an editor able to do this, and modify the $Configuration['CHARSET'] accordingly.
Edit: tested, it works. And, BTW, if your server filesystem is utf-8 capable, you can name the directory in native spelling and it'll show correctly in selects :
All the install must be utf-8 clean.
Anyway, if you are on Win, you should probably forget it. Filesystem able to cope with utf-8 are of Linux and Mac brands.