I'd like to localize some settings and setting-descriptions for a chunk.
I created a new namespace "mycomp", pointed the core_path to {core_path}components/mycomp/, created that folder, inside another folder "lexicon", and inside that one another folder "en". There I created a file "default.inc.php" with the following code in it:
<?php
$_lang['setting_mycomp.postUrl'] = 'Target-URL';
$_lang['setting_mycomp.postUrl_desc'] = 'Where you want to post the form\'s data to.';
I switched over to my chunk, added the setting "postUrl" and set "mycomp" as lexicon for that setting. Unfortunately, the setting doesn't get translated and still only shows up as "postUrl" in the manager.
Am I missing something?