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.
Yet one more newb trying to change presentation
I know this question has been asked a bunch of times. I think I have read every post on it and have tried to implment the changes per the documentation. Still not getting it to work.
I am trying to change some of the setting in the dictionary. I have placed the following in the language.php file in my conf folder.
<?php
// Custom Language Definitions
$Context->SetDefinition('ApplicationTitles', 'ABC Forum Name');
$Context->SetDefinition('ApplicationTitle', 'ABC *** application title ***');
$Context->SetDefinition('BannerTitle', '*** banner title ***');
$Context->SetDefinition('StartANewDiscussion', 'Start a new bloody discussion');
?>
Not getting any of these settings presented in my interface. What am I missing?
thank for your help.
I am trying to change some of the setting in the dictionary. I have placed the following in the language.php file in my conf folder.
<?php
// Custom Language Definitions
$Context->SetDefinition('ApplicationTitles', 'ABC Forum Name');
$Context->SetDefinition('ApplicationTitle', 'ABC *** application title ***');
$Context->SetDefinition('BannerTitle', '*** banner title ***');
$Context->SetDefinition('StartANewDiscussion', 'Start a new bloody discussion');
?>
Not getting any of these settings presented in my interface. What am I missing?
thank for your help.
0
This discussion has been closed.
Comments
For that:
$Context->SetDefinition('StartANewDiscussion', 'Start a new bloody discussion');
Just copy this to your conf/language.php file:
$Context->Dictionary['StartANewDiscussion'] = 'Start a new bloody discussion';